diff options
author | Alec Theriault <alec.theriault@gmail.com> | 2018-11-07 10:22:31 -0800 |
---|---|---|
committer | Alec Theriault <alec.theriault@gmail.com> | 2018-11-07 12:37:18 -0800 |
commit | 2a46036ea4e2e6bb6505ebbfd3e4609aeb7c3845 (patch) | |
tree | bf069d7d4f2072c100cf5166ffa9f357d0636b3f /haddock-api/resources/html | |
parent | 74f791936f28b175265994494412698e90d0e85f (diff) |
Fix issues around plus/minus
* swap the minimize unicode to something more intuitive
* use new unicode expander/collapser for instance lists
* address some alignment issues in the "index" page
Diffstat (limited to 'haddock-api/resources/html')
-rw-r--r-- | haddock-api/resources/html/NewOcean.std-theme/minus.gif | bin | 56 -> 0 bytes | |||
-rw-r--r-- | haddock-api/resources/html/NewOcean.std-theme/new-ocean.css | 14 | ||||
-rw-r--r-- | haddock-api/resources/html/NewOcean.std-theme/plus.gif | bin | 59 -> 0 bytes |
3 files changed, 6 insertions, 8 deletions
diff --git a/haddock-api/resources/html/NewOcean.std-theme/minus.gif b/haddock-api/resources/html/NewOcean.std-theme/minus.gif Binary files differdeleted file mode 100644 index 1deac2fe..00000000 --- a/haddock-api/resources/html/NewOcean.std-theme/minus.gif +++ /dev/null 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 8416176c..7568032f 100644 --- a/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css +++ b/haddock-api/resources/html/NewOcean.std-theme/new-ocean.css @@ -352,7 +352,7 @@ ul.links li a { .show { display: inherit; } .clear { clear: both; } -.collapser:before, .expander:before { +.collapser:before, .expander:before, .noexpander:before { font-size: 1.2em; color: #9C5791; display: inline-block; @@ -360,11 +360,15 @@ ul.links li a { } .collapser:before { - content: '⊗'; + content: '⊖'; } .expander:before { content: "⊕"; } +.noexpander:before { + content: "⊕"; + visibility: hidden; +} .collapser, .expander { cursor: pointer; @@ -380,12 +384,6 @@ ul.links li a { summary { cursor: pointer; outline: none; - list-style-image: url(plus.gif); - list-style-position: outside; -} - -details[open] > summary { - list-style-image: url(minus.gif); } pre { diff --git a/haddock-api/resources/html/NewOcean.std-theme/plus.gif b/haddock-api/resources/html/NewOcean.std-theme/plus.gif Binary files differdeleted file mode 100644 index 2d15c141..00000000 --- a/haddock-api/resources/html/NewOcean.std-theme/plus.gif +++ /dev/null |