| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 #more-settings-header-bar-item.active button.add-supervised-user-menu { | 65 #more-settings-header-bar-item.active button.add-supervised-user-menu { |
| 66 background-color: white; | 66 background-color: white; |
| 67 border: 1px solid lightgray; | 67 border: 1px solid lightgray; |
| 68 border-radius: 2px; | 68 border-radius: 2px; |
| 69 bottom: 0; | 69 bottom: 0; |
| 70 color: black !important; | 70 color: black !important; |
| 71 display: block; | 71 display: block; |
| 72 font-size: 13px; | 72 font-size: 13px; |
| 73 height: auto; | 73 height: auto; |
| 74 min-height: 34px; | 74 min-height: 34px; |
| 75 padding: 0 16px; |
| 75 position: absolute; | 76 position: absolute; |
| 76 text-align: center; | 77 text-align: center; |
| 77 width: 180px; | 78 white-space: nowrap; |
| 78 } | 79 } |
| 79 | 80 |
| 80 #more-settings-header-bar-item.active button.add-supervised-user-menu:focus { | 81 #more-settings-header-bar-item.active button.add-supervised-user-menu:focus { |
| 81 border: 2px solid var(--google-blue-500); | 82 border: 2px solid var(--google-blue-500); |
| 82 border-radius: 2px; | 83 border-radius: 2px; |
| 84 padding: 0 15px; |
| 83 } | 85 } |
| 84 | 86 |
| 85 html[dir=rtl] .header-bar-item { | 87 html[dir=rtl] .header-bar-item { |
| 86 background-position: right center; | 88 background-position: right center; |
| 87 } | 89 } |
| 88 | 90 |
| 89 #login-header-bar #shutdown-button-text, | 91 #login-header-bar #shutdown-button-text, |
| 90 #login-header-bar #restart-button-text, | 92 #login-header-bar #restart-button-text, |
| 91 #login-header-bar #add-user-button-text, | 93 #login-header-bar #add-user-button-text, |
| 92 #login-header-bar #guest-user-button-text, | 94 #login-header-bar #guest-user-button-text, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 background-image: -webkit-image-set( | 159 background-image: -webkit-image-set( |
| 158 url(images/1x/signout.svg) 1x, | 160 url(images/1x/signout.svg) 1x, |
| 159 url(images/2x/signout.svg) 2x ); | 161 url(images/2x/signout.svg) 2x ); |
| 160 } | 162 } |
| 161 | 163 |
| 162 .button-restricted { | 164 .button-restricted { |
| 163 border: 1px solid transparent; | 165 border: 1px solid transparent; |
| 164 color: white !important; | 166 color: white !important; |
| 165 opacity: 0.4 !important; | 167 opacity: 0.4 !important; |
| 166 } | 168 } |
| OLD | NEW |