chrome-devtools-frontend
Version:
Chrome DevTools UI
29 lines (23 loc) • 551 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 {
display: inline;
}
.link-swatch-link:not(.undefined) {
cursor: pointer;
text-underline-offset: 2px;
color: var(--text-link);
}
.link-swatch-link:hover:not(.undefined) {
text-decoration: underline;
}
.link-swatch-link:focus:not(:focus-visible) {
outline: none;
}
.link-swatch-link.undefined {
opacity: 100%;
color: var(--text-disabled);
}