OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #login-header-bar { |
| 7 padding: 5px 8px; |
| 8 } |
| 9 |
| 10 #login-header-bar button, |
| 11 #login-header-bar button:active, |
| 12 #login-header-bar button:focus, |
| 13 #login-header-bar button:hover { |
| 14 -webkit-box-shadow: none; |
| 15 background: transparent none; |
| 16 border: 0; |
| 17 color: #666; |
| 18 cursor: pointer; |
| 19 height: 24px; |
| 20 margin: 0; |
| 21 min-width: 0; |
| 22 padding: 0; |
| 23 vertical-align: middle; |
| 24 } |
| 25 |
| 26 .header-bar-item { |
| 27 -webkit-padding-start: 15px; |
| 28 background-image: url('chrome://theme/IDR_DIVIDER_VERT'); |
| 29 background-position: left center; |
| 30 background-repeat: no-repeat; |
| 31 display: inline-block; |
| 32 height: 24px; |
| 33 } |
| 34 |
| 35 #login-header-bar #shutdown-button { |
| 36 -webkit-padding-start: 24px; |
| 37 background-image: url('chrome://theme/IDR_ICON_POWER20'); |
| 38 background-position: left center; |
| 39 background-repeat: no-repeat; |
| 40 } |
| 41 |
| 42 #login-header-bar #add-user-button { |
| 43 -webkit-padding-start: 24px; |
| 44 background-image: url('chrome://theme/IDR_ICON_ADD_USER20'); |
| 45 background-position: left center; |
| 46 background-repeat: no-repeat; |
| 47 } |
| 48 |
| 49 html[dir=rtl] .header-bar-item, |
| 50 html[dir=rtl] #login-header-bar #shutdown-button, |
| 51 html[dir=rtl] #login-header-bar #add-user-button { |
| 52 background-position: right center; |
| 53 } |
OLD | NEW |