Chromium Code Reviews| 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 } |
| 11 | 11 |
| 12 .toolbar-shadow { | 12 .toolbar-shadow { |
| 13 position: relative; | 13 position: relative; |
| 14 white-space: nowrap; | 14 white-space: nowrap; |
| 15 height: 26px; | 15 height: 26px; |
| 16 overflow: hidden; | 16 overflow: hidden; |
| 17 z-index: 12; | 17 z-index: 12; |
| 18 display: flex; | 18 display: flex; |
| 19 flex: none; | 19 flex: none; |
| 20 align-items: center; | 20 align-items: center; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .toolbar-shadow.wrappable { | 23 .toolbar-shadow.wrappable { |
| 24 flex-wrap: wrap; | 24 flex-wrap: wrap; |
| 25 overflow: visible; | |
|
dgozman
2017/03/13 22:29:52
Please double-check device mode's top toolbar.
| |
| 25 } | 26 } |
| 26 | 27 |
| 27 .toolbar-shadow.wrappable-reverse { | 28 .toolbar-shadow.wrappable-reverse { |
| 28 flex-direction: row-reverse; | 29 flex-direction: row-reverse; |
| 29 } | 30 } |
| 30 | 31 |
| 31 .toolbar-shadow.toolbar-grow-vertical { | 32 .toolbar-shadow.toolbar-grow-vertical { |
| 32 height: initial; | 33 height: initial; |
| 33 } | 34 } |
| 34 | 35 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 277 margin-top: -1px; | 278 margin-top: -1px; |
| 278 width: 28px; | 279 width: 28px; |
| 279 left: -2px; | 280 left: -2px; |
| 280 } | 281 } |
| 281 | 282 |
| 282 span.toolbar-select-container.toolbar-item.warning { | 283 span.toolbar-select-container.toolbar-item.warning { |
| 283 background: #ffd7d7; | 284 background: #ffd7d7; |
| 284 padding: 0 5px 0 0; | 285 padding: 0 5px 0 0; |
| 285 margin-right: 1px; | 286 margin-right: 1px; |
| 286 } | 287 } |
| OLD | NEW |