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
|
|
|
text-overflow:ellipsis;
|
2014-12-04 12:43:38 +00:00
|
|
|
padding-top: 45px;
|
|
|
|
height: 100%;
|
2014-12-05 23:53:06 +00:00
|
|
|
box-sizing: border-box;
|
2013-07-31 14:52:53 +00:00
|
|
|
z-index:75;
|
|
|
|
}
|
2014-12-11 15:23:39 +00:00
|
|
|
#searchresults * {
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2014-12-17 17:49:39 +00:00
|
|
|
#searchresults #status {
|
2014-12-17 21:28:37 +00:00
|
|
|
background-color: rgba(255, 255, 255, .85);
|
|
|
|
height: 12px;
|
2014-12-17 22:28:29 +00:00
|
|
|
padding: 28px 0 28px 56px;
|
2014-12-17 21:28:37 +00:00
|
|
|
font-size: 18px;
|
2014-12-17 22:28:29 +00:00
|
|
|
}
|
|
|
|
.has-favorites:not(.hidden) ~ .searchresults-wrapper #searchresults #status {
|
|
|
|
padding-left: 102px;
|
2014-12-17 17:49:39 +00:00
|
|
|
}
|
|
|
|
#searchresults #status.fixed {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
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-17 22:28:29 +00:00
|
|
|
padding: 5px 19px;
|
2014-12-11 15:23:39 +00:00
|
|
|
font-style: normal;
|
|
|
|
vertical-align: middle;
|
2014-12-04 12:43:38 +00:00
|
|
|
border-bottom: none;
|
2013-07-31 20:24:52 +00:00
|
|
|
}
|
2014-12-17 22:28:29 +00:00
|
|
|
#searchresults td.icon {
|
|
|
|
text-align: right;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 5px 0;
|
|
|
|
background-position: right center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.has-favorites:not(.hidden) ~ .searchresults-wrapper #searchresults td.icon {
|
|
|
|
width: 86px;
|
|
|
|
}
|
|
|
|
|
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-04-09 10:51:32 +00:00
|
|
|
#searchresults .text {
|
2014-12-04 12:43:38 +00:00
|
|
|
white-space: normal;
|
|
|
|
color: #545454;
|
|
|
|
}
|
|
|
|
#searchresults .path {
|
2014-12-17 21:28:37 +00:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
opacity: .5;
|
2014-12-04 12:43:38 +00:00
|
|
|
}
|
|
|
|
#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
|
|
|
|
2014-12-05 23:53:06 +00:00
|
|
|
#searchresults tr.result * {
|
2013-07-31 14:52:53 +00:00
|
|
|
cursor:pointer;
|
|
|
|
}
|
2012-10-24 11:09:05 +00:00
|
|
|
|
2013-07-31 14:52:53 +00:00
|
|
|
#searchresults tr.current {
|
|
|
|
background-color:#ddd;
|
2013-08-18 09:02:08 +00:00
|
|
|
}
|