1;;
2; INI to handle loading of the CSS files of the "mnml-blog" 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:mnml-blog
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
30css/_imgdetail.css        = screen ; Load the starter template styles.
31css/_media_popup.css      = screen ; See <http://j.mp/eq8zSo> why I am
32css/_media_fullscreen.css = screen ; doing this.
33css/_fileuploader.css     = screen
34css/_tabs.css             = screen
35css/_links.css            = screen
36css/_toc.css              = screen
37css/_footnotes.css        = screen
38css/_search.css           = screen
39css/_recent.css           = screen
40css/_diff.css             = screen
41css/_edit.css             = screen
42css/_modal.css            = screen
43css/_forms.css            = screen
44css/_admin.css            = screen
45css/mnml-blog_screen.css  = screen ; Load the mnml-blog template styles.
46user/screen.css           = screen ; Load optional user defined styles.
47
48;print
49css/print.css           = print ; Load the starter template styles.
50css/mnml-blog_print.css = print ; Load the mnml-blog template styles.
51user/print.css          = print ; Load optional user defined styles.
52
53
54
55
56; This section is used to configure some placeholder values used in
57; the stylesheets. Changing this file is the simplest method to
58; give your wiki a new look.
59[replacements]
60
61;--------------------------------------------------------------------------
62;------ guaranteed dokuwiki color placeholders that every plugin can use
63; main text and background colors
64__text__           = "#222"
65__background__     = "#fff"
66; alternative text and background colors
67__text_alt__       = "#666"
68__background_alt__ = "#efeded"
69; neutral text and background colors
70__text_neu__       = "#666"
71__background_neu__ = "#dddbd6"
72; border color
73__border__         = "#ddd"
74;--------------------------------------------------------------------------
75
76; these are used for links
77__existing__  = "#2b85a2"
78__missing__   = "#f30"
79
80; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes
81; from core and will therefore be removed from here if pre-Adora Belle support
82; will be dropped)
83__highlight__ = "#ff9"
84