diff options
author | ahoogol <ahoogol@gmail.com> | 2017-08-28 05:21:48 (GMT) |
---|---|---|
committer | ahoogol <ahoogol@gmail.com> | 2017-08-28 05:21:48 (GMT) |
commit | dda245dbab60bddab4e7593cccbf59117d00a812 (patch) | |
tree | a8a86607e272cda6fd6f845085e14e9b33ac6e81 /templates/html | |
parent | 3977359bd3fb5527a237c2c0cdb61407f2d85464 (diff) | |
download | Doxygen-dda245dbab60bddab4e7593cccbf59117d00a812.zip Doxygen-dda245dbab60bddab4e7593cccbf59117d00a812.tar.gz Doxygen-dda245dbab60bddab4e7593cccbf59117d00a812.tar.bz2 |
- Fixed: list item bullets overlap floating elements in html
- Fixed: fragment lines overlap floating elements in html
Diffstat (limited to 'templates/html')
-rw-r--r-- | templates/html/doxygen.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css index 3bb7316..4745ed1 100644 --- a/templates/html/doxygen.css +++ b/templates/html/doxygen.css @@ -163,10 +163,15 @@ dl.el { margin-left: -1cm; } -.fragment -{ - text-align: left; - direction:ltr; +ul { + overflow: hidden; /* Fixed: list item bullets overlap floating elements*/ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /* Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; } pre.fragment { |