mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-03 12:47:35 +01:00
Try fixing textareas resizing on character editor
This commit is contained in:
parent
12f1cdb3fd
commit
f50db430eb
@ -916,12 +916,22 @@ select {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
#form_create textarea {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1001px) {
|
||||
#description_textarea {
|
||||
height: 33vh;
|
||||
height: 33svh;
|
||||
}
|
||||
|
||||
#description_textarea,
|
||||
#firstmessage_textarea {
|
||||
height: -webkit-fill-available;
|
||||
width: -moz-available;
|
||||
#firstmessage_textarea {
|
||||
resize: none;
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#character_name_pole {
|
||||
@ -1550,10 +1560,6 @@ input[type=search]:focus::-webkit-search-cancel-button {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
#form_create textarea {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.avatar_div {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
@ -3520,4 +3526,4 @@ a {
|
||||
z-index: 10;
|
||||
margin-left: 10px;
|
||||
/* Give some space between the button and search box */
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user