1
|
/*---------------- Search Box */
|
2
|
|
3
|
#MSearchBox {
|
4
|
white-space : nowrap;
|
5
|
background: white;
|
6
|
border-radius: 0.65em;
|
7
|
box-shadow: inset 0.5px 0.5px 3px 0px #555;
|
8
|
z-index: 102;
|
9
|
}
|
10
|
|
11
|
#MSearchBox .left {
|
12
|
display: inline-block;
|
13
|
vertical-align: middle;
|
14
|
height: 1.4em;
|
15
|
}
|
16
|
|
17
|
#MSearchSelect {
|
18
|
display: inline-block;
|
19
|
vertical-align: middle;
|
20
|
height: 19px;
|
21
|
padding: 0 0 0 0.3em;
|
22
|
margin: 0;
|
23
|
}
|
24
|
|
25
|
#MSearchField {
|
26
|
display: inline-block;
|
27
|
vertical-align: middle;
|
28
|
width: 7.5em;
|
29
|
height: 19px;
|
30
|
margin: 0 0.15em;
|
31
|
padding: 0;
|
32
|
line-height: 1em;
|
33
|
border:none;
|
34
|
color: #909090;
|
35
|
outline: none;
|
36
|
font-family: Arial, Verdana, sans-serif;
|
37
|
-webkit-border-radius: 0px;
|
38
|
border-radius: 0px;
|
39
|
background: none;
|
40
|
}
|
41
|
|
42
|
@media(hover: none) {
|
43
|
/* to avoid zooming on iOS */
|
44
|
#MSearchField {
|
45
|
font-size: 16px;
|
46
|
}
|
47
|
}
|
48
|
|
49
|
#MSearchBox .right {
|
50
|
display: inline-block;
|
51
|
vertical-align: middle;
|
52
|
width: 1.4em;
|
53
|
height: 1.4em;
|
54
|
}
|
55
|
|
56
|
#MSearchClose {
|
57
|
display: none;
|
58
|
font-size: inherit;
|
59
|
background : none;
|
60
|
border: none;
|
61
|
margin: 0;
|
62
|
padding: 0;
|
63
|
outline: none;
|
64
|
|
65
|
}
|
66
|
|
67
|
#MSearchCloseImg {
|
68
|
height: 1.4em;
|
69
|
padding: 0.3em;
|
70
|
margin: 0;
|
71
|
}
|
72
|
|
73
|
.MSearchBoxActive #MSearchField {
|
74
|
color: #000000;
|
75
|
}
|
76
|
|
77
|
#main-menu > li:last-child {
|
78
|
/* This <li> object is the parent of the search bar */
|
79
|
display: flex;
|
80
|
justify-content: center;
|
81
|
align-items: center;
|
82
|
height: 36px;
|
83
|
margin-right: 1em;
|
84
|
}
|
85
|
|
86
|
/*---------------- Search filter selection */
|
87
|
|
88
|
#MSearchSelectWindow {
|
89
|
display: none;
|
90
|
position: absolute;
|
91
|
left: 0; top: 0;
|
92
|
border: 1px solid #90A5CE;
|
93
|
background-color: #F9FAFC;
|
94
|
z-index: 10001;
|
95
|
padding-top: 4px;
|
96
|
padding-bottom: 4px;
|
97
|
-moz-border-radius: 4px;
|
98
|
-webkit-border-top-left-radius: 4px;
|
99
|
-webkit-border-top-right-radius: 4px;
|
100
|
-webkit-border-bottom-left-radius: 4px;
|
101
|
-webkit-border-bottom-right-radius: 4px;
|
102
|
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
103
|
}
|
104
|
|
105
|
.SelectItem {
|
106
|
font: 8pt Arial, Verdana, sans-serif;
|
107
|
padding-left: 2px;
|
108
|
padding-right: 12px;
|
109
|
border: 0px;
|
110
|
}
|
111
|
|
112
|
span.SelectionMark {
|
113
|
margin-right: 4px;
|
114
|
font-family: monospace;
|
115
|
outline-style: none;
|
116
|
text-decoration: none;
|
117
|
}
|
118
|
|
119
|
a.SelectItem {
|
120
|
display: block;
|
121
|
outline-style: none;
|
122
|
color: #000000;
|
123
|
text-decoration: none;
|
124
|
padding-left: 6px;
|
125
|
padding-right: 12px;
|
126
|
}
|
127
|
|
128
|
a.SelectItem:focus,
|
129
|
a.SelectItem:active {
|
130
|
color: #000000;
|
131
|
outline-style: none;
|
132
|
text-decoration: none;
|
133
|
}
|
134
|
|
135
|
a.SelectItem:hover {
|
136
|
color: #FFFFFF;
|
137
|
background-color: #3D578C;
|
138
|
outline-style: none;
|
139
|
text-decoration: none;
|
140
|
cursor: pointer;
|
141
|
display: block;
|
142
|
}
|
143
|
|
144
|
/*---------------- Search results window */
|
145
|
|
146
|
iframe#MSearchResults {
|
147
|
/*width: 60ex;*/
|
148
|
height: 15em;
|
149
|
}
|
150
|
|
151
|
#MSearchResultsWindow {
|
152
|
display: none;
|
153
|
position: absolute;
|
154
|
left: 0; top: 0;
|
155
|
border: 1px solid #000;
|
156
|
background-color: #EEF1F7;
|
157
|
z-index:10000;
|
158
|
}
|
159
|
|
160
|
/* ----------------------------------- */
|
161
|
|
162
|
|
163
|
#SRIndex {
|
164
|
clear:both;
|
165
|
padding-bottom: 15px;
|
166
|
}
|
167
|
|
168
|
.SREntry {
|
169
|
font-size: 10pt;
|
170
|
padding-left: 1ex;
|
171
|
}
|
172
|
|
173
|
.SRPage .SREntry {
|
174
|
font-size: 8pt;
|
175
|
padding: 1px 5px;
|
176
|
}
|
177
|
|
178
|
body.SRPage {
|
179
|
margin: 5px 2px;
|
180
|
}
|
181
|
|
182
|
.SRChildren {
|
183
|
padding-left: 3ex; padding-bottom: .5em
|
184
|
}
|
185
|
|
186
|
.SRPage .SRChildren {
|
187
|
display: none;
|
188
|
}
|
189
|
|
190
|
.SRSymbol {
|
191
|
font-weight: bold;
|
192
|
color: #425E97;
|
193
|
font-family: Arial, Verdana, sans-serif;
|
194
|
text-decoration: none;
|
195
|
outline: none;
|
196
|
}
|
197
|
|
198
|
a.SRScope {
|
199
|
display: block;
|
200
|
color: #425E97;
|
201
|
font-family: Arial, Verdana, sans-serif;
|
202
|
text-decoration: none;
|
203
|
outline: none;
|
204
|
}
|
205
|
|
206
|
a.SRSymbol:focus, a.SRSymbol:active,
|
207
|
a.SRScope:focus, a.SRScope:active {
|
208
|
text-decoration: underline;
|
209
|
}
|
210
|
|
211
|
span.SRScope {
|
212
|
padding-left: 4px;
|
213
|
font-family: Arial, Verdana, sans-serif;
|
214
|
}
|
215
|
|
216
|
.SRPage .SRStatus {
|
217
|
padding: 2px 5px;
|
218
|
font-size: 8pt;
|
219
|
font-style: italic;
|
220
|
font-family: Arial, Verdana, sans-serif;
|
221
|
}
|
222
|
|
223
|
.SRResult {
|
224
|
display: none;
|
225
|
}
|
226
|
|
227
|
div.searchresults {
|
228
|
margin-left: 10px;
|
229
|
margin-right: 10px;
|
230
|
}
|
231
|
|
232
|
/*---------------- External search page results */
|
233
|
|
234
|
.searchresult {
|
235
|
background-color: #F0F3F8;
|
236
|
}
|
237
|
|
238
|
.pages b {
|
239
|
color: white;
|
240
|
padding: 5px 5px 3px 5px;
|
241
|
background-image: url("../tab_a.png");
|
242
|
background-repeat: repeat-x;
|
243
|
text-shadow: 0 1px 1px #000000;
|
244
|
}
|
245
|
|
246
|
.pages {
|
247
|
line-height: 17px;
|
248
|
margin-left: 4px;
|
249
|
text-decoration: none;
|
250
|
}
|
251
|
|
252
|
.hl {
|
253
|
font-weight: bold;
|
254
|
}
|
255
|
|
256
|
#searchresults {
|
257
|
margin-bottom: 20px;
|
258
|
}
|
259
|
|
260
|
.searchpages {
|
261
|
margin-top: 10px;
|
262
|
}
|
263
|
|