chrome-devtools-frontend
Version:
Chrome DevTools UI
73 lines (58 loc) • 2.35 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;
color: rgb(90 90 90); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.tree-outline > ol {
padding-bottom: 10px;
}
.tree-outline li {
min-height: 20px;
}
li.storage-group-list-item {
padding: 10px 8px 6px 8px;
}
li.storage-group-list-item:not(:first-child) {
border-top: 1px solid rgb(230 230 230); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
li.storage-group-list-item::before {
display: none;
}
.icons-container .red-icon {
background-color: rgb(235 57 65); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.navigator-file-tree-item {
background: linear-gradient(45deg, hsl(0deg 0% 50%), hsl(0deg 0% 70%)); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.navigator-folder-tree-item {
background: linear-gradient(45deg, hsl(210deg 82% 65%), hsl(210deg 82% 80%)); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.navigator-script-tree-item {
background: linear-gradient(45deg, hsl(48deg 70% 50%), hsl(48deg 70% 70%)); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.navigator-stylesheet-tree-item {
background: linear-gradient(45deg, hsl(256deg 50% 50%), hsl(256deg 50% 70%)); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.navigator-image-tree-item,
.navigator-font-tree-item {
background: linear-gradient(45deg, hsl(109deg 33% 50%), hsl(109deg 33% 70%)); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.resource-tree-item {
background: rgb(90 90 90 / 70%); /* stylelint-disable-line plugin/use_theme_colors */
/* See: crbug.com/1152736 for color variable migration. */
}
.window-closed .tree-element-title {
text-decoration: line-through;
}