-
Notifications
You must be signed in to change notification settings - Fork 494
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
Any unofficial successor going on? #335
Comments
What's there to improve? |
::selection color for instance. it's broken in in chrome that uses experimental flag for instance... i wish it could make use of color-scheme #300 so eg the icons like the calendar on the calendar picker for instance will be in dark mode then, and that one is impossible to style with just css or psudo selectors. there are also plenty of issues / PRs that are not being looked at. |
it also generated a very inefficient css variant where it bloated with lots of 91 times to be precise. there should really only be one declaration of and the rest of the css should only use just as one example: dialog {
background-color: #f7f7f7;
background-color: var(--background-alt);
color: #363636;
color: var(--text-main);
border: none;
border-radius: 6px;
border-color: #dbdbdb;
border-color: var(--border);
padding: 10px 30px;
}
@media (prefers-color-scheme: dark) {
dialog {
border-color: #526980;
border-color: var(--border);
}
}
@media (prefers-color-scheme: dark) {
dialog {
color: #dbdbdb;
color: var(--text-main);
}
}
@media (prefers-color-scheme: dark) {
dialog {
background-color: #1a242f;
background-color: var(--background-alt);
}
} |
I can understand that it's for supporting older browsers. but i don't thing this overhead is needed anymore. |
you should check pico.css this is clearly abandoned project. |
This project seems to be discontinued. no commits in years.
Are there anyone else that maintain a fork that's up to date with newest and greatest?
The text was updated successfully, but these errors were encountered: