Hover-effect for new messages

This commit is contained in:
Unknown 2017-06-07 21:43:32 +02:00 committed by Scott Nonnenberg
parent 6f0de2cd72
commit 235ac03775
2 changed files with 8 additions and 0 deletions

View file

@ -744,6 +744,10 @@ li.entry .error-icon-container {
.icon { .icon {
@include color-svg('/images/down.svg', white); @include color-svg('/images/down.svg', white);
} }
:hover {
background-color: #1472bd;
}
} }
} }
} }

View file

@ -230,11 +230,15 @@ $text-dark: #CCCCCC;
.icon:hover { .icon:hover {
background-color: white; background-color: white;
} }
&.new-messages { &.new-messages {
background-color: $blue; background-color: $blue;
.icon { .icon {
@include color-svg('/images/down.svg', white); @include color-svg('/images/down.svg', white);
} }
:hover {
background-color: #1472bd;
}
} }
} }
} }