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