[frio] Add dynamic CSS property before introducing accented themes

- Introduce variables for font colors
- Set content background transparency on several background colors
- Change radio/checkbox colors depending on the link color
- Prevent post highlighting to end up on static white
This commit is contained in:
Hypolite Petovan 2020-08-15 20:25:33 -04:00
parent 43df577209
commit d5975ff0bc
3 changed files with 74 additions and 47 deletions

View file

@ -702,7 +702,7 @@ function scrollToItem(elementId) {
scrollTop: itemPos
}, 400).promise().done( function() {
// Highlight post/commenent with ID (GUID)
$el.animate(colWhite, 1000).animate(colShiny).animate(colWhite, 600);
$el.animate(colWhite, 1000).animate(colShiny).animate({backgroundColor: 'transparent'}, 600);
});
}