diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-12-04 13:43:38 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-02 10:28:41 +0100 |
commit | 0ba3093196fee7079583847b40ef3a8e00df47a7 (patch) | |
tree | e78036c901046bed459b4cc0c528bf2e0509ee9a /search/css | |
parent | 4b357274bb3d0295c84d9ec9ca6689270865df8f (diff) | |
download | nextcloud-server-0ba3093196fee7079583847b40ef3a8e00df47a7.tar.gz nextcloud-server-0ba3093196fee7079583847b40ef3a8e00df47a7.zip |
full page search results
Diffstat (limited to 'search/css')
-rw-r--r-- | search/css/results.css | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/search/css/results.css b/search/css/results.css index 6aa73f55c33..8bcf2348df2 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -4,26 +4,16 @@ #searchresults { background-color:#fff; - border-bottom-left-radius:11px; - box-shadow:0 0 10px #000; - list-style:none; - max-height:80%; overflow-x:hidden; overflow-y: auto; - padding-bottom:6px; position:fixed; - right:0; text-overflow:ellipsis; - top:45px; - width:380px; - max-width: 95%; + top:0; + padding-top: 45px; + height: 100%; z-index:75; } -.ie8 #searchresults { - border: 1px solid #666 !important; -} - #searchresults li.resultHeader { background-color:#eee; border-bottom:solid 1px #CCC; @@ -44,22 +34,34 @@ } #searchresults td { - padding:0 .3em; - height: 44px; + border-top: 20px solid white; + border-bottom: none; } #searchresults tr.template { display: none; } #searchresults .name, -#searchresults .text { +#searchresults .text, +#searchresults .path { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } +#searchresults .name { + font-size: larger; +} #searchresults .text { - padding-left: 16px; - color: #999; + white-space: normal; + color: #545454; +} +#searchresults .path { + color: green; +} +#searchresults .text em { + color: #545454; + font-weight: bold; + opacity: 1; } #searchresults td.result * { @@ -79,8 +81,6 @@ } #searchresults td.type { - border-bottom:none; - border-right:1px solid #aaa; font-weight:700; text-align:right; width:3.5em; |