feat: add max-height and scrolling to world entry key input fields (#4769)

- Added 160px max-height to select2 multiple selection, primary key, and secondary key text areas in world entries
- Enabled vertical scrolling with hidden horizontal overflow for better UX with long content
This commit is contained in:
Wolfsblvt
2025-11-16 14:42:07 +01:00
committed by GitHub
parent 3af1622b38
commit 19ae4e7cc1
+8
View File
@@ -237,6 +237,14 @@
display: none;
}
.world_entry .select2-selection--multiple,
.world_entry textarea.keyprimarytextpole,
.world_entry textarea.keysecondarytextpole {
max-height: 160px;
overflow-y: auto;
overflow-x: hidden;
}
span.select2-container .select2-selection__choice__display:has(> .regex_item),
span.select2-container .select2-results__option:has(> .result_block .regex_item) {
background-color: #D27D2D30;