| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 4 |
| 5 .popup-overlay { | 5 .popup-overlay { |
| 6 -webkit-transition: 250ms opacity; | |
| 7 align-items: center; | 6 align-items: center; |
| 8 background: rgba(255, 255, 255, .75); | 7 background: rgba(255, 255, 255, .75); |
| 9 bottom: 0; | 8 bottom: 0; |
| 10 display: flex; | 9 display: flex; |
| 11 justify-content: center; | 10 justify-content: center; |
| 12 left: 0; | 11 left: 0; |
| 13 padding: 20px; | 12 padding: 20px; |
| 14 position: fixed; | 13 position: fixed; |
| 15 right: 0; | 14 right: 0; |
| 16 top: 0; | 15 top: 0; |
| 16 transition: 250ms opacity; |
| 17 z-index: 5; | 17 z-index: 5; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #popup-overlay[md-mode] { | 20 #popup-overlay[md-mode] { |
| 21 background: rgba(0, 0, 0, .5); | 21 background: rgba(0, 0, 0, .5); |
| 22 } | 22 } |
| 23 | 23 |
| 24 .oobe-popup { | 24 .oobe-popup { |
| 25 background: white; | 25 background: white; |
| 26 border: 1px solid rgb(188, 193, 208); | 26 border: 1px solid rgb(188, 193, 208); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 40 font-size: 105%; | 40 font-size: 105%; |
| 41 font-weight: bold; | 41 font-weight: bold; |
| 42 margin: 0; | 42 margin: 0; |
| 43 padding: 10px 15px 8px 15px; | 43 padding: 10px 15px 8px 15px; |
| 44 text-shadow: white 0 1px 2px; | 44 text-shadow: white 0 1px 2px; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .popup-content-area { | 47 .popup-content-area { |
| 48 padding: 20px 20px 60px 20px; | 48 padding: 20px 20px 60px 20px; |
| 49 } | 49 } |
| OLD | NEW |