chrome-devtools-frontend
Version:
Chrome DevTools UI
155 lines (125 loc) • 3.08 kB
CSS
/*
* Copyright 2017 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.
*/
.watch-expression-delete-button {
position: absolute;
opacity: 0%;
background-color: var(--icon-default);
cursor: pointer;
}
.watch-expression-delete-button:hover {
background-color: var(--icon-default-hover);
}
:host-context(.-theme-with-dark-background) .watch-expression-delete-button {
/* This is a workaround due to a sprite with hardcoded color.
It should no longer be necessary after we update icons. */
filter: brightness(1.5);
}
.right-aligned {
right: 16px;
}
.left-aligned {
left: -11px;
}
.watch-expression-title:hover .watch-expression-delete-button {
opacity: 100%;
}
.watch-expressions {
overflow-x: hidden;
min-height: 26px;
}
.watch-expression-title {
white-space: nowrap;
line-height: 20px;
display: flex;
}
.watch-expression-title:hover {
padding-right: 26px;
}
.watch-expression-object-header .watch-expression-title {
margin-left: 1px;
}
.watch-expression {
position: relative;
flex: auto;
min-height: 20px;
}
.watch-expression .name {
--override-watch-expression-name-color: rgb(136 19 145);
color: var(--override-watch-expression-name-color);
flex: none;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
flex-shrink: 2;
}
.-theme-with-dark-background .watch-expression .name,
:host-context(.-theme-with-dark-background) .watch-expression .name {
--override-watch-expression-name-color: rgb(227 110 236);
}
.watch-expression-error {
color: var(--color-red);
}
.watch-expressions-separator {
flex: none;
}
.watch-expression .value {
white-space: nowrap;
display: inline;
overflow: hidden;
padding-left: 4px;
text-overflow: ellipsis;
flex-shrink: 1;
}
.watch-expression .text-prompt {
text-overflow: clip;
overflow: hidden;
white-space: nowrap;
padding-left: 4px;
min-height: 18px;
line-height: 18px;
user-select: text;
}
.watch-expression-text-prompt-proxy {
margin: 2px 12px 2px -4px;
padding-bottom: 3px;
}
.watch-expression-header {
flex: auto;
margin-left: -16px;
padding-left: 15px;
}
li.watch-expression-tree-item {
padding-left: 4px;
}
li.watch-expression-tree-item:hover {
background-color: var(--color-background-elevation-1);
}
.watch-expression-header:focus-visible {
background: var(--legacy-focus-bg-color);
}
li.watch-expression-editing::before {
background-color: transparent;
}
@media (forced-colors: active) {
.watch-expression-title:hover .watch-expression-delete-button,
.watch-expressions .dimmed {
opacity: 100%;
}
li.watch-expression-tree-item * {
forced-color-adjust: none;
color: ButtonText;
}
li.watch-expression-tree-item:hover {
forced-color-adjust: none;
background-color: Highlight;
}
li.watch-expression-tree-item:hover * {
color: HighlightText;
}
li.watch-expression-tree-item:hover .watch-expression-delete-button {
background-color: HighlightText;
}
}