| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 body { | 5 body { |
| 6 border: 0; | 6 border: 0; |
| 7 height: 35px; | 7 height: 35px; |
| 8 margin: 0; | 8 margin: 0; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 padding: 0; | 10 padding: 0; |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 border-spacing: 0; | 304 border-spacing: 0; |
| 305 } | 305 } |
| 306 | 306 |
| 307 table#braille-table * { | 307 table#braille-table * { |
| 308 color: #fff; | 308 color: #fff; |
| 309 } | 309 } |
| 310 | 310 |
| 311 table#braille-table tr:first-child { | 311 table#braille-table tr:first-child { |
| 312 font-size: 85%; | 312 font-size: 85%; |
| 313 } | 313 } |
| 314 |
| 315 /* |
| 316 * The html hidden attribute doesn't make elements not focusable by default. |
| 317 * This rule ensures that elements that are hidden truly don't show up. |
| 318 */ |
| 319 *[hidden] { |
| 320 display: none !important; |
| 321 } |
| OLD | NEW |