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; | |
8 border-bottom: 3px solid black; | 7 border-bottom: 3px solid black; |
9 bottom: 0; | 8 bottom: 0; |
10 left: 0; | 9 left: 0; |
| 10 padding-bottom: 7px; |
11 position: absolute; | 11 position: absolute; |
12 right: 0; | 12 right: 0; |
13 } | 13 } |
14 | 14 |
15 #login-header-bar { | 15 #login-header-bar { |
16 -webkit-padding-before: 7px; | |
17 /* 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. |
18 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. |
19 Have to position background differently so that opacity is not applied | 18 Have to position background differently so that opacity is not applied |
20 to child elements. */ | 19 to child elements. */ |
21 background-image: url('chrome://theme/IDR_LAUNCHER_BACKGROUND'); | 20 background-image: url('chrome://theme/IDR_LAUNCHER_BACKGROUND'); |
| 21 padding-top: 7px; |
22 } | 22 } |
23 | 23 |
24 html[screen=lock] .login-header-bar-hidden, | 24 html[screen=lock] .login-header-bar-hidden, |
25 html[screen=oobe] .login-header-bar-hidden { | 25 html[screen=oobe] .login-header-bar-hidden { |
26 opacity: 0; | 26 opacity: 0; |
27 } | 27 } |
28 | 28 |
29 html[screen=lock] .login-header-bar-animate-fast, | 29 html[screen=lock] .login-header-bar-animate-fast, |
30 html[screen=oobe] .login-header-bar-animate-fast { | 30 html[screen=oobe] .login-header-bar-animate-fast { |
31 -webkit-transition: opacity 200ms ease-out; | 31 -webkit-transition: opacity 200ms ease-out; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 #login-header-bar #cancel-multiple-sign-in-button { | 104 #login-header-bar #cancel-multiple-sign-in-button { |
105 /* TODO(dzhioev): replace with appropriate image when possible. */ | 105 /* TODO(dzhioev): replace with appropriate image when possible. */ |
106 background-image: url('chrome://theme/IDR_PANEL_CLOSE'); | 106 background-image: url('chrome://theme/IDR_PANEL_CLOSE'); |
107 } | 107 } |
108 | 108 |
109 .button-restricted { | 109 .button-restricted { |
110 border: 1px solid transparent; | 110 border: 1px solid transparent; |
111 color: white !important; | 111 color: white !important; |
112 opacity: 0.4 !important; | 112 opacity: 0.4 !important; |
113 } | 113 } |
OLD | NEW |