finish porting all the patch styles from style.css into vocabulary proper
Long-term solution
short-term solution +
medium-term solution +
use a CSS @import for style.css within any places that Vocabulary needs to be called, so that patch styles are included, rather than pulling in ONLY vocabulary core alone. Since, style.css is already loading in all the dependencies (including vocabulary) alone it should resolve any pathfinding issues for assets.
Expectation
The behavior of style.css should use already present variables where possible.
Additional context
In older browsers, especially Webkit 12, there might be issues with loading files due to layers, relative css urls, and related.
Description
The variable already exists for the cc-heart-filled reference in
library-vars.css
, which is imported at the top of style.css. Therefore:Short-term solution
On line 714 of
style.css
change to
Medium-term solution
style.css
into vocabulary properLong-term solution
@import
forstyle.css
within any places that Vocabulary needs to be called, so that patch styles are included, rather than pulling in ONLY vocabulary core alone. Since,style.css
is already loading in all the dependencies (including vocabulary) alone it should resolve any pathfinding issues for assets.Expectation
The behavior of
style.css
should use already present variables where possible.Additional context
In older browsers, especially Webkit 12, there might be issues with loading files due to layers, relative css urls, and related.
Resolution