restore behavior where favorite stars only show up on hover, to not clutter the interface so much

This commit is contained in:
Jan-Christoph Borchardt 2015-08-27 23:09:32 +02:00
parent 5479db6371
commit 589b066c4c
2 changed files with 10 additions and 2 deletions

View File

@ -616,13 +616,13 @@ a.action > img {
}
/* show share action of shared items darker to distinguish from non-shared */
#fileList a.action.permanent.shared-style {
#fileList a.action.permanent.shared-style,
#fileList a.action.action-favorite.permanent {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important;
filter: alpha(opacity=70) !important;
opacity: .7 !important;
}
/* always show actions on mobile, not only on hover */
#fileList a.action,
#fileList a.action.action-menu.permanent {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important;
filter: alpha(opacity=30) !important;

View File

@ -43,6 +43,14 @@ table td.filename .nametext {
#fileList a.action-share span {
display: none;
}
#fileList a.action.action-favorite {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important;
opacity: .7 !important;
}
#fileList a.action.action-favorite {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important;
opacity: .3 !important;
}
/* ellipsis on file names */
table td.filename .nametext .innernametext {