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

19ae4e7cc104cba6c04c3ccf3eae837bc29281e3

Wolfsblvt <wolfsblvt@gmail.com>

Signed
1 files changed, +8 -0Ignore whitespace
public/css/world-info.css+8 -0
@@ -237,6 +237,14 @@
237237 display: none;
238238}
239239
240+.world_entry .select2-selection--multiple,
241+.world_entry textarea.keyprimarytextpole,
242+.world_entry textarea.keysecondarytextpole {
243+ max-height: 160px;
244+ overflow-y: auto;
245+ overflow-x: hidden;
246+}
247+
240248span.select2-container .select2-selection__choice__display:has(> .regex_item),
241249span.select2-container .select2-results__option:has(> .result_block .regex_item) {
242250 background-color: #D27D2D30;