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 ARSAVA <dokuwiki@dev.arsava.com>
11; @link https://www.dokuwiki.org/template:monobook
12; @link https://www.dokuwiki.org/devel:style.ini
13
14
15
16; Please see http://www.php.net/manual/en/function.parse-ini-file.php
17; for limitations of the ini format used here.
18
19; To extend this file or make changes to it, it is recommended to create
20; a style.local.ini file to prevent losing any changes after an upgrade.
21; Please don't forget to copy the section your changes should be under
22; (i.e. [stylesheets] or [replacements]) into that file as well.
23
24; Define the stylesheets your template uses here. The second value
25; defines for which output media the style should be loaded. Currently
26; print, screen and all are supported.
27
28[stylesheets]
29; screen
30; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
31static/3rd/dokuwiki/_imgdetail.css        = screen
32static/3rd/dokuwiki/_media_popup.css      = screen
33static/3rd/dokuwiki/_media_fullscreen.css = screen
34static/3rd/dokuwiki/_fileuploader.css     = screen
35static/3rd/dokuwiki/_tabs.css             = screen
36static/3rd/dokuwiki/_links.css            = screen
37static/3rd/dokuwiki/_toc.css              = screen
38static/3rd/dokuwiki/_footnotes.css        = screen
39static/3rd/dokuwiki/_search.css           = screen
40static/3rd/dokuwiki/_recent.css           = screen
41static/3rd/dokuwiki/_diff.css             = screen
42static/3rd/dokuwiki/_edit.css             = screen
43static/3rd/dokuwiki/_modal.css            = screen
44static/3rd/dokuwiki/_forms.css            = screen
45static/3rd/dokuwiki/_admin.css            = screen
46
47; load the most important MediaWiki monobook styles
48static/3rd/monobook/main.css = screen
49
50; load the specific "monobook for dokuwiki" styles
51static/css/screen.css = screen
52user/screen.css       = screen
53
54
55; print
56; note to myself: don't forget to respect the "print" action for the "printable
57;                 version" within "main.php" when adding new print styles.
58;                 I think this function is silly (cause therefore we got
59;                 different "media" but some people *always* searching for such
60;                 print version links). Good text about this: <http://j.mp/6r3Kgf>
61; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
62static/3rd/dokuwiki/print.css = print
63
64; load Wikipedia print styles
65static/3rd/wikipedia/commonPrint.css = print
66
67; load the specific "monobook for dokuwiki" styles
68static/css/print.css = print
69user/print.css       = print
70
71
72; right-to-left
73; load the most important MediaWiki monobook styles
74static/3rd/monobook/rtl.css = rtl
75
76; load the specific "monobook for dokuwiki" styles
77static/css/rtl.css = rtl
78user/rtl.css       = rtl
79
80
81
82
83; This section is used to configure some placeholder values used in
84; the stylesheets. Changing this file is the simplest method to
85; give your wiki a new look.
86[replacements]
87
88;--------------------------------------------------------------------------
89;------ guaranteed dokuwiki color placeholders that every plugin can use
90; main text and background colors
91__text__           = "#000"
92__background__     = "#fff"
93; alternative text and background colors
94__text_alt__       = "#000"
95__background_alt__ = "#dee7ec"
96; neutral text and background colors
97__text_neu__       = "#000"
98__background_neu__ = "#fff"
99; border color
100__border__         = "#8cacbb"
101;--------------------------------------------------------------------------
102
103; these are used for links
104__existing__  = "#002bb8" ;use #090 for dokuwiki-green links
105__missing__   = "#ba0000"
106
107; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes
108; from core and will therefore be removed from here if pre-Adora Belle support
109; will be dropped)
110__highlight__ = "#ff9"
111