mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
648 B
34 lines
648 B
:host {
|
|
border: 1px solid #808080;
|
|
border-radius: 3px;
|
|
}
|
|
:host(:where(:hover)) {
|
|
border-color: #3b3b3b;
|
|
}
|
|
:host(.color-scheme-dark:where(:hover)) {
|
|
border-color: #acacac;
|
|
}
|
|
:host(:where(:focus-within)) {
|
|
border-color: #195ae6;
|
|
box-shadow: 0 0 0 3px #4fd7ff6b;
|
|
}
|
|
:host(.color-scheme-dark:where(:focus-within)) {
|
|
border-color: #66b2d9;
|
|
}
|
|
:host(:where([disabled])) {
|
|
border-color: #b0b0b0;
|
|
opacity: 0.65;
|
|
cursor: default;
|
|
}
|
|
:host(:not(.color-scheme-dark):where([disabled])) {
|
|
background: #efefef;
|
|
}
|
|
[part="content"] {
|
|
min-width: 4ch;
|
|
min-height: 4ch;
|
|
}
|
|
[part="editor"] {
|
|
min-width: 4ch;
|
|
min-height: 4ch;
|
|
resize: both;
|
|
}
|