summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2022-06-08 12:41:38 +0200
committeralbert-github <albert.tests@gmail.com>2022-06-08 12:41:38 +0200
commit0ac4c3383495a78c7a7e5dab9eb573df49f32004 (patch)
tree04dc8c36a1b9522ba78199443866746c776b6a42 /src/common
parentba96ba348dc9163a51752cab639f0333f5af0533 (diff)
issue #613 [cpp documentation] Footer needs to be generated with a more recent version of doxygen
With the doxygen versions <= 1.9.2 the default setting 'overflow: hidden;' causes problems. With the commit: ``` Commit: 590198b416cd53313d150428d2f912586065ea0d [590198b] Date: Wednesday, December 1, 2021 1:37:26 PM issue #8924 Horizontal scroll bar missing in HTML for wide class="dotgraph" objects ``` for the doxygen 1.9.3 version this has already been corrected but to run properly with the <= 1.9.2 version this setting is required
Diffstat (limited to 'src/common')
-rwxr-xr-xsrc/common/doc/stylesheet.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/doc/stylesheet.css b/src/common/doc/stylesheet.css
index f31f5df4..fb030e1f 100755
--- a/src/common/doc/stylesheet.css
+++ b/src/common/doc/stylesheet.css
@@ -16,3 +16,13 @@
height: auto;
padding-left: 16px;
}
+// With the doxygen versions <= 1.9.2 the default setting 'overflow: hidden;' causes problems.
+// With the commit:
+// Commit: 590198b416cd53313d150428d2f912586065ea0d [590198b]
+// Date: Wednesday, December 1, 2021 1:37:26 PM
+// issue #8924 Horizontal scroll bar missing in HTML for wide class="dotgraph" objects
+// for the doxygen 1.9.3 version this has already been corrected but to run properly with the <= 1.9.2 version
+// this setting is required
+ul {
+ overflow: visible;
+}