Chromium Code Reviews| 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 :host { |
| 6 bottom: 0; | 6 bottom: 0; |
| 7 left: 0; | 7 left: 0; |
| 8 position: absolute; | |
| 9 right: 0; | |
| 10 z-index: 1; | |
|
Dan Beam
2016/04/07 18:35:00
why do you need this?
Moe
2016/04/07 22:48:55
'#outer-container' which is an absolutely position
| |
| 11 }; | |
| 12 | |
| 13 #login-header-bar { | |
| 8 min-height: 32px; | 14 min-height: 32px; |
| 9 padding-bottom: 12px; | 15 padding-bottom: 12px; |
| 10 padding-top: 12px; | 16 padding-top: 12px; |
| 11 position: absolute; | |
| 12 right: 0; | |
| 13 } | 17 } |
| 14 | 18 |
| 15 paper-button { | 19 paper-button { |
| 16 border-radius: 2px; | 20 border-radius: 2px; |
| 17 line-height: 32px; | 21 line-height: 32px; |
| 18 min-width: 52px; | 22 min-width: 52px; |
| 19 padding: 0 16px; | 23 padding: 0 16px; |
| 20 } | 24 } |
| 21 | 25 |
| 22 #addUser { | 26 #addUser { |
| 23 -webkit-margin-end: 16px; | 27 -webkit-margin-end: 16px; |
| 24 } | 28 } |
| 25 | 29 |
| 26 #logo { | 30 #logo { |
| 27 content: -webkit-image-set( | 31 content: -webkit-image-set( |
| 28 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x, | 32 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); | 33 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x); |
| 30 height: 18px; | 34 height: 18px; |
| 31 left: 24px; | 35 left: 24px; |
| 32 position: absolute; | 36 position: absolute; |
| 33 top: 19px; | 37 top: 19px; |
| 34 } | 38 } |
| 35 | 39 |
| 36 :host-context([dir='rtl']) #logo { | 40 :host-context([dir='rtl']) #logo { |
| 37 left: auto; | 41 left: auto; |
| 38 right: 24px; | 42 right: 24px; |
| 39 } | 43 } |
| OLD | NEW |