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-start: 15px; | 7 -webkit-padding-start: 15px; |
8 border-bottom: 3px solid black; | 8 border-bottom: 3px solid black; |
9 bottom: 0; | 9 bottom: 0; |
10 left: 0; | 10 left: 0; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #login-header-bar button:hover:not(.button-restricted) { | 58 #login-header-bar button:hover:not(.button-restricted) { |
59 color: white !important; | 59 color: white !important; |
60 opacity: 1 !important; | 60 opacity: 1 !important; |
61 } | 61 } |
62 | 62 |
63 .header-bar-item { | 63 .header-bar-item { |
64 display: inline-block; | 64 display: inline-block; |
65 height: 34px; | 65 height: 34px; |
66 } | 66 } |
67 | 67 |
| 68 .add-supervised-user-menu { |
| 69 display: none; |
| 70 } |
| 71 |
| 72 #more-settings-header-bar-item.active .add-supervised-user-menu { |
| 73 background-color: white; |
| 74 border: 1px solid lightgray; |
| 75 border-radius: 2px; |
| 76 bottom: 15px; |
| 77 display: block; |
| 78 font-size: 13px; |
| 79 left: 15px; |
| 80 position: absolute; |
| 81 width: 220px; |
| 82 } |
| 83 |
68 html[dir=rtl] .header-bar-item { | 84 html[dir=rtl] .header-bar-item { |
69 background-position: right center; | 85 background-position: right center; |
70 } | 86 } |
71 | 87 |
72 #login-header-bar #shutdown-button, | 88 #login-header-bar #shutdown-button, |
73 #login-header-bar #restart-button, | 89 #login-header-bar #restart-button, |
74 #login-header-bar #add-user-button, | 90 #login-header-bar #add-user-button, |
75 #login-header-bar #guest-user-button, | 91 #login-header-bar #guest-user-button, |
| 92 #login-header-bar #more-settings-button, |
76 #login-header-bar #cancel-multiple-sign-in-button { | 93 #login-header-bar #cancel-multiple-sign-in-button { |
77 -webkit-padding-start: 24px; | 94 -webkit-padding-start: 24px; |
78 background-position: left center; | 95 background-position: left center; |
79 background-repeat: no-repeat; | 96 background-repeat: no-repeat; |
80 background-size: 24px; | 97 background-size: 24px; |
81 } | 98 } |
82 | 99 |
83 html[dir=rtl] #login-header-bar #shutdown-button, | 100 html[dir=rtl] #login-header-bar #shutdown-button, |
84 html[dir=rtl] #login-header-bar #restart-button, | 101 html[dir=rtl] #login-header-bar #restart-button, |
85 html[dir=rtl] #login-header-bar #add-user-button, | 102 html[dir=rtl] #login-header-bar #add-user-button, |
| 103 html[dir=rtl] #login-header-bar #more-settings-button, |
86 html[dir=rtl] #login-header-bar #guest-user-button, | 104 html[dir=rtl] #login-header-bar #guest-user-button, |
87 html[dir=rtl] #login-header-bar #cancel-multiple-sign-in-button { | 105 html[dir=rtl] #login-header-bar #cancel-multiple-sign-in-button { |
88 background-position: right center; | 106 background-position: right center; |
89 } | 107 } |
90 | 108 |
| 109 #login-header-bar #more-settings-header-bar-item { |
| 110 position: relative; |
| 111 } |
| 112 |
91 #login-header-bar #shutdown-button { | 113 #login-header-bar #shutdown-button { |
92 background-image: url(chrome://theme/IDR_ICON_POWER_WHITE); | 114 background-image: url(chrome://theme/IDR_ICON_POWER_WHITE); |
93 } | 115 } |
94 | 116 |
95 #login-header-bar #restart-button { | 117 #login-header-bar #restart-button { |
96 background-image: url(chrome://theme/IDR_ICON_POWER_WHITE); | 118 background-image: url(chrome://theme/IDR_ICON_POWER_WHITE); |
97 } | 119 } |
98 | 120 |
99 #login-header-bar #add-user-button { | 121 #login-header-bar #add-user-button { |
100 background-image: url(chrome://theme/IDR_ICON_ADD_USER_WHITE); | 122 background-image: url(chrome://theme/IDR_ICON_ADD_USER_WHITE); |
101 } | 123 } |
102 | 124 |
| 125 #login-header-bar #more-settings-button { |
| 126 background-image: url(chrome://theme/IDR_ICON_MORE_VERT_WHITE); |
| 127 } |
| 128 |
103 #login-header-bar #guest-user-button { | 129 #login-header-bar #guest-user-button { |
104 background-image: url(chrome://theme/IDR_ICON_GUEST_WHITE); | 130 background-image: url(chrome://theme/IDR_ICON_GUEST_WHITE); |
105 } | 131 } |
106 | 132 |
107 #login-header-bar #cancel-multiple-sign-in-button { | 133 #login-header-bar #cancel-multiple-sign-in-button { |
108 /* TODO(dzhioev): replace with appropriate image when possible. */ | 134 /* TODO(dzhioev): replace with appropriate image when possible. */ |
109 background-image: url(chrome://theme/IDR_PANEL_CLOSE); | 135 background-image: url(chrome://theme/IDR_PANEL_CLOSE); |
110 } | 136 } |
111 | 137 |
112 .button-restricted { | 138 .button-restricted { |
113 border: 1px solid transparent; | 139 border: 1px solid transparent; |
114 color: white !important; | 140 color: white !important; |
115 opacity: 0.4 !important; | 141 opacity: 0.4 !important; |
116 } | 142 } |
OLD | NEW |