| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 .elements-disclosure { | 7 .elements-disclosure { |
| 8 width: 100%; | 8 width: 100%; |
| 9 display: inline-block; | 9 display: inline-block; |
| 10 line-height: normal; | 10 line-height: normal; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 background-color: rgba(56, 121, 217, 0.1); | 64 background-color: rgba(56, 121, 217, 0.1); |
| 65 border-radius: 5px; | 65 border-radius: 5px; |
| 66 } | 66 } |
| 67 | 67 |
| 68 .elements-disclosure li.parent.expanded::before { | 68 .elements-disclosure li.parent.expanded::before { |
| 69 -webkit-mask-position: -20px -96px; | 69 -webkit-mask-position: -20px -96px; |
| 70 } | 70 } |
| 71 | 71 |
| 72 .elements-disclosure li.selected .selection { | 72 .elements-disclosure li.selected .selection { |
| 73 display: block; | 73 display: block; |
| 74 background-color: rgb(212, 212, 212); | 74 background-color: #dadada; |
| 75 } | 75 } |
| 76 | 76 |
| 77 .elements-disclosure ol { | 77 .elements-disclosure ol { |
| 78 list-style-type: none; | 78 list-style-type: none; |
| 79 -webkit-padding-start: 12px; | 79 -webkit-padding-start: 12px; |
| 80 margin: 0; | 80 margin: 0; |
| 81 } | 81 } |
| 82 | 82 |
| 83 .elements-disclosure ol.children { | 83 .elements-disclosure ol.children { |
| 84 display: none; | 84 display: none; |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 } | 293 } |
| 294 | 294 |
| 295 ol:hover > li > .elements-tree-shortcut-link { | 295 ol:hover > li > .elements-tree-shortcut-link { |
| 296 display: initial; | 296 display: initial; |
| 297 } | 297 } |
| 298 | 298 |
| 299 .elements-tree-shortcut-link { | 299 .elements-tree-shortcut-link { |
| 300 color: rgb(87, 87, 87); | 300 color: rgb(87, 87, 87); |
| 301 display: none; | 301 display: none; |
| 302 } | 302 } |
| OLD | NEW |