OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 { | 6 :host { |
| 7 display: flex; |
| 8 flex-direction: column; |
7 font-size: 18px; | 9 font-size: 18px; |
8 height: 100%; | |
9 overflow: hidden; | 10 overflow: hidden; |
10 width: 100%; | 11 position: relative; |
11 } | 12 } |
12 | 13 |
13 #backButton { | 14 #backButton { |
14 color: white; | 15 color: white; |
15 left: 10px; | 16 left: 10px; |
16 position: absolute; | 17 position: absolute; |
17 top: 10px; | 18 top: 10px; |
18 z-index: 1; | 19 z-index: 1; |
19 } | 20 } |
20 | 21 |
21 :host-context(html[dir=rtl]) #backButton { | 22 :host-context(html[dir=rtl]) #backButton { |
22 left: auto; | 23 left: auto; |
23 right: 10px; | 24 right: 10px; |
24 transform: scaleX(-1); | 25 transform: scaleX(-1); |
25 } | 26 } |
| 27 |
| 28 paper-dialog { |
| 29 --paper-dialog-title: { |
| 30 font-size: 15px; |
| 31 }; |
| 32 |
| 33 /** |
| 34 * TODO(dzhioev): remove when |
| 35 * https://github.com/PolymerElements/iron-fit-behavior/issues/12 is fixed. |
| 36 */ |
| 37 position: absolute !important; |
| 38 |
| 39 width: 384px; |
| 40 } |
| 41 |
OLD | NEW |