MoI GUI Builder released for Mac and PC!

 From:  Michael Gibson
7245.25 In reply to 7245.23 
Hi Jay & Chipp, just some quick notes on the location of the CSS for those:

> the hover Color here:



That's a <moi:LabelButton>, the css for its background colors for hovered and active (when clicked down) are in moi.css:
code:
moi\:LabelButton:hover, .label_button:hover {
	background-color:#BBBBBB;
}

moi\:LabelButton:active, .label_button:active {
	background-color:#999999;
}



------------------


> Background here:



That one is in StyleMenu.htm, in a stylesheet in the <head> element, the one for id="Container":
code:
			#Container {
				...
				background-color:white;
				...
			}



------------------


> and here:



That one is in EditStylesDialog.htm, in a stylesheet in the <head> element, the one for id="StylesContainer":
code:
			#StylesContainer {
				...
				border:1px solid #CCC;
				background-color:#FFF;
				...
			}



------------------


> Color of the pressed PushButton:



That one is in moi.css, the one that controls the active state of a moi:PushButton :
code:
moi\:PushButton:active > div {
	background:rgb(205,215,227);
	-webkit-box-shadow:inset 0px -1px rgb(255,255,255), inset 2px 2px rgb(180,180,180);
}


- Michael