From 0ac4c3383495a78c7a7e5dab9eb573df49f32004 Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 8 Jun 2022 12:41:38 +0200 Subject: 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 --- src/common/doc/stylesheet.css | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; +} -- cgit v1.2.3