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