diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-08-28 12:03:09 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-28 12:03:09 +0200 |
commit | 61bfa3652f5719d18748d490b802223fc78a26e5 (patch) | |
tree | 642c6cea4fc90442df7cd0ad34100597cc46fbe7 /apps/files | |
parent | 933ac14b767f78d99f4b45456467e7513c57ffa7 (diff) | |
parent | 589b066c4cc4bd44539e2257b85f674f4832a140 (diff) | |
download | nextcloud-server-61bfa3652f5719d18748d490b802223fc78a26e5.tar.gz nextcloud-server-61bfa3652f5719d18748d490b802223fc78a26e5.zip |
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
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 4 | ||||
-rw-r--r-- | apps/files/css/mobile.css | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 4a56490fe0f..25a3df53050 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -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; diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index c5507a1e268..0641304d211 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -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 { |