Is there a way to change the first day of the week for the datetime picker in perspective? In Sweden it’s unsusal to put Sunday as the first day of the week and I can’t seem to find a way to change it.
well... idk if its easier by now but i have made a bunch of css that did this.
For those who want it, here is the magic! its not perfect but eh:
[image]
for theme.css
.iaDateRangePicker .calendarBar { grid-template-columns: none; } .calendarBar > div:nth-child(1) { grid-area: 1/8/1/8 !important; } .iaDateRangePicker .calendar{grid-template-columns: none;} .calendar > div[style$="2;"]{ grid-column-start: 8 !important; grid-column-end: 8 !important;}.calendar > div[style^="grid-area: 1"]{ grid-row-start: 2 !important;}.calendar > div[style^="grid-area: 2"]{ grid-row-start…
Thanks! It worked like a charm!