blob: ca646b96dae22bafe298d81a8f970cfcaf7a2452 [file] [log] [blame]
Akron49bfdbf2016-11-22 21:47:33 +01001@charset "utf-8";
2@import "../util";
3
4$border-size: 2px;
Akron08b82d62016-12-05 15:06:05 +01005$font-size: 10pt;
Akron49bfdbf2016-11-22 21:47:33 +01006
7#search {
8 position: relative;
9 margin-bottom: 30px;
10 overflow: visible;
Akron3bb91bc2016-12-02 16:43:17 +010011// margin-top: 14pt;
Akron49bfdbf2016-11-22 21:47:33 +010012}
13
14#search > ol {
15 overflow-x: hidden;
16 overflow-y: visible;
17 width: auto;
18 border: 1px solid black;
19 text-indent: 0;
20 list-style-type: none;
21 margin: 0;
22 padding: 0;
23 border: 1px solid $kwic-border;
Akron08b82d62016-12-05 15:06:05 +010024 font-size: $font-size;
Akron49bfdbf2016-11-22 21:47:33 +010025
26 > li {
27 display: table-row;
28 table-layout: auto;
29 div.meta {
30 position: relative;
31 display: table-cell;
Akron625fe0c2017-05-03 16:15:08 +020032 text-align: left;
Akron67b51812017-05-01 14:10:55 +020033 cursor: initial;
Akron97d42802016-11-26 22:45:46 +010034 width: 2px;
Akron49bfdbf2016-11-22 21:47:33 +010035 z-index: 5;
36 overflow-y: visible;
Akron3bb91bc2016-12-02 16:43:17 +010037 white-space: nowrap;
Akron67b51812017-05-01 14:10:55 +020038 background-color: lighten($middle-grey, 5%);
39 // @include light-noise;
Akron08b82d62016-12-05 15:06:05 +010040 border: {
Akron46b9f212017-05-01 13:55:17 +020041 color: $dark-grey;
Akron08b82d62016-12-05 15:06:05 +010042 style: solid;
Akron46b9f212017-05-01 13:55:17 +020043 width: 2px 1px 0 0;
44 }
45 &:empty {
46 border-width: 0 1px 0 0;
47 }
48 &.flip {
Akron67b51812017-05-01 14:10:55 +020049 background-color: lighten($middle-grey, 17%);
Akron08b82d62016-12-05 15:06:05 +010050 }
Akron3bb91bc2016-12-02 16:43:17 +010051 color: $nearly-white;
Akron46b9f212017-05-01 13:55:17 +020052 font-size: 75%;
Akron3bb91bc2016-12-02 16:43:17 +010053 padding: 0 5pt;
Akron49bfdbf2016-11-22 21:47:33 +010054 }
Akron97d42802016-11-26 22:45:46 +010055 &:first-of-type div.meta {
Akron08b82d62016-12-05 15:06:05 +010056 border-top-width: 0;
Akron97d42802016-11-26 22:45:46 +010057 }
Akron08b82d62016-12-05 15:06:05 +010058 &:last-of-type div.meta {
59 border-bottom-width: 0;
60 }
Akron49bfdbf2016-11-22 21:47:33 +010061 }
62}
63
64#search > ol > li {
65 border: {
66 style: solid;
67 color: $dark-orange;
68 width: 0;
69 }
70}
71
72#search {
73 div.meta, div.match-main {
74 position: relative;
Akron08b82d62016-12-05 15:06:05 +010075 cursor: pointer;
Akron49bfdbf2016-11-22 21:47:33 +010076 }
77 /*
78 &:not(.active):not(:target) {
79 &:nth-of-type(even) div.main-col {
80 */
81 div.match-main {
82 display: table-cell;
83 z-index: 4;
84 > div.match-wrap {
85 width: 99999%;
86 margin-left: -49999.5%;
87 background-color: $kwic-line-noneven;
88 overflow-x: hidden;
89 overflow-y: visible;
Akron3bb91bc2016-12-02 16:43:17 +010090 white-space: normal;
Akron49bfdbf2016-11-22 21:47:33 +010091 }
92 }
93}
94
95#search ol li:nth-of-type(even) div.match-main div.match-wrap {
96 background-color: $kwic-line-even;
97}
98
99
100div.snippet {
101 text-overflow: ellipsis;
102 text-indent: 0;
103 text-shadow: $light-shadow;
Akron08b82d62016-12-05 15:06:05 +0100104 font-size: 0;
Akron49bfdbf2016-11-22 21:47:33 +0100105 > span, mark {
Akron08b82d62016-12-05 15:06:05 +0100106 font-size: $font-size;
Akron49bfdbf2016-11-22 21:47:33 +0100107 padding: 5pt 0 6pt 0;
108 white-space: no-wrap !important;
109 > span {
110 white-space: no-wrap !important;
111 }
112 }
113 > mark, > span.match {
114 font-weight: bold;
Akron08b82d62016-12-05 15:06:05 +0100115 color: $black;
116 text-shadow: none;
Akron49bfdbf2016-11-22 21:47:33 +0100117 padding-left: 4pt;
118 padding-right: 2pt;
119 }
120}
121
122
123
124#search div.matchinfo {
125 display: none;
126}
127
Akron3bb91bc2016-12-02 16:43:17 +0100128#search li.active div.matchinfo {
129 display: block;
130}
131
Akron49bfdbf2016-11-22 21:47:33 +0100132#search div.match-main {
133 position: relative;
134 z-index: 4;
135 > div.match-wrap {
136 margin-left: -49999.5%;
137 width: 99999%;
138 overflow-x: hidden;
139 overflow-y: visible;
140 position: relative;
141 box-sizing: border-box;
142 }
143}
144
145div.snippet.startMore:before,
146div.snippet.endMore:after {
147 content: "…";
148 padding-left: 2pt;
149 padding-right: 2pt;
150}
151
152/**
153 * flag
154 */
155div.snippet div.flag {
156 position: absolute;
157 height: 100%;
Akron3bb91bc2016-12-02 16:43:17 +0100158 top: 0;
159 // margin-left: -49999.5%;
160 // margin-left: 50%;
Akron49bfdbf2016-11-22 21:47:33 +0100161 margin-left: 50%;
162 width: 11px;
163 background-color: $dark-orange;
164 border-right-color: $nearly-white;
165 border-right: 1px solid $darkest-orange;
166}
167
168/**
169 * References
170 */
171#search > ol > li p.ref {
172 display: none;
173}
174
175/**
176 * Active
177 */
Akron2a4e9af2017-12-22 15:45:22 +0100178body.no-js #search > ol > li:active,
179#search > ol > li.active,
180#search > ol > li:target {
181 background-color: $dark-orange;
182 display: block;
183 text-align: left;
184 position: relative;
185 border-width: 2px;
186 white-space: wrap;
187 height: auto;
188 width: auto;
Akron3bb91bc2016-12-02 16:43:17 +0100189
Akron2a4e9af2017-12-22 15:45:22 +0100190 div.match-main > div.match-wrap {
191 cursor: default;
Akron49bfdbf2016-11-22 21:47:33 +0100192 }
Akron3bb91bc2016-12-02 16:43:17 +0100193 span {
194 display: inline !important;
195 }
196 ul.action {
197 display: block;
198 }
Akron49bfdbf2016-11-22 21:47:33 +0100199 div.match-wrap {
200 min-height: 20pt;
201 div.snippet {
202 background-color: $light-orange;
203 > * {
204 background-color: transparent;
205 }
206 div.flag {
207 display: none;
208 }
209 padding: 2pt 0 5pt 5pt;
210 margin: {
211 top: 0;
212 right: $right-match-distance; // 3em;
213 bottom: 0;
214 left: 0; // 5pt margin-top
215 }
216 > span {
Akron08b82d62016-12-05 15:06:05 +0100217 // color: black;
Akron49bfdbf2016-11-22 21:47:33 +0100218 line-height: 1.4em;
219 width: auto;
220 &.context-left {
221 margin-left: 0;
222 display: inline;
223 overflow: visible;
224 text-align: left;
225 width: auto;
226 }
227 }
228 }
229 }
Akron49bfdbf2016-11-22 21:47:33 +0100230
Akron49bfdbf2016-11-22 21:47:33 +0100231 overflow: hidden;
232 div.meta {
Akron97d42802016-11-26 22:45:46 +0100233 display: none;
234 // visibility: hidden;
Akron49bfdbf2016-11-22 21:47:33 +0100235 }
236 div.match-main {
Akron3bb91bc2016-12-02 16:43:17 +0100237 width: 100%;
Akron97d42802016-11-26 22:45:46 +0100238 display: block;
Akron49bfdbf2016-11-22 21:47:33 +0100239 div.match-wrap {
Akron3bb91bc2016-12-02 16:43:17 +0100240 background-color: $dark-orange;
241 width: 100%;
Akron49bfdbf2016-11-22 21:47:33 +0100242 margin-left: 0;
243 overflow-x: visible;
244 white-space: wrap;
245 }
246 }
247 p.ref {
248 display: block;
Akron08b82d62016-12-05 15:06:05 +0100249 color: $nearly-white;
Akron49bfdbf2016-11-22 21:47:33 +0100250 padding: 3pt 10pt 3pt 3pt;
251 padding-right: $right-match-distance;
252 margin: 0pt;
253 width: 100%;
254 bottom: 0;
255 z-index: 30;
256 > span.sigle {
257 font-size: 75%;
258 vertical-align: top;
259 color: $light-orange;
260 float: right;
261 }
262 }
263}
264
265
266
267/**
268 * Right aligned
269 */
270
271#search ol span.context-left {
272 display: inline-block;
273 width: 50.01%;
274 text-align: right;
275}
276
277#search ol.align-right {
278 text-align: right;
279 div.match-main span.context-right {
280 display: inline-block;
281 width: 49.915%;
282 text-align: left;
283 }
284}
285
Akron01231002017-06-29 20:47:58 +0200286// fix empty contexts
287#search ol span.context-left,
288#search ol span.context-right {
289 &:empty::after {
290 content: " ";
291 display: inline-block;
292 }
293}
Akron49bfdbf2016-11-22 21:47:33 +0100294
295/**
296 * Highlights
297 */
298mark {
299 background-color: inherit;
300 color: inherit;
301}
302
303mark > mark,
304em,
305.level-0 {
306 border-bottom-width: 2px;
307 border-bottom-style: solid;
Akron3bb91bc2016-12-02 16:43:17 +0100308 padding-bottom: 0px !important;
Akron49bfdbf2016-11-22 21:47:33 +0100309 font-style: normal;
310}
311
312mark > mark > mark,
313em > em,
314.level-1 {
Akron3bb91bc2016-12-02 16:43:17 +0100315 padding-bottom: 3px !important;
Akron49bfdbf2016-11-22 21:47:33 +0100316}
317
318mark > mark > mark > mark,
319em > em > em,
320.level-2 {
Akron3bb91bc2016-12-02 16:43:17 +0100321 padding-bottom: 6px !important;
Akron49bfdbf2016-11-22 21:47:33 +0100322}
323
324
325#search > ol > li {
326 &:not(.active) mark > mark > mark > mark,
327 &:not(.active) em > em > em {
328 line-height: 180%;
329 }
330 &.active mark > mark > mark > mark,
331 &.active em > em > em {
332 line-height: 250%;
333 }
334}
335
336.class-1 { border-color: $kwic-highlight-1; }
337.class-2 { border-color: $kwic-highlight-2; }
338.class-3 { border-color: $kwic-highlight-3; }
339.class-4 { border-color: $kwic-highlight-4; }
Akron3bb91bc2016-12-02 16:43:17 +0100340
341
342/**
343 * Actions
344 */
345
346ul.action {
347 display: none;
348 // background-color: $dark-orange;
349 font-size: 12pt;
Akron08b82d62016-12-05 15:06:05 +0100350 color: $nearly-white;
Akron3bb91bc2016-12-02 16:43:17 +0100351 text: {
352 shadow: none;
353 indent: 0;
354 }
355 margin: 0;
356 padding: 0;
357 z-index: 5;
358
359 list-style: {
360 type: none;
361 position: inline;
362 }
363 &.right {
364 position: absolute;
Akron08b82d62016-12-05 15:06:05 +0100365 z-index: 4;
Akron3bb91bc2016-12-02 16:43:17 +0100366 width: $right-match-distance;
367 float: right;
368 text-align: center;
369 padding: 0pt 3pt;
370 height: 100%;
371 right: 0;
372 top: 0;
373 li {
374 cursor: pointer;
Akron08b82d62016-12-05 15:06:05 +0100375 color: $nearly-white;
Akron3bb91bc2016-12-02 16:43:17 +0100376 text-decoration: none;
377
378 > span {
379 @include blind;
380 }
381 &.close::after {
382 font-family: "FontAwesome";
383 content: $fa-close;
384 }
385 &.info::after {
386 font-family: "FontAwesome";
387 content: $fa-info;
388 }
389 }
390 }
391}
392