search.css 3.9 KB
Newer Older
dimitri's avatar
dimitri committed
1
/*---------------- Search Box */
dimitri's avatar
dimitri committed
2

dimitri's avatar
dimitri committed
3 4 5
#FSearchBox {
    float: left;
}
dimitri's avatar
dimitri committed
6 7 8 9 10 11 12 13

#searchli {
    float: right;
    display: block;
    width: 170px;
    height: 36px;
}

dimitri's avatar
dimitri committed
14
#MSearchBox {
dimitri's avatar
dimitri committed
15 16 17 18 19 20 21
    white-space : nowrap;
    position: absolute;
    float: none;
    display: inline;
    margin-top: 8px;
    right: 0px;
    width: 170px;
dimitri's avatar
dimitri committed
22
    z-index: 102;
dimitri's avatar
dimitri committed
23 24 25 26 27 28 29 30 31 32 33
}

#MSearchBox .left
{
    display:block;
    position:absolute;
    left:10px;
    width:20px;
    height:19px;
    background:url('search_l.png') no-repeat;
    background-position:right;
dimitri's avatar
dimitri committed
34
}
dimitri's avatar
dimitri committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

#MSearchSelect {
    display:block;
    position:absolute;
    width:20px;
    height:19px;
}

.left #MSearchSelect {
    left:4px;
}

.right #MSearchSelect {
    right:5px;
}

dimitri's avatar
dimitri committed
51
#MSearchField {
dimitri's avatar
dimitri committed
52 53 54 55 56 57 58 59 60
    display:block;
    position:absolute;
    height:19px;
    background:url('search_m.png') repeat-x;
    border:none;
    width:116px;
    margin-left:20px;
    padding-left:4px;
    color: #909090;
dimitri's avatar
dimitri committed
61
    outline: none;
dimitri's avatar
dimitri committed
62
    font: 9pt Arial, Verdana, sans-serif;
dimitri's avatar
dimitri committed
63
}
dimitri's avatar
dimitri committed
64 65 66

#FSearchBox #MSearchField {
    margin-left:15px;
dimitri's avatar
dimitri committed
67
}
dimitri's avatar
dimitri committed
68 69 70 71 72 73 74 75 76 77

#MSearchBox .right {
    display:block;
    position:absolute;
    right:10px;
    top:0px;
    width:20px;
    height:19px;
    background:url('search_r.png') no-repeat;
    background-position:left;
dimitri's avatar
dimitri committed
78 79 80
}

#MSearchClose {
dimitri's avatar
dimitri committed
81 82 83
    display: none;
    position: absolute;
    top: 4px;
dimitri's avatar
dimitri committed
84 85 86
    background : none;
    border: none;
    margin: 0px 4px 0px 0px;
dimitri's avatar
dimitri committed
87
    padding: 0px 0px;
dimitri's avatar
dimitri committed
88 89 90
    outline: none;
}

dimitri's avatar
dimitri committed
91 92
.left #MSearchClose {
    left: 6px;
dimitri's avatar
dimitri committed
93
}
dimitri's avatar
dimitri committed
94

dimitri's avatar
dimitri committed
95 96
.right #MSearchClose {
    right: 2px;
dimitri's avatar
dimitri committed
97
}
dimitri's avatar
dimitri committed
98 99 100

.MSearchBoxActive #MSearchField {
    color: #000000;
dimitri's avatar
dimitri committed
101 102 103 104 105 106 107 108
}

/*---------------- Search filter selection */

#MSearchSelectWindow {
    display: none;
    position: absolute;
    left: 0; top: 0;
dimitri's avatar
dimitri committed
109 110
    border: 1px solid ##A0;
    background-color: ##FA;
dimitri's avatar
dimitri committed
111 112 113 114 115 116 117 118 119
    z-index: 1;
    padding-top: 4px;
    padding-bottom: 4px;
    -moz-border-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
dimitri's avatar
dimitri committed
120 121
}

dimitri's avatar
dimitri committed
122 123 124 125 126 127
.SelectItem {
    font: 8pt Arial, Verdana, sans-serif;
    padding-left:  2px;
    padding-right: 12px;
    border: 0px;
}
dimitri's avatar
dimitri committed
128

dimitri's avatar
dimitri committed
129 130 131 132 133 134
span.SelectionMark {
    margin-right: 4px;
    font-family: monospace;
    outline-style: none;
    text-decoration: none;
}
dimitri's avatar
dimitri committed
135

dimitri's avatar
dimitri committed
136 137 138 139 140 141 142 143
a.SelectItem {
    display: block;
    outline-style: none;
    color: #000000; 
    text-decoration: none;
    padding-left:   6px;
    padding-right: 12px;
}
dimitri's avatar
dimitri committed
144

dimitri's avatar
dimitri committed
145
a.SelectItem:focus,
dimitri's avatar
dimitri committed
146 147 148 149 150
a.SelectItem:active {
    color: #000000; 
    outline-style: none;
    text-decoration: none;
}
dimitri's avatar
dimitri committed
151

dimitri's avatar
dimitri committed
152 153
a.SelectItem:hover {
    color: #FFFFFF;
dimitri's avatar
dimitri committed
154
    background-color: ##50;
dimitri's avatar
dimitri committed
155 156 157 158 159 160 161 162 163 164 165
    outline-style: none;
    text-decoration: none;
    cursor: pointer;
    display: block;
}

/*---------------- Search results window */

iframe#MSearchResults {
    width: 60ex;
    height: 15em;
dimitri's avatar
dimitri committed
166 167
}

dimitri's avatar
dimitri committed
168 169 170 171
#MSearchResultsWindow {
    display: none;
    position: absolute;
    left: 0; top: 0;
dimitri's avatar
dimitri committed
172 173 174
    border: 1px solid #000;
    background-color: ##F0;
}
dimitri's avatar
dimitri committed
175 176 177 178 179 180 181 182 183 184 185 186 187

/* ----------------------------------- */


#SRIndex {
    clear:both; 
    padding-bottom: 15px;
}

.SREntry {
    font-size: 10pt;
    padding-left: 1ex;
}
dimitri's avatar
dimitri committed
188

dimitri's avatar
dimitri committed
189 190 191 192
.SRPage .SREntry {
    font-size: 8pt;
    padding: 1px 5px;
}
dimitri's avatar
dimitri committed
193

dimitri's avatar
dimitri committed
194 195 196 197 198 199 200
body.SRPage {
    margin: 5px 2px;
}

.SRChildren {
    padding-left: 3ex; padding-bottom: .5em 
}
dimitri's avatar
dimitri committed
201

dimitri's avatar
dimitri committed
202 203 204
.SRPage .SRChildren {
    display: none;
}
dimitri's avatar
dimitri committed
205

dimitri's avatar
dimitri committed
206
.SRSymbol {
dimitri's avatar
dimitri committed
207 208
    font-weight: bold; 
    color: ##58;
dimitri's avatar
dimitri committed
209 210 211 212 213 214 215
    font-family: Arial, Verdana, sans-serif;
    text-decoration: none;
    outline: none;
}

a.SRScope {
    display: block;
dimitri's avatar
dimitri committed
216
    color: ##58; 
dimitri's avatar
dimitri committed
217 218 219 220 221
    font-family: Arial, Verdana, sans-serif;
    text-decoration: none;
    outline: none;
}

dimitri's avatar
dimitri committed
222 223 224 225 226
a.SRSymbol:focus, a.SRSymbol:active,
a.SRScope:focus, a.SRScope:active {
    text-decoration: underline;
}

dimitri's avatar
dimitri committed
227 228 229 230 231 232 233 234 235 236
.SRPage .SRStatus {
    padding: 2px 5px;
    font-size: 8pt;
    font-style: italic;
}

.SRResult {
    display: none;
}

dimitri's avatar
dimitri committed
237 238 239 240
DIV.searchresults {
    margin-left: 10px;
    margin-right: 10px;
}