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