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 { | 10 tfoot, thead, tr, th, td { |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 min-width: 0; | 469 min-width: 0; |
470 line-height: 0; | 470 line-height: 0; |
471 } | 471 } |
472 | 472 |
473 #top-secondary { | 473 #top-secondary { |
474 margin-top: 10px | 474 margin-top: 10px |
475 } | 475 } |
476 | 476 |
477 * { | 477 * { |
478 box-sizing: border-box; | 478 box-sizing: border-box; |
479 } | 479 } |
| 480 |
| 481 /* |
| 482 * Setting hidden on elements that match some rule overriding 'display' doesn't |
| 483 * do what you would expect unless this is made explicit (and !important). |
| 484 */ |
| 485 [hidden] { |
| 486 display: none !important; |
| 487 } |
OLD | NEW |