OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .tree-outline { | 7 .tree-outline { |
8 padding-left: 0; | 8 padding-left: 0; |
9 color: rgb(90, 90, 90); | 9 color: rgb(90, 90, 90); |
10 } | 10 } |
11 | 11 |
12 .tree-outline > ol { | 12 .tree-outline > ol { |
13 padding-bottom: 10px; | 13 padding-bottom: 10px; |
14 } | 14 } |
15 | 15 |
16 .tree-outline li { | 16 .tree-outline li { |
17 min-height: 20px; | 17 min-height: 20px; |
18 } | 18 } |
19 | 19 |
20 li.storage-group-list-item { | 20 li.storage-group-list-item { |
21 border-top: 1px solid rgb(230, 230, 230); | 21 border-top: 1px solid rgb(230, 230, 230); |
22 padding: 10px 8px 6px 8px; | 22 padding: 10px 8px 6px 8px; |
23 } | 23 } |
24 | 24 |
25 li.storage-group-list-item::before { | 25 li.storage-group-list-item::before { |
26 display: none; | 26 display: none; |
27 } | 27 } |
28 | 28 |
| 29 li.storage-group-list-item |
| 30 .trailing-icons { |
| 31 width: 14px; |
| 32 height: 14px; |
| 33 margin-left: 6px; |
| 34 } |
| 35 |
| 36 li.storage-group-list-item |
| 37 .trailing-icons |
| 38 .sidebar-section-button { |
| 39 position: relative; |
| 40 top: -1px; |
| 41 left: -8px; |
| 42 } |
| 43 |
29 .navigator-tree-item { | 44 .navigator-tree-item { |
30 margin: -3px -7px -3px -7px; | 45 margin: -3px -7px -3px -7px; |
31 } | 46 } |
32 | 47 |
33 .navigator-file-tree-item { | 48 .navigator-file-tree-item { |
34 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%)); | 49 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%)); |
35 } | 50 } |
36 | 51 |
37 .navigator-folder-tree-item { | 52 .navigator-folder-tree-item { |
38 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%)); | 53 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%)); |
(...skipping 12 matching lines...) Expand all Loading... |
51 } | 66 } |
52 | 67 |
53 .navigator-image-tree-item, | 68 .navigator-image-tree-item, |
54 .navigator-font-tree-item { | 69 .navigator-font-tree-item { |
55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); | 70 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); |
56 } | 71 } |
57 | 72 |
58 .resource-tree-item { | 73 .resource-tree-item { |
59 background: rgba(90, 90, 90, .7); | 74 background: rgba(90, 90, 90, .7); |
60 } | 75 } |
OLD | NEW |