chrome-devtools-frontend
Version:
Chrome DevTools UI
65 lines (55 loc) • 1.25 kB
CSS
/*
* Copyright 2017 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.thread-item {
padding: 3px 8px 3px 20px;
position: relative;
min-height: 18px;
line-height: 15px;
display: flex;
flex-wrap: wrap;
appearance: none;
border-width: 0;
background-color: var(--sys-color-cdt-base-container);
width: 100%;
}
.thread-item + .thread-item {
border-top: 1px solid var(--sys-color-divider);
}
.thread-item:hover {
background-color: var(--sys-color-state-hover-on-subtle);
}
.thread-item:focus-visible {
background-color: var(--sys-color-tonal-container);
}
.thread-item-title,
.thread-item-paused-state {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.thread-item-paused-state {
color: var(--sys-color-state-disabled);
margin-left: auto;
padding: 0 10px;
}
.selected-thread-icon {
position: absolute;
top: 3px;
left: 4px;
width: 16px;
height: 16px;
}
@media (forced-colors: active) {
.thread-item:hover,
.thread-item:focus-visible {
forced-color-adjust: none;
background-color: Highlight;
}
.thread-item:hover > div,
.thread-item:focus-visible > div {
color: HighlightText;
}
}