Merge pull request #18614 from owncloud/fix-favorites-display

restore behavior where favorite stars only show up on hover, to not clutter the interface so much
This commit is contained in:
Vincent Petry 2015-08-28 12:03:09 +02:00
commit 61bfa3652f
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 {