diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-02 09:07:42 -0400 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-02 09:07:42 -0400 |
commit | 954968e9d8ec58a58f8a9ea3c14eb40430034cdb (patch) | |
tree | 92c81edd301d06e557bcc35d082132e49c4d4860 | |
parent | eda4d4583645b49bd1e582f7396603ce6795e919 (diff) | |
download | nextcloud-server-954968e9d8ec58a58f8a9ea3c14eb40430034cdb.tar.gz nextcloud-server-954968e9d8ec58a58f8a9ea3c14eb40430034cdb.zip |
fix search results from other places, account for margin-bottom in files list
-rw-r--r-- | core/search/css/results.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/core/search/css/results.css b/core/search/css/results.css index b62f7df3fe3..36a2ccc13c3 100644 --- a/core/search/css/results.css +++ b/core/search/css/results.css @@ -3,12 +3,14 @@ See the COPYING-README file. */ #searchresults { - background-color:#fff; - overflow-x:hidden; - text-overflow:ellipsis; + background-color: #fff; + overflow-x: hidden; + text-overflow: ellipsis; padding-top: 65px; box-sizing: border-box; - z-index:75; + z-index: 75; + /* account for margin-bottom in files list */ + margin-top: -250px; } #searchresults.hidden { |