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:#080;
10    padding:4px;
11    border-radius:4px;
12    transition:background ease .4s;
13    -webkit-transition:background ease .4s;
14    -moz-transition:background ease .4s;
15    -o-transition:background ease .4s;
16    -ms-transition:background ease .4s;
17}
18.dokuwiki a.wikilink1:hover,
19.dokuwiki a.wikilink2:active,
20.dokuwiki a.wikilink3:focus {
21    color:#fff;
22    background:#080;
23}
24
25/* not existing wikipage */
26.dokuwiki a.wikilink2 {
27    color:#df846c;
28    padding:4px;
29    border-radius:4px;
30    transition:background ease .4s;
31    -webkit-transition:background ease .4s;
32    -moz-transition:background ease .4s;
33    -o-transition:background ease .4s;
34    -ms-transition:background ease .4s;
35}
36.dokuwiki a.wikilink2:hover,
37.dokuwiki a.wikilink2:active,
38.dokuwiki a.wikilink2:focus {
39    color:#fff;
40    background:#df846c;
41}
42
43/* any link to current page */
44.dokuwiki span.curid a {
45    font-weight: bold;
46}
47
48/*____________ other link types ____________*/
49
50.dokuwiki a.urlextern,
51.dokuwiki a.windows,
52.dokuwiki a.mail,
53.dokuwiki a.mediafile,
54.dokuwiki a.interwiki {
55    background-repeat: no-repeat;
56    background-position: 0 center;
57    padding: 0 0 0 18px;
58}
59/* external link */
60.dokuwiki a.urlextern {
61    background-image: url(../../images/external-link.png);
62}
63/* windows share */
64.dokuwiki a.windows {
65    background-image: url(../../images/unc.png);
66}
67/* email link */
68.dokuwiki a.mail {
69    background-image: url(../../images/email.png);
70}
71
72/* icons of the following are set by dokuwiki in lib/exe/css.php */
73/* link to some embedded media */
74.dokuwiki a.mediafile {
75}
76/* interwiki link */
77.dokuwiki a.interwiki {
78}
79
80/* RTL corrections; if link icons don't work as expected, remove the following lines */
81[dir=rtl] .dokuwiki a.urlextern,
82[dir=rtl] .dokuwiki a.windows,
83[dir=rtl] .dokuwiki a.mail,
84[dir=rtl] .dokuwiki a.interwiki,
85[dir=rtl] .dokuwiki a.mediafile {
86    background-position: right center;
87    padding: 0 18px 0 0;
88    display: inline-block; /* needed for IE7 */
89}
90