diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-06 14:34:35 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-06 14:34:35 +0100 |
commit | 357fbd88bead4aecb5a4f24d5d1087cf96da730f (patch) | |
tree | 5de001bcb88ee3f485f24d5ee9c3fe60ef305fb2 /apps/files/css | |
parent | 926737fdb780d7c32a6ecf95445a4d17ddc222f2 (diff) | |
download | nextcloud-server-357fbd88bead4aecb5a4f24d5d1087cf96da730f.tar.gz nextcloud-server-357fbd88bead4aecb5a4f24d5d1087cf96da730f.zip |
use class for no results div instead of id. the elements are not unique.
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a6a28b594ae..1e7b1d45f71 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -600,7 +600,7 @@ table.dragshadow td.size { opacity: 0; } -#nofilterresults { +.nofilterresults { font-size: 16px; color: #888; position: absolute; @@ -608,12 +608,12 @@ table.dragshadow td.size { top: 30%; width: 100%; } -#nofilterresults h2 { +.nofilterresults h2 { font-size: 22px; margin-bottom: 10px; } -#nofilterresults [class^="icon-"], -#nofilterresults [class*=" icon-"] { +.nofilterresults [class^="icon-"], +.nofilterresults [class*=" icon-"] { background-size: 64px; height: 64px; width: 64px; |