diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-11-23 16:40:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 16:40:10 +0100 |
commit | 6d925507724ff403a958f60e7829200c343a960c (patch) | |
tree | fc3872a9c01fbdf5f95696a0a84aabde6df70a61 /apps | |
parent | e03512d4bc617555a29476ddf4ac40bf676d1f0b (diff) | |
parent | 6281607d7ac45a5255611b5df76f9c992599fc66 (diff) | |
download | nextcloud-server-6d925507724ff403a958f60e7829200c343a960c.tar.gz nextcloud-server-6d925507724ff403a958f60e7829200c343a960c.zip |
Merge pull request #2278 from nextcloud/filelist-share-visible
make the share icon in the filelist visible again
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index c0460ff6058..1983d51809c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -652,7 +652,7 @@ html.ie8 .column-mtime .selectedActions { #fileList .name:focus a.action:focus { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); - opacity: 7; + opacity: .7; display:inline; } #fileList tr a.action.disabled { @@ -660,14 +660,20 @@ html.ie8 .column-mtime .selectedActions { } /* show share action of shared items darker to distinguish from non-shared */ -#fileList a.action.permanent.shared-style, -#fileList a.action.action-favorite.permanent { +#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 { -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 { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important; filter: alpha(opacity=30) !important; |