chrome-devtools-frontend
Version:
Chrome DevTools UI
26 lines (20 loc) • 587 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.
*/
.link-swatch-link:not(.undefined) {
cursor: pointer;
text-underline-offset: 2px;
color: var(--color-link);
}
.link-swatch-link:hover:not(.undefined) {
text-decoration: underline;
}
.link-swatch-link:focus:not(:focus-visible) {
outline: none;
}
.link-swatch-link.undefined {
--override-link-swatch-link-undefined-color: rgb(102 102 102);
color: var(--override-link-swatch-link-undefined-color);
}