We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the web browser is in "dark" mode, the calendar icon on the right side of the date input is barely visible, as shown here:
The issue is not present when the web browser is in "light" mode, as shown here:
Configure your computer so that apps use their "dark" mode by default.
Use a web browser to visit the official new.css demo site: https://newcss.net/demo/
Use the web browser's Developer Tools to edit an existing <input ... /> element so its type attribute has a value of date. For example:
<input ... />
type
date
- <input type="email" name="email" required=""> + <input type="date" name="email" required="">
See that the calendar icon in the date input field is barely visible.
Environment information:
Based upon what I see in the demo site's HTML source code (excerpt shown below), I think it is using new.css version 1.1.2:
new.css
1.1.2
<head> <!-- ... --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/inter.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css"> </head>
The text was updated successfully, but these errors were encountered:
Please assign this issue to me
Sorry, something went wrong.
this can be fixed with:
body { color-scheme: light dark; }
No branches or pull requests
Description
When the web browser is in "dark" mode, the calendar icon on the right side of the date input is barely visible, as shown here:
The issue is not present when the web browser is in "light" mode, as shown here:
To reproduce
Configure your computer so that apps use their "dark" mode by default.
Use a web browser to visit the official new.css demo site: https://newcss.net/demo/
Use the web browser's Developer Tools to edit an existing
<input ... />
element so itstype
attribute has a value ofdate
. For example:See that the calendar icon in the date input field is barely visible.
Environment information:
Based upon what I see in the demo site's HTML source code (excerpt shown below), I think it is using
new.css
version1.1.2
:The text was updated successfully, but these errors were encountered: