| /* |
| * Copyright 2021 The Chromium Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| @scope to (devtools-widget > *) { |
| .tree-outline li { |
| min-height: 20px; |
| } |
| |
| devtools-icon { |
| color: var(--icon-file-default); |
| margin-right: var(--sys-size-4); |
| } |
| |
| .navigator-sm-script-tree-item devtools-icon, |
| .navigator-script-tree-item devtools-icon, |
| .navigator-snippet-tree-item devtools-icon { |
| color: var(--icon-file-script); |
| } |
| |
| .navigator-sm-stylesheet-tree-item devtools-icon, |
| .navigator-stylesheet-tree-item devtools-icon { |
| color: var(--icon-file-styles); |
| } |
| |
| .navigator-image-tree-item devtools-icon { |
| color: var(--icon-file-image); |
| } |
| |
| .navigator-font-tree-item devtools-icon { |
| color: var(--icon-file-font); |
| } |
| |
| .tree-outline li:hover:not(.selected) .selection { |
| display: block; |
| |
| & devtools-icon { |
| color: var(--icon-default-hover); |
| } |
| } |
| |
| @media (forced-colors: active) { |
| li, |
| devtools-icon { |
| forced-color-adjust: none; |
| color: ButtonText !important; /* stylelint-disable-line declaration-no-important */ |
| } |
| } |
| } |