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}
10/* not existing wikipage */
11.dokuwiki a.wikilink2 {
12    text-decoration: none;
13}
14.dokuwiki a.wikilink2:link,
15.dokuwiki a.wikilink2:visited {
16    border-bottom: 1px dashed;
17}
18.dokuwiki a.wikilink2:hover,
19.dokuwiki a.wikilink2:active,
20.dokuwiki a.wikilink2:focus {
21    border-bottom-width: 0;
22}
23
24/* any link to current page */
25.dokuwiki span.curid a {
26    font-weight: bold;
27}
28
29/*____________ other link types ____________*/
30
31.dokuwiki a.urlextern,
32.dokuwiki a.windows,
33.dokuwiki a.mail,
34.dokuwiki a.mediafile,
35.dokuwiki a.interwiki {
36    background-repeat: no-repeat;
37    background-position: 0 center;
38    padding: 0 0 0 18px;
39}
40/* external link */
41.dokuwiki a.urlextern {
42    /* background-image: url(../../images/external-link.png); */
43    padding: 0;
44}
45
46.dokuwiki a.urlextern::before {
47    margin: 0 0.2em 0 0;
48    content: "\f0ac";
49    font-family: "Font Awesome 5 Free";
50    font-weight: 900; /* If 'solid' image, should define 900 bold */
51    color: #343a40;
52}
53
54/* windows share */
55.dokuwiki a.windows {
56    background-image: url(../../images/unc.png);
57}
58/* email link */
59.dokuwiki a.mail {
60    background-image: url(../../images/email.png);
61}
62
63/* icons of the following are set by dokuwiki in lib/exe/css.php */
64/* link to some embedded media */
65.dokuwiki a.mediafile {
66}
67/* interwiki link */
68.dokuwiki a.interwiki {
69}
70
71/* RTL corrections; if link icons don't work as expected, remove the following lines */
72[dir=rtl] .dokuwiki a.urlextern,
73[dir=rtl] .dokuwiki a.windows,
74[dir=rtl] .dokuwiki a.mail,
75[dir=rtl] .dokuwiki a.interwiki,
76[dir=rtl] .dokuwiki a.mediafile {
77    background-position: right center;
78    padding: 0 18px 0 0;
79}
80