OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 :host /deep/ paper-dialog { | |
6 background-color: rgb(66, 66, 66); | |
7 color: rgb(250, 250, 250); | |
8 direction: rtl; | |
raymes
2015/01/23 00:16:46
Maybe add a comment about this is here. i.e.
/* S
Alexandre Carlton
2015/01/23 00:25:11
Done.
| |
9 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; | |
10 height: calc(100% - 64px); | |
11 margin: 0; | |
12 right: 0; | |
13 top: 64px; | |
14 width: 22em; | |
15 } | |
16 | |
17 #reset-content { | |
18 direction: ltr; | |
19 } | |
20 | |
21 :host /deep/ #scroller > h1 { | |
22 direction: ltr; | |
23 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; | |
24 } | |
25 | |
26 hr { | |
27 background: rgb(66, 66, 66); | |
28 border: 0; | |
29 border-bottom: 1px dashed rgb(250, 250, 250); | |
30 } | |
OLD | NEW |