@quick-game/cli
Version:
Command line interface for rapid qg development
81 lines (67 loc) • 2.02 kB
JavaScript
// Copyright 2023 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.
// IMPORTANT: this file is auto generated. Please do not edit this file.
/* istanbul ignore file */
export default {
cssContent: `/*
* 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(--sys-color-cdt-base-container);
text-overflow: clip ; /* stylelint-disable-line declaration-no-important */
margin: 0 -2px -1px;
padding: 0 2px 1px;
opacity: 100% ; /* 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) ; /* stylelint-disable-line declaration-no-important */
text-decoration: none ; /* stylelint-disable-line declaration-no-important */
white-space: pre;
}
.text-prompt > .auto-complete-text {
color: var(--color-text-secondary) ; /* 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 ; /* stylelint-disable-line declaration-no-important */
}
.text-prompt.disabled {
opacity: 100%;
}
}
`
};