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}
10/* not existing wikipage */
11.dokuwiki a.wikilink2 {
12    text-decoration: underline dashed;
13	/*text-decoration: none;*/
14}
15.dokuwiki a.wikilink2:link,
16.dokuwiki a.wikilink2:visited {
17    /*border-bottom: 1px dashed;*/
18}
19.dokuwiki a.wikilink2:hover,
20.dokuwiki a.wikilink2:active,
21.dokuwiki a.wikilink2:focus {
22    border-bottom-width: 0;
23}
24
25
26/*____________ other link types ____________*/
27
28.dokuwiki a.urlextern,
29.dokuwiki a.windows,
30.dokuwiki a.mail,
31.dokuwiki a.mediafile,
32.dokuwiki a.interwiki {
33    background-repeat: no-repeat;
34    background-position: 0 center;
35    padding: 0 0 0 18px;
36}
37/* external link */
38.dokuwiki a.urlextern {
39    background-image: url(../../images/external-link.png);
40}
41/* windows share */
42.dokuwiki a.windows {
43    background-image: url(../../images/unc.png);
44}
45/* email link */
46.dokuwiki a.mail {
47    background-image: url(../../images/email.png);
48}
49
50/* icons of the following are set by dokuwiki in lib/exe/css.php */
51/* link to some embedded media */
52.dokuwiki a.mediafile {
53}
54/* interwiki link */
55.dokuwiki a.interwiki {
56}
57
58/* RTL corrections; if link icons don't work as expected, remove the following lines */
59[dir=rtl] .dokuwiki a.urlextern,
60[dir=rtl] .dokuwiki a.windows,
61[dir=rtl] .dokuwiki a.mail,
62[dir=rtl] .dokuwiki a.interwiki,
63[dir=rtl] .dokuwiki a.mediafile {
64    background-position: right center;
65    padding: 0 18px 0 0;
66}
67