mirror of
https://github.com/Tim-Paik/srv.git
synced 2024-10-13 00:29:43 +00:00
0.8.3-beta firefox dark mode bug fix
This commit is contained in:
@ -18,6 +18,7 @@
|
||||
#header,
|
||||
#meta,
|
||||
#listing {
|
||||
font-family: sans-serif;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-spacing: 0;
|
||||
@ -131,22 +132,37 @@
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
color: #444444;
|
||||
filter: invert(1);
|
||||
|
||||
html,
|
||||
body,
|
||||
#header,
|
||||
#meta,
|
||||
#listing {
|
||||
color: #cacaca;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
#listing a span {
|
||||
filter: invert(1);
|
||||
#header nav span a {
|
||||
color: #cacaca;
|
||||
}
|
||||
|
||||
#header {
|
||||
padding: 1.5rem 5% 1rem;
|
||||
background-color: #0e0e0e;
|
||||
}
|
||||
|
||||
#listing table {
|
||||
border-top: 1px dashed #999999;
|
||||
}
|
||||
|
||||
#listing th,
|
||||
#listing td {
|
||||
border-bottom: 1px dashed #999999;
|
||||
}
|
||||
|
||||
#listing .goup svg,
|
||||
#listing .file svg {
|
||||
fill: #444444;
|
||||
}
|
||||
|
||||
#listing .dir svg {
|
||||
filter: invert(1);
|
||||
fill: #cacaca;
|
||||
}
|
||||
|
||||
#header a,
|
||||
|
Reference in New Issue
Block a user