1/**
2 * Taken from the lib\styles\all.css of dokuwiki
3 * to delete the `group` class clearfix that competes
4 * with other plugin such as regex prism
5 */
6
7div.clearer {
8    clear: both;
9    font-size: 0;
10    line-height: 0;
11    height: 0;
12    overflow: hidden;
13}
14
15
16div.no {
17    display: inline;
18    margin: 0;
19    padding: 0;
20}
21
22.hidden {
23    display: none;
24}
25
26/* image alignment */
27.medialeft {
28    float: left;
29}
30.mediaright {
31    float: right;
32}
33.mediacenter {
34    display: block;
35    margin-left: auto;
36    margin-right: auto;
37}
38
39/* table cell alignment */
40.leftalign   { text-align: left;   }
41.centeralign { text-align: center; }
42.rightalign  { text-align: right;  }
43[dir=rtl] .leftalign   { text-align: left;   }
44[dir=rtl] .centeralign { text-align: center; }
45[dir=rtl] .rightalign  { text-align: right;  }
46
47/* underline */
48em.u {
49    font-style: normal;
50    text-decoration: underline;
51}
52em em.u {
53    font-style: italic;
54}
55
56img.icon.smiley {
57    height: 1.2em;
58}
59