Look at the requirement.
The values in the drop down list are having black color by default.
The requirement is to change the color to red for all the drop down list values.
We have to edit 2 css files.
C:\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\b_mozilla_4\views.css
AND
C:\OracleBI\web\app\res\s_oracle10\b_mozilla\views.css
SELECT {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
}
The values in the drop down list are having black color by default.
The requirement is to change the color to red for all the drop down list values.
We have to edit 2 css files.
C:\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\b_mozilla_4\views.css
AND
C:\OracleBI\web\app\res\s_oracle10\b_mozilla\views.css
Look for this class in .ViewTable{ }
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
}
Edit
SELECT {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
color: #FF4500;
}
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
color: #FF4500;
}
Save the changes. Remember you have to make changes in views.css that is present in both the locations as mentioned above.
Restart the OBI services.
Clear the cache, refresh metadata and files.
Have a nice day !!!
No comments:
Post a Comment