92 lines
1.5 KiB
CSS
92 lines
1.5 KiB
CSS
/* 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. */
|
|
|
|
#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%;
|
|
z-index:75;
|
|
}
|
|
|
|
.ie8 #searchresults {
|
|
border: 1px solid #666 !important;
|
|
}
|
|
|
|
#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 {
|
|
padding:0 .3em;
|
|
height: 44px;
|
|
}
|
|
#searchresults tr.template {
|
|
display: none;
|
|
}
|
|
|
|
#searchresults .name,
|
|
#searchresults .text {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
#searchresults .text {
|
|
padding-left: 16px;
|
|
color: #999;
|
|
}
|
|
|
|
#searchresults td.result * {
|
|
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;
|
|
font-weight:700;
|
|
text-align:right;
|
|
width:3.5em;
|
|
}
|
|
|
|
#searchresults tr.current {
|
|
background-color:#ddd;
|
|
}
|