| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 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 overflow: hidden; | 8 overflow: hidden; |
| 9 align-items: stretch; | 9 align-items: stretch; |
| 10 flex: auto; | 10 flex: auto; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 padding: 0 4px; | 21 padding: 0 4px; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .device-mode-toolbar .toolbar { | 24 .device-mode-toolbar .toolbar { |
| 25 padding: 0; | 25 padding: 0; |
| 26 overflow: hidden; | 26 overflow: hidden; |
| 27 flex: auto; | 27 flex: auto; |
| 28 } | 28 } |
| 29 | 29 |
| 30 .device-mode-toolbar-left { | 30 .device-mode-toolbar-left { |
| 31 flex: 0 1000 115px; | 31 flex: 0 1000 155px; |
| 32 min-width: 93px; | 32 min-width: 93px; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .device-mode-toolbar-right { | 35 .device-mode-toolbar-right { |
| 36 flex: 0 1000 115px; | 36 flex: 0 1000 155px; |
| 37 min-width: 40px; | 37 min-width: 40px; |
| 38 display: flex; | 38 display: flex; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .device-mode-toolbar-middle-container { | 41 .device-mode-toolbar-middle-container { |
| 42 flex: 1 1 160px; | 42 flex: 1 1 160px; |
| 43 position: relative; | 43 position: relative; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .device-mode-toolbar-middle { | 46 .device-mode-toolbar-middle { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 .device-mode-ruler-top .device-mode-ruler-text { | 222 .device-mode-ruler-top .device-mode-ruler-text { |
| 223 left: 2px; | 223 left: 2px; |
| 224 top: -2px; | 224 top: -2px; |
| 225 } | 225 } |
| 226 | 226 |
| 227 .device-mode-ruler-left .device-mode-ruler-text { | 227 .device-mode-ruler-left .device-mode-ruler-text { |
| 228 left: -4px; | 228 left: -4px; |
| 229 top: -15px; | 229 top: -15px; |
| 230 transform: rotate(270deg); | 230 transform: rotate(270deg); |
| 231 } | 231 } |
| OLD | NEW |