OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #login-header-bar { | 6 #login-header-bar { |
7 -webkit-padding-after: 7px; | 7 -webkit-padding-after: 7px; |
8 bottom: 0; | 8 bottom: 0; |
9 left: 0; | 9 left: 0; |
10 position: absolute; | 10 position: absolute; |
11 right: 0; | 11 right: 0; |
12 } | 12 } |
13 | 13 |
14 #login-header-bar { | 14 #login-header-bar { |
15 -webkit-padding-before: 7px; | 15 -webkit-padding-before: 7px; |
16 /* Using copy of Ash launcher background with 0.8 opacity applied to it. | 16 /* Using copy of Ash launcher background with 0.8 opacity applied to it. |
17 Otherwise if opacity: 0.8 is set here it will affect button text as well. | 17 Otherwise if opacity: 0.8 is set here it will affect button text as well. |
18 Have to position background differently so that opacity is not applied | 18 Have to position background differently so that opacity is not applied |
19 to child elements. */ | 19 to child elements. */ |
20 background-image: url('chrome://theme/IDR_LAUNCHER_BACKGROUND'); | 20 background-image: url('chrome://theme/IDR_LAUNCHER_BACKGROUND'); |
21 } | 21 } |
22 | 22 |
23 html[screen=lock][lockanimations=new] .login-header-bar-hidden { | 23 html[screen=lock] .login-header-bar-hidden { |
24 opacity: 0; | 24 opacity: 0; |
25 } | 25 } |
26 html[screen=lock][lockanimations=new] .login-header-bar-animate-fast { | 26 html[screen=lock] .login-header-bar-animate-fast { |
27 -webkit-transition: opacity 200ms ease-out; | 27 -webkit-transition: opacity 200ms ease-out; |
28 } | 28 } |
29 | 29 |
30 html[screen=lock][lockanimations=new] .login-header-bar-animate-slow { | 30 html[screen=lock] .login-header-bar-animate-slow { |
31 -webkit-transition: opacity 2s ease-out; | 31 -webkit-transition: opacity 2s ease-out; |
32 } | 32 } |
33 | 33 |
34 .header-bar-item:first-child { | 34 .header-bar-item:first-child { |
35 -webkit-padding-start: 15px; | 35 -webkit-padding-start: 15px; |
36 } | 36 } |
37 | 37 |
38 #login-header-bar button, | 38 #login-header-bar button, |
39 #login-header-bar button:active, | 39 #login-header-bar button:active, |
40 #login-header-bar button:focus, | 40 #login-header-bar button:focus, |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 #login-header-bar #cancel-multiple-sign-in-button { | 99 #login-header-bar #cancel-multiple-sign-in-button { |
100 /* TODO(dzhioev): replace with appropriate image when possible. */ | 100 /* TODO(dzhioev): replace with appropriate image when possible. */ |
101 background-image: url('chrome://theme/IDR_PANEL_CLOSE'); | 101 background-image: url('chrome://theme/IDR_PANEL_CLOSE'); |
102 } | 102 } |
103 | 103 |
104 .button-restricted { | 104 .button-restricted { |
105 border: 1px solid transparent; | 105 border: 1px solid transparent; |
106 color: white !important; | 106 color: white !important; |
107 opacity: 0.4 !important; | 107 opacity: 0.4 !important; |
108 } | 108 } |
OLD | NEW |