diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-26 14:09:22 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-03-26 14:09:22 -0600 |
commit | e1ad305e0b7fddc3dd0c6a7b974e712f1f936202 (patch) | |
tree | 14e5ebffe9bbd3177ea51833b1021804ccc95db2 /apps/files | |
parent | f154b1d32ce0d469e5c4f96195e169f1aa4d5406 (diff) | |
download | nextcloud-server-e1ad305e0b7fddc3dd0c6a7b974e712f1f936202.tar.gz nextcloud-server-e1ad305e0b7fddc3dd0c6a7b974e712f1f936202.zip |
Fix pop over menu opacity
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files')
-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; |