chrome-devtools-frontend
Version:
Chrome DevTools UI
44 lines (36 loc) • 824 B
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.
*/
.devtools-link {
color: var(--color-link);
text-decoration: underline;
cursor: pointer;
padding: 2px 0; /* adjust focus ring size */
}
.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;
}
.protocol-handlers-row {
margin: 10px 0 2px 18px;
}
.inline-icon {
vertical-align: text-bottom;
}
@media (forced-colors: active) {
.devtools-link:not(.devtools-link-prevent-click) {
color: linktext;
}
.devtools-link:focus-visible {
background: Highlight;
color: HighlightText;
}
}