chrome-devtools-frontend
Version:
Chrome DevTools UI
115 lines (94 loc) • 1.74 kB
CSS
/*
* Copyright (c) 2021 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.
*/
.text-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
button ~ .text-ellipsis {
padding-left: 2px;
}
.link,
.devtools-link {
color: var(--sys-color-primary);
text-decoration: underline;
cursor: pointer;
outline-offset: 2px;
padding: 0;
margin-left: var(--sys-size-3);
white-space: nowrap;;
}
button.link {
border: none;
background: none;
font-family: inherit;
font-size: inherit;
height: 16px;
}
button.link:has(devtools-icon) {
margin-top: 5px;
}
devtools-button.help-button {
top: 4px;
position: relative;
}
button.text-link {
padding-left: 2px;
height: 26px;
}
.inline-button {
padding-left: 1ex;
}
.inline-comment {
padding-left: 1ex;
white-space: pre-line;
}
.inline-comment::before {
content: "(";
}
.inline-comment::after {
content: ")";
}
.inline-name {
color: var(--sys-color-token-subtle);
padding-right: 4px;
user-select: none;
white-space: pre-line;
}
.inline-items {
display: flex;
}
.span-cols {
grid-column-start: span 2;
margin-left: var(--sys-size-9);
line-height: 28px;
}
.report-section:has(.link) {
line-height: var(--sys-size-12);
}
.without-min-width {
min-width: auto;
}
.bold {
font-weight: bold;
}
.link:not(button):has(devtools-icon) {
vertical-align: baseline;
margin-inline-start: 3px;
}
.inline-icon {
margin-bottom: -5px;
width: 18px;
height: 18px;
vertical-align: baseline;
}
@media (forced-colors: active) {
.link,
.devtools-link {
color: linktext;
text-decoration-color: linktext;
}
}