...
Code Block |
---|
C:\ProgramData\itsense\Templates\CoreLogin\general\Views\Home\HomePageExtension.cshtml |
Portal Layout Files : Logo & Footer
You can override logo and footer by adding content to the following files:
Code Block |
---|
C:\ProgramData\itsense\Templates\SelfService\Features\Shared\Layout\_Logo.cshtml
C:\ProgramData\itsense\Templates\SelfService\Features\Shared\Layout\_Footer.cshtml |
Portal color theme
You can override specific colors for application ( like primary color that is used for navigation and primary buttons) by overriding following file
Code Block |
---|
C:\ProgramData\itsense\Templates\SelfService\uicontrols\app-config.js |
Content of the file should be in the following structure:
Code Block |
---|
var appConfig = {
themes: {
light: {
primary: '#0069b4',
secondary: '#424242',
accent: '#82B1FF',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FFC107',
}
}
} |
Above you can see that there is theme light which is used by default. In future it should be possible to switch application theme to dark mode which will use different set of colors.
Portal custom styling
You can override styles for specific parts of the application by applying custom styles in the following file
Code Block |
---|
C:\ProgramData\itsense\Templates\SelfService\css\custom.css |