OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 :host { | 7 :host { |
8 flex: none; | 8 flex: none; |
9 padding: 0 2px; | 9 padding: 0 2px; |
10 } | 10 } |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 height: 22px; | 207 height: 22px; |
208 margin-top: 2px; | 208 margin-top: 2px; |
209 margin-bottom: 2px; | 209 margin-bottom: 2px; |
210 } | 210 } |
211 | 211 |
212 select.toolbar-item[data-keyboard-focus="true"]:focus { | 212 select.toolbar-item[data-keyboard-focus="true"]:focus { |
213 background: rgba(0, 0, 0, 0.08); | 213 background: rgba(0, 0, 0, 0.08); |
214 border-radius: 2px; | 214 border-radius: 2px; |
215 } | 215 } |
216 | 216 |
| 217 select.toolbar-item[data-keyboard-focus="true"]:focus > * { |
| 218 background: white; |
| 219 } |
| 220 |
217 /* Input */ | 221 /* Input */ |
218 | 222 |
219 .toolbar-input { | 223 .toolbar-input { |
220 width: 120px; | 224 width: 120px; |
221 height: 20px; | 225 height: 20px; |
222 padding: 3px; | 226 padding: 3px; |
223 margin: 1px 3px; | 227 margin: 1px 3px; |
224 background-color: white; | 228 background-color: white; |
225 border: solid 1px #d8d8d8; | 229 border: solid 1px #d8d8d8; |
226 min-width: 35px; | 230 min-width: 35px; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 margin-top: -1px; | 300 margin-top: -1px; |
297 width: 28px; | 301 width: 28px; |
298 left: -2px; | 302 left: -2px; |
299 } | 303 } |
300 | 304 |
301 span.toolbar-select-container.toolbar-item.warning { | 305 span.toolbar-select-container.toolbar-item.warning { |
302 background: #ffd7d7; | 306 background: #ffd7d7; |
303 padding: 0 5px 0 0; | 307 padding: 0 5px 0 0; |
304 margin-right: 1px; | 308 margin-right: 1px; |
305 } | 309 } |
OLD | NEW |