| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 bottom: 0; | 6 bottom: 0; |
| 7 left: 0; | 7 left: 0; |
| 8 min-height: 32px; | 8 min-height: 32px; |
| 9 padding-bottom: 12px; | 9 padding-bottom: 12px; |
| 10 padding-top: 12px; | 10 padding-top: 12px; |
| 11 position: absolute; | 11 position: absolute; |
| 12 right: 0; | 12 right: 0; |
| 13 } | 13 } |
| 14 | 14 |
| 15 paper-button { | 15 paper-button { |
| 16 border-radius: 2px; | 16 border-radius: 2px; |
| 17 line-height: 32px; | 17 line-height: 32px; |
| 18 min-width: 52px; | 18 min-width: 52px; |
| 19 padding: 0 16px; | 19 padding: 0 16px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 #add-user-button { | 22 #addUser { |
| 23 -webkit-margin-end: 16px; | 23 -webkit-margin-end: 16px; |
| 24 } | 24 } |
| 25 | 25 |
| 26 #logo { | 26 #logo { |
| 27 content: -webkit-image-set( | 27 content: -webkit-image-set( |
| 28 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam
e_48.png) 1x, | 28 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam
e_48.png) 1x, |
| 29 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam
e_48.png) 2x); | 29 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam
e_48.png) 2x); |
| 30 height: 18px; | 30 height: 18px; |
| 31 left: 24px; | 31 left: 24px; |
| 32 position: absolute; | 32 position: absolute; |
| 33 top: 19px; | 33 top: 19px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 :host-context([dir='rtl']) #logo { | 36 :host-context([dir='rtl']) #logo { |
| 37 left: auto; | 37 left: auto; |
| 38 right: 24px; | 38 right: 24px; |
| 39 } | 39 } |
| OLD | NEW |