| Hi Jay & Chipp,
 re: I'm not sure if changing the "CloseWindowButton" Backgroundcolor Change is working...
 
 There are 2 different window close buttons, the first one is a <moi:WindowControlButton> with id="Close" - that one is one that you will only see on the Windows version when it is a maximized window, it will be a close button in the upper right corner of the main window. That one is controlled in moi.css by:
 
 moi\:WindowControlButton#CloseWindow:hover img {
 background-color:rgb(250,96,96);
 }
 
 moi\:WindowControlButton#CloseWindow:active img {
 background-color:rgb(235,9,9);
 }
 
 
 The one that Jay shows below is in flyout menus, that one is a <moi:SmallCloseWindowButton>, it's controlled in moi.css by:
 
 moi\:SmallCloseWindowButton:hover {
 background-color:rgb(250,96,96);
 border-color:rgb(124,124,124);
 }
 
 moi\:SmallCloseWindowButton:active {
 background-color:rgb(235,9,9);
 }
 
 - Michael
 |