| 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 padding-bottom: 6px; | 9 padding-bottom: 6px; |
| 10 position: absolute; | 10 position: absolute; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 url(images/2x/more-settings.svg) 2x ); | 141 url(images/2x/more-settings.svg) 2x ); |
| 142 } | 142 } |
| 143 | 143 |
| 144 #login-header-bar #guest-user-button-text { | 144 #login-header-bar #guest-user-button-text { |
| 145 background-image: -webkit-image-set( | 145 background-image: -webkit-image-set( |
| 146 url(images/1x/browse-as-guest.svg) 1x, | 146 url(images/1x/browse-as-guest.svg) 1x, |
| 147 url(images/2x/browse-as-guest.svg) 2x ); | 147 url(images/2x/browse-as-guest.svg) 2x ); |
| 148 } | 148 } |
| 149 | 149 |
| 150 #login-header-bar #cancel-multiple-sign-in-button-text { | 150 #login-header-bar #cancel-multiple-sign-in-button-text { |
| 151 /* TODO(dzhioev): replace with appropriate image when possible. */ | 151 background-image: -webkit-image-set( |
| 152 background-image: url(chrome://theme/IDR_PANEL_CLOSE); | 152 url(images/1x/cancel.svg) 1x, |
| 153 url(images/2x/cancel.svg) 2x ); |
| 153 } | 154 } |
| 154 | 155 |
| 155 #login-header-bar #sign-out-user-button-text { | 156 #login-header-bar #sign-out-user-button-text { |
| 156 background-image: -webkit-image-set( | 157 background-image: -webkit-image-set( |
| 157 url(images/1x/signout.svg) 1x, | 158 url(images/1x/signout.svg) 1x, |
| 158 url(images/2x/signout.svg) 2x ); | 159 url(images/2x/signout.svg) 2x ); |
| 159 } | 160 } |
| 160 | 161 |
| 161 .button-restricted { | 162 .button-restricted { |
| 162 border: 1px solid transparent; | 163 border: 1px solid transparent; |
| 163 color: white !important; | 164 color: white !important; |
| 164 opacity: 0.4 !important; | 165 opacity: 0.4 !important; |
| 165 } | 166 } |
| OLD | NEW |