MoI discussion forum
MoI discussion forum

Full Version: Old query from a new scricptor

From: 777RAVEN777
11 Jan 2019   [#1]
I know this has been discussed ad nauseum in the forum before, but I can't find any specific references.......
This is the question:

In what part of the moi.css will I find coding that alters the text colour in the dimensions field of the info box that appears when an object is highlighted - as in these pics:








As you can see the text is invisible in one as it's the same colour as the background & I want to change it to white.

Cheers!

Image Attachments:
1.jpg  2.jpg 


From: Michael Gibson
11 Jan 2019   [#2] In reply to [#1]
Hi Brendan, it looks like it's not in moi.css but is instead defined locally in the file SidePaneContextArea.htm . Look for the rule like this:
code:
		#PropObjectSize {
			color:#555;
			font-size:90%;
			word-wrap:break-word;
			overflow-x:hidden;
		}

Change the color: property there, or remove it if you want it to have the regular text color.

- Michael
From: 777RAVEN777
11 Jan 2019   [#3] In reply to [#2]
Wheeeeee that was cool - Thanks Michael!