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 #login-header-bar { | 5 #login-header-bar { |
6 -webkit-padding-start: 15px; | 6 -webkit-padding-start: 15px; |
7 bottom: 0; | 7 bottom: 0; |
8 left: 0; | 8 left: 0; |
| 9 min-height: 34px; /* Should be consistent with .header-bar-item's height. */ |
9 padding-bottom: 6px; | 10 padding-bottom: 6px; |
10 position: absolute; | 11 position: absolute; |
11 right: 0; | 12 right: 0; |
12 } | 13 } |
13 | 14 |
14 #login-header-bar { | 15 #login-header-bar { |
15 background-color: rgba(0, 0, 0, 0.6); | 16 background-color: rgba(0, 0, 0, 0.6); |
16 padding-top: 7px; | 17 padding-top: 7px; |
17 } | 18 } |
18 | 19 |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 background-image: -webkit-image-set( | 160 background-image: -webkit-image-set( |
160 url(images/1x/signout.svg) 1x, | 161 url(images/1x/signout.svg) 1x, |
161 url(images/2x/signout.svg) 2x ); | 162 url(images/2x/signout.svg) 2x ); |
162 } | 163 } |
163 | 164 |
164 .button-restricted { | 165 .button-restricted { |
165 border: 1px solid transparent; | 166 border: 1px solid transparent; |
166 color: white !important; | 167 color: white !important; |
167 opacity: 0.4 !important; | 168 opacity: 0.4 !important; |
168 } | 169 } |
OLD | NEW |