source: documentation/trunk/packages/templates/greenstone-monobook/style.ini@ 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: 4.5 KB
Line 
1;;
2; INI to handle loading of the CSS files of the "monobook" template for DokuWiki
3;
4;
5; LICENSE: This file is open source software (OSS) and may be copied under
6; certain conditions. See COPYING file for details or try to contact
7; the author(s) of this file in doubt.
8;
9; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
10; @author Andreas Haerter <[email protected]>
11; @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
12; @link http://www.dokuwiki.org/template:monobook
13; @link http://www.dokuwiki.org/devel:css#styleini
14
15
16
17; Please see http://www.php.net/manual/en/function.parse-ini-file.php
18; for limitations of the ini format used here
19
20; Define the stylesheets your template uses here. The second value
21; defines for which output media the style should be loaded. Currently
22; print, screen and rtl are supported. rtl styles are loaded additionally
23; to screen styles if a right-to-left language is selected (eg. hebrew)
24[stylesheets]
25
26; screen
27; note to myself: don't forget to respect the workaround within "bug49642.php"
28; when adding new screen styles.
29; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
30static/3rd/dokuwiki/_imgdetail.css = screen
31static/3rd/dokuwiki/_media_popup.css = screen
32static/3rd/dokuwiki/_media_fullscreen.css = screen
33static/3rd/dokuwiki/_fileuploader.css = screen
34static/3rd/dokuwiki/_tabs.css = screen
35static/3rd/dokuwiki/_links.css = screen
36static/3rd/dokuwiki/_toc.css = screen
37static/3rd/dokuwiki/_footnotes.css = screen
38static/3rd/dokuwiki/_search.css = screen
39static/3rd/dokuwiki/_recent.css = screen
40static/3rd/dokuwiki/_diff.css = screen
41static/3rd/dokuwiki/_edit.css = screen
42static/3rd/dokuwiki/_modal.css = screen
43static/3rd/dokuwiki/_forms.css = screen
44static/3rd/dokuwiki/_admin.css = screen
45
46; load the most important MediaWiki monobook styles
47static/3rd/monobook/main.css = screen
48
49; load the specific "monobook for dokuwiki" styles
50static/css/screen.css = screen
51user/screen.css = screen
52
53
54; print
55; note to myself: don't forget to respect the "print" action for the "printable
56; version" within "main.php" when adding new print styles.
57; I think this function is silly (cause therefore we got
58; different "media" but some people *always* searching for such
59; print version links). Good text about this: <http://j.mp/6r3Kgf>
60; note to myself: don't forget to respect the workaround within "bug49642.php"
61; when adding new print styles.
62; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
63static/3rd/dokuwiki/print.css = print
64
65publish/print.css = print
66
67; load Wikipedia print styles
68static/3rd/wikipedia/commonPrint.css = print
69
70; load the specific "monobook for dokuwiki" styles
71static/css/print.css = print
72user/print.css = print
73
74
75; right-to-left
76; note to myself: don't forget to respect the workaround within "bug49642.php"
77; when adding new rtl styles.
78; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
79static/3rd/dokuwiki/rtl.css = rtl
80
81; load the most important MediaWiki monobook styles
82static/3rd/monobook/rtl.css = rtl
83
84; load the specific "monobook for dokuwiki" styles
85static/css/rtl.css = rtl
86user/rtl.css = rtl
87
88; This section is used to configure some placeholder values used in
89; the stylesheets. Changing this file is the simplest method to
90; give your wiki a new look.
91[replacements]
92
93;--------------------------------------------------------------------------
94;------ guaranteed dokuwiki color placeholders that every plugin can use
95; main text and background colors
96;
97;note to myself: don't forget to respect the workaround within "bug49642.php"
98; when changing values in here.
99__text__ = "#000"
100__background__ = "#fff"
101; alternative text and background colors
102__text_alt__ = "#000"
103__background_alt__ = "#dee7ec" ;"#eef3f8"
104; neutral text and background colors
105__text_neu__ = "#000"
106__background_neu__ = "#fff"
107; border color
108__border__ = "#8cacbb"
109;--------------------------------------------------------------------------
110
111; these are used for links
112__existing__ = "#002bb8" ;use #090 for dokuwiki-green links
113__missing__ = "#ba0000"
114
115; highlighting search snippets
116__highlight__ = "#ff9"
117
118; starter template css base compatibility: NOT USED, DO NOT CHANGE!
119__site_width__ = "64em"
120__sidebar_width__ = "16em"
121
Note: See TracBrowser for help on using the repository browser.