I am trying to change font-size and font-weight for query widget prompt labels for launchpad theme.
The loaction i am trying to change is jimu.js /css/ jimu-theme.css
.jimu .prompt
font-size : 14px;
font-weight: bole;
once i I change and save the padding inside the query widget goes off .
Please se help me to set the values in correct place
Kafil,
Here is the actual rule you should be using:
.jimu-single-filter-parameter .prompt {
font-size: 14px;
font-weight: bold;
}
Thanks Robert. This worked for me.
But when i try to increase the Font-Size and Font-weight for Listitem of tasks and header text of the taskname the padding goes off .
.jimu ellipsis {
font-size: 14px;
font-weight: bold;
}
Basically i want to change the font-size and font-weight for all widgets. How to do this.
Kafil,
Each widget normally has a css rule override that is specific to most text elements and there is not a way to make a general css rule to cover all widgets.
Don't forget to mark this question as answered by clicking on the "Mark Correct" link on the reply that answered your question.