fix(thread-list): Depressed+active state needs to be different for immediate click feedback

This commit is contained in:
Ben Gotow 2015-09-09 14:03:54 -07:00
parent 0b282f1d3d
commit ac3ca9d8f8
2 changed files with 11 additions and 1 deletions

View file

@ -272,7 +272,12 @@
// stars
.thread-list .thread-icon-star:hover,
.thread-list .thread-icon-star:hover
{
background-image:url(../static/images/thread-list/icon-star-@2x.png);
background-size: 16px;
-webkit-filter: brightness(90%);
}
.thread-list .list-item:hover .thread-icon-none:hover {
background-image:url(../static/images/thread-list/icon-star-action-hover-@2x.png);
background-size: 16px;

View file

@ -81,3 +81,8 @@
background-image:url(../static/images/important/Icon-Important-HoverActive@2x.png);
background-size: 16px;
}
.mail-important-icon.active:hover {
background-image:url(../static/images/important/Icon-Important-Active@2x.png);
background-size: 16px;
-webkit-filter: brightness(90%);
}