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 #item { | 5 #item { |
6 @apply(--layout-center); | 6 @apply(--layout-center); |
7 @apply(--layout-horizontal); | 7 @apply(--layout-horizontal); |
8 color: rgb(80, 80, 80); | 8 color: rgb(80, 80, 80); |
9 cursor: pointer; | 9 cursor: pointer; |
10 font-size: 77.8%; | 10 font-size: 77.8%; |
(...skipping 15 matching lines...) Expand all Loading... |
26 #expand { | 26 #expand { |
27 --iron-icon-height: 16px; | 27 --iron-icon-height: 16px; |
28 --iron-icon-width: 16px; | 28 --iron-icon-width: 16px; |
29 height: 16px; | 29 height: 16px; |
30 min-width: 16px; | 30 min-width: 16px; |
31 padding: 6px; | 31 padding: 6px; |
32 transition: transform 150ms; | 32 transition: transform 150ms; |
33 width: 16px; | 33 width: 16px; |
34 } | 34 } |
35 | 35 |
| 36 :host-context([dir=rtl]) #expand { |
| 37 transform: rotate(180deg); |
| 38 } |
| 39 |
36 :host([children-shown]) #expand { | 40 :host([children-shown]) #expand { |
37 transform: rotate(90deg); | 41 transform: rotate(90deg); |
38 } | 42 } |
OLD | NEW |