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