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: __existing__;
10    background-color: inherit;
11}
12/* not existing wikipage */
13.dokuwiki a.wikilink2 {
14    color: __missing__;
15    background-color: inherit;
16    text-decoration: none;
17}
18.dokuwiki a.wikilink2:link,
19.dokuwiki a.wikilink2:visited {
20    border-bottom: 1px dashed;
21}
22.dokuwiki a.wikilink2:hover,
23.dokuwiki a.wikilink2:active,
24.dokuwiki a.wikilink2:focus {
25    border-bottom-width: 0;
26}
27
28/* any link to current page */
29.dokuwiki span.curid a {
30    font-weight: bold;
31}
32
33/*____________ other link types ____________*/
34
35.dokuwiki a.urlextern,
36.dokuwiki a.windows,
37.dokuwiki a.mail,
38.dokuwiki a.mediafile,
39.dokuwiki a.interwiki {
40    background-repeat: no-repeat;
41    background-position: 0 center;
42    padding: 0 0 0 20px;
43}
44/* external link */
45.dokuwiki a.urlextern {
46    background-image: url(images/link_icon.gif);
47    padding: 0 0 0 17px;
48}
49/* windows share */
50.dokuwiki a.windows {
51    background-image: url(images/windows.gif);
52}
53/* email link */
54.dokuwiki a.mail {
55    background-image: url(images/mail_icon.gif);
56}
57
58/* icons of the following are set by dokuwiki in lib/exe/css.php */
59/* link to some embedded media */
60.dokuwiki a.mediafile {
61}
62/* interwiki link */
63.dokuwiki a.interwiki {
64    padding: 0 0 0 17px;
65}
66