| 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 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 .navigator-image-tree-item, | 53 .navigator-image-tree-item, |
| 54 .navigator-font-tree-item { | 54 .navigator-font-tree-item { |
| 55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); | 55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); |
| 56 } | 56 } |
| 57 | 57 |
| 58 .resource-tree-item { | 58 .resource-tree-item { |
| 59 background: rgba(90, 90, 90, .7); | 59 background: rgba(90, 90, 90, .7); |
| 60 } | 60 } |
| 61 |
| 62 .resource-sidebar-item-disabled { |
| 63 opacity: 0.7; |
| 64 } |
| OLD | NEW |