Any ideas on how to apply with CSS the change of styles when a "Like" has been applied and when it hasn't? There is no specific class to differentiate them, the only thing that changes is the text that changes between "Like" and "Unlike"
I tried using this CSS3 selector (contains) but it didn't work:
.item-like:contains("Unlike") .Button:before {
color: red;
font-family: 'Font Awesome 5 Free';
font-weight: 600;
font-size: 17px;
content: '\f165'; /* Thumbs down -- testing */
margin-right: 4px;
vertical-align: -1px;
}