diff options
author | Niklas Haas <git@nand.wakku.to> | 2014-03-15 15:17:18 +0100 |
---|---|---|
committer | Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk> | 2014-03-15 18:20:26 +0000 |
commit | 82ab2c09c19641e0ea89965c9af291043798486d (patch) | |
tree | a00a780248c46867d5a6f1483501874521377241 /resources/html | |
parent | 48f45676f7c6c79b249b51dde9a6791393860676 (diff) |
Fix issue #281
This is a regression from the data family instances change. Data
instances are now distinguished from regular lists by usage of the new
class "inst", and the style has been updated to only apply to those.
I've also updated the appropriate test case to test this a bit better,
including GADT instances with GADT-style records.
Diffstat (limited to 'resources/html')
-rw-r--r-- | resources/html/Ocean.std-theme/ocean.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/resources/html/Ocean.std-theme/ocean.css b/resources/html/Ocean.std-theme/ocean.css index ff4d1b53..de436324 100644 --- a/resources/html/Ocean.std-theme/ocean.css +++ b/resources/html/Ocean.std-theme/ocean.css @@ -433,19 +433,18 @@ div#style-menu-holder { margin: 0; } -.subs ul { +/* Render short-style data instances */ +.inst ul { height: 100%; padding: 0.5em; margin: 0; } -.subs ul, -.subs ul li.src { +.inst, .inst li { list-style: none; margin-left: 1em; } - .top p.src { border-top: 1px solid #ccc; } |