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/* not existing wikipage */
12.dokuwiki a.wikilink2 {
13    color: @ini_missing;
14    text-decoration: none;
15}
16.dokuwiki a.wikilink2:link,
17.dokuwiki a.wikilink2:visited {
18    border-bottom: 1px dashed;
19}
20.dokuwiki a.wikilink2:hover,
21.dokuwiki a.wikilink2:active,
22.dokuwiki a.wikilink2:focus {
23    border-bottom-width: 0;
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    display: inline-block; /* needed for IE7 */
67}
68