OLD | NEW |
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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 | 505 |
506 #current-email { | 506 #current-email { |
507 color: rgba(0, 0, 0, 0.5); | 507 color: rgba(0, 0, 0, 0.5); |
508 } | 508 } |
509 | 509 |
510 #daemon-plugin-container { | 510 #daemon-plugin-container { |
511 width: 0; | 511 width: 0; |
512 height: 0; | 512 height: 0; |
513 } | 513 } |
514 | 514 |
515 #dialog-container { | 515 .dialog-container { |
516 position: fixed; | 516 position: fixed; |
517 top: 200px; | 517 top: 200px; |
518 left: 0; | 518 left: 0; |
519 width: 100%; | 519 width: 100%; |
520 display: -webkit-box; | 520 display: -webkit-box; |
521 } | 521 } |
522 | 522 |
523 #dialog-screen { | 523 .dialog-screen { |
524 position: fixed; | 524 position: fixed; |
525 top: 0; | 525 top: 0; |
526 left: 0; | 526 left: 0; |
527 width: 100%; | 527 width: 100%; |
528 height: 100%; | 528 height: 100%; |
529 background-color: #fff; | 529 background-color: #fff; |
530 opacity: 0.75; | 530 opacity: 0.75; |
531 } | 531 } |
532 | 532 |
533 /* TODO(jamiewalch): Reinstate this if we're able to get translations for | 533 /* TODO(jamiewalch): Reinstate this if we're able to get translations for |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 box-sizing: border-box; | 590 box-sizing: border-box; |
591 } | 591 } |
592 | 592 |
593 /* | 593 /* |
594 * Setting hidden on elements that match some rule overriding 'display' doesn't | 594 * Setting hidden on elements that match some rule overriding 'display' doesn't |
595 * do what you would expect unless this is made explicit (and !important). | 595 * do what you would expect unless this is made explicit (and !important). |
596 */ | 596 */ |
597 [hidden] { | 597 [hidden] { |
598 display: none !important; | 598 display: none !important; |
599 } | 599 } |
OLD | NEW |