diff options
author | albert-github <albert.tests@gmail.com> | 2018-06-02 12:13:14 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-06-02 12:13:14 (GMT) |
commit | 09ae56fcfc540ab79378ba83fdb95ff28401786c (patch) | |
tree | c8a23b1a0ec2c3f90dcde86bfa00aa36909e2c82 | |
parent | 9117548f0ce573b586928a740966844776c4c6ba (diff) | |
download | Doxygen-09ae56fcfc540ab79378ba83fdb95ff28401786c.zip Doxygen-09ae56fcfc540ab79378ba83fdb95ff28401786c.tar.gz Doxygen-09ae56fcfc540ab79378ba83fdb95ff28401786c.tar.bz2 |
Drop down lists in menu bar missing
As a result of pull request #636 the drop down lists in the main bar don't work anymore, furthermore the treeview is lacking the scrollbar when a text is to long (text is not shown.
-rw-r--r-- | templates/html/doxygen.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css index 1425dc1..8a1235a 100644 --- a/templates/html/doxygen.css +++ b/templates/html/doxygen.css @@ -167,6 +167,14 @@ ul { overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ } +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + .fragment { text-align: left; direction: ltr; |