mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
f3e0ba8148
This provides a checkbox when installing wsh that will prevent the message from popping up in the future. It can also be disabled by adding `"askbeforewshinstall": false` to the config file.
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.userinput-header {
|
|
font-weight: bold;
|
|
color: var(--main-text-color);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.userinput-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
margin: 0 1rem 1rem 1rem;
|
|
|
|
font: var(--fixed-font);
|
|
color: var(--main-text-color);
|
|
|
|
.userinput-markdown {
|
|
color: inherit;
|
|
}
|
|
|
|
.userinput-text {
|
|
}
|
|
|
|
.userinput-inputbox {
|
|
resize: none;
|
|
background-color: var(--panel-bg-color);
|
|
border-radius: 6px;
|
|
margin: 0;
|
|
border: var(--border-color);
|
|
padding: 5px 0 5px 16px;
|
|
min-height: 30px;
|
|
color: inherit;
|
|
|
|
&:hover {
|
|
cursor: text;
|
|
}
|
|
|
|
&:focus {
|
|
outline-color: var(--accent-color);
|
|
}
|
|
}
|
|
|
|
.userinput-checkbox-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
|
|
.userinput-checkbox {
|
|
accent-color: var(--accent-color);
|
|
}
|
|
}
|
|
}
|