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 #oauth-enrollment { | 6 #oauth-enrollment { |
7 height: 528px; | 7 height: 528px; |
8 padding: 0; | 8 padding: 0; |
9 width: 448px; | 9 width: 448px; |
10 } | 10 } |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 #oauth-enrollment:not(.saml) #oauth-saml-notice-container { | 115 #oauth-enrollment:not(.saml) #oauth-saml-notice-container { |
116 display: none; | 116 display: none; |
117 } | 117 } |
118 | 118 |
119 #oauth-saml-notice-message { | 119 #oauth-saml-notice-message { |
120 color: rgb(106, 106, 106); | 120 color: rgb(106, 106, 106); |
121 font-size: 13px; | 121 font-size: 13px; |
122 margin: 0 auto; | 122 margin: 0 auto; |
123 } | 123 } |
124 | 124 |
| 125 #oauth-enroll-cancel-button, |
| 126 #oauth-enroll-back-button { |
| 127 position: absolute; |
| 128 top: 10px; |
| 129 } |
| 130 |
125 #oauth-enroll-cancel-button { | 131 #oauth-enroll-cancel-button { |
126 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); | 132 color: rgba(0, 0, 0, .54); |
127 right: 10px; | 133 right: 10px; |
128 } | 134 } |
129 | 135 |
130 html[dir=rtl] #oauth-enroll-cancel-button { | 136 html[dir=rtl] #oauth-enroll-cancel-button { |
131 left: 10px; | 137 left: 10px; |
132 right: auto; | 138 right: auto; |
133 } | 139 } |
134 | 140 |
| 141 #oauth-enrollment.saml #oauth-enroll-cancel-button { |
| 142 color: rgba(0, 0, 0, .54); |
| 143 } |
| 144 |
135 .oauth-enroll-state-signin #oauth-enroll-cancel-button, | 145 .oauth-enroll-state-signin #oauth-enroll-cancel-button, |
136 .oauth-enroll-state-working #oauth-enroll-cancel-button { | 146 .oauth-enroll-state-working #oauth-enroll-cancel-button { |
137 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON); | 147 color: white; |
138 } | 148 } |
139 | 149 |
140 #oauth-enroll-back-button { | 150 #oauth-enroll-back-button { |
141 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); | 151 color: white; |
142 left: 10px; | 152 left: 10px; |
143 } | 153 } |
144 | 154 |
145 html[dir=rtl] #oauth-enroll-back-button { | 155 html[dir=rtl] #oauth-enroll-back-button { |
146 -webkit-transform: scaleX(-1); | 156 -webkit-transform: scaleX(-1); |
147 left: auto; | 157 left: auto; |
148 right: 10px; | 158 right: 10px; |
149 } | 159 } |
150 | 160 |
151 #oauth-enrollment.saml #oauth-enroll-back-button { | 161 #oauth-enrollment.saml #oauth-enroll-back-button { |
152 display: none; | 162 display: none; |
153 } | 163 } |
154 | 164 |
155 #oauth-enroll-attribute-prompt-message { | 165 #oauth-enroll-attribute-prompt-message { |
156 color: black; | 166 color: black; |
157 } | 167 } |
OLD | NEW |