xref: /template/wikiweko/static/3rd/dokuwiki/_links.css (revision 9ee1331858b4b6e7e7b54edd69a13b39af2bfd65)
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 20px;
48}
49/* external link */
50.dokuwiki a.urlextern {
51    background-image: url(static/3rd/dokuwiki/link_icon.gif);
52    padding: 0 0 0 17px;
53}
54/* windows share */
55.dokuwiki a.windows {
56    background-image: url(static/3rd/dokuwiki/windows.gif);
57}
58/* email link */
59.dokuwiki a.mail {
60    background-image: url(static/3rd/dokuwiki/mail_icon.gif);
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    padding: 0 0 0 17px;
70}
71