aboutsummaryrefslogtreecommitdiff
path: root/haddock-api/resources
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix issue with instance expander hijacking type hyperlink click.Łukasz Hanuszczak2015-08-211-0/+2
|
* Improve placement of instance methods expander button.Łukasz Hanuszczak2015-08-211-4/+10
|
* Fix record field alignment when name is too longPhil Ruffwind2015-08-021-14/+15
| | | | | | | | | | | Change <dl> to <ul> and use display:table rather than floats to layout the record fields. This avoids bug #301 that occurs whenever the field name gets too long. Slight aesthetic change: the entire cell of the field's source code is now shaded gray rather than just the area where text exists. Fixes #301. Closes #421
* Link to the definitions to themselvesPhil Ruffwind2015-08-021-0/+3
| | | | | | | | | | | | | | | | | | Currently, the definitions already have an anchor tag that allows URLs with fragment identifiers to locate them, but it is rather inconvenient to obtain such a URL (so-called "permalink") as it would require finding the a link to the corresponding item in the Synopsis or elsewhere. This commit adds hyperlinks to the definitions themselves, allowing users to obtain links to them easily. To preserve the original aesthetics of the definitions, we alter the color of the link so as to be identical to what it was, except it now has a hover effect indicating that it is clickable. Additionally, the anchor now uses the 'id' attribute instead of the (obsolete) 'name' attribute. Closes #407
* Avoid JavaScript error during page load in non-frame modePhil Ruffwind2015-08-021-1/+1
| | | | | | | | | | In non-frame mode, parent.window.synopsis refers to the synopsis div rather than the nonexistent frame. Unfortunately, the script wrongly assumes that if it exists it must be a frame, leading to an error where it tries to access the nonexistent attribute 'replace' of an undefined value (synopsis.location). Closes #406
* Delete trailing whitespaceMateusz Kowalczyk2015-07-072-12/+12
|
* Fix issue with hyperlink highlight styling in Chrome browser.Łukasz Hanuszczak2015-06-302-44/+15
|
* Implement workaround for Chrome highlighting issues.Łukasz Hanuszczak2015-06-301-1/+11
|
* Add support for fancy highlighting upon hovering over identifier.Łukasz Hanuszczak2015-06-301-0/+46
|
* Add support for providing custom CSS files for hyperlinked source.Łukasz Hanuszczak2015-06-301-0/+55
|
* Fix alignment of Source links in instance table in FirefoxPhil Ruffwind2015-06-121-0/+13
| | | | | | | | | | | | | | | | | | | Due to a Firefox bug [1], a combination of 'whitespace: nowrap' on the parent element with 'float: right' on the inner element can cause the floated element to be displaced downwards for no apparent reason. To work around this, the left side is wrapped in its own <span> and set to 'float: left'. As a precautionary measure to prevent the parent element from collapsing entirely, we also add the classic "clearfix" hack. The latter is not strictly needed but it helps prevent bugs if the layout is altered again in the future. Fixes #384. Remark: line 159 of src/Haddock/Backends/Xhtml/Layout.hs was indented to prevent confusion over the operator precedence of (<+>) vs (<<). [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=488725
* Prevent Synopsis from using up too much horizontal spacePhil Ruffwind2015-03-161-0/+1
| | | | | | When long type signatures occur in the Synopsis, the element is stretched beyond the width of the window. Scrollbars don't appear, so it's impossible to read anything when this happens.
* Links to source location of class instance definitionsjpmoresmau2015-01-221-0/+9
|
* Move Haddock API to a separate packageSimon Hengel2014-08-2212-0/+1507