diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-24 10:27:34 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-24 11:29:29 +0100 |
commit | f2be172ae89b9d20e2bd2c87d253a69eff9162ac (patch) | |
tree | b554cfaac1f8c9b7528efa22be4633e15bf3a922 /apps/files | |
parent | c3c251713151273562debee405763bb8f99947c8 (diff) | |
download | nextcloud-server-f2be172ae89b9d20e2bd2c87d253a69eff9162ac.tar.gz nextcloud-server-f2be172ae89b9d20e2bd2c87d253a69eff9162ac.zip |
Do not duplicate the empty content css
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 23 | ||||
-rw-r--r-- | apps/files/templates/list.php | 2 |
2 files changed, 1 insertions, 24 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index d09df9d795d..d546f346ce0 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -625,26 +625,3 @@ table.dragshadow td.size { .mask.transparent{ opacity: 0; } - -.nofilterresults { - font-size: 16px; - color: #888; - position: absolute; - text-align: center; - top: 30%; - width: 100%; -} -.nofilterresults h2 { - font-size: 22px; - margin-bottom: 10px; -} -.nofilterresults [class^="icon-"], -.nofilterresults [class*=" icon-"] { - background-size: 64px; - height: 64px; - width: 64px; - margin: 0 auto 15px; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - filter: alpha(opacity=50); - opacity: .5; -} diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index f2292bfae36..47f15d8a148 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -57,7 +57,7 @@ <p><?php p($l->t('Upload some content or sync with your devices!')); ?></p> </div> -<div class="nofilterresults hidden"> +<div class="nofilterresults emptycontent hidden"> <div class="icon-search"></div> <h2><?php p($l->t('No entries found in this folder')); ?></h2> <p></p> |