bazen kullanilan icon degisecegi icin “font-weight” degisebiliyor… onu da soyle degistirmek gerekiyor:
span.votes {
.fa-chevron-up:before {
content: "\f164";
font-weight: 400;
}
.upvoted .fa-chevron-up:before {
content: "\f164";
font-weight: 900;
}
.fa-chevron-down:before {
content: "\f165";
font-weight: 400;
}
.downvoted .fa-chevron-down:before {
content: "\f165";
font-weight: 900;
}
}