Unify the effects on the tab items Allow the title to cover the top of the page and not bunch up to the left Use green text rather than visually discordant gray boxes in tabs Put the platform name in the document title
Signed-off-by: Mike Holmes <[email protected]> --- doc/doxygen.cfg | 2 +- doc/odpdoxygen.css | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/doxygen.cfg b/doc/doxygen.cfg index 52c83a9..aef9d0d 100644 --- a/doc/doxygen.cfg +++ b/doc/doxygen.cfg @@ -1,4 +1,4 @@ -PROJECT_NAME = "API Reference Manual" +PROJECT_NAME = "API Reference Manual for $(WITH_PLATFORM)" PROJECT_NUMBER = $(VERSION) PROJECT_LOGO = $(SRCDIR)/doc/images/ODP-Logo-HQ.png QUIET = YES diff --git a/doc/odpdoxygen.css b/doc/odpdoxygen.css index b96ab93..9523d77 100644 --- a/doc/odpdoxygen.css +++ b/doc/odpdoxygen.css @@ -4,9 +4,9 @@ body { } #titlearea { - width: 30%; + width: 100%; display: inline-block; - border-bottom: 0; + border-bottom: 3px solid #7AC043; } .tabs, .tabs2, .tabs3 { width: 60%; @@ -27,13 +27,14 @@ body { } .tablist li.current a { background-image: none; - background: #555; + background: #0; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; - color: #FEE639; + color: #22a35d; + text-shadow: 0px 0px 0px; } .tablist a:hover { - background-image: none; background: #555; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; - color: #FEE639; + background-image: none; background: #0; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; + color: #22a35d; } #projectname { font: font-family: 'Squada One', cursive; -- 2.1.0 _______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
