/* 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: rgba(255, 255, 255, .85); height: 12px; padding: 28px 0; font-size: 18px; text-align: center; } #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: 5px 15px; font-style: normal; vertical-align: middle; border-bottom: none; } #searchresults tr.template { display: none; } #searchresults .name, #searchresults .text, #searchresults .path { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } #searchresults .text { white-space: normal; color: #545454; } #searchresults .path { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=50); opacity: .5; } #searchresults .text em { color: #545454; font-weight: bold; opacity: 1; } #searchresults tr.result * { cursor:pointer; } #searchresults td.icon { text-align:right; width: 32px; height: 40px; background-position: 30px 8px; background-repeat: no-repeat; } #searchresults tr.current { background-color:#ddd; }