Page 1 of 1

Increase Touch Resize Handle Area

Posted: Wed May 14, 2025 9:43 am
by ggale

On touch devices, the resize handle area on events is too small, making it difficult to resize.
Is there a way to increase the resize area?


Re: Increase Touch Resize Handle Area

Posted: Wed May 14, 2025 1:56 pm
by tasnim

You can increase the width of them using CSS

.b-sch-event::after {
    width: 13px;
}
.b-sch-event::before {
    width: 13px;
}

Hope it helps


Re: Increase Touch Resize Handle Area

Posted: Wed May 14, 2025 6:32 pm
by Animal

Or set the var it uses:

.b-sch-event-resizable-true::before, .b-sch-event-resizable-true::after {
    --handle-width: 3em !important;
}

It is already upgraded to 1.7em when @media (pointer: coarse)