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; | 7 -webkit-padding-after: 7px; |
8 bottom: 0; | 8 bottom: 0; |
9 left: 0; | 9 left: 0; |
10 position: absolute; | 10 position: absolute; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 html[dir=rtl] #login-header-bar #add-user-button { | 80 html[dir=rtl] #login-header-bar #add-user-button { |
81 background-position: right center; | 81 background-position: right center; |
82 } | 82 } |
83 | 83 |
84 #login-header-bar #shutdown-button { | 84 #login-header-bar #shutdown-button { |
85 background-image: url('chrome://theme/IDR_ICON_POWER24'); | 85 background-image: url('chrome://theme/IDR_ICON_POWER24'); |
86 background-size: 24px; | 86 background-size: 24px; |
87 } | 87 } |
88 | 88 |
89 html[oobe=new] #login-header-bar #shutdown-button { | 89 html[oobe=new] #login-header-bar #shutdown-button { |
90 background-image: url('chrome://theme/IDR_ICON_POWER24_WHITE'); | 90 background-image: -webkit-image-set( |
| 91 url('chrome://theme/IDR_ICON_POWER_WHITE') 1x, |
| 92 url('chrome://theme/IDR_ICON_POWER_WHITE@2x') 2x); |
91 } | 93 } |
92 | 94 |
93 #login-header-bar #add-user-button { | 95 #login-header-bar #add-user-button { |
94 background-image: url('chrome://theme/IDR_ICON_ADD_USER24'); | 96 background-image: url('chrome://theme/IDR_ICON_ADD_USER24'); |
95 background-size: 24px; | 97 background-size: 24px; |
96 } | 98 } |
97 | 99 |
98 html[oobe=new] #login-header-bar #add-user-button { | 100 html[oobe=new] #login-header-bar #add-user-button { |
99 background-image: url('chrome://theme/IDR_ICON_ADD_USER24_WHITE'); | 101 background-image: -webkit-image-set( |
| 102 url('chrome://theme/IDR_ICON_ADD_USER_WHITE') 1x, |
| 103 url('chrome://theme/IDR_ICON_ADD_USER_WHITE@2x') 2x); |
100 } | 104 } |
OLD | NEW |