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

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: 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
« no previous file with comments | « remoting/webapp/host_setup_dialog.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /*
480 * TODO(alexeypa): 'float' is overkill for such a simple layout. Find
481 * a simpler way to express it. See: http://crbug.com/134063
482 */
483 float: left;
484 height: auto;
485 vertical-align: top;
486 }
487
488 #ask-pin-form #usagestats-consent-label {
489 font-weight: normal;
490 line-height: normal;
491 }
492
478 #current-email { 493 #current-email {
479 color: rgba(0, 0, 0, 0.5); 494 color: rgba(0, 0, 0, 0.5);
480 } 495 }
481 496
482 #daemon-plugin-container { 497 #daemon-plugin-container {
483 width: 0; 498 width: 0;
484 height: 0; 499 height: 0;
485 } 500 }
486 501
487 #dialog-container { 502 #dialog-container {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 box-sizing: border-box; 572 box-sizing: border-box;
558 } 573 }
559 574
560 /* 575 /*
561 * Setting hidden on elements that match some rule overriding 'display' doesn't 576 * 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). 577 * do what you would expect unless this is made explicit (and !important).
563 */ 578 */
564 [hidden] { 579 [hidden] {
565 display: none !important; 580 display: none !important;
566 } 581 }
OLDNEW
« no previous file with comments | « remoting/webapp/host_setup_dialog.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698