1/**
2 * This file provides styles for all types of links.
3 */
4
5/*____________ links to wiki pages ____________*/
6
7/* existing wikipage */
8.dokuwiki a.wikilink1 {
9    color: @ini_existing;
10}
11.dokuwiki a.wikilink1:hover {
12    border-bottom: 1px solid;
13    text-decoration: none;
14}
15/* not existing wikipage */
16.dokuwiki a.wikilink2 {
17    color: @ini_missing;
18    text-decoration: none;
19}
20.dokuwiki a.wikilink2:link,
21.dokuwiki a.wikilink2:visited {
22    border-bottom: 1px dashed;
23}
24.dokuwiki a.wikilink2:hover,
25.dokuwiki a.wikilink2:active,
26.dokuwiki a.wikilink2:focus {
27    border-bottom-width: 0;
28}
29
30/* any link to current page */
31.dokuwiki span.curid a {
32    font-weight: bold;
33}
34
35/*____________ other link types ____________*/
36
37.dokuwiki a.urlextern,
38.dokuwiki a.windows,
39.dokuwiki a.mail,
40.dokuwiki a.mediafile,
41.dokuwiki a.interwiki {
42    background-repeat: no-repeat;
43    background-position: 0 center;
44    padding: 0 0 0 22px;
45
46    &:hover {
47        border-bottom: none;
48        text-decoration: none;
49        background-color: @ini_background_alt;
50    }
51}
52/* external link */
53.dokuwiki a.urlextern {
54    background-image: url(images/external-link.png);
55}
56/* windows share */
57.dokuwiki a.windows {
58    background-image: url(images/unc.png);
59}
60/* email link */
61.dokuwiki a.mail {
62    background-image: url(images/email.png);
63}
64
65/* icons of the following are set by dokuwiki in lib/exe/css.php */
66/* link to some embedded media */
67.dokuwiki a.mediafile {
68}
69/* interwiki link */
70.dokuwiki a.interwiki {
71}
72
73/* RTL corrections; if link icons don't work as expected, remove the following lines */
74[dir=rtl] .dokuwiki a.urlextern,
75[dir=rtl] .dokuwiki a.windows,
76[dir=rtl] .dokuwiki a.mail,
77[dir=rtl] .dokuwiki a.interwiki,
78[dir=rtl] .dokuwiki a.mediafile {
79    background-position: right center;
80    padding: 0 18px 0 0;
81}
82