OLD | NEW |
---|---|
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 Loading... | |
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([is="gai a-icon-button"]) { |
Greg Levin
2015/05/08 19:18:07
This change (?) has removed the blue focus rectang
dzhioev (left Google)
2015/05/08 21:15:45
Nice catch! Adding attribute selector increased th
michaelpg
2015/05/08 22:02:22
I don't think we technically have a line length li
dzhioev (left Google)
2015/05/08 22:29:02
We do have a limit, 80 characters as usual.
michaelpg
2015/05/08 22:33:39
Ah ok. Can you point me to the style guide?
Greg Levin
2015/05/11 14:33:50
I don't really know css syntax, but experimentally
dzhioev (left Google)
2015/05/11 23:05:58
Done, split line after ":not("
| |
38 -webkit-transition: border-color 200ms; | 38 -webkit-transition: border-color 200ms; |
39 border: 1px solid transparent; | 39 border: 1px solid transparent; |
40 /* Don't grey out disabled buttons. */ | 40 /* Don't grey out disabled buttons. */ |
41 color: buttontext !important; | 41 color: buttontext !important; |
42 } | 42 } |
43 | 43 |
44 /* ':focus' used twice to increase specificity. */ | 44 /* ':focus' used twice to increase specificity. */ |
45 button.custom-appearance:focus:focus { | 45 button.custom-appearance:focus:focus { |
46 border-color: rgb(77, 144, 254); | 46 border-color: rgb(77, 144, 254); |
47 } | 47 } |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
179 | 179 |
180 @-webkit-keyframes throbber-animation { | 180 @-webkit-keyframes throbber-animation { |
181 from { | 181 from { |
182 background-position: 0; | 182 background-position: 0; |
183 } | 183 } |
184 to { | 184 to { |
185 background-position: -576px; | 185 background-position: -576px; |
186 } | 186 } |
187 } | 187 } |
188 | 188 |
OLD | NEW |