Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(931)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.css

Issue 1133733003: Unified icon-buttons used in the new GAIA flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fixes. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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);
michaelpg 2015/05/08 22:02:23 same nits
dzhioev (left Google) 2015/05/08 22:29:03 Done.
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 {
(...skipping 11 matching lines...) Expand all
163 border-color: black; 173 border-color: black;
164 font-size: 16px; 174 font-size: 16px;
165 position: relative; 175 position: relative;
166 width: 250px; 176 width: 250px;
167 } 177 }
168 178
169 .oauth-enroll-textbox.auth-enroll-attribute-label { 179 .oauth-enroll-textbox.auth-enroll-attribute-label {
170 display: inline; 180 display: inline;
171 position: relative; 181 position: relative;
172 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698