Make charlist tag filter list scrollable
| @@ -158,6 +158,11 @@ | |||
| 158 | flex-wrap: wrap; | 158 | flex-wrap: wrap; |
| 159 | align-items: flex-start; | 159 | align-items: flex-start; |
| 160 | margin: 5px 0; | 160 | margin: 5px 0; |
| 161 | /* not 100% due to margins */ | ||
| 162 | max-height: 90%; | ||
| 163 | /* scroll the list if needed */ | ||
| 164 | overflow-y: auto; | ||
| 165 | |||
| 161 | } | 166 | } |
| 162 | 167 | ||
| 163 | .rm_tag_filter .tag { | 168 | .rm_tag_filter .tag { |
| @@ -284,4 +289,4 @@ | |||
| 284 | min-height: calc(var(--mainFontSize)*2); | 289 | min-height: calc(var(--mainFontSize)*2); |
| 285 | width: var(--avatar-base-width); | 290 | width: var(--avatar-base-width); |
| 286 | justify-content: center; | 291 | justify-content: center; |
| 287 | } | 292 | } |
| \ No newline at end of file | 292 | \ No newline at end of file | |
| @@ -3094,6 +3094,8 @@ select option:not(:checked) { | |||
| 3094 | 3094 | ||
| 3095 | #charListFixedTop { | 3095 | #charListFixedTop { |
| 3096 | padding: 5px; | 3096 | padding: 5px; |
| 3097 | /*prevent huge taglist from taking up the whole panel */ | ||
| 3098 | overflow-y: hidden; | ||
| 3097 | } | 3099 | } |
| 3098 | 3100 | ||
| 3099 | #form_character_search_form { | 3101 | #form_character_search_form { |
| @@ -6289,4 +6291,4 @@ body:not(.movingUI) .drawer-content.maximized { | |||
| 6289 | .info-block.error { | 6291 | .info-block.error { |
| 6290 | border-color: var(--error-color, #e87f7f); | 6292 | border-color: var(--error-color, #e87f7f); |
| 6291 | background-color: rgba(241, 163, 163, 0.2); | 6293 | background-color: rgba(241, 163, 163, 0.2); |
| 6292 | } | 6294 | } |
| \ No newline at end of file | 6294 | \ No newline at end of file | |