| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 | 5 |
| 6 :host { | 6 :host { |
| 7 height: 528px; | 7 height: 528px; |
| 8 width: 448px; | 8 width: 448px; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .gaia-header { | 11 .gaia-header { |
| 12 background-color: rgb(66, 133, 244); | 12 background-color: rgb(66, 133, 244); |
| 13 color: rgb(255, 255, 255); | 13 color: rgb(255, 255, 255); |
| 14 height: 164px; | 14 height: 164px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .gaia-footer, | 17 .gaia-footer, |
| 18 #progress-bar::shadow #progressContainer { | 18 #progress-bar::shadow #progressContainer { |
| 19 background-color: rgb(238, 238, 238); | 19 background-color: rgb(238, 238, 238); |
| 20 } | 20 } |
| 21 | 21 |
| 22 .gaia-footer { | 22 .gaia-footer { |
| 23 position: relative; | 23 position: relative; |
| 24 } | 24 } |
| 25 | 25 |
| 26 .top-padding { | 26 .header-container { |
| 27 padding-top: 34px; | 27 padding: 34px 40px 16px; |
| 28 } | 28 } |
| 29 | 29 |
| 30 .bottom-padding { | 30 .footer-container { |
| 31 padding-bottom: 34px; | 31 padding: 24px 40px 34px; |
| 32 } | |
| 33 | |
| 34 .side-padding { | |
| 35 padding-left: 40px; | |
| 36 padding-right: 40px; | |
| 37 } | |
| 38 | |
| 39 ::content /deep/ a.newgaia-link { | |
| 40 color: rgb(66, 133, 244); | |
| 41 font-size: 14px; | |
| 42 text-decoration: none; | |
| 43 } | 32 } |
| 44 | 33 |
| 45 ::content /deep/ .blue-button { | 34 ::content /deep/ .blue-button { |
| 46 background-color: rgb(66, 133, 244); | 35 background-color: rgb(66, 133, 244); |
| 47 color: rgb(255, 255, 255); | 36 color: rgb(255, 255, 255); |
| 48 min-width: 88px | 37 min-width: 90px; |
| 49 } | 38 } |
| 50 | 39 |
| 51 ::content /deep/ .link-button { | 40 ::content /deep/ .link-button { |
| 52 color: rgb(66, 133, 244); | 41 color: rgb(66, 133, 244); |
| 53 font-size: 14px; | 42 font-size: 14px; |
| 54 margin: 0; | 43 margin: 0; |
| 55 text-align: left; | 44 text-align: left; |
| 56 text-transform: none; | 45 text-transform: none; |
| 57 } | 46 } |
| 58 | 47 |
| 59 ::content /deep/ .link-button:focus { | 48 ::content /deep/ .link-button:focus { |
| 60 background: rgb(217, 221, 234); | 49 background: rgb(217, 221, 234); |
| 61 } | 50 } |
| 62 | 51 |
| 63 ::content /deep/ .link-button::shadow .button-content { | 52 ::content /deep/ .link-button::shadow .button-content { |
| 64 padding: 0; | 53 padding: 0; |
| 65 } | 54 } |
| 66 | 55 |
| 67 ::content /deep/ p.gaia-body-text { | 56 ::content /deep/ p.gaia-body-text { |
| 68 color: rgb(0, 0, 0); | 57 color: rgba(0, 0, 0, 0.87); |
| 58 font-size: 14px; |
| 59 margin: 0; |
| 60 } |
| 61 |
| 62 ::content /deep/ p.email, |
| 63 ::content /deep/ p.enterprise-info { |
| 64 color: rgb(255, 255, 255); |
| 69 font-size: 15px; | 65 font-size: 15px; |
| 66 margin: 8px 0 0 0; |
| 67 } |
| 68 |
| 69 ::content /deep/ h1.welcome-message { |
| 70 color: rgb(255, 255, 255); |
| 71 font-size: 20px; |
| 72 font-weight: normal; |
| 73 margin-bottom: 0; |
| 70 } | 74 } |
| 71 | 75 |
| 72 #bottom-overlay { | 76 #bottom-overlay { |
| 73 background-color: rgba(0, 0, 0, 0.5); | 77 background-color: rgba(0, 0, 0, 0.5); |
| 74 display: none; | 78 display: none; |
| 75 height: 100%; | 79 height: 100%; |
| 76 position: absolute; | 80 position: absolute; |
| 77 right: 0; | 81 right: 0; |
| 78 top: 0; | 82 top: 0; |
| 79 width: 100%; | 83 width: 100%; |
| 80 z-index: 11; | 84 z-index: 11; |
| 81 } | 85 } |
| 82 | 86 |
| 83 #progress-bar { | 87 #progress-bar { |
| 84 display: none; | 88 display: none; |
| 85 width: 100%; | 89 width: 100%; |
| 86 } | 90 } |
| 87 | 91 |
| 88 #progress-bar::shadow #activeProgress { | 92 #progress-bar::shadow #activeProgress { |
| 89 background-color: rgb(255, 184, 9); | 93 background-color: rgb(255, 184, 9); |
| 90 } | 94 } |
| 91 | 95 |
| 92 :host(.disabled) #bottom-overlay, | 96 :host(.disabled) #bottom-overlay, |
| 93 :host(.disabled) #progress-bar { | 97 :host(.disabled) #progress-bar { |
| 94 display: block; | 98 display: block; |
| 95 } | 99 } |
| OLD | NEW |