diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-12-01 15:16:06 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-12-01 15:16:06 +0100 |
commit | b89aafc24137c5fbb25ec0d4f4fa5d11a1d5254f (patch) | |
tree | 4947995072b2517c3a4fe65b5576e6aa7f01e4b2 /apps/files | |
parent | de807fd88214c45b47e1b45c0c4933f2c6bcf36f (diff) | |
download | nextcloud-server-b89aafc24137c5fbb25ec0d4f4fa5d11a1d5254f.tar.gz nextcloud-server-b89aafc24137c5fbb25ec0d4f4fa5d11a1d5254f.zip |
We should always show permanent actions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 96b883bbc62..5906cbc5c31 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -662,20 +662,16 @@ html.ie8 .column-mtime .selectedActions { /* show share action of shared items darker to distinguish from non-shared */ #fileList a.action.action-share.permanent.shared-style, -#fileList a.action.action-favorite.permanent, /* show hovered permanent entries darker */ -#fileList tr a.action.action-share.permanent:hover, -#fileList tr a.action.action-share.permanent:focus, -#fileList tr a.action.action-menu.permanent:hover, -#fileList tr a.action.action-menu.permanent:focus { +#fileList tr a.action.action.permanent:hover, +#fileList tr a.action.action.permanent:focus { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important; filter: alpha(opacity=70) !important; opacity: .7 !important; display:inline; } /* always show actions on mobile, not only on hover */ -#fileList a.action.action-share.permanent, -#fileList a.action.action-menu.permanent { +#fileList a.action.permanent { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important; filter: alpha(opacity=30) !important; opacity: .3 !important; |