diff options
author | VicDeo <dubiniuk@owncloud.com> | 2013-10-07 10:58:47 -0700 |
---|---|---|
committer | VicDeo <dubiniuk@owncloud.com> | 2013-10-07 10:58:47 -0700 |
commit | 372a73d43a6db73c58c5065fd8b39acfc5915b26 (patch) | |
tree | 3ae7aea2f1e5687e992336c9b97c9a10a55a77e9 | |
parent | c655eec3d1866d0e5b75e1a9366f406687b6affc (diff) | |
parent | 980fc9cc7ee9a2e5b33fd2fd10bc028aeb83cccf (diff) | |
download | nextcloud-server-372a73d43a6db73c58c5065fd8b39acfc5915b26.tar.gz nextcloud-server-372a73d43a6db73c58c5065fd8b39acfc5915b26.zip |
Merge pull request #5184 from owncloud/fix-trash-bin-button
Fix trash bin button
-rw-r--r-- | apps/files/css/files.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e26c1a89b78..cbf34279f54 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -8,7 +8,7 @@ .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } -#new, #trash { +#new { z-index: 1010; float: left; padding: 0 !important; /* override default control bar button padding */ @@ -16,8 +16,10 @@ #trash { margin-right: 12px; float: right; + z-index: 1010; + padding: 10px; } -#new>a, #trash>a { +#new>a { padding: 14px 10px; position: relative; top: 7px; |