diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2017-03-28 09:47:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-28 09:47:48 +0200 |
commit | f88a578f8e49dc1e7078ed5e5c193aaac297aa73 (patch) | |
tree | 698c75d7a8e069a22e9edc50d74d5e48180e2195 /apps | |
parent | 6309b9ec1db1e16eaf8a2717f1bd60f39afaf15d (diff) | |
parent | 0322e7a29ed8de9a87b7f057ad4d77b24c257200 (diff) | |
download | nextcloud-server-f88a578f8e49dc1e7078ed5e5c193aaac297aa73.tar.gz nextcloud-server-f88a578f8e49dc1e7078ed5e5c193aaac297aa73.zip |
Merge pull request #4082 from nextcloud/fix-menu
Fix pop over menu opacity
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.scss | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 54ed05385fa..1a95ce1e34b 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -622,7 +622,6 @@ html.ie8 .column-mtime .selectedActions { #fileList tr:hover a.action, #fileList a.action.permanent, #fileList tr:focus a.action, -#fileList a.action.permanent, #fileList tr:hover a.action.no-permission:hover, #fileList tr:focus a.action.no-permission:focus, /*#fileList .name:focus .action,*/ @@ -648,6 +647,19 @@ html.ie8 .column-mtime .selectedActions { opacity: .7; display:inline; } + +#fileList .fileActionsMenu a.action.permanent { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important; + filter: alpha(opacity=70) !important; + opacity: .7 !important; +} +#fileList .fileActionsMenu a.action.permanent:hover, +#fileList .fileActionsMenu a.action.permanent:focus { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important; + filter: alpha(opacity=100) !important; + opacity: 1 !important; +} + #fileList tr a.action.disabled { background: none; } @@ -655,8 +667,8 @@ 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, /* show hovered permanent entries darker */ -#fileList tr a.action.action.permanent:hover, -#fileList tr a.action.action.permanent:focus { +#fileList tr a.action.permanent:hover, +#fileList tr a.action.permanent:focus { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important; filter: alpha(opacity=70) !important; opacity: .7 !important; |