Themes
You can adjust the pre-shipped NetBackup Self Service theme.
To customize the NetBackup Self Service theme, you should modify the variables that are defined in the ThemeThemeName.css file under %Program Files%\Veritas\NetBackup Self Service version\Website\wwwroot\css.
:root {
--headerHeightNumber: 60px;
--headerLogoImage: url(../Images/Icons/Netbackup/nss_logo.png);
--headerBackgroundImage: none;
--headerBackgroundColor: #F9F9F9;
--pageOuterColor: #F0F0F0;
--pageOuterBackgroundImage: none;
--noticeInformationBackgroundColor: #FFFFFF;
--noticeInformationTextColor: #1D1D1D;
--noticeAlertBackgroundColor: #990101;
--noticeAlertTextColor: #FFFFFF;
}If you want to modify the default theme file, copy the ThemeDefault.css to a new file, such as ThemeVeritas.css. Then, modify the ThemeVeritas.css accordingly. Then, modify the appsettings.json file as shown:
"Theme": {
"DefaultName": "Veritas",
"AllowTenantOverride": false
}If you want to give a tenant a different theme, you need to create a theme file for the tenant. If you have a tenant named TeantA, then you can create a theme file ThemeTenantA.css. The default theme is applied for tenants without a customized theme file.
To enable the tenant-specific theme feature, you must change the appsettings.json file as shown:
"Theme": {
"DefaultName": "Default",
"AllowTenantOverride": true
}