summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorAdam Porter <adam@alphapapa.net>2024-06-13 00:19:13 -0500
committerAdam Porter <adam@alphapapa.net>2024-06-13 00:19:13 -0500
commitdf29bc50fbcdca91296f3169947c06d20e597e88 (patch)
tree4eac507bcff40adf78b5bd42c4c0186a284cc8b3 /html
parent8fc5653d2d9aea3851a230bea8cbe00cc11b88b6 (diff)
* html/layout.css: (ol, ul) Enable bullets, numbers
This rule was causing ordered lists to be rendered without their numbers. I don't know why this rule was present; it may have been a stylistic choice earlier in development, before ELPA was rendering packages' readmes into the HTML, when it was likely that fewer types of elements were present in ELPA's HTML, so the problem was not noticed. Due to the way the rest of the page's layout is implemented, this introduces a minor "ugliness": that, e.g. a numbered list's numbers are aligned outside of the containing DIV. This happens because all of the DIVs on the page have their margin and padding set to 0, without which OLs and ULs would be naturally indented compared to sibling paragraphs. This will be handled in later commits which will attempt to solve the margin/padding issues more "holistically." (ol, ul): Delete list-style rule.
Diffstat (limited to 'html')
-rw-r--r--html/layout.css3
1 files changed, 0 insertions, 3 deletions
diff --git a/html/layout.css b/html/layout.css
index 0b22aad..6bcac88 100644
--- a/html/layout.css
+++ b/html/layout.css
@@ -40,9 +40,6 @@ footer, header, hgroup, menu, nav, section {
body {
line-height: 1;
}
-ol, ul {
- list-style: none;
-}
blockquote, q {
quotes: none;
}