1
2/* don't cut off the snippets */
3body .dokuwiki div.page {
4    overflow: visible;
5}
6
7.editions_section {
8    position: relative;
9}
10
11/* list of editions per paragraph */
12
13.editions_editionlist {
14    position: relative;
15    text-align: right;
16}
17
18.editions_editionlist ul {
19    margin: -1.4em 0 1.4em;
20    padding: 0;
21    list-style: none;
22}
23
24.editions_editionlist li {
25    display: inline;
26    padding: 0 0 0 .5em;
27    margin: 0;
28}
29
30/* prepare for icons */
31.editions_editionlist li a {
32    padding-left: 18px;
33    background-position: 0 center;
34    background-repeat: no-repeat;
35}
36
37
38/* snippet */
39
40body .editions_snippet {
41    position: absolute;
42    top: 2em;
43    right: 0;
44    width: 90%;
45    text-align: justify;
46    z-index: 50;
47    background-image: none;
48    line-height: 1.2;
49    padding: .7em;
50    display: none;
51}
52
53.editions_snippet p {
54    margin-bottom: 0;
55}
56
57.editions_snippet img.load {
58    margin: 0 auto;
59    display: block;
60    opacity: .5;
61}
62
63/* hide purple numbers and edition links in snippet */
64.editions_snippet a.pn,
65.editions_snippet .editions_editionlist {
66    display: none;
67}
68