diff options
| author | bobzel <zzzman@gmail.com> | 2025-05-15 14:21:32 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-05-15 14:21:32 -0400 |
| commit | 3741baee864a8bec757b4e50a58698a0064293be (patch) | |
| tree | a54d5d45944f10e6db23f04aee06430bd73dffb5 /src/client/views/nodes/calendarBox/CalendarBox.scss | |
| parent | 3f144d7bad65af2424d27e2e3a58eecd0d0e114b (diff) | |
scroll wheel fixes for calendarBox
Diffstat (limited to 'src/client/views/nodes/calendarBox/CalendarBox.scss')
| -rw-r--r-- | src/client/views/nodes/calendarBox/CalendarBox.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client/views/nodes/calendarBox/CalendarBox.scss b/src/client/views/nodes/calendarBox/CalendarBox.scss index e3e0bae4b..a607846df 100644 --- a/src/client/views/nodes/calendarBox/CalendarBox.scss +++ b/src/client/views/nodes/calendarBox/CalendarBox.scss @@ -1,3 +1,4 @@ +.calendarBox-interactive, .calendarBox { display: flex; width: 100%; @@ -5,6 +6,7 @@ transform-origin: top left; overflow: auto; > div { + pointer-events: none; width: 100%; height: 100%; .fc-timegrid-body { @@ -24,3 +26,8 @@ } } } +.calendarBox-interactive { + > div { + pointer-events: unset; + } +} |
