1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

fix "details link" colors in light theme

and modify transparency in "details" dark theme
This commit is contained in:
olafklingt 2024-04-21 23:07:18 +02:00 committed by olaf
parent 07c61ef3c9
commit 01e8e689ce

View file

@ -114,13 +114,19 @@ html[data-theme="dark"] .highlight .gd {
} }
html[data-theme="dark"] details { html[data-theme="dark"] details {
background-color: #202736; background-color: #323c537d;
border: 1px solid #202736; border: 1px solid #323c537d;
color: inherit !important;
} }
html[data-theme="light"] details { html[data-theme="light"] details {
background-color: #6097c1; background-color: #abc8debf;
border: 1px solid #6097c1; border: 1px solid #abc8debf;
color: inherit !important; }
tml[data-theme="dark"] details a {
color: #6097c1;
}
html[data-theme="light"] details a {
color: #0042aa;
} }