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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 } | 131 } |
132 | 132 |
133 #oauth-saml-notice-message { | 133 #oauth-saml-notice-message { |
134 color: rgb(106, 106, 106); | 134 color: rgb(106, 106, 106); |
135 font-size: 13px; | 135 font-size: 13px; |
136 margin: 0 auto; | 136 margin: 0 auto; |
137 } | 137 } |
138 | 138 |
139 #oauth-enroll-cancel-button { | 139 #oauth-enroll-cancel-button { |
140 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON); | 140 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON); |
141 right: 0; | 141 right: 10px; |
142 } | 142 } |
143 | 143 |
144 html[dir=rtl] #oauth-enroll-cancel-button { | 144 html[dir=rtl] #oauth-enroll-cancel-button { |
145 left: 0; | 145 left: 10px; |
146 right: auto; | 146 right: auto; |
147 } | 147 } |
148 | 148 |
149 #oauth-enrollment.saml #oauth-enroll-cancel-button { | 149 #oauth-enrollment.saml #oauth-enroll-cancel-button { |
150 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); | 150 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); |
151 } | 151 } |
152 | 152 |
153 #oauth-enroll-cancel-button:hover { | |
154 cursor: pointer; | |
155 } | |
156 | |
157 #oauth-enroll-back-button { | 153 #oauth-enroll-back-button { |
158 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); | 154 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); |
159 left: 0; | 155 left: 10px; |
160 } | 156 } |
161 | 157 |
162 html[dir=rtl] #oauth-enroll-back-button { | 158 html[dir=rtl] #oauth-enroll-back-button { |
163 -webkit-transform: scaleX(-1); | 159 -webkit-transform: scaleX(-1); |
164 left: auto; | 160 left: auto; |
165 right: 0; | 161 right: 10px; |
166 } | 162 } |
167 | 163 |
168 #oauth-enrollment.saml #oauth-enroll-back-button { | 164 #oauth-enrollment.saml #oauth-enroll-back-button { |
169 display: none; | 165 display: none; |
170 } | 166 } |
171 | 167 |
172 #oauth-enroll-back-button:hover { | |
173 cursor: pointer; | |
174 } | |
175 | |
176 .oauth-enroll-textbox { | 168 .oauth-enroll-textbox { |
177 display: inline-block; | 169 display: inline-block; |
178 position: relative; | 170 position: relative; |
179 top: 10px; | 171 top: 10px; |
180 vertical-align: top; | 172 vertical-align: top; |
181 } | 173 } |
182 | 174 |
183 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { | 175 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { |
184 border-color: black; | 176 border-color: black; |
185 font-size: 16px; | 177 font-size: 16px; |
186 position: relative; | 178 position: relative; |
187 width: 250px; | 179 width: 250px; |
188 } | 180 } |
189 | 181 |
190 .oauth-enroll-textbox.auth-enroll-attribute-label { | 182 .oauth-enroll-textbox.auth-enroll-attribute-label { |
191 display: inline; | 183 display: inline; |
192 position: relative; | 184 position: relative; |
193 } | 185 } |
OLD | NEW |