| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 .overlay-root { | |
| 6 -webkit-box-align: stretch; | |
| 7 -webkit-box-orient: horizontal; | |
| 8 -webkit-box-pack: center; | |
| 9 -webkit-user-select: none; | |
| 10 background: rgba(0, 0, 0, 0.8); | |
| 11 display: -webkit-box; | |
| 12 height: 100%; | |
| 13 left: 0; | |
| 14 position: fixed; | |
| 15 top: 0; | |
| 16 width: 100%; | |
| 17 z-index: 1000; | |
| 18 } | |
| 19 | |
| 20 .overlay-root:not([visible]), | |
| 21 .overlay:not([visible]) { | |
| 22 display: none; | |
| 23 } | |
| 24 | |
| 25 .overlay-root > .content-host { | |
| 26 -webkit-box-align: stretch; | |
| 27 -webkit-box-orient: vertical; | |
| 28 -webkit-box-pack: center; | |
| 29 -webkit-user-select: auto; | |
| 30 display: -webkit-box; | |
| 31 } | |
| 32 | |
| 33 .overlay-root > .content-host > * { | |
| 34 background: rgb(255, 255, 255); | |
| 35 } | |
| OLD | NEW |