xref: /template/wikiweko/static/3rd/dokuwiki/_links.css (revision 93355e9b0aa87bb82cc0e31a418a12aa8f969a9f)
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/**
7 * This file provides styles for all types of links.
8 */
9
10/*____________ links to wiki pages ____________*/
11
12/* existing wikipage */
13.dokuwiki a.wikilink1 {
14    color: __existing__;
15    background-color: inherit;
16}
17/* not existing wikipage */
18.dokuwiki a.wikilink2 {
19    color: __missing__;
20    background-color: inherit;
21    text-decoration: none;
22}
23.dokuwiki a.wikilink2:link,
24.dokuwiki a.wikilink2:visited {
25    border-bottom: 1px dashed;
26}
27.dokuwiki a.wikilink2:hover,
28.dokuwiki a.wikilink2:active,
29.dokuwiki a.wikilink2:focus {
30    border-bottom-width: 0;
31}
32
33/* any link to current page */
34.dokuwiki span.curid a {
35    font-weight: bold;
36}
37
38/*____________ other link types ____________*/
39
40.dokuwiki a.urlextern,
41.dokuwiki a.windows,
42.dokuwiki a.mail,
43.dokuwiki a.mediafile,
44.dokuwiki a.interwiki {
45    background-repeat: no-repeat;
46    background-position: 0 center;
47    padding: 0 0 0 18px;
48}
49/* external link */
50.dokuwiki a.urlextern {
51    background-image: url(static/3rd/dokuwiki/external-link.png);
52}
53/* windows share */
54.dokuwiki a.windows {
55    background-image: url(static/3rd/dokuwiki/unc.png);
56}
57/* email link */
58.dokuwiki a.mail {
59    background-image: url(static/3rd/dokuwiki/email.png);
60}
61
62/* icons of the following are set by dokuwiki in lib/exe/css.php */
63/* link to some embedded media */
64.dokuwiki a.mediafile {
65}
66/* interwiki link */
67.dokuwiki a.interwiki {
68}
69
70/* RTL corrections */
71[dir=rtl] .dokuwiki a.urlextern,
72[dir=rtl] .dokuwiki a.windows,
73[dir=rtl] .dokuwiki a.mail,
74[dir=rtl] .dokuwiki a.interwiki,
75[dir=rtl] .dokuwiki a.mediafile {
76    background-position: right center;
77    padding: 0 18px 0 0;
78    display: inline-block; /* needed for IE7 */
79}
80