| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 108 |
| 109 #braille-container * { | 109 #braille-container * { |
| 110 border-spacing: 0; | 110 border-spacing: 0; |
| 111 color: #fff; | 111 color: #fff; |
| 112 } | 112 } |
| 113 | 113 |
| 114 #braille-table-holder-outer { | 114 #braille-table-holder-outer { |
| 115 display: flex; | 115 display: flex; |
| 116 height: 100%; | 116 height: 100%; |
| 117 overflow: scroll; | 117 overflow: scroll; |
| 118 padding-bottom: 17px; | |
| 119 padding-right: 17px; | 118 padding-right: 17px; |
| 120 width: 100%; | 119 width: 100%; |
| 121 } | 120 } |
| 122 | 121 |
| 123 .braille-table-holder { | 122 .braille-table-holder { |
| 124 flex-grow: 1; | 123 flex-grow: 1; |
| 125 } | 124 } |
| 126 | 125 |
| 127 #braille-text { | 126 #braille-text { |
| 128 font-family: 'Droid Sans Mono', Courier, monospace; | 127 font-family: 'Droid Sans Mono', Courier, monospace; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 border: 1px solid black; | 329 border: 1px solid black; |
| 331 } | 330 } |
| 332 | 331 |
| 333 /* | 332 /* |
| 334 * The html hidden attribute doesn't make elements not focusable by default. | 333 * The html hidden attribute doesn't make elements not focusable by default. |
| 335 * This rule ensures that elements that are hidden truly don't show up. | 334 * This rule ensures that elements that are hidden truly don't show up. |
| 336 */ | 335 */ |
| 337 *[hidden] { | 336 *[hidden] { |
| 338 display: none !important; | 337 display: none !important; |
| 339 } | 338 } |
| OLD | NEW |