You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an icon in the far right of the input but using the dark make it is almost impossible to see:
Compared to light theme:
<divclass="field"><labelclass="label">Date de début</label><divclass="control"><inputtype="date" class="input" value="2024-09-02"></div><pclass="help"></p></div>
The text was updated successfully, but these errors were encountered:
.input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(0); /* Default for light mode: dark icon */
opacity: 1;
}
@media (prefers-color-scheme: dark) {
.input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(1); /* Invert to make it white in dark mode */
}
}
There is an icon in the far right of the input but using the dark make it is almost impossible to see:
Compared to light theme:
The text was updated successfully, but these errors were encountered: