| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 -webkit-appearance: none; | 193 -webkit-appearance: none; |
| 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 .toolbar-input { |
| 204 width: 120px; | 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 .toolbar-input:focus, |
| 213 input.toolbar-item.hover { | 213 .toolbar-input.focused, |
| 214 .toolbar-input.hover { |
| 214 border: solid 1px rgb(202, 202, 202); | 215 border: solid 1px rgb(202, 202, 202); |
| 215 } | 216 } |
| 216 | 217 |
| 218 .toolbar-input > input { |
| 219 border: none; |
| 220 flex-grow: 1; |
| 221 } |
| 222 |
| 223 .toolbar-input-clear-button { |
| 224 opacity: 0.7; |
| 225 flex-basis: 13px; |
| 226 flex-shrink: 0; |
| 227 height: 13px; |
| 228 } |
| 229 |
| 230 .toolbar-input-clear-button:hover { |
| 231 opacity: 1; |
| 232 } |
| 233 |
| 217 /* Separator */ | 234 /* Separator */ |
| 218 | 235 |
| 219 .toolbar-divider { | 236 .toolbar-divider { |
| 220 background-color: #ccc; | 237 background-color: #ccc; |
| 221 width: 1px; | 238 width: 1px; |
| 222 margin: 5px 4px; | 239 margin: 5px 4px; |
| 223 height: 16px; | 240 height: 16px; |
| 224 } | 241 } |
| 225 | 242 |
| 226 .toolbar-spacer { | 243 .toolbar-spacer { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 248 margin-top: -1px; | 265 margin-top: -1px; |
| 249 width: 28px; | 266 width: 28px; |
| 250 left: -2px; | 267 left: -2px; |
| 251 } | 268 } |
| 252 | 269 |
| 253 span.toolbar-select-container.toolbar-item.warning { | 270 span.toolbar-select-container.toolbar-item.warning { |
| 254 background: #ffd7d7; | 271 background: #ffd7d7; |
| 255 padding: 0 5px 0 0; | 272 padding: 0 5px 0 0; |
| 256 margin-right: 1px; | 273 margin-right: 1px; |
| 257 } | 274 } |
| OLD | NEW |