From e3192bfa266df0b9e1e9de7bae13b61d1187e336 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Dec 2014 21:13:53 +0100 Subject: use empty state for 'Shared with you' as well --- apps/files_sharing/js/app.js | 4 +++- core/css/styles.css | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index ff6997ab12f..f34f1e9eaf5 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -39,7 +39,9 @@ OCA.Sharing.App = { this._extendFileList(this._inFileList); this._inFileList.appName = t('files_sharing', 'Shared with you'); - this._inFileList.$el.find('#emptycontent').text(t('files_sharing', 'No files have been shared with you yet.')); + this._inFileList.$el.find('#emptycontent').html('
' + + '

' + t('files_sharing', 'Nothing shared with you') + '

' + + '

' + t('files_sharing', 'Files and folders others share with you will show up here') + '

'); return this._inFileList; }, diff --git a/core/css/styles.css b/core/css/styles.css index e84b6615d90..0d97cc11482 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -338,6 +338,9 @@ input[type="submit"].enabled { height: 64px; width: 64px; margin: 0 auto 15px; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + opacity: .5; } -- cgit v1.2.3