| OLD | NEW |
| 1 /* Copyright 2015 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 */ | |
| 5 | 4 |
| 6 :host { | 5 :host { |
| 7 display: flex; | 6 display: flex; |
| 8 flex-direction: column; | 7 flex-direction: column; |
| 9 position: relative; | 8 position: relative; |
| 10 } | 9 } |
| 11 | 10 |
| 12 .gaia-header { | 11 .oobe-header { |
| 13 background-color: var(--google-blue-500); | 12 background-color: var(--google-blue-500); |
| 14 color: white; | 13 color: white; |
| 15 height: 198px; | 14 height: 198px; |
| 16 } | 15 } |
| 17 | 16 |
| 18 :host(:not(.disabled)) .gaia-header { | 17 :host(:not(.disabled)) .oobe-header { |
| 19 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17); | 18 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17); |
| 20 /* z-index is needed to make shadow visible. */ | 19 /* z-index is needed to make shadow visible. */ |
| 21 z-index: 1; | 20 z-index: 1; |
| 22 } | 21 } |
| 23 | 22 |
| 24 .gaia-footer { | 23 .oobe-footer { |
| 25 background-color: white; | 24 background-color: white; |
| 26 } | |
| 27 | |
| 28 .gaia-footer { | |
| 29 position: relative; | 25 position: relative; |
| 30 } | 26 } |
| 31 | 27 |
| 32 .header-container { | 28 .header-container { |
| 33 padding: 50px 40px 18px; | 29 padding: 50px 40px 18px; |
| 34 } | 30 } |
| 35 | 31 |
| 36 .footer-container { | 32 .footer-container { |
| 37 padding: 24px 40px 34px; | 33 padding: 24px 40px 34px; |
| 38 } | 34 } |
| 39 | 35 |
| 40 ::content div.gaia-body-text { | 36 ::content div.oobe-body-text { |
| 41 margin-bottom: 24px; | 37 margin-bottom: 24px; |
| 42 } | 38 } |
| 43 | 39 |
| 44 ::content div.gaia-body-text p { | 40 ::content div.oobe-body-text p { |
| 45 color: rgba(0, 0, 0, 0.87); | 41 color: rgba(0, 0, 0, 0.87); |
| 46 font-size: 14px; | 42 font-size: 14px; |
| 47 line-height: 20px; | 43 line-height: 20px; |
| 48 margin: 0; | 44 margin: 0; |
| 49 } | 45 } |
| 50 | 46 |
| 51 ::content p.enterprise-info { | |
| 52 color: white; | |
| 53 font-size: 15px; | |
| 54 margin: 8px 0 0 0; | |
| 55 } | |
| 56 | |
| 57 ::content h1.welcome-message { | 47 ::content h1.welcome-message { |
| 58 color: white; | 48 color: white; |
| 59 font-size: 20px; | 49 font-size: 20px; |
| 60 font-weight: normal; | 50 font-weight: normal; |
| 61 margin-bottom: 0; | 51 margin-bottom: 0; |
| 62 } | 52 } |
| 63 | 53 |
| 64 .overlay { | 54 .overlay { |
| 65 background-color: rgba(0, 0, 0, 0.5); | 55 background-color: rgba(0, 0, 0, 0.5); |
| 66 display: none; | 56 display: none; |
| 67 height: 100%; | 57 height: 100%; |
| 68 position: absolute; | 58 position: absolute; |
| 69 right: 0; | 59 right: 0; |
| 70 top: 0; | 60 top: 0; |
| 71 width: 100%; | 61 width: 100%; |
| 72 z-index: 11; | 62 z-index: 11; |
| 73 } | 63 } |
| 74 | 64 |
| 75 paper-progress#progress-bar { | |
| 76 --paper-progress-active-color: var(--google-yellow-500); | |
| 77 --paper-progress-container-color: var(--google-yellow-100); | |
| 78 bottom: 0; | |
| 79 display: none; | |
| 80 height: 3px; | |
| 81 position: absolute; | |
| 82 width: 100%; | |
| 83 } | |
| 84 | |
| 85 :host(.full-disabled) #full-overlay, | 65 :host(.full-disabled) #full-overlay, |
| 86 :host(.disabled) #bottom-overlay, | 66 :host(.disabled) #bottom-overlay, |
| 87 :host(.disabled) #progress-bar { | 67 |
| 88 display: block; | |
| 89 } | |
| OLD | NEW |