| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 :host { | 5 :host { |
| 6 display: flex; | 6 display: flex; |
| 7 flex-direction: column; | 7 flex-direction: column; |
| 8 position: relative; | 8 position: relative; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .oobe-header { | 11 .oobe-icon-div { |
| 12 background-color: var(--google-blue-500); | 12 --iron-icon-height: 20px; |
| 13 color: white; | 13 --iron-icon-width: 20px; |
| 14 height: 198px; | 14 color: var(--google-blue-500); |
| 15 } | 15 } |
| 16 | 16 |
| 17 :host(:not(.disabled)) .oobe-header { | 17 .oobe-header { |
| 18 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17); | 18 background-color: white; |
| 19 /* z-index is needed to make shadow visible. */ | 19 color: black; |
| 20 z-index: 1; | 20 height: 150px; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .oobe-footer { | 23 .oobe-footer { |
| 24 background-color: white; | 24 background-color: white; |
| 25 position: relative; | 25 position: relative; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .header-container { | 28 .header-container { |
| 29 padding: 50px 40px 18px; | 29 padding: 50px 40px 18px; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .footer-container { | 32 .footer-container { |
| 33 padding: 24px 40px 34px; | 33 padding: 24px 40px 34px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 ::content div.oobe-body-text { | 36 ::content div.oobe-body-text { |
| 37 margin-bottom: 24px; | 37 margin-bottom: 24px; |
| 38 } | 38 } |
| 39 | 39 |
| 40 ::content div.oobe-body-text p { | 40 ::content div.oobe-body-text p { |
| 41 color: rgba(0, 0, 0, 0.87); | 41 color: rgba(0, 0, 0, 0.87); |
| 42 font-size: 14px; | 42 font-size: 14px; |
| 43 line-height: 20px; | 43 line-height: 20px; |
| 44 margin: 0; | 44 margin: 0; |
| 45 } | 45 } |
| 46 | 46 |
| 47 ::content h1.welcome-message { | 47 ::content h1.welcome-message { |
| 48 color: white; | 48 color: rgba(0, 0, 0, 0.87); |
| 49 font-size: 20px; | 49 font-size: 20px; |
| 50 font-weight: normal; | 50 font-weight: normal; |
| 51 margin-bottom: 0; | 51 margin-bottom: 0; |
| 52 } | 52 } |
| 53 | 53 |
| 54 ::content h1.welcome-message-hint { |
| 55 color: rgba(0, 0, 0, 0.87); |
| 56 font-size: 12px; |
| 57 font-weight: normal; |
| 58 margin-bottom: 0; |
| 59 } |
| 60 |
| 54 .overlay { | 61 .overlay { |
| 55 background-color: rgba(0, 0, 0, 0.5); | 62 background-color: rgba(0, 0, 0, 0.5); |
| 56 display: none; | 63 display: none; |
| 57 height: 100%; | 64 height: 100%; |
| 58 position: absolute; | 65 position: absolute; |
| 59 right: 0; | 66 right: 0; |
| 60 top: 0; | 67 top: 0; |
| 61 width: 100%; | 68 width: 100%; |
| 62 z-index: 11; | 69 z-index: 11; |
| 63 } | 70 } |
| 64 | 71 |
| 65 :host(.full-disabled) #full-overlay, | 72 :host(.full-disabled) #full-overlay, |
| 66 :host(.disabled) #bottom-overlay, | 73 :host(.disabled) #bottom-overlay, |
| 67 | 74 |
| OLD | NEW |