| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 4 */ | |
| 5 | 4 |
| 6 .overlay-root { | 5 .overlay-root { |
| 7 -webkit-box-align: stretch; | 6 -webkit-box-align: stretch; |
| 8 -webkit-box-orient: horizontal; | 7 -webkit-box-orient: horizontal; |
| 9 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
| 10 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 11 background: rgba(0, 0, 0, 0.8); | 10 background: rgba(0, 0, 0, 0.8); |
| 12 display: -webkit-box; | 11 display: -webkit-box; |
| 13 height: 100%; | 12 height: 100%; |
| 14 left: 0; | 13 left: 0; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 27 -webkit-box-align: stretch; | 26 -webkit-box-align: stretch; |
| 28 -webkit-box-orient: vertical; | 27 -webkit-box-orient: vertical; |
| 29 -webkit-box-pack: center; | 28 -webkit-box-pack: center; |
| 30 -webkit-user-select: auto; | 29 -webkit-user-select: auto; |
| 31 display: -webkit-box; | 30 display: -webkit-box; |
| 32 } | 31 } |
| 33 | 32 |
| 34 .overlay-root > .content-host > * { | 33 .overlay-root > .content-host > * { |
| 35 background: rgb(255, 255, 255); | 34 background: rgb(255, 255, 255); |
| 36 } | 35 } |
| OLD | NEW |