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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
285 .gray-info-message { | 285 .gray-info-message { |
286 text-align: center; | 286 text-align: center; |
287 font-style: italic; | 287 font-style: italic; |
288 padding: 6px; | 288 padding: 6px; |
289 color: #888; | 289 color: #888; |
290 } | 290 } |
291 | 291 |
292 label[is=dt-icon-label] { | 292 label[is=dt-icon-label] { |
293 flex: none; | 293 flex: none; |
294 } | 294 } |
295 | |
296 .banner a { | |
dgozman
2016/09/23 00:40:06
At least rename this to more specific selector lik
| |
297 color: inherit; | |
298 } | |
299 | |
300 .banner { | |
301 color: #777; | |
302 background-color: white; | |
303 display: flex; | |
304 justify-content: center; | |
305 align-items: center; | |
306 text-align: center; | |
307 padding: 20px; | |
308 position: absolute; | |
309 top: 0; | |
310 right: 0; | |
311 bottom: 0; | |
312 left: 0; | |
313 font-size: 13px; | |
314 overflow: auto; | |
315 z-index: 500; | |
316 } | |
OLD | NEW |