xref: /template/wikiweko/style.ini (revision 93355e9b0aa87bb82cc0e31a418a12aa8f969a9f)
1;;
2; INI to handle loading of the CSS files of the "vector" 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 <ah@bitkollektiv.org>
11; @link http://www.dokuwiki.org/template:vector
12; @link http://www.dokuwiki.org/devel:css#styleini
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; Define the stylesheets your template uses here. The second value
20; defines for which output media the style should be loaded. Currently
21; print, screen and rtl are supported. rtl styles are loaded additionally
22; to screen styles if a right-to-left language is selected (e.g. Hebrew)
23[stylesheets]
24
25; screen
26; note to myself: don't forget to respect the workaround within "bug49642.php"
27;                 when adding new screen styles.
28; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
29static/3rd/dokuwiki/_imgdetail.css        = screen
30static/3rd/dokuwiki/_media_popup.css      = screen
31static/3rd/dokuwiki/_media_fullscreen.css = screen
32static/3rd/dokuwiki/_fileuploader.css     = screen
33static/3rd/dokuwiki/_tabs.css             = screen
34static/3rd/dokuwiki/_links.css            = screen
35static/3rd/dokuwiki/_toc.css              = screen
36static/3rd/dokuwiki/_footnotes.css        = screen
37static/3rd/dokuwiki/_search.css           = screen
38static/3rd/dokuwiki/_recent.css           = screen
39static/3rd/dokuwiki/_diff.css             = screen
40static/3rd/dokuwiki/_edit.css             = screen
41static/3rd/dokuwiki/_modal.css            = screen
42static/3rd/dokuwiki/_forms.css            = screen
43static/3rd/dokuwiki/_admin.css            = screen
44
45; load the most important MediaWiki vector styles
46static/3rd/vector/main-ltr.css = screen
47
48; load the specific "vector for dokuwiki" styles
49static/css/screen.css          = screen
50user/screen.css                = screen
51
52
53; print
54; note to myself: don't forget to respect the "print" action for the "printable
55;                 version" within "main.php" when adding new print styles.
56;                 I think this function is silly (cause therefore we got
57;                 different "media" but some people *always* searching for such
58;                 print version links). Good text about this: <http://j.mp/6r3Kgf>
59; note to myself: don't forget to respect the workaround within "bug49642.php"
60;                 when adding new print styles.
61; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
62static/3rd/dokuwiki/print.css = print
63
64; load the specific "vector for dokuwiki" styles
65static/css/print.css = print
66user/print.css       = print
67
68
69; right-to-left
70; note to myself: don't forget to respect the workaround within "bug49642.php"
71;                 when adding new rtl styles.
72
73; load the most important MediaWiki vector styles
74static/3rd/vector/main-rtl.css = rtl
75
76; load the specific "vector 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;
92;note to myself: don't forget to respect the workaround within "bug49642.php"
93;                when changing values in here.
94__text__           = "#000"
95__background__     = "#fff"
96; alternative text and background colors
97__text_alt__       = "#000"
98__background_alt__ = "#dee7ec" ;"#eef3f8"
99; neutral text and background colors
100__text_neu__       = "#000"
101__background_neu__ = "#fff"
102; border color
103__border__         = "#8cacbb"
104;--------------------------------------------------------------------------
105
106; these are used for links
107__existing__  = "#002bb8"
108__missing__   = "#ba0000"
109
110; highlighting search snippets
111__highlight__ = "#ff9"
112
113; starter template css base compatibility: NOT USED, DO NOT CHANGE!
114__site_width__    = "64em"
115__sidebar_width__ = "16em"
116
117