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
Signed| @@ -237,6 +237,14 @@ | ||
| 237 | 237 | display: none; |
| 238 | 238 | } |
| 239 | 239 | |
| 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 | + | |
| 240 | 248 | span.select2-container .select2-selection__choice__display:has(> .regex_item), |
| 241 | 249 | span.select2-container .select2-results__option:has(> .result_block .regex_item) { |
| 242 | 250 | background-color: #D27D2D30; |