Amaury
Well-known member
Sometimes when I make a change to a template, such changing a hard coded shade from black and white, and save it, the template acts like it's still default as if I didn't make any changes. I obviously can't revert it because it supposedly has its factory settings.
It'll even sometimes 'cause display issues with the style, such as here, where I simply changed this...
... to this:
It'll even sometimes 'cause display issues with the style, such as here, where I simply changed this...
Code:
.button:active,
.button.ToggleButton.checked,
.buttonProxy:active .button
{
@property "buttonActive";
border-top-color: rgb(0,;
border-right-color: 0,;
border-bottom-color: white;
border-left-color: 0,;
outline: 0;
@property "/buttonActive";
}
... to this:
Code:
.button:active,
.button.ToggleButton.checked,
.buttonProxy:active .button
{
@property "buttonActive";
border-top-color: rgb(0,;
border-right-color: 0,;
border-bottom-color: black;
border-left-color: 0,;
outline: 0;
@property "/buttonActive";
}