chrome-devtools-frontend
Version:
Chrome DevTools UI
58 lines (47 loc) • 1.03 kB
CSS
/*
* Copyright (c) 2022 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: flex;
flex-direction: column;
}
.devtools-link {
color: var(--sys-color-primary);
text-decoration: underline;
cursor: pointer;
outline-offset: 2px;
}
.devtools-link:focus-visible {
outline-width: unset;
}
input.devtools-text-input[type="text"] {
padding: 3px 6px;
margin-left: 4px;
margin-right: 4px;
width: 250px;
height: 25px;
}
input.devtools-text-input[type="text"]::placeholder {
color: var(--sys-color-token-subtle);
}
.protocol-handlers-row {
margin: var(--sys-size-3) 0;
}
.inline-icon {
width: 16px;
height: 16px;
&[name="check-circle"] {
color: var(--icon-checkmark-green);
}
}
@media (forced-colors: active) {
.devtools-link:not(.devtools-link-prevent-click) {
color: linktext;
}
.devtools-link:focus-visible {
background: Highlight;
color: HighlightText;
}
}