chrome-devtools-frontend
Version:
Chrome DevTools UI
29 lines (25 loc) • 638 B
CSS
/*
* Copyright 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.
*/
:host {
display: block;
}
.content {
background-color: var(--color-background);
display: grid;
grid-template-columns: min-content 1fr;
user-select: text;
}
.report-title {
padding: 12px 24px;
font-size: 15px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid var(--color-details-hairline);
color: var(--color-text-primary);
background-color: var(--color-background);
grid-column-start: span 2;
}