UNPKG

chrome-devtools-frontend

Version:
77 lines (63 loc) 1.79 kB
/* * Copyright (c) 2015 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. */ .text-prompt-root { display: flex; align-items: center; } .text-prompt-editing { box-shadow: var(--drop-shadow); background-color: var(--color-background); text-overflow: clip !important; /* stylelint-disable-line declaration-no-important */ padding-left: 2px; margin-left: -2px; padding-right: 2px; margin-right: -2px; margin-bottom: -1px; padding-bottom: 1px; opacity: 100% !important; /* stylelint-disable-line declaration-no-important */ } .text-prompt { cursor: text; overflow-x: visible; } .text-prompt::-webkit-scrollbar { display: none; } .text-prompt-editing > .text-prompt { color: var(--color-text-primary) !important; /* stylelint-disable-line declaration-no-important */ text-decoration: none !important; /* stylelint-disable-line declaration-no-important */ white-space: pre; } .text-prompt > .auto-complete-text { color: var(--color-text-secondary) !important; /* stylelint-disable-line declaration-no-important */ } .text-prompt[data-placeholder]:empty::before { content: attr(data-placeholder); color: var(--color-text-secondary); } .text-prompt:not([data-placeholder]):empty::after { content: "\00A0"; width: 0; display: block; } .text-prompt.disabled { opacity: 50%; cursor: default; } .text-prompt-editing br { display: none; } .text-prompt-root:not(:focus-within) ::selection { background: transparent; } @media (forced-colors: active) { .text-prompt[data-placeholder]:empty::before { color: GrayText !important; /* stylelint-disable-line declaration-no-important */ } .text-prompt.disabled { opacity: 100%; } }