diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2017-09-21 18:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-21 18:50:28 +0200 |
commit | e336283a4860b1e4e498968980905105711a6776 (patch) | |
tree | e5b455de23ea1327c00cb3eb546a5d589508fca9 /apps/files_trashbin | |
parent | 4d556a3ade39f38eb4b2ca3253863e3f86c7c69b (diff) | |
parent | eb00dbb5931a471bc2c8ef4723ff5eb91ce1c553 (diff) | |
download | nextcloud-server-e336283a4860b1e4e498968980905105711a6776.tar.gz nextcloud-server-e336283a4860b1e4e498968980905105711a6776.zip |
Merge pull request #6399 from nextcloud/app-navigation-flex
App navigation flex
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/appinfo/app.php | 1 | ||||
-rw-r--r-- | apps/files_trashbin/css/trash.css | 14 |
2 files changed, 1 insertions, 14 deletions
diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index d4e44b78850..d97f2cd84e5 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -36,5 +36,6 @@ 'script' => 'list.php', 'order' => 50, 'name' => $l->t('Deleted files'), + 'classes' => 'pinned', ]; }); diff --git a/apps/files_trashbin/css/trash.css b/apps/files_trashbin/css/trash.css index f1096d5924c..2ed57b51918 100644 --- a/apps/files_trashbin/css/trash.css +++ b/apps/files_trashbin/css/trash.css @@ -20,17 +20,3 @@ display: none; } -/* move Deleted Files to bottom of sidebar */ -.nav-trashbin { - position: fixed !important; - bottom: 88px; - width: inherit !important; - background-color: #fff; - border-right: 1px solid #eee; - margin-bottom: 0px !important; -} -/* double padding to account for Deleted files entry, issue with Firefox */ -.app-files #app-navigation > ul li:nth-last-child(2) { - margin-bottom: 88px; -} - |