87 lines
1.5 KiB
CSS
87 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;
|
|
overflow-x:hidden;
|
|
overflow-y: auto;
|
|
text-overflow:ellipsis;
|
|
padding-top: 45px;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
z-index:75;
|
|
}
|
|
#searchresults * {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
#searchresults #status {
|
|
background-color:#ccc;
|
|
height: 24px;
|
|
padding: 17px 15px;
|
|
}
|
|
#searchresults #status.fixed {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: 10;
|
|
}
|
|
|
|
#searchresults table {
|
|
border-spacing:0;
|
|
table-layout:fixed;
|
|
top:0;
|
|
width:100%;
|
|
}
|
|
|
|
#searchresults td {
|
|
padding: 0 15px;
|
|
font-style: normal;
|
|
vertical-align: middle;
|
|
border-top: 20px solid white;
|
|
border-bottom: none;
|
|
}
|
|
#searchresults tr.template {
|
|
display: none;
|
|
}
|
|
|
|
#searchresults .name,
|
|
#searchresults .text,
|
|
#searchresults .path {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
#searchresults .name {
|
|
font-size: larger;
|
|
}
|
|
#searchresults .text {
|
|
white-space: normal;
|
|
color: #545454;
|
|
}
|
|
#searchresults .path {
|
|
color: green;
|
|
}
|
|
#searchresults .text em {
|
|
color: #545454;
|
|
font-weight: bold;
|
|
opacity: 1;
|
|
}
|
|
|
|
#searchresults tr.result * {
|
|
cursor:pointer;
|
|
}
|
|
|
|
#searchresults td.icon {
|
|
font-weight:700;
|
|
text-align:right;
|
|
width:32px;
|
|
height: 40px;
|
|
background-position: 30px 4px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#searchresults tr.current {
|
|
background-color:#ddd;
|
|
}
|