chrome-devtools-frontend
Version:
Chrome DevTools UI
118 lines (96 loc) • 2.64 kB
CSS
/*
* Copyright 2016 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.tree-outline {
padding-left: 0;
}
.tree-outline > ol {
padding-bottom: 5px;
border-bottom: solid 1px var(--sys-color-divider);
}
.tree-outline > .parent {
user-select: none;
font-weight: bold;
color: var(--sys-color-on-surface);
margin-top: -1px;
display: flex;
align-items: center;
height: 26px;
}
.tree-outline li {
padding-left: 5px;
line-height: 20px;
}
.tree-outline li:not(.parent) {
margin-left: 10px;
display: block;
}
.tree-outline li:not(.parent)::before {
display: none;
}
.tree-outline li.expanded .payload-count {
display: none;
}
.tree-outline li .payload-toggle {
display: none;
}
.tree-outline li.expanded .payload-toggle {
display: inline;
margin-left: 30px;
font-weight: normal;
color: var(--sys-color-on-surface);
background: none;
border: none;
}
.tree-outline li.expanded .payload-toggle:focus-visible {
border: 2px solid var(--sys-color-state-focus-ring);
border-radius: 5px;
}
.tree-outline li .header-toggle:hover {
color: var(--sys-color-token-subtle);
}
.tree-outline .payload-name {
color: var(--sys-color-token-subtle);
display: inline-flex;
margin-right: 0.25em;
font-weight: bold;
vertical-align: top;
white-space: pre-wrap;
}
.tree-outline .payload-separator {
user-select: none;
}
.tree-outline .payload-value {
display: inline;
margin-right: 1em;
white-space: pre-wrap;
word-break: break-all;
margin-top: 1px;
}
.tree-outline .empty-request-payload {
color: var(--sys-color-state-disabled);
}
.request-payload-show-more-button {
margin: 0 4px;
}
@media (forced-colors: active) {
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus {
background: Highlight;
}
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li::before {
background-color: ButtonText;
}
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent::before {
background-color: HighlightText;
}
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected *,
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent,
:host-context(.request-payload-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent span {
color: HighlightText;
}
}
.payload-decode-error {
color: var(--sys-color-error);
}