1/* ATTENTION: This file was edited for the "vector template for DokuWiki".
2   - All url(images/[...]) rules where changed.
3   See 00_starter-tmpl-notes.txt for details. */
4
5/**
6 * This file provides styles for all types of links.
7 */
8
9/*____________ links to wiki pages ____________*/
10
11/* existing wikipage */
12.dokuwiki a.wikilink1 {
13}
14/* not existing wikipage */
15.dokuwiki a.wikilink2 {
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 18px;
43}
44/* external link */
45.dokuwiki a.urlextern {
46    background-image: url(static/3rd/dokuwiki/external-link.png);
47    /*
48    @deprecated, change since Adora Belle:
49    background-image: url(../../images/external-link.png);
50    */
51}
52/* windows share */
53.dokuwiki a.windows {
54    background-image: url(static/3rd/dokuwiki/unc.png);
55    /*
56    @deprecated, change since Adora Belle:
57    background-image: url(../../images/unc.png);
58    */
59}
60/* email link */
61.dokuwiki a.mail {
62    background-image: url(static/3rd/dokuwiki/email.png);
63    /*
64    @deprecated, change since Adora Belle:
65    background-image: url(../../images/email.png);
66    */
67}
68
69/* icons of the following are set by dokuwiki in lib/exe/css.php */
70/* link to some embedded media */
71.dokuwiki a.mediafile {
72}
73/* interwiki link */
74.dokuwiki a.interwiki {
75}
76
77/* RTL corrections */
78[dir=rtl] .dokuwiki a.urlextern,
79[dir=rtl] .dokuwiki a.windows,
80[dir=rtl] .dokuwiki a.mail,
81[dir=rtl] .dokuwiki a.interwiki,
82[dir=rtl] .dokuwiki a.mediafile {
83    background-position: right center;
84    padding: 0 18px 0 0;
85    display: inline-block; /* needed for IE7 */
86}
87