Make charlist tag filter list scrollable

This commit is contained in:
RossAscends
2025-07-23 13:01:53 +09:00
parent afa3261746
commit b2cae4032c
2 changed files with 9 additions and 2 deletions
+6 -1
View File
@@ -158,6 +158,11 @@
flex-wrap: wrap;
align-items: flex-start;
margin: 5px 0;
/* not 100% due to margins */
max-height: 90%;
/* scroll the list if needed */
overflow-y: auto;
}
.rm_tag_filter .tag {
@@ -284,4 +289,4 @@
min-height: calc(var(--mainFontSize)*2);
width: var(--avatar-base-width);
justify-content: center;
}
}
+3 -1
View File
@@ -3094,6 +3094,8 @@ select option:not(:checked) {
#charListFixedTop {
padding: 5px;
/*prevent huge taglist from taking up the whole panel */
overflow-y: hidden;
}
#form_character_search_form {
@@ -6289,4 +6291,4 @@ body:not(.movingUI) .drawer-content.maximized {
.info-block.error {
border-color: var(--error-color, #e87f7f);
background-color: rgba(241, 163, 163, 0.2);
}
}