turning off preselection highlighting

 From:  Michael Gibson
8435.10 In reply to 8435.8 
Hi Pior, it's also very common in Windows programs to have a stronger button highlight effect as well, in Microsoft Office for example.

You can change this in your installation of MoI currently though, for MoI v3 you would edit the moi.css file in the UI subfolder and find the hover rule for a command button, it's currently this:

code:
moi\:CommandButton:hover, moi\:CommandSplitButton:hover {
	border-color:rgb(153,158,161);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(237, 246, 249)), color-stop(30%, rgb(178, 223, 249)), color-stop(100%, rgb(237, 246, 249)));
}


If you remove the "background" line there then it will only have an outline highlight and not any background color change.

In MoI v2 the UI was structured a little differently, it's controlled by bitmap files rather than through CSS properties. In V2 you would need to edit the bitmap file CommandButton_mouseover.png in the UI subfolder to change the mouseover look for a command button.

- Michael