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

Side by Side Diff: ui/login/oobe.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: Rebased onto ToT. 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
« no previous file with comments | « chrome/browser/resources/chromeos/login/screen_gaia_signin.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow,
6 * sign in and lock screens. 6 * sign in and lock screens.
7 */ 7 */
8 8
9 html, 9 html,
10 body { 10 body {
(...skipping 16 matching lines...) Expand all
27 background-color: white; 27 background-color: white;
28 } 28 }
29 29
30 button { 30 button {
31 font-family: inherit; 31 font-family: inherit;
32 outline: none; 32 outline: none;
33 } 33 }
34 34
35 /* Follow same focus coloring as in widgets.css */ 35 /* Follow same focus coloring as in widgets.css */
36 /* Do not apply this style to restricted button state. */ 36 /* Do not apply this style to restricted button state. */
37 button.custom-appearance:not(.button-restricted):not(.button-fancy) { 37 button.custom-appearance:not(.button-restricted):not(.button-fancy):not(
38 [is="gaia-icon-button"]) {
38 -webkit-transition: border-color 200ms; 39 -webkit-transition: border-color 200ms;
39 border: 1px solid transparent; 40 border: 1px solid transparent;
40 /* Don't grey out disabled buttons. */ 41 /* Don't grey out disabled buttons. */
41 color: buttontext !important; 42 color: buttontext !important;
42 } 43 }
43 44
44 /* ':focus' used twice to increase specificity. */ 45 /* ':focus' used three times to increase specificity. */
45 button.custom-appearance:focus:focus { 46 button.custom-appearance:focus:focus:focus {
46 border-color: rgb(77, 144, 254); 47 border-color: rgb(77, 144, 254);
47 } 48 }
48 49
49 button:not(.custom-appearance) { 50 button:not(.custom-appearance) {
50 min-width: 72px !important; 51 min-width: 72px !important;
51 } 52 }
52 53
53 button.button-fancy { 54 button.button-fancy {
54 min-width: 72px !important; 55 min-width: 72px !important;
55 } 56 }
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 180
180 @-webkit-keyframes throbber-animation { 181 @-webkit-keyframes throbber-animation {
181 from { 182 from {
182 background-position: 0; 183 background-position: 0;
183 } 184 }
184 to { 185 to {
185 background-position: -576px; 186 background-position: -576px;
186 } 187 }
187 } 188 }
188 189
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/screen_gaia_signin.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698