| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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-right: 17px; | 118 padding-right: 17px; |
| 119 width: 100%; | 119 width: 100%; |
| 120 } | 120 } |
| 121 | 121 |
| 122 ::-webkit-scrollbar { |
| 123 display: none; |
| 124 } |
| 125 |
| 122 .braille-table-holder { | 126 .braille-table-holder { |
| 123 flex-grow: 1; | 127 flex-grow: 1; |
| 124 } | 128 } |
| 125 | 129 |
| 126 #braille-text { | 130 #braille-text { |
| 127 font-family: 'Droid Sans Mono', Courier, monospace; | 131 font-family: 'Droid Sans Mono', Courier, monospace; |
| 128 font-size: 12pt; | 132 font-size: 12pt; |
| 129 height: 17px; | 133 height: 17px; |
| 130 letter-spacing: 3.13px; | 134 letter-spacing: 3.13px; |
| 131 line-height: 17px; | 135 line-height: 17px; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 border: 1px solid black; | 333 border: 1px solid black; |
| 330 } | 334 } |
| 331 | 335 |
| 332 /* | 336 /* |
| 333 * The html hidden attribute doesn't make elements not focusable by default. | 337 * The html hidden attribute doesn't make elements not focusable by default. |
| 334 * This rule ensures that elements that are hidden truly don't show up. | 338 * This rule ensures that elements that are hidden truly don't show up. |
| 335 */ | 339 */ |
| 336 *[hidden] { | 340 *[hidden] { |
| 337 display: none !important; | 341 display: none !important; |
| 338 } | 342 } |
| OLD | NEW |