Premium support for our pure JavaScript UI components


Post by gorakh.nath »

Hi team,
How can we override the style of buffer time that we are showing in calendar, I need to add a vertical line on starting of the buffer time line.
I have attached the expected and the current implementation that is coming.

Attachments
Screenshot 2023-02-06 at 5.52.18 PM.png
Screenshot 2023-02-06 at 5.52.18 PM.png (55.24 KiB) Viewed 97 times
Screenshot 2023-02-06 at 5.49.39 PM.png
Screenshot 2023-02-06 at 5.49.39 PM.png (52.46 KiB) Viewed 97 times

Post by marcio »

Hey gorakh.nath,

We don't have a custom property for that, but you can achieve that with a custom CSS like this

.b-sch-event-buffer.b-sch-event-buffer-before::before {
    content: "";
    width: 4px;
    height: 15px;
    background: #cccccc;
    margin-top: -6px;
}
Attachments
Screenshot 2023-02-06 at 10.29.38.png
Screenshot 2023-02-06 at 10.29.38.png (5.13 KiB) Viewed 90 times

Best regards,
Márcio


Post Reply