diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-07-31 22:24:52 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-17 18:40:51 +0200 |
commit | b40925ae1747ae44a52fb1f8dcf7645d022c6f13 (patch) | |
tree | 2f385e6b79de01305aa718c197fdc3c85e5ff4cd /search/css | |
parent | 9d18e16c77e8c2690dd23dd19ca1f8e1968161c8 (diff) | |
download | nextcloud-server-b40925ae1747ae44a52fb1f8dcf7645d022c6f13.tar.gz nextcloud-server-b40925ae1747ae44a52fb1f8dcf7645d022c6f13.zip |
initial scrollto implementation:
use places/folder icon,
move link construction to JS,
only show icon on hover,
use 'searchresult' as css class name,
add filter/unfilter methods,
highlight searched files in current filelist
only filter when correct FileList is present
Diffstat (limited to 'search/css')
-rw-r--r-- | search/css/results.css | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/search/css/results.css b/search/css/results.css index 4ae7d67afb3..8a32b0b995d 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -14,7 +14,7 @@ position:fixed; right:0; text-overflow:ellipsis; - top:20px; + top:45px; width:380px; z-index:75; } @@ -43,10 +43,16 @@ } #searchresults td { - vertical-align:top; padding:0 .3em; + height: 32px; +} +#searchresults tr.template { + display: none; } +#searchresults td.result { + width:250px; +} #searchresults td.result div.text { padding-left:1em; white-space:nowrap; @@ -56,6 +62,18 @@ cursor:pointer; } +#searchresults td.container { + width:20px; +} + +#searchresults td.container img { + vertical-align: middle; + display:none; +} +#searchresults tr:hover td.container img { + display:inline; +} + #searchresults td.type { border-bottom:none; border-right:1px solid #aaa; |