| 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 * { | 7 * { |
| 8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
| 9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
| 10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 flex-direction: row !important; | 82 flex-direction: row !important; |
| 83 position: relative; | 83 position: relative; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .vbox { | 86 .vbox { |
| 87 display: flex; | 87 display: flex; |
| 88 flex-direction: column !important; | 88 flex-direction: column !important; |
| 89 position: relative; | 89 position: relative; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .view-container > .toolbar { |
| 93 border-bottom: 1px solid #eee; |
| 94 } |
| 95 |
| 92 .flex-auto { | 96 .flex-auto { |
| 93 flex: auto; | 97 flex: auto; |
| 94 } | 98 } |
| 95 | 99 |
| 96 .flex-auto-important { | 100 .flex-auto-important { |
| 97 flex: auto !important; | 101 flex: auto !important; |
| 98 } | 102 } |
| 99 | 103 |
| 100 .flex-none { | 104 .flex-none { |
| 101 flex: none; | 105 flex: none; |
| 102 } | 106 } |
| 103 | 107 |
| 104 .flex-centered { | 108 .flex-centered { |
| 105 display: flex; | 109 display: flex; |
| 106 align-items: center; | 110 align-items: center; |
| 107 justify-content: center; | 111 justify-content: center; |
| 108 } | 112 } |
| 109 | 113 |
| 114 .overflow-auto { |
| 115 overflow: auto; |
| 116 } |
| 117 |
| 110 iframe.widget { | 118 iframe.widget { |
| 111 position: absolute; | 119 position: absolute; |
| 112 width: 100%; | 120 width: 100%; |
| 113 height: 100%; | 121 height: 100%; |
| 114 left: 0; | 122 left: 0; |
| 115 right: 0; | 123 right: 0; |
| 116 top: 0; | 124 top: 0; |
| 117 bottom: 0; | 125 bottom: 0; |
| 118 } | 126 } |
| 119 | 127 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); | 275 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); |
| 268 } | 276 } |
| 269 | 277 |
| 270 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, | 278 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, |
| 271 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { | 279 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { |
| 272 border-radius: 2px; | 280 border-radius: 2px; |
| 273 background-color: #333; | 281 background-color: #333; |
| 274 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); | 282 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); |
| 275 } | 283 } |
| 276 | 284 |
| 285 .gray-info-message { |
| 286 text-align: center; |
| 287 font-style: italic; |
| 288 padding: 6px; |
| 289 color: #888; |
| 290 } |
| 291 |
| 277 label[is=dt-icon-label] { | 292 label[is=dt-icon-label] { |
| 278 flex: none; | 293 flex: none; |
| 279 } | 294 } |
| OLD | NEW |