| OLD | NEW |
| (Empty) | |
| 1 /* Copyright (c) 2013 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 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js |
| 7 * that are needed by the desktop user chooser screen |
| 8 */ |
| 9 #login-header-bar { |
| 10 -webkit-padding-after: 7px; |
| 11 bottom: 0; |
| 12 left: 0; |
| 13 position: absolute; |
| 14 right: 0; |
| 15 } |
| 16 |
| 17 #login-header-bar { |
| 18 -webkit-padding-before: 7px; |
| 19 } |
| 20 |
| 21 .header-bar-item:first-child { |
| 22 -webkit-padding-start: 15px; |
| 23 } |
| 24 |
| 25 .header-bar-item { |
| 26 display: inline-block; |
| 27 height: 34px; |
| 28 } |
| 29 |
| 30 html[dir=rtl] .header-bar-item { |
| 31 background-position: right center; |
| 32 } |
| 33 |
| 34 html[dir=rtl] #login-header-bar button { |
| 35 background-position: right center; |
| 36 } |
| 37 |
| 38 #login-header-bar #add-user-button { |
| 39 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE'); |
| 40 } |
| 41 |
| 42 #login-header-bar #guest-user-button { |
| 43 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE'); |
| 44 } |
| 45 |
| 46 #login-header-bar button { |
| 47 -webkit-padding-start: 24px; |
| 48 background-position: left center; |
| 49 background-repeat: no-repeat; |
| 50 background-size: 24px; |
| 51 } |
| OLD | NEW |