mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
19 lines
No EOL
896 B
CSS
19 lines
No EOL
896 B
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/dark_date_picker_panel.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Makes the HTML <input type="date"> picker panel dark IF you use dark colored theme. It does not affect the input element on the page, only the popup */
|
|
|
|
@media (-moz-toolbar-prefers-color-scheme: dark){
|
|
#DateTimePickerPanel{ --panel-background: #2b2a33 !important; }
|
|
}
|
|
@-moz-document url("chrome://global/content/datepicker.xhtml"){
|
|
@media (-moz-toolbar-prefers-color-scheme: dark){
|
|
:root{
|
|
--border: 0.1rem solid #a4a4a4 !important;
|
|
--weekend-font-color: #ff4030 !important
|
|
}
|
|
body,.month-year-view{ background: #2b2a33 !important; color: #f4f4f4 !important; }
|
|
button.month-year::after,
|
|
button{ fill: #f4f4f4 !important; }
|
|
}
|
|
} |