2012-04-23 12:19:03 +00:00
|
|
|
/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
|
|
|
|
This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
See the COPYING-README file. */
|
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults {
|
|
|
|
background-color:#fff;
|
|
|
|
overflow-x:hidden;
|
2014-04-09 10:51:32 +00:00
|
|
|
overflow-y: auto;
|
2013-07-31 14:52:53 +00:00
|
|
|
position:fixed;
|
|
|
|
text-overflow:ellipsis;
|
2014-12-04 12:43:38 +00:00
|
|
|
top:0;
|
|
|
|
padding-top: 45px;
|
|
|
|
height: 100%;
|
2013-07-31 14:52:53 +00:00
|
|
|
z-index:75;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults li.resultHeader {
|
|
|
|
background-color:#eee;
|
|
|
|
border-bottom:solid 1px #CCC;
|
|
|
|
font-size:1.2em;
|
|
|
|
font-weight:700;
|
|
|
|
padding:.2em;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults li.result {
|
|
|
|
margin-left:2em;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults table {
|
|
|
|
border-spacing:0;
|
|
|
|
table-layout:fixed;
|
|
|
|
top:0;
|
|
|
|
width:100%;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults td {
|
2014-12-04 12:43:38 +00:00
|
|
|
border-top: 20px solid white;
|
|
|
|
border-bottom: none;
|
2013-07-31 20:24:52 +00:00
|
|
|
}
|
|
|
|
#searchresults tr.template {
|
|
|
|
display: none;
|
2013-07-31 14:52:53 +00:00
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2014-04-09 10:51:32 +00:00
|
|
|
#searchresults .name,
|
2014-12-04 12:43:38 +00:00
|
|
|
#searchresults .text,
|
|
|
|
#searchresults .path {
|
2014-04-09 10:51:32 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-07-31 20:24:52 +00:00
|
|
|
}
|
2014-12-04 12:43:38 +00:00
|
|
|
#searchresults .name {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
2014-04-09 10:51:32 +00:00
|
|
|
#searchresults .text {
|
2014-12-04 12:43:38 +00:00
|
|
|
white-space: normal;
|
|
|
|
color: #545454;
|
|
|
|
}
|
|
|
|
#searchresults .path {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
#searchresults .text em {
|
|
|
|
color: #545454;
|
|
|
|
font-weight: bold;
|
|
|
|
opacity: 1;
|
2013-07-31 14:52:53 +00:00
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults td.result * {
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 20:24:52 +00:00
|
|
|
#searchresults td.container {
|
|
|
|
width:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchresults td.container img {
|
|
|
|
vertical-align: middle;
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
#searchresults tr:hover td.container img {
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults td.type {
|
|
|
|
font-weight:700;
|
|
|
|
text-align:right;
|
|
|
|
width:3.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchresults tr.current {
|
|
|
|
background-color:#ddd;
|
2013-08-18 09:02:08 +00:00
|
|
|
}
|