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: none;
13}
14.dokuwiki a.wikilink2:link,
15.dokuwiki a.wikilink2:visited {
16    border-bottom: 1px dashed;
17}
18.dokuwiki a.wikilink2:hover,
19.dokuwiki a.wikilink2:active,
20.dokuwiki a.wikilink2:focus {
21    border-bottom-width: 0;
22}
23
24/* any link to current page */
25.dokuwiki span.curid a {
26    font-weight: bold;
27}
28
29/*____________ other link types ____________*/
30
31.dokuwiki a.urlextern,
32.dokuwiki a.windows,
33.dokuwiki a.mail,
34.dokuwiki a.mediafile,
35.dokuwiki a.interwiki {
36    background-repeat: no-repeat;
37    background-position: 0 center;
38    padding: 0 0 0 18px;
39}
40/* external link */
41.dokuwiki a.urlextern {
42    background-image: url(images/external-link.png);
43    /*
44    @deprecated, change since Adora Belle:
45    background-image: url(../../images/external-link.png);
46    */
47}
48/* windows share */
49.dokuwiki a.windows {
50    background-image: url(images/unc.png);
51    /*
52    @deprecated, change since Adora Belle:
53    background-image: url(../../images/unc.png);
54    */
55}
56/* email link */
57.dokuwiki a.mail {
58    background-image: url(images/email.png);
59    /*
60    @deprecated, change since Adora Belle:
61    background-image: url(../../images/email.png);
62    */
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 */
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    display: inline-block; /* needed for IE7 */
82}
83