Nuclos custom CSS: style the Web Client via WEBCLIENT_CSS, adjust tabs, buttons and panels with custom selectors. |
Language: Deutsch · English
Customize the Web Client's look via CSS – through the WEBCLIENT_CSS system parameter or a Nuclet CSS file.
Auf dieser Seite |
Use the system parameter WEBCLIENT_CSS to override the Web Client's appearance (e.g. tabs, buttons, panels).
WEBCLIENT_CSS under Administration → Parameters, or.css file in the Nuclet extension area.
WEBCLIENT_CSS as a system parameter.
A lighter bar above the active tab's title:
.tab-background {
border-top: 4px solid rgba(0, 0, 0, 0.35);
}
.tab-background:hover {
border-top: 4px solid rgba(255, 255, 255, 0.55);
}
.p-highlight .tab-background {
border-top: 4px solid rgba(255, 255, 255, 0.55);
} |

Result: highlighted tab.
Tabs can be styled with the full power of CSS. Further selectors: |