| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 | 60 |
| 61 .add-supervised-user-menu { | 61 .add-supervised-user-menu { |
| 62 display: none; | 62 display: none; |
| 63 } | 63 } |
| 64 | 64 |
| 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: 15px; | 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 left: 15px; | |
| 75 margin: 0 0 -10px -10px; | |
| 76 min-height: 34px; | 74 min-height: 34px; |
| 77 position: absolute; | 75 position: absolute; |
| 78 text-align: center; | 76 text-align: center; |
| 79 width: 180px; | 77 width: 180px; |
| 80 } | 78 } |
| 81 | 79 |
| 82 html[dir=rtl] #more-settings-header-bar-item.active | 80 #more-settings-header-bar-item.active button.add-supervised-user-menu:focus { |
| 83 button.add-supervised-user-menu { | 81 border: 2px solid var(--google-blue-500); |
| 84 right: 0; | 82 border-radius: 2px; |
| 85 } | 83 } |
| 86 | 84 |
| 87 html[dir=rtl] .header-bar-item { | 85 html[dir=rtl] .header-bar-item { |
| 88 background-position: right center; | 86 background-position: right center; |
| 89 } | 87 } |
| 90 | 88 |
| 91 #login-header-bar #shutdown-button-text, | 89 #login-header-bar #shutdown-button-text, |
| 92 #login-header-bar #restart-button-text, | 90 #login-header-bar #restart-button-text, |
| 93 #login-header-bar #add-user-button-text, | 91 #login-header-bar #add-user-button-text, |
| 94 #login-header-bar #guest-user-button-text, | 92 #login-header-bar #guest-user-button-text, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 background-image: -webkit-image-set( | 156 background-image: -webkit-image-set( |
| 159 url(images/1x/signout.svg) 1x, | 157 url(images/1x/signout.svg) 1x, |
| 160 url(images/2x/signout.svg) 2x ); | 158 url(images/2x/signout.svg) 2x ); |
| 161 } | 159 } |
| 162 | 160 |
| 163 .button-restricted { | 161 .button-restricted { |
| 164 border: 1px solid transparent; | 162 border: 1px solid transparent; |
| 165 color: white !important; | 163 color: white !important; |
| 166 opacity: 0.4 !important; | 164 opacity: 0.4 !important; |
| 167 } | 165 } |
| OLD | NEW |