Details
-
Bug
-
Resolution: Fixed
-
Minor
-
6.2-milestone-2
-
None
-
Unknown
-
N/A
-
N/A
-
Description
See nav-tabs.png
.xwikitabbar is using the BS .nav-tabs styling.
In flamingo/less/bootstrap/navs.less we have
.xwikitabbar>li.active>a { background-color: @nav-tabs-active-link-hover-bg; }
where in flamingo/less/bootstrap/variables.less
@body-bg: #fff; @nav-tabs-active-link-hover-bg: @body-bg;
in flamingo/less/variablesInit.vm we have
@body-bg: $theme.pageBackgroundColor; @nav-tabs-active-link-hover-bg: $theme.pageContentBackgroundColor;
with /templates/colorThemeInit.vm
'pageBackgroundColor' : '#ECECEC', 'pageContentBackgroundColor' : '#FFFFFF',
and with ColorThemes.DefaultColorTheme
'pageBackgroundColor' = '#F5F5F5', 'pageContentBackgroundColor' = '#FFFFFF',
The result, instead of having
@nav-tabs-active-link-hover-bg = #FFFFFF
we have
@nav-tabs-active-link-hover-bg = #F5F5F5