recentchanges

This commit is contained in:
Michael Murtaugh
2019-07-22 17:20:59 +02:00
parent 004d262004
commit 8896a0ed62
21 changed files with 1148 additions and 80 deletions

View File

@@ -146,7 +146,7 @@ use {
/* Categories */
#cats .body {
/*display: none;*/
display: none;
}
#cats .placeholder {
@@ -160,7 +160,20 @@ use {
}
#cats.expanded .placeholder {
display: none;
display: block;
}
#cats.expanded .placeholder:hover {
color: var(--color-b);
}
#cats.expanded .placeholder:before {
content: "×";
font-size: 17px;
cursor: pointer;
}
#cats .placeholder:before {
content: "?";
font-size: 12px;
cursor: pointer;
}
#cats {
@@ -203,6 +216,11 @@ use {
color: black;
text-decoration: none;
}
#cats div.cat.highlight span.icon {
background-color: var(--color-b);
background-blend-mode: screen;
}
#cats div.cat a:hover,
#cats div.cat.highlight a {
color: var(--color-b);
}