diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-03-03 13:01:25 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-03-03 13:01:25 +0100 |
commit | f4411b02432e4e70c718da6f03977cbde51ae5b8 (patch) | |
tree | 2b0d6aa1098eed29ada5d847b68c2482860fe1e4 /apps/files | |
parent | 844e18a8b11e9322162b59a9553d5212fa57e9f9 (diff) | |
download | nextcloud-server-f4411b02432e4e70c718da6f03977cbde51ae5b8.tar.gz nextcloud-server-f4411b02432e4e70c718da6f03977cbde51ae5b8.zip |
durhurrrhurrr
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index cd339ad26a5..6030eedb51e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -126,14 +126,20 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #fileList a.action { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); + opacity: 0; + display:none; } -#fileList tr:hover a.action { +#fileList tr:hover a.action, #fileList a.action.permanent { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=.5)"; filter: alpha(opacity=.5); + opacity: .5; + display:inline; } #fileList tr:hover a.action:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; filter: alpha(opacity=1); + opacity: 1; + display:inline; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } |