summaryrefslogtreecommitdiffstats
path: root/templates/html/doxygen.css
diff options
context:
space:
mode:
authorahoogol <ahoogol@gmail.com>2017-08-28 05:21:48 (GMT)
committerahoogol <ahoogol@gmail.com>2017-08-28 05:21:48 (GMT)
commitdda245dbab60bddab4e7593cccbf59117d00a812 (patch)
treea8a86607e272cda6fd6f845085e14e9b33ac6e81 /templates/html/doxygen.css
parent3977359bd3fb5527a237c2c0cdb61407f2d85464 (diff)
downloadDoxygen-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/doxygen.css')
-rw-r--r--templates/html/doxygen.css13
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 {