summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-08-06 13:05:45 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-08-06 13:05:45 +0200
commitcb3a5e53721b03d2d12c0ebe227f1a41dc9656f8 (patch)
treebbf25260e9f2cdd755b4fbd6ff353cc8275d4957 /style.css
parente6f348c72809abb38667448dd6f7fcf12db432a3 (diff)
sfeed_frames, sfeed_html: don't use HTML tables
reasons: - HTML table rendering is extremely slow (invalidate because of resizing cells etc). - whitespace wrapping does not work properly in ancient browsers, links(1).
Diffstat (limited to 'style.css')
-rw-r--r--style.css18
1 files changed, 1 insertions, 17 deletions
diff --git a/style.css b/style.css
index e686cd1..7bcf0d0 100644
--- a/style.css
+++ b/style.css
@@ -26,7 +26,7 @@ h2 {
#sidebar a {
padding: 5px 3px 5px 10px;
}
-#sidebar a, #items a {
+#sidebar a {
display: block;
}
#sidebar a, #items h2 a {
@@ -35,11 +35,6 @@ h2 {
div#items {
padding: 0 15px;
}
-div#items table tr td {
- white-space: nowrap;
- font-size: 9pt;
- padding: 1px;
-}
body.noframe div#sidebar {
position: fixed;
top: 0;
@@ -69,14 +64,3 @@ body.frame .content {
font-family: sans;
font-size: medium;
}
-/* show only new when body has newonly class */
-body.newonly tr,
-body.newonly li {
- display: none;
-}
-body.newonly li.n {
- display: list-item;
-}
-body.newonly tr.n {
- display: table-row;
-}