| 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 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 | 22 |
| 23 .toolbar-shadow.wrappable { | 23 .toolbar-shadow.wrappable { |
| 24 flex-wrap: wrap; | 24 flex-wrap: wrap; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .toolbar-shadow.wrappable-reverse { | 27 .toolbar-shadow.wrappable-reverse { |
| 28 flex-direction: row-reverse; | 28 flex-direction: row-reverse; |
| 29 } | 29 } |
| 30 | 30 |
| 31 .toolbar-shadow.toolbar-grow-vertical { |
| 32 height: initial; |
| 33 } |
| 34 |
| 31 .toolbar-shadow.vertical { | 35 .toolbar-shadow.vertical { |
| 32 flex-direction: column; | 36 flex-direction: column; |
| 33 height: auto; | 37 height: auto; |
| 34 align-items: flex-start; | 38 align-items: flex-start; |
| 35 } | 39 } |
| 36 | 40 |
| 37 .toolbar-item { | 41 .toolbar-item { |
| 38 position: relative; | 42 position: relative; |
| 39 display: flex; | 43 display: flex; |
| 40 background-color: transparent; | 44 background-color: transparent; |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 margin-top: -1px; | 277 margin-top: -1px; |
| 274 width: 28px; | 278 width: 28px; |
| 275 left: -2px; | 279 left: -2px; |
| 276 } | 280 } |
| 277 | 281 |
| 278 span.toolbar-select-container.toolbar-item.warning { | 282 span.toolbar-select-container.toolbar-item.warning { |
| 279 background: #ffd7d7; | 283 background: #ffd7d7; |
| 280 padding: 0 5px 0 0; | 284 padding: 0 5px 0 0; |
| 281 margin-right: 1px; | 285 margin-right: 1px; |
| 282 } | 286 } |
| OLD | NEW |