chrome-devtools-frontend
Version:
Chrome DevTools UI
201 lines (167 loc) • 5.37 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;
--error-background-color: #d93025;
}
.tree-outline > ol {
padding-bottom: 5px;
border-bottom: solid 1px #e0e0e0; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.tree-outline > .parent {
user-select: none;
font-weight: bold;
color: #616161; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
margin-top: -1px;
display: flex;
align-items: center;
height: 26px;
}
.tree-outline li {
display: block;
padding-left: 5px;
line-height: 20px;
}
.tree-outline li:not(.parent) {
margin-left: 10px;
}
.tree-outline li:not(.parent)::before {
display: none;
}
.tree-outline .caution {
margin-left: 4px;
display: inline-block;
font-weight: bold;
}
.tree-outline li.expanded .header-count {
display: none;
}
.tree-outline li .header-toggle {
display: none;
}
.tree-outline li .status-from-cache {
color: #808080; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.tree-outline li.expanded .header-toggle {
display: inline;
margin-left: 30px;
font-weight: normal;
color: rgb(45% 45% 45%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.tree-outline li .header-toggle:hover {
color: rgb(20% 20% 45%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
cursor: pointer;
}
.tree-outline .header-name {
color: rgb(33% 33% 33%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
display: inline-block;
margin-right: 0.25em;
font-weight: bold;
vertical-align: top;
white-space: pre-wrap;
}
.tree-outline .header-separator {
user-select: none;
}
.tree-outline .header-badge-text {
font-variant: small-caps;
font-weight: 500;
white-space: pre-wrap;
word-break: break-all;
}
.tree-outline .header-warning {
color: var(--error-background-color); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.tree-outline .header-badge {
display: inline;
margin-right: 0.75em;
background-color: var(--error-background-color); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
color: #fff; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
border-radius: 100vh;
padding-left: 6px;
padding-right: 6px;
}
.tree-outline .header-value {
display: inline;
margin-right: 1em;
white-space: pre-wrap;
word-break: break-all;
margin-top: 1px;
}
.tree-outline .call-to-action {
background-color: #f8f9fa; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
padding: 8px;
border-radius: 2px;
}
.tree-outline .selected .call-to-action {
background-color: transparent;
padding: 8px;
border-radius: 2px;
}
.tree-outline .call-to-action-body {
padding: 6px 0;
margin-left: 9.5px;
border-left: 2px solid #f29900; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
padding-left: 18px;
}
.tree-outline .call-to-action .explanation {
font-weight: bold;
}
.tree-outline .call-to-action code {
font-size: 90%;
}
.tree-outline .call-to-action .example .comment::before {
content: " — ";
}
.tree-outline .empty-request-header {
color: rgb(33% 33% 33% / 50%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.request-headers-show-more-button {
border: none;
border-radius: 3px;
display: inline-block;
font-size: 12px;
font-family: sans-serif;
cursor: pointer;
margin: 0 4px;
padding: 2px 4px;
}
.header-highlight {
background-color: #ffff78; /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.x-client-data-details {
padding-left: 10px;
}
@media (forced-colors: active) {
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus {
background: Highlight;
}
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li::before {
background-color: ButtonText;
}
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent::before {
background-color: HighlightText;
}
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected *,
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent,
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected.parent span,
:host-context(.request-headers-tree) ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus .status-from-cache {
color: HighlightText;
}
}