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 -0Showing whitespace changes
public/css/world-info.css+8 -0
@@ -237,6 +237,14 @@
237 display: none;237 display: none;
238}238}
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
240span.select2-container .select2-selection__choice__display:has(> .regex_item),248span.select2-container .select2-selection__choice__display:has(> .regex_item),
241span.select2-container .select2-results__option:has(> .result_block .regex_item) {249span.select2-container .select2-results__option:has(> .result_block .regex_item) {
242 background-color: #D27D2D30;250 background-color: #D27D2D30;