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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 { | 68 .add-supervised-user-menu { |
69 display: none; | 69 display: none; |
70 } | 70 } |
71 | 71 |
72 #more-settings-header-bar-item.active .add-supervised-user-menu { | 72 #more-settings-header-bar-item.active button.add-supervised-user-menu { |
73 background-color: white; | 73 background-color: white; |
74 border: 1px solid lightgray; | 74 border: 1px solid lightgray; |
75 border-radius: 2px; | 75 border-radius: 2px; |
76 bottom: 15px; | 76 bottom: 15px; |
| 77 color: black !important; |
77 display: block; | 78 display: block; |
78 font-size: 13px; | 79 font-size: 13px; |
79 left: 15px; | 80 left: 15px; |
| 81 margin: 0 0 -10px -10px; |
80 position: absolute; | 82 position: absolute; |
81 width: 220px; | 83 text-align: center; |
| 84 width: 180px; |
82 } | 85 } |
83 | 86 |
84 html[dir=rtl] .header-bar-item { | 87 html[dir=rtl] .header-bar-item { |
85 background-position: right center; | 88 background-position: right center; |
86 } | 89 } |
87 | 90 |
88 #login-header-bar #shutdown-button, | 91 #login-header-bar #shutdown-button, |
89 #login-header-bar #restart-button, | 92 #login-header-bar #restart-button, |
90 #login-header-bar #add-user-button, | 93 #login-header-bar #add-user-button, |
91 #login-header-bar #guest-user-button, | 94 #login-header-bar #guest-user-button, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 #login-header-bar #cancel-multiple-sign-in-button { | 136 #login-header-bar #cancel-multiple-sign-in-button { |
134 /* TODO(dzhioev): replace with appropriate image when possible. */ | 137 /* TODO(dzhioev): replace with appropriate image when possible. */ |
135 background-image: url(chrome://theme/IDR_PANEL_CLOSE); | 138 background-image: url(chrome://theme/IDR_PANEL_CLOSE); |
136 } | 139 } |
137 | 140 |
138 .button-restricted { | 141 .button-restricted { |
139 border: 1px solid transparent; | 142 border: 1px solid transparent; |
140 color: white !important; | 143 color: white !important; |
141 opacity: 0.4 !important; | 144 opacity: 0.4 !important; |
142 } | 145 } |
OLD | NEW |