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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 display: inline-block; | 62 display: inline-block; |
63 height: 34px; | 63 height: 34px; |
64 } | 64 } |
65 | 65 |
66 html[dir=rtl] .header-bar-item { | 66 html[dir=rtl] .header-bar-item { |
67 background-position: right center; | 67 background-position: right center; |
68 } | 68 } |
69 | 69 |
70 #login-header-bar #shutdown-button, | 70 #login-header-bar #shutdown-button, |
71 #login-header-bar #add-user-button, | 71 #login-header-bar #add-user-button, |
72 #login-header-bar #guest-user-button { | 72 #login-header-bar #guest-user-button, |
| 73 #login-header-bar #cancel-multiple-sign-in-button { |
73 -webkit-padding-start: 24px; | 74 -webkit-padding-start: 24px; |
74 background-position: left center; | 75 background-position: left center; |
75 background-repeat: no-repeat; | 76 background-repeat: no-repeat; |
76 background-size: 24px; | 77 background-size: 24px; |
77 } | 78 } |
78 | 79 |
79 html[dir=rtl] #login-header-bar #shutdown-button, | 80 html[dir=rtl] #login-header-bar #shutdown-button, |
80 html[dir=rtl] #login-header-bar #add-user-button, | 81 html[dir=rtl] #login-header-bar #add-user-button, |
81 html[dir=rtl] #login-header-bar #guest-user-button { | 82 html[dir=rtl] #login-header-bar #guest-user-button, |
| 83 html[dir=rtl] #login-header-bar #cancel-multiple-sign-in-button { |
82 background-position: right center; | 84 background-position: right center; |
83 } | 85 } |
84 | 86 |
85 #login-header-bar #shutdown-button { | 87 #login-header-bar #shutdown-button { |
86 background-image: url('chrome://theme/IDR_ICON_POWER_WHITE'); | 88 background-image: url('chrome://theme/IDR_ICON_POWER_WHITE'); |
87 } | 89 } |
88 | 90 |
89 #login-header-bar #add-user-button { | 91 #login-header-bar #add-user-button { |
90 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE'); | 92 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE'); |
91 } | 93 } |
92 | 94 |
93 #login-header-bar #guest-user-button { | 95 #login-header-bar #guest-user-button { |
94 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE'); | 96 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE'); |
95 } | 97 } |
96 | 98 |
| 99 #login-header-bar #cancel-multiple-sign-in-button { |
| 100 /* TODO(dzhioev): replace with appropriate image when possible. */ |
| 101 background-image: url('chrome://theme/IDR_PANEL_CLOSE'); |
| 102 } |
| 103 |
97 .button-restricted { | 104 .button-restricted { |
98 border: 1px solid transparent; | 105 border: 1px solid transparent; |
99 color: white !important; | 106 color: white !important; |
100 opacity: 0.4 !important; | 107 opacity: 0.4 !important; |
101 } | 108 } |
OLD | NEW |