| OLD | NEW |
| (Empty) | |
| 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 |
| 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 background-image: none; |
| 11 } |
| 12 |
| 13 #login-header-bar button, |
| 14 #login-header-bar button:active, |
| 15 #login-header-bar button:focus, |
| 16 #login-header-bar button:hover { |
| 17 -webkit-box-shadow: none; |
| 18 background: transparent none; |
| 19 border: none; |
| 20 border-radius: 3px; |
| 21 cursor: pointer; |
| 22 height: 34px; |
| 23 margin: 0; |
| 24 min-width: 0; |
| 25 opacity: 0.6; |
| 26 padding: 5px 8px; |
| 27 vertical-align: middle; |
| 28 } |
| 29 |
| 30 #login-header-bar #add-user-button { |
| 31 background-color: #505050; |
| 32 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE'); |
| 33 } |
| 34 |
| 35 #login-header-bar #guest-user-button { |
| 36 background-color: #505050; |
| 37 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE'); |
| 38 } |
| OLD | NEW |