XF 2.1 Watch and Mark as Read Button Colors

Thunder7ga

Member
How do I change the colors of the WATCH and MARK AS READ buttons without affecting any other colors associated with buttons? Been searching, but haven't found the right combo yet. Thanks!

201835
 
There's no real specific unique classes on mark read / watch. You could add something like this in extra.less though:

Code:
.block-outer-opposite a.button.button--link {
    background-color: pink;
    &[data-sk-watch="Watch"] { background-color: green; }
}

the pink would target all link buttons in that little area. To make the watch button be a different color, it uses the line below the background-color: pink;.
 
Top Bottom