chrome-devtools-frontend
Version:
Chrome DevTools UI
111 lines (90 loc) • 2.75 kB
CSS
/*
* Copyright 2015 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.
*/
:host {
display: inline;
}
:host(.width-constrained) {
display: inline-block;
width: 100%;
}
.stack-preview-async-description {
padding: 3px 0 1px;
font-weight: bold;
}
.stack-preview-container {
--display-ignored-row: none;
--display-toggle-link: var(--override-display-stack-preview-toggle-link, none);
& > tfoot > tr {
font-style: italic;
display: var(--display-toggle-link);
}
& > tbody {
display: var(--override-display-stack-preview-tbody, table-row-group);
& > tr {
height: 16px;
line-height: 16px;
&:has(td.link > .ignore-list-link) {
opacity: 60%;
display: var(--display-ignored-row);
}
}
&:has(tr > td.link > .ignore-list-link) {
&:not(:has(tr > td.link > .devtools-link:not(.ignore-list-link))) {
.stack-preview-async-row {
/* An async row is hidden if the following group of call frames are all hidden */
display: var(--display-ignored-row);
}
}
}
}
&:not(:has(tbody > tr > td.link > .devtools-link:not(.ignore-list-link))),
&.show-hidden-rows {
/* Display ignore listed rows if everything is ignore listed or if displaying expanded. */
--display-ignored-row: table-row;
}
&:has(tbody > tr > td.link > .ignore-list-link):has(tbody > tr > td.link > .devtools-link:not(.ignore-list-link)) {
/* Show toggle links if some rows are ignore listed but not all of them. */
--display-toggle-link: table-row;
}
td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-inline: 2px;
&.link {
overflow: visible;
& > button.text-button.devtools-link {
background-color: inherit;
}
}
}
&.width-constrained {
display: block;
width: 100%;
td.link {
/* width: 100%; and max-width: 0; combination causes the link cell to be
extended as much as possible while still staying inside the table */
width: 100%;
max-width: 0;
}
}
.function-name {
max-width: 80em;
}
&.show-hidden-rows > tfoot > tr.show-all-link {
--display-toggle-link: none;
}
&:not(.show-hidden-rows) > tfoot > tr.show-less-link {
--display-toggle-link: none;
}
}
/* The show more/less links aren't really a part of the content
as they are equivalent to an expander triangle and not something
you would want to copy to the clipboard. Attributes are used to
insert their text through css rather than put the text in the DOM. */
.css-inserted-text::before {
content: attr(data-inserted-text);
}