| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 border: 0; | 194 border: 0; |
| 195 border-radius: 0; | 195 border-radius: 0; |
| 196 padding: 0 15px 0 5px; | 196 padding: 0 15px 0 5px; |
| 197 margin-right: -10px; | 197 margin-right: -10px; |
| 198 position: relative; | 198 position: relative; |
| 199 } | 199 } |
| 200 | 200 |
| 201 /* Input */ | 201 /* Input */ |
| 202 | 202 |
| 203 input.toolbar-item { | 203 input.toolbar-item { |
| 204 width: 200px; | 204 width: 120px; |
| 205 height: 20px; | 205 height: 20px; |
| 206 padding: 3px; | 206 padding: 3px; |
| 207 margin: 1px 3px; | 207 margin: 1px 3px; |
| 208 background-color: white; | 208 background-color: white; |
| 209 border: solid 1px #d8d8d8; | 209 border: solid 1px #d8d8d8; |
| 210 } | 210 } |
| 211 | 211 |
| 212 input.toolbar-item:focus, | 212 input.toolbar-item:focus, |
| 213 input.toolbar-item.hover { | 213 input.toolbar-item.hover { |
| 214 border: solid 1px rgb(202, 202, 202); | 214 border: solid 1px rgb(202, 202, 202); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 margin-top: -1px; | 248 margin-top: -1px; |
| 249 width: 28px; | 249 width: 28px; |
| 250 left: -2px; | 250 left: -2px; |
| 251 } | 251 } |
| 252 | 252 |
| 253 span.toolbar-select-container.toolbar-item.warning { | 253 span.toolbar-select-container.toolbar-item.warning { |
| 254 background: #ffd7d7; | 254 background: #ffd7d7; |
| 255 padding: 0 5px 0 0; | 255 padding: 0 5px 0 0; |
| 256 margin-right: 1px; | 256 margin-right: 1px; |
| 257 } | 257 } |
| OLD | NEW |