1/**
2 * This file provides styles for the translation plugin
3 */
4
5
6.dokuwiki div.plugin_translation {
7    clear: none;
8    display: block;
9    position: relative;
10    float: none;
11
12    + * {
13        clear: both;
14        padding-top: 1em; // as h1
15    }
16
17    ul li {
18        a.wikilink1:link,
19        a.wikilink1:hover,
20        a.wikilink1:active,
21        a.wikilink1:visited {
22            background-color: @ini_link;
23        }
24    }
25}
26
27@media @screen_max-md {
28    .dokuwiki div.plugin_translation {
29        clear: both;
30        margin-top: 1rem;
31    }
32}
33