Noob here… Trying to apply background-color to a Super Tile. Searched and tried several suggestions, but no love.
I have one theme named Mountain which has a background image. Within theme Mountain there were 2 styles: Default and Active.
Found this:
Custom Background Color when using Themes
When using themes including adding custom styles (for example: ‘warning’ is custom)
.tile.--theme-style-default { background-color: #2f3f6f!important; }
.tile.--theme-style-active { background-color: rgba(130, 0, 0, 0.5)!important; }
.tile.--theme-style-warning { background-color: red!important; }
Within Mountain theme, I created a new style named Super and added the following css to the Custom CSS section:
.tile.—theme-style-default { background-color: #000000!important; }
.tile.—theme-style-active { background-color: rgba(255,0,0,0.5)!important; }
.tile.—theme-style-super { background-color: rgba(0,255,0,0.5)!important; }
Despite having tiles containing default, active and super styles, in the super tile, the CSS does not take effect. The default and active style css does not getnoverwritten. Tried without background image - same story,
Can someone please point out the error of my ways??
Thank you