source: documentation/trunk/packages/templates/greenstone-monobook/static/3rd/dokuwiki/_links.css@ 30114

Last change on this file since 30114 was 30114, checked in by jmt12, 9 years ago

Updated Greenstone customizations for Detritus, but rearranged to move into separate plugin. Initial checkin of plugins, template, special wiki pages.

File size: 1.6 KB
Line 
1/* ATTENTION: This file was edited for the "monobook 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}
Note: See TracBrowser for help on using the repository browser.