OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 #oauth-enrollment { | 6 #oauth-enrollment { |
7 min-height: 609px; | 7 min-height: 609px; |
8 padding: 70px 17px 21px; | 8 padding: 70px 17px 21px; |
9 width: 722px; | 9 width: 722px; |
10 } | 10 } |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 text-decoration: underline; | 83 text-decoration: underline; |
84 } | 84 } |
85 | 85 |
86 #oobe.oauth-enrollment #header-oauth-enrollment { | 86 #oobe.oauth-enrollment #header-oauth-enrollment { |
87 display: block; | 87 display: block; |
88 } | 88 } |
89 | 89 |
90 #oauth-enrollment .step-contents { | 90 #oauth-enrollment .step-contents { |
91 -webkit-margin-after: 10px; | 91 -webkit-margin-after: 10px; |
92 } | 92 } |
| 93 |
| 94 #oauth-saml-notice-container { |
| 95 left: 0; |
| 96 position: absolute; |
| 97 right: 0; |
| 98 text-align: center; |
| 99 top: 62px; |
| 100 } |
| 101 |
| 102 #oauth-enrollment.saml { |
| 103 padding: 97px 0 21px; |
| 104 } |
| 105 |
| 106 #oauth-enrollment.saml #oauth-enroll-signin-frame { |
| 107 height: 444px; |
| 108 } |
| 109 |
| 110 #oauth-enrollment.saml #oauth-enrollment-controls, |
| 111 #oauth-enrollment.saml #oauth-enroll-signin-link-container { |
| 112 -webkit-padding-end: 17px; |
| 113 } |
| 114 |
| 115 #oauth-enrollment:not(.saml) #oauth-saml-notice-container { |
| 116 display: none; |
| 117 } |
| 118 |
| 119 #oauth-saml-notice-message { |
| 120 margin: 0 auto; |
| 121 } |
OLD | NEW |