Commit Diff
Commit:
878c6311fab72b1a6c981398bd1918c003baf146
Date:
Thu Aug 25 10:52:46 2022
UTC
Message:
css: simplify rule for threads vertical lines
netsurf' css engine didn't handle the "> ul ul" selector correctly.
rephrase it so even netsurf is happy :)
--- style.css
+++ style.css
@@ -85,9 +85,8 @@ hr {
list-style: none;
}
-.thread > ul ul {
- border-left: 1px dashed #cacaca;
-}
+.thread ul { border-left: 1px dashed #cacaca; }
+.thread > ul { border-left: 0px; }
.mail {
padding: 0.5rem 5px;
Omar Polo