chrome-devtools-frontend
Version:
Chrome DevTools UI
79 lines (65 loc) • 1.56 kB
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.
*/
.background-service-toolbar {
background-color: var(--sys-color-cdt-base-container);
border-bottom: var(--sys-size-1) solid var(--sys-color-divider);
}
.data-grid {
flex: auto;
border: none;
}
[slot="insertion-point-main"] {
overflow: auto;
}
.background-service-preview {
position: absolute;
background-color: var(--sys-color-cdt-base-container);
justify-content: center;
align-items: center;
overflow: auto;
font-size: 13px;
color: var(--sys-color-on-surface-subtle);
}
.background-service-preview > div {
max-width: 450px;
margin: 10px;
text-align: center;
}
.background-service-preview > div > p {
flex: none;
white-space: pre-line;
}
.background-service-shortcut {
color: var(--sys-color-on-surface-subtle);
}
.background-service-metadata {
padding-left: 5px;
padding-top: 10px;
}
.background-service-metadata-entry {
padding-left: 10px;
padding-bottom: 5px;
}
.background-service-metadata-name {
color: var(--sys-color-on-surface-subtle);
display: inline-block;
margin-right: 0.25em;
font-weight: bold;
}
.background-service-metadata-value {
display: inline;
margin-right: 1em;
white-space: pre-wrap;
word-break: break-all;
user-select: text;
}
.background-service-empty-value {
color: var(--sys-color-state-disabled);
font-style: italic;
}
.background-service-record-inline-button {
margin-bottom: 6px;
}