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 | 5 |
6 body { | 6 body { |
7 border: 0; | 7 border: 0; |
8 height: 35px; | 8 height: 35px; |
9 margin: 0; | 9 margin: 0; |
10 overflow: hidden; | 10 overflow: hidden; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 width: 19px; | 72 width: 19px; |
73 } | 73 } |
74 | 74 |
75 #close:hover { | 75 #close:hover { |
76 background-image: url(/images/close-hover-19.png); | 76 background-image: url(/images/close-hover-19.png); |
77 } | 77 } |
78 | 78 |
79 #caption { | 79 #caption { |
80 color: #fff; | 80 color: #fff; |
81 flex-grow: 1; | 81 flex-grow: 1; |
82 margin-left: 12px; | 82 margin: 0 12px; |
83 } | 83 } |
84 | 84 |
85 #speech-container { | 85 #speech-container { |
86 height: 35px; | 86 height: 35px; |
87 margin-left: 12px; | 87 margin: 0 12px; |
88 } | 88 } |
89 | 89 |
90 #speech { | 90 #speech { |
91 font-family: 'Roboto', sans-serif; | 91 font-family: 'Roboto', sans-serif; |
92 font-size: 12pt; | 92 font-size: 12pt; |
93 height: 35px; | 93 height: 35px; |
94 line-height: 35px; | 94 line-height: 35px; |
95 overflow: hidden; | 95 overflow: hidden; |
96 } | 96 } |
97 | 97 |
(...skipping 18 matching lines...) Expand all Loading... |
116 } | 116 } |
117 | 117 |
118 #braille-cells { | 118 #braille-cells { |
119 font-family: 'Droid Sans Mono', Courier, monospace; | 119 font-family: 'Droid Sans Mono', Courier, monospace; |
120 font-size: 13pt; | 120 font-size: 13pt; |
121 height: 17px; | 121 height: 17px; |
122 line-height: 17px; | 122 line-height: 17px; |
123 white-space: pre; | 123 white-space: pre; |
124 } | 124 } |
125 | 125 |
| 126 #search-container { |
| 127 height: 35px; |
| 128 margin: 0 12px; |
| 129 } |
| 130 |
| 131 #search { |
| 132 background-color: #000; |
| 133 border: 1px solid #fff; |
| 134 color: #fff; |
| 135 font-family: 'Roboto', sans-serif; |
| 136 font-size: 12pt; |
| 137 height: 35px; |
| 138 line-height: 35px; |
| 139 overflow: hidden; |
| 140 width: 100%; |
| 141 } |
| 142 |
126 #menus_background { | 143 #menus_background { |
127 background-color: #eee; | 144 background-color: #eee; |
128 bottom: 0; | 145 bottom: 0; |
129 left: 0; | 146 left: 0; |
130 position: fixed; | 147 position: fixed; |
131 right: 0; | 148 right: 0; |
132 top: 35px; | 149 top: 35px; |
133 } | 150 } |
134 | 151 |
135 #menu-bar { | 152 #menu-bar { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 margin: 0; | 214 margin: 0; |
198 padding: 0 18px; | 215 padding: 0 18px; |
199 } | 216 } |
200 | 217 |
201 .menu-item-shortcut { | 218 .menu-item-shortcut { |
202 border: 0; | 219 border: 0; |
203 margin: 0; | 220 margin: 0; |
204 padding: 0 18px 0 24px; | 221 padding: 0 18px 0 24px; |
205 text-align: right; | 222 text-align: right; |
206 } | 223 } |
OLD | NEW |