From 758a1824c73f9bcb75e110884b8949eb825e58b1 Mon Sep 17 00:00:00 2001 From: william-napitupulu <121214479+william-napitupulu@users.noreply.github.com> Date: Mon, 1 Jun 2026 20:34:24 +0700 Subject: [PATCH] Update Styles.css (#463) Small update to the styles that bothered me, i noticed in the window/modal for calendar when editing a day the time icons had a mask that overlapped the icon. I simply added 'background-image: none' prop to it/ --- static/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/style.css b/static/style.css index 2c8e342..50f7890 100644 --- a/static/style.css +++ b/static/style.css @@ -32864,6 +32864,7 @@ button.cal-event-more:hover { opacity:1 !important; } .cal-form-bespoke input[type="time"]::-webkit-calendar-picker-indicator, .cal-form-bespoke input[type="datetime-local"]::-webkit-calendar-picker-indicator { background-color: var(--accent, var(--red)); + background-image: none; cursor: pointer; width: 14px; height: 14px; }