Another alternative UI

 From:  Michael Gibson
1521.54 In reply to 1521.52 
Hi ed,

> 1. Change the text color, normal and highlighted

The text color comes from the color: attribute in moi.css - at the top of moi.css there are some classes defined for the body elements of different UI pieces, they look like this:

code:
.CommandBarBody
{
	margin:0px;
	color:#000000;
	background-color:#D2DFE1;
	white-space:nowrap;
}

The part that defines the text color is the color:#000000; line in there. If you change that to color:#FFFFFF; for example that would make the bottom command bar text to be white instead of black.

You can also use rgb notation for setting the color which you may find easier than the hex notation - rgb notation goes like this color:rgb(255,0,0);
the rgb notation has 3 command separated values for red, green, blue, with each one ranging from 0 to 255. More info on CSS color notation here: http://en.wikipedia.org/wiki/Web_colors

So update the color: attribute in all of those classes at the top of moi.css, like .CommandBarBody, .SidePaneBody, .MenuBody, etc... to set the text color.


re: highlighted - that depends on what particular kind of highlight you're talking about. Do you mean for selected text in a text input, or some controls also set their color attribute on mouseover, to change that go to the CSS for the particular control and there will be a color property listed under mouseover: that can be changed.


> 2. change the color of the division bars of the viewports when
> in split view, i would appreciate any help...

Some info on that part here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=3597.2

- Michael