Commit Diff
Commit:
878c6311fab72b1a6c981398bd1918c003baf146
From:
Omar Polo <op@omarpolo.com>
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 :)
commit - 5b01d758b6e1c615bec81c44ae1cfa4080e52d54
commit + 878c6311fab72b1a6c981398bd1918c003baf146
blob - 42eb4509044ca7f4b0be69cbbca0d0f36d2e7696
blob + 569fe66ad44e10e79a8727ac579e40bb0d7f592a
--- 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