mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-03 18:47:56 +01:00
ea19444710
This change adds - performance improvements for ai chat - new ai chat user interface - open blank files with codeedit - fix for userinput password modal
48 lines
906 B
Plaintext
48 lines
906 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.tips-header {
|
|
font-weight: bold;
|
|
color: var(--main-text-color);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.tips-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);
|
|
|
|
.tips-markdown {
|
|
color: inherit;
|
|
height: 300px;
|
|
width: 500px;
|
|
}
|
|
|
|
.tips-text {
|
|
}
|
|
|
|
.tips-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);
|
|
}
|
|
}
|
|
}
|