OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 #login-header-bar { | |
7 bottom: 0; | |
8 left: 0; | |
9 min-height: 32px; | |
10 padding-bottom: 12px; | |
11 padding-top: 12px; | |
12 position: absolute; | |
13 right: 0; | |
14 } | |
15 | |
16 paper-button { | |
17 border-radius: 2px; | |
18 font-size: 13px; | |
19 line-height: 32px; | |
20 min-width: 52px; | |
21 padding: 0 16px; | |
22 } | |
23 | |
24 #add-user-button { | |
25 -webkit-margin-end: 16px; | |
26 } | |
27 | |
28 #logo { | |
29 content: -webkit-image-set( | |
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); | |
32 height: 18px; | |
33 left: 24px; | |
34 position: absolute; | |
35 top: 19px; | |
36 } | |
37 | |
38 :host-context([dir='rtl']) #logo { | |
39 right: 24px; | |
tommycli
2016/02/03 01:13:21
In this case, doesn't left need to be set to the d
Moe
2016/02/05 17:58:38
Done.
| |
40 } | |
OLD | NEW |