diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 13:09:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 13:09:09 +0200 |
commit | 916e0fc343e176233ac121ac51220dce660b1a36 (patch) | |
tree | 5f3928593968805e0cd0fde7bb38bda372e4765e /search | |
parent | 4c234bd66696e50d3779215f0a7c7dea7054d6a4 (diff) | |
download | nextcloud-server-916e0fc343e176233ac121ac51220dce660b1a36.tar.gz nextcloud-server-916e0fc343e176233ac121ac51220dce660b1a36.zip |
Place the brackets in the first line
Diffstat (limited to 'search')
-rw-r--r-- | search/css/results.css | 121 |
1 files changed, 60 insertions, 61 deletions
diff --git a/search/css/results.css b/search/css/results.css index bf16f737b40..c6329a2c02a 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -2,64 +2,63 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ -#searchresults -{ - background-color: #fff; - border-bottom-left-radius: 1em; - box-shadow: 0 0 10px #000; - list-style: none; - max-height: 80%; - overflow: hidden; - padding-bottom: 1em; - position: fixed; - right: 0; - text-overflow: ellipsis; - top: 3.5em; - width: 26.5em; - z-index: 75; -} -#searchresults li.resultHeader -{ - background-color: #eee; - border-bottom: solid 1px #CCC; - font-size: 1.2em; - font-weight: bold; - padding: .2em; -} -#searchresults li.result -{ - margin-left: 2em; -} -#searchresults table -{ - border-spacing: 0; - table-layout: fixed; - top: 0; - width: 100%; -} -#searchresults td -{ - padding: 0 .3em; - vertical-align: top; -} -#searchresults td.result div.text -{ - padding-left: 1em; - white-space: nowrap; -} -#searchresults td.result * -{ - cursor: pointer; -} -#searchresults td.type -{ - border-bottom: none; - border-right: 1px solid #aaa; - font-weight: bold; - text-align: right; - width: 3.5em; -} -#searchresults tr.current -{ - background-color: #ddd; -}
\ No newline at end of file + #searchresults { + background-color:#fff; + border-bottom-left-radius:1em; + box-shadow:0 0 10px #000; + list-style:none; + max-height:80%; + overflow:hidden; + padding-bottom:1em; + position:fixed; + right:0; + text-overflow:ellipsis; + top:3.5em; + width:26.5em; + z-index:75; + } + + #searchresults li.resultHeader { + background-color:#eee; + border-bottom:solid 1px #CCC; + font-size:1.2em; + font-weight:700; + padding:.2em; + } + + #searchresults li.result { + margin-left:2em; + } + + #searchresults table { + border-spacing:0; + table-layout:fixed; + top:0; + width:100%; + } + + #searchresults td { + vertical-align:top; + padding:0 .3em; + } + + #searchresults td.result div.text { + padding-left:1em; + white-space:nowrap; + } + + #searchresults td.result * { + cursor:pointer; + } + + #searchresults td.type { + border-bottom:none; + border-right:1px solid #aaa; + font-weight:700; + text-align:right; + width:3.5em; + } + + #searchresults tr.current { + background-color:#ddd; + }
\ No newline at end of file |