0 votes
by (170 points)
I have made changes to the body format (colors an such) and i want it to be ignored by the sidebar (twine 2, sugarcube 2) How would i go about this?

1 Answer

0 votes
by (44.7k points)

Rather than trying to get the UI bar to ignore the CSS changes to the body element, it's easier to simply override them.  For example:

#ui-bar {
	color: #eee;
}

would set the font color on the UI bar back to the default color.

So, just override whatever changes you made to the body with the default like that and you should be good.

 

...