| 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 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 #oobe-bottom { |
| 37 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); |
| 38 padding: 24px 40px 34px; |
| 39 z-index: 1; |
| 40 } |
| 41 |
| 36 ::content div.oobe-body-text { | 42 ::content div.oobe-body-text { |
| 37 margin-bottom: 24px; | 43 margin-bottom: 24px; |
| 38 } | 44 } |
| 39 | 45 |
| 40 ::content div.oobe-body-text p { | 46 ::content div.oobe-body-text p { |
| 41 color: rgba(0, 0, 0, 0.87); | 47 color: rgba(0, 0, 0, 0.87); |
| 42 font-size: 14px; | 48 font-size: 14px; |
| 43 line-height: 20px; | 49 line-height: 20px; |
| 44 margin: 0; | 50 margin: 0; |
| 45 } | 51 } |
| 46 | 52 |
| 47 ::content h1.welcome-message { | 53 ::content h1.welcome-message { |
| 48 color: rgba(0, 0, 0, 0.87); | 54 color: rgba(0, 0, 0, 0.87); |
| 49 font-size: 20px; | 55 font-size: 20px; |
| 50 font-weight: normal; | 56 font-weight: normal; |
| 51 margin-bottom: 0; | 57 margin-bottom: 0; |
| 52 } | 58 } |
| 53 | 59 |
| 54 ::content h1.welcome-message-hint { | 60 ::content h1.welcome-message-hint { |
| 55 color: rgba(0, 0, 0, 0.87); | 61 color: rgba(0, 0, 0, 0.87); |
| 56 font-size: 12px; | 62 font-size: 12px; |
| 57 font-weight: normal; | 63 font-weight: normal; |
| 58 margin-bottom: 0; | 64 margin-bottom: 0; |
| 59 } | 65 } |
| 60 | 66 |
| 61 .overlay { | |
| 62 background-color: rgba(0, 0, 0, 0.5); | |
| 63 display: none; | |
| 64 height: 100%; | |
| 65 position: absolute; | |
| 66 right: 0; | |
| 67 top: 0; | |
| 68 width: 100%; | |
| 69 z-index: 11; | |
| 70 } | |
| 71 | 67 |
| 72 :host(.full-disabled) #full-overlay, | |
| 73 :host(.disabled) #bottom-overlay, | |
| 74 | |
| OLD | NEW |