diff options
author | Alec Theriault <alec.theriault@gmail.com> | 2018-10-25 21:05:13 -0700 |
---|---|---|
committer | Alec Theriault <alec.theriault@gmail.com> | 2018-10-25 21:07:12 -0700 |
commit | 6a5ebcc1511779f8ee7cae8cd45308ffd449b71a (patch) | |
tree | 28cafc983337a68cb01d6c038ae0a092e995b81c /haddock-api | |
parent | ed1a0c923823b1372928e3ee3b9e41c1df517fc3 (diff) |
Don't hide bullets in method docs
I think thst CSS was meant only to deal with fields and the
effect on bullets was accidental.
Fixes #926.
Diffstat (limited to 'haddock-api')
-rw-r--r-- | haddock-api/resources/html/NewOcean.std-theme/new-ocean.css | 4 | ||||
-rw-r--r-- | haddock-api/resources/html/Ocean.theme/ocean.css | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css b/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css index 85d3c4d2..6751d15b 100644 --- a/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css +++ b/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css @@ -682,13 +682,13 @@ div#style-menu-holder { margin-bottom: 0.6em; } -.subs ul { +.subs.fields ul { list-style: none; display: table; margin: 0; } -.subs ul li { +.subs.fields ul li { display: table-row; } diff --git a/haddock-api/resources/html/Ocean.theme/ocean.css b/haddock-api/resources/html/Ocean.theme/ocean.css index ddedcace..32c68927 100644 --- a/haddock-api/resources/html/Ocean.theme/ocean.css +++ b/haddock-api/resources/html/Ocean.theme/ocean.css @@ -466,13 +466,13 @@ div#style-menu-holder { visibility: hidden; } -.subs ul { +.subs.fields ul { list-style: none; display: table; margin: 0; } -.subs ul li { +.subs.fields ul li { display: table-row; } |