Hello, everyone.
I am having trouble figuring out how where to put my custom.css file for branding in the BI launchpad. I started out looking at some instructions on this forum in regard to version 4.0, but it appears 4.1 is different. I am just wanting to do some branding on the BI launchpad (the page that users see after logging into the system). I updated a customize.css file with the elements I wanted to customize, and I put that in the webpath.infofiew>META-INF>web>css, redeployed, re-started Tomcat, and nothing happened. I would appreciate any pointers. Obviously I am missing something.
This is all I was trying to update initially with my custom.css file:
/*=== (1) BI Launchpad login page ===*/
/* (1.1) customize background color and border of authentication fields container */
/* logonFields used to be div.logon_table */
.logonFields {
background-color: #8DC63F !important;
border: 2px solid #78A532 !important;
}
/* (1.6) customize the banner background pattern */
div.logonBanner {
background-color: #8DC63F !important;
}
/*=== (2) BI Launchpad Top part ===*/
/* (2.1.1) customize the top banner area */
#bannerArea {
background-image: url("../images/theme/banner_launchpad_icm.gif") !important;
/* (2.2.1) customize the top tab container */
div.topTab {
background-color: #8DC63F !important;
border-bottom: 2px solid #78A532 !important;
}
/*=== (8) HomePage rules (default homepage, or any workspace or compound module set as homepage) ===*/
/* (8.1.2) customize module title backgorund */
.WindowThemeinfoview .titleBG {
background-color: #8DC63F !important;
}
/* (8.1.3) customize border of modules */
.WindowThemeinfoview .windowBorder {
border-color: #78A532 !important;
}