Skip to content

Commit

Permalink
Fix Star Emoji Icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Sea-n committed Oct 14, 2019
1 parent ba67b92 commit 260940a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
Binary file added img/star-off-hover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/star-off.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/star-on.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 12 additions & 7 deletions style.css
Expand Up @@ -126,17 +126,22 @@ span.underline {
font-size: 1.6em;
}

#list .favorited:before {
content: "⭐️";
#list .favorited {
background-image: url("img/star-on.png");
height: 1em;
width: 1em;
background-size: cover;
}

#list .not-fav:before {
content: "★";
color: lightGray;
#list .not-fav {
background-image: url("img/star-off.png");
height: 1em;
width: 1em;
background-size: cover;
}

#list .not-fav:hover::before {
color: darkGray;
#list .not-fav:hover {
background-image: url("img/star-off-hover.png");
}

#list th.sub {
Expand Down

0 comments on commit 260940a

Please sign in to comment.