Icon upgrade

Also remove unused images.

// FREEBIE
This commit is contained in:
lilia 2016-04-01 11:03:26 -07:00
parent 367a62111b
commit d8d34e7afc
31 changed files with 74 additions and 79 deletions

View file

@ -38,3 +38,21 @@ $unread-badge-size: 21px;
$loading-height: 16px;
$big-avatar-min-width: 900px;
@mixin color-svg($svg, $color) {
-webkit-mask: url($svg) no-repeat center;
-webkit-mask-size: 100%;
background-color: $color;
}
@mixin header-icon-white($svg) {
@include color-svg($svg, rgba(255,255,255, 0.8));
&:hover {
@include color-svg($svg, white);
}
}
@mixin header-icon-black($svg) {
@include color-svg($svg, rgba(0,0,0, 0.5));
&:hover {
@include color-svg($svg, black);
}
}