Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User Choosing the Starting Day of the Week #3219

Closed
noxonad opened this issue Apr 12, 2024 · 0 comments
Closed

User Choosing the Starting Day of the Week #3219

noxonad opened this issue Apr 12, 2024 · 0 comments
Labels
enhancement New feature or request PR welcome Good for new contributor Stale

Comments

@noxonad
Copy link
Contributor

noxonad commented Apr 12, 2024

Describe the solution you'd like

By default the calendar in the timeline sections starts with Sunday and there's no easy way to change that. A good part of the people start their week with Monday, or even Saturday. The UI should let each user decide what's their personal preferences.

Type of feature

User Interface (UI)

Additional context

As a temporary fix for the people who want to start their week with Monday, I came up with the following solution:

In the Settings > System you can add additional css code. Enter the following and click save:

.grid-cols-7 { grid-template-columns: repeat(6,minmax(0,1fr)); }
.grid-cols-7 > div:first-of-type {
  grid-column-start: -1;
}

If you want your week to start with Saturday instead of Monday, insert just:

.grid-cols-7 > div:first-of-type {
  grid-column-start: 2;
}
@noxonad noxonad added the enhancement New feature or request label Apr 12, 2024
@boojack boojack added the PR welcome Good for new contributor label Apr 12, 2024
@github-actions github-actions bot added the Stale label Apr 26, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale May 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request PR welcome Good for new contributor Stale
Projects
None yet
Development

No branches or pull requests

2 participants