| 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; | 6 -webkit-transition: 250ms opacity; |
| 7 align-items: center; | 7 align-items: center; |
| 8 background: rgba(255, 255, 255, .75); | 8 background: rgba(255, 255, 255, .75); |
| 9 bottom: 0; | 9 bottom: 0; |
| 10 display: flex; | 10 display: flex; |
| 11 justify-content: center; | 11 justify-content: center; |
| 12 left: 0; | 12 left: 0; |
| 13 padding: 20px; | 13 padding: 20px; |
| 14 position: fixed; | 14 position: fixed; |
| 15 right: 0; | 15 right: 0; |
| 16 top: 0; | 16 top: 0; |
| 17 z-index: 5; | 17 z-index: 5; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #popup-overlay[md-mode] { |
| 21 background: rgba(0, 0, 0, .5); |
| 22 } |
| 23 |
| 20 .oobe-popup { | 24 .oobe-popup { |
| 21 background: white; | 25 background: white; |
| 22 border: 1px solid rgb(188, 193, 208); | 26 border: 1px solid rgb(188, 193, 208); |
| 23 border-radius: 2px; | 27 border-radius: 2px; |
| 24 box-shadow: 0 5px 80px #505050; | 28 box-shadow: 0 5px 80px #505050; |
| 25 min-height: 250px; | 29 min-height: 250px; |
| 26 position: relative; | 30 position: relative; |
| 27 width: 460px; | 31 width: 460px; |
| 28 z-index: 10; | 32 z-index: 10; |
| 29 } | 33 } |
| 30 | 34 |
| 31 .oobe-popup h1 { | 35 .oobe-popup h1 { |
| 32 -webkit-padding-end: 24px; | 36 -webkit-padding-end: 24px; |
| 33 -webkit-user-select: none; | 37 -webkit-user-select: none; |
| 34 background: linear-gradient(white, #F8F8F8); | 38 background: linear-gradient(white, #F8F8F8); |
| 35 color: rgb(83, 99, 125); | 39 color: rgb(83, 99, 125); |
| 36 font-size: 105%; | 40 font-size: 105%; |
| 37 font-weight: bold; | 41 font-weight: bold; |
| 38 margin: 0; | 42 margin: 0; |
| 39 padding: 10px 15px 8px 15px; | 43 padding: 10px 15px 8px 15px; |
| 40 text-shadow: white 0 1px 2px; | 44 text-shadow: white 0 1px 2px; |
| 41 } | 45 } |
| 42 | 46 |
| 43 .popup-content-area { | 47 .popup-content-area { |
| 44 padding: 20px 20px 60px 20px; | 48 padding: 20px 20px 60px 20px; |
| 45 } | 49 } |
| OLD | NEW |