diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 18:01:15 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 18:01:15 +0200 |
commit | a4a52733f949fe66134031a552a50717f1788909 (patch) | |
tree | 4a8ae78ee75818ff13e005b912db45b4685f5f5b | |
parent | 067475a9071753d018f48cb42cb78d5baa13f0fc (diff) | |
download | nextcloud-server-a4a52733f949fe66134031a552a50717f1788909.tar.gz nextcloud-server-a4a52733f949fe66134031a552a50717f1788909.zip |
Fixed position of "delete" icon in files app
There was an issue where only Chrome allows setting position: relative
on a td element.
This fix now works in IE8, Firefox and Chrome.
Fixes #5056
-rw-r--r-- | apps/files/css/files.css | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 953b11a16f9..c4a231551b1 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -252,9 +252,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } #fileList a.action.delete { position: absolute; right: 0; - top: 0; - margin: 0; - padding: 15px 14px 19px !important; + padding: 9px 14px 19px !important; } a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } |