MoI dark theme problem

 From:  Michael Gibson
9209.4 In reply to 9209.1 
Hi Yuan,

re:
> Where can I change the text color of the file export dialog?

You mean for the drop-down controls, right? Those are <select> controls and it looks like WebKit makes those have color:black by default, so you'll need to override that. You should be able to do that by finding the rule in moi.css for
code:
    moi\:Select, select {
        ...
    }


and add in a color:inherit; property to it, like:
code:
    moi\:Select, select {
        ...
        color:inherit;
    }


Then the text color for the main page should go down into those controls too. V4 has this added already.


> Where can I set theSidePane command option text size?

The command options are in a page that has <body class="commandbody"> but MoI itself sets the default font-size (that you can set in Options dialog) directly on the <body> for every page that is loaded. So it won't work to apply it directly to the body (unless you use !important) but you can add a rule targeting the children of <body class="commandbody"> which should work. For example add this below the .commandbody rule in moi.css:

code:
.commandbody > * {
	font-size:80%;
}

The above would make the text in command options to be 80% of the standard UI text size.

Hope that helps! - Michael