chrome-devtools-frontend
Version:
Chrome DevTools UI
52 lines (43 loc) • 905 B
CSS
/*
* Copyright 2023 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.
*/
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
:host {
display: block;
}
ul {
color: var(--sys-color-primary);
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 18px;
margin-top: 8px;
padding-left: var(--sys-size-6);
}
li {
list-style-type: none;
}
ul .link {
color: var(--sys-color-primary);
display: inline-flex ; /* stylelint-disable-line declaration-no-important */
align-items: center;
gap: 4px;
text-decoration-line: underline;
}
devtools-icon {
height: 16px;
width: 16px;
margin-right: var(--sys-size-1);
}
devtools-icon[name="open-externally"] {
color: var(--icon-link);
}
.source-disclaimer {
color: var(--sys-color-on-surface-subtle);
}