diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-02 12:50:21 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-02 12:50:21 +0100 |
commit | 0cca9e26c41a1957b3a574d33b3835ea76c63e13 (patch) | |
tree | b4795ecd6a32dddebcd9e359343579d0ba73ab75 /apps/files/css | |
parent | 9e3f4e043f6204a336a6efc4a9c39f23723d0522 (diff) | |
download | nextcloud-server-0cca9e26c41a1957b3a574d33b3835ea76c63e13.tar.gz nextcloud-server-0cca9e26c41a1957b3a574d33b3835ea76c63e13.zip |
show no files found message
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a75ad57c833..a6a28b594ae 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -599,3 +599,26 @@ 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; +}
\ No newline at end of file |