Skip to content

Commit 78d7bd0

Browse files
committed
Add scrollbars to tiny_select_area when content exceeds max height
- Added max-height: 200px to prevent the select area from growing too large - Added overflow-y: auto to enable vertical scrolling when content exceeds max height - Added overflow-x: hidden to prevent horizontal scrolling - This improves usability when the gap selection area contains many items
1 parent 25c6d8c commit 78d7bd0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

styles.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ Visual feedback for gap select area
6868
padding: 10px;
6969
background-color: #f9f9f9;
7070
min-height: 100px;
71+
max-height: 200px;
72+
overflow-y: auto;
73+
overflow-x: hidden;
7174
}
7275

7376
#tiny_select_area span[id^="id"] {

0 commit comments

Comments
 (0)