| 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: 609px; | 7 height: 609px; |
| 8 padding: 0; | 8 padding: 0; |
| 9 width: 522px; | 9 width: 522px; |
| 10 } | 10 } |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 html[dir=rtl] #oauth-enroll-cancel-button { | 152 html[dir=rtl] #oauth-enroll-cancel-button { |
| 153 left: 15px; | 153 left: 15px; |
| 154 right: auto; | 154 right: auto; |
| 155 } | 155 } |
| 156 | 156 |
| 157 #oauth-enrollment.saml #oauth-enroll-cancel-button { | 157 #oauth-enrollment.saml #oauth-enroll-cancel-button { |
| 158 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); | 158 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); |
| 159 } | 159 } |
| 160 | 160 |
| 161 #oauth-enroll-cancel-button:hover { |
| 162 cursor: pointer; |
| 163 } |
| 164 |
| 161 #oauth-enroll-back-button { | 165 #oauth-enroll-back-button { |
| 162 background: transparent none; | 166 background: transparent none; |
| 163 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); | 167 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); |
| 164 background-position: center; | 168 background-position: center; |
| 165 background-repeat: no-repeat; | 169 background-repeat: no-repeat; |
| 166 height: 18px; | 170 height: 18px; |
| 167 left: 14px; | 171 left: 14px; |
| 168 position: absolute; | 172 position: absolute; |
| 169 top: 14px; | 173 top: 14px; |
| 170 width: 18px; | 174 width: 18px; |
| 171 z-index: 1; | 175 z-index: 1; |
| 172 } | 176 } |
| 173 | 177 |
| 174 html[dir=rtl] #oauth-enroll-back-button { | 178 html[dir=rtl] #oauth-enroll-back-button { |
| 175 -webkit-transform: scaleX(-1); | 179 -webkit-transform: scaleX(-1); |
| 176 left: auto; | 180 left: auto; |
| 177 right: 14px; | 181 right: 14px; |
| 178 } | 182 } |
| 179 | 183 |
| 180 #oauth-enrollment.saml #oauth-enroll-back-button { | 184 #oauth-enrollment.saml #oauth-enroll-back-button { |
| 181 display: none; | 185 display: none; |
| 182 } | 186 } |
| 183 | 187 |
| 188 #oauth-enroll-back-button:hover { |
| 189 cursor: pointer; |
| 190 } |
| 191 |
| 184 .oauth-enroll-textbox { | 192 .oauth-enroll-textbox { |
| 185 display: inline-block; | 193 display: inline-block; |
| 186 position: relative; | 194 position: relative; |
| 187 top: 10px; | 195 top: 10px; |
| 188 vertical-align: top; | 196 vertical-align: top; |
| 189 } | 197 } |
| 190 | 198 |
| 191 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { | 199 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { |
| 192 border-color: black; | 200 border-color: black; |
| 193 font-size: 16px; | 201 font-size: 16px; |
| 194 position: relative; | 202 position: relative; |
| 195 width: 250px; | 203 width: 250px; |
| 196 } | 204 } |
| 197 | 205 |
| 198 .oauth-enroll-textbox.auth-enroll-attribute-label { | 206 .oauth-enroll-textbox.auth-enroll-attribute-label { |
| 199 display: inline; | 207 display: inline; |
| 200 position: relative; | 208 position: relative; |
| 201 } | 209 } |
| OLD | NEW |