1.plugin-imagemapping {
2
3    svg {
4        width: 100%;
5        height: initial;
6        max-height: 100%;
7
8        circle.handle {
9            cursor: move;
10            fill: @ini_link;
11            opacity: 0.5;
12        }
13
14        g {
15            fill: none;
16            stroke: @ini_link;
17            stroke-width: 2;
18        }
19    }
20
21
22}
23
24// normally hide content
25.dokuwiki map div.imagemapping-content {
26    display: none;
27}
28
29// display content, but hide image on assistave devices
30@media aural, braille, tty {
31    .dokuwiki div.imapcontent {
32        display: block;
33    }
34
35    .dokuwiki img.imagemapping-map {
36        display: none;
37    }
38}
39