Make charlist tag filter list scrollable

b2cae4032c476d460a853dae0c43925a90687481

RossAscends <124905043+RossAscends@users.noreply.github.com>

2 files changed, +9 -2Ignore whitespace
public/css/tags.css+6 -1
@@ -158,6 +158,11 @@
158158 flex-wrap: wrap;
159159 align-items: flex-start;
160160 margin: 5px 0;
161+ /* not 100% due to margins */
162+ max-height: 90%;
163+ /* scroll the list if needed */
164+ overflow-y: auto;
165+
161166}
162167
163168.rm_tag_filter .tag {
@@ -284,4 +289,4 @@
284289 min-height: calc(var(--mainFontSize)*2);
285290 width: var(--avatar-base-width);
286291 justify-content: center;
287292}
292 \ No newline at end of file
public/style.css+3 -1
@@ -3094,6 +3094,8 @@ select option:not(:checked) {
30943094
30953095#charListFixedTop {
30963096 padding: 5px;
3097+ /*prevent huge taglist from taking up the whole panel */
3098+ overflow-y: hidden;
30973099}
30983100
30993101#form_character_search_form {
@@ -6289,4 +6291,4 @@ body:not(.movingUI) .drawer-content.maximized {
62896291.info-block.error {
62906292 border-color: var(--error-color, #e87f7f);
62916293 background-color: rgba(241, 163, 163, 0.2);
62926294}
6294 \ No newline at end of file