Hi all,
This is a tip on how to override the CSS in any query or form i.e. you can change any CSS setting for e.g. 1 specific query.
Figure out which CSS file the query use. In this example it´s bluebay.css for a Blue bay query. NB: Figure this out by using the browser developer tools.
Figure out which CSS class the setting you want to change has. In this example I will change the query header settings and the CSS class is ".x-panel-header-default". NB: Figure this out by using the browser developer tools.
In file bluebay.css, create a new CSS class (.myQueryHeaderClass) which will be your override class. Add the class from step 2 to your override class:
.myQueryHeaderClass .x-panel-header-default {background-color:#000 !important;background-image:none !important; }
In the query where you want you new settings add:
"config.cls="myQueryHeaderClass";"
NB: With this fix you can change basically all CSS settings for any query or form and you can add multiple classes (step 2 classes) to your override class.