Example - Change the Colors Used in Query Studio Menus

Suppose you want to change the colors used in Query Studio menus.

Open the QSRVCommonUI.css style sheet in a text editor and change the code shown in bold font to your preferred colors.

.menuHeader
{
	font-size: 70%;
	color: #336699;
	border-collapse: collapse;
	font-weight: bold;
	...
}
.menuItem,
.menuItemSpacer,
.menuItemSpacerTop 
{
	background-color: #E3E9F3;
	border: solid #336699;
	border-width: 0px 1px;
	border-collapse: collapse;
}
.menuItem
{
	font-size: 70%;
	color: 336699;
	padding: 3px 5px;
	text-decoration: underline;
	cursor: pointer;
	cursor: hand;
}
.menuItemSelected
{
	color: 336699;
	border-collapse: collapse;
	cursor: default;
	padding: 3px 10px;
	border: 1px solid #336699;
	height:20px;
	font-size: 70%;
	font-weight: bold;
}