Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: remoting/webapp/main.css

Issue 10537182: The user's consent to crash dumps reporting can now be set via the UI (Windows only). The checkbox … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback & rebased. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 tfoot, thead, tr, th, td, button { 10 tfoot, thead, tr, th, td, button {
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 color: rgb(0, 0, 0); 458 color: rgb(0, 0, 0);
459 font-weight: bold; 459 font-weight: bold;
460 font-size: 26px; 460 font-size: 26px;
461 text-align: center; 461 text-align: center;
462 } 462 }
463 463
464 #access-code-entry-row { 464 #access-code-entry-row {
465 margin-top: 24px; 465 margin-top: 24px;
466 } 466 }
467 467
468 #ask-pin-form label { 468 #ask-pin-form .table-label {
469 min-width: 120px; 469 min-width: 120px;
470 text-align: __MSG_@@bidi_end_edge__; 470 text-align: __MSG_@@bidi_end_edge__;
471 display: inline-block; 471 display: inline-block;
472 } 472 }
473 473
474 #ask-pin-form > div { 474 #ask-pin-form > div {
475 margin-bottom: 8px; 475 margin-bottom: 8px;
476 } 476 }
477 477
478 #ask-pin-form #usagestats-consent-checkbox {
479 float: left;
Jamie 2012/06/21 18:47:52 Floats should not be necessary for a simple layout
alexeypa (please no reviews) 2012/06/21 23:30:26 I'll file an M22 bug on that.
Jamie 2012/06/21 23:49:31 Could you add a TODO as well please?
alexeypa (please no reviews) 2012/06/22 00:09:27 Done. http://crbug.com/134063
480 height: auto;
481 vertical-align: top;
482 }
483
484 #ask-pin-form #usagestats-consent-label {
485 font-weight: normal;
486 line-height: normal;
487 }
488
478 #current-email { 489 #current-email {
479 color: rgba(0, 0, 0, 0.5); 490 color: rgba(0, 0, 0, 0.5);
480 } 491 }
481 492
482 #daemon-plugin-container { 493 #daemon-plugin-container {
483 width: 0; 494 width: 0;
484 height: 0; 495 height: 0;
485 } 496 }
486 497
487 #dialog-container { 498 #dialog-container {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 box-sizing: border-box; 568 box-sizing: border-box;
558 } 569 }
559 570
560 /* 571 /*
561 * Setting hidden on elements that match some rule overriding 'display' doesn't 572 * Setting hidden on elements that match some rule overriding 'display' doesn't
562 * do what you would expect unless this is made explicit (and !important). 573 * do what you would expect unless this is made explicit (and !important).
563 */ 574 */
564 [hidden] { 575 [hidden] {
565 display: none !important; 576 display: none !important;
566 } 577 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698