UNPKG

chrome-devtools-frontend

Version:
58 lines (47 loc) 1.09 kB
/* * Copyright 2022 The Chromium Authors * 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: var(--sys-size-2); } .devtools-link:focus-visible { outline-width: unset; } input.devtools-text-input[type="text"] { padding: 3px var(--sys-size-4); margin-left: var(--sys-size-3); margin-right: var(--sys-size-3); 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: var(--sys-size-8); height: var(--sys-size-8); &[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; } }