| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 */ | |
| 5 | 4 |
| 6 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js | 5 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js |
| 7 * that are needed by the desktop user chooser screen | 6 * that are needed by the desktop user chooser screen. */ |
| 8 */ | |
| 9 #login-header-bar { | 7 #login-header-bar { |
| 10 background-color: white; | 8 background-color: white; |
| 11 border-top: 1px solid #e2e2e2; | 9 border-top: 1px solid #e2e2e2; |
| 12 bottom: 0; | 10 bottom: 0; |
| 13 left: 0; | 11 left: 0; |
| 14 padding-bottom: 16px; | 12 padding-bottom: 16px; |
| 15 padding-top: 16px; | 13 padding-top: 16px; |
| 16 position: absolute; | 14 position: absolute; |
| 17 right: 0; | 15 right: 0; |
| 18 } | 16 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 height: 18px; | 78 height: 18px; |
| 81 position: absolute; | 79 position: absolute; |
| 82 right: 16px; | 80 right: 16px; |
| 83 top: 20px; | 81 top: 20px; |
| 84 } | 82 } |
| 85 | 83 |
| 86 html[dir=rtl] #logo { | 84 html[dir=rtl] #logo { |
| 87 left: 16px; | 85 left: 16px; |
| 88 right: auto; | 86 right: auto; |
| 89 } | 87 } |
| OLD | NEW |