diff options
author | ahoogol <ahoogol@gmail.com> | 2017-09-02 07:39:52 (GMT) |
---|---|---|
committer | ahoogol <ahoogol@gmail.com> | 2017-09-02 07:39:52 (GMT) |
commit | 1245145d6710abbb58057dc555fccac08ac8a3fa (patch) | |
tree | c5016f1b6f5a5c1ad31bcef0cb816f5f3d584eba /templates | |
parent | 2ad516fef49f95b9edafe7ade6d1ed6d35cb75f7 (diff) | |
download | Doxygen-1245145d6710abbb58057dc555fccac08ac8a3fa.zip Doxygen-1245145d6710abbb58057dc555fccac08ac8a3fa.tar.gz Doxygen-1245145d6710abbb58057dc555fccac08ac8a3fa.tar.bz2 |
-Fixed: last line underline overlap border in html fragment
Diffstat (limited to 'templates')
-rw-r--r-- | templates/html/doxygen.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css index d3cff21..1425dc1 100644 --- a/templates/html/doxygen.css +++ b/templates/html/doxygen.css @@ -164,13 +164,13 @@ dl.el { } ul { - overflow: hidden; /* Fixed: list item bullets overlap floating elements*/ + 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-x: auto; /*Fixed: fragment lines overlap floating elements*/ overflow-y: hidden; } @@ -188,8 +188,8 @@ pre.fragment { } div.fragment { - padding: 0px; - margin: 4px 8px 4px 2px; + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; background-color: ##FC; border: 1px solid ##CC; } |