diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-28 23:26:10 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-03-28 23:26:10 +0200 |
commit | b91bacf14169defe293eae8d4b225f2923d2b4f4 (patch) | |
tree | cac2c11bf1f536866cb6ee8ac9032f7cd201030f /apps/files_versions | |
parent | e26f138fc596492da88b8a0d57749f5703e1d100 (diff) | |
download | nextcloud-server-b91bacf14169defe293eae8d4b225f2923d2b4f4.tar.gz nextcloud-server-b91bacf14169defe293eae8d4b225f2923d2b4f4.zip |
Better styling of the empty content messages in the sidebar
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_versions')
-rw-r--r-- | apps/files_versions/css/versions.css | 4 | ||||
-rw-r--r-- | apps/files_versions/js/versionstabview.js | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/apps/files_versions/css/versions.css b/apps/files_versions/css/versions.css index e749854a942..cd63a90ab51 100644 --- a/apps/files_versions/css/versions.css +++ b/apps/files_versions/css/versions.css @@ -68,7 +68,3 @@ float: right; margin-right: -10px; } - -.versionsTabView .emptycontent { - margin-top: 10px; -} diff --git a/apps/files_versions/js/versionstabview.js b/apps/files_versions/js/versionstabview.js index aa20d8fda7a..3a9026901ea 100644 --- a/apps/files_versions/js/versionstabview.js +++ b/apps/files_versions/js/versionstabview.js @@ -232,8 +232,8 @@ */ render: function() { this.$el.html(this.template({ - emptyResultLabel: t('files_versions', 'No versions available'), - moreVersionsLabel: t('files_versions', 'More versions...') + emptyResultLabel: t('files_versions', 'No earlier versions available'), + moreVersionsLabel: t('files_versions', 'More versions …') })); this.$el.find('.has-tooltip').tooltip(); this.$versionsContainer = this.$el.find('ul.versions'); |