xref: /template/sprintdoc/style.ini (revision c2de6b32453faaa33b48bfb5a64f0f78044dc53a)
1; Please see http://www.php.net/manual/en/function.parse-ini-file.php
2; for limitations of the ini format used here
3
4; To extend this file or make changes to it, it is recommended to create
5; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
6; any changes after an upgrade.
7; Please don't forget to copy the section your changes should be under
8; (i.e. [stylesheets] or [replacements]) into that file as well.
9
10
11; Define the stylesheets your template uses here. The second value
12; defines for which output media the style should be loaded. Currently
13; print, screen and all are supported.
14; You can reference CSS and LESS files here. Files referenced here will
15; be checked for updates when considering a cache rebuild while files
16; included through LESS' @import statements are not
17
18
19
20[stylesheets]
21
22; * * * * * * * * * * * * * * * * * * * * *
23; DokuWiki Default Template Styles
24; * * * * * * * * * * * * * * * * * * * * *
25
26
27../dokuwiki/css/_imgdetail.css        = screen
28../dokuwiki/css/_media_popup.css      = screen
29../dokuwiki/css/_media_fullscreen.css = screen
30../dokuwiki/css/_fileuploader.css     = screen
31../dokuwiki/css/_tabs.css             = screen
32../dokuwiki/css/_links.css            = screen
33../dokuwiki/css/_toc.css              = screen
34../dokuwiki/css/_footnotes.css        = screen
35../dokuwiki/css/_search.css           = screen
36../dokuwiki/css/_recent.css           = screen
37../dokuwiki/css/_diff.css             = screen
38../dokuwiki/css/_edit.css             = screen
39../dokuwiki/css/_modal.css            = screen
40../dokuwiki/css/_forms.css            = screen
41../dokuwiki/css/_admin.css            = screen
42
43
44
45; * * * * * * * * * * * * * * * * * * * * *
46; sprintDoc Template Styles
47; * * * * * * * * * * * * * * * * * * * * *
48
49; responsive behaviour for structure and areas is handled in style modules
50
51; _____________  basic styles  _____________
52
53css/base.less                         = all
54css/base_fonts.less                   = all
55css/base_structure.less               = all
56css/base_design.less                  = all
57
58
59; _____________  area styles   _____________
60
61css/area_content.less                 = all
62css/area_header.less                  = all
63css/area_footer.less                  = all
64css/area_navigation.less              = all
65
66
67; _____________  plugin styles _____________
68
69
70; _____________  print styles  _____________
71
72css/print.css                         = print
73
74
75
76; This section is used to configure some placeholder values used in
77; the stylesheets. Changing this file is the simplest method to
78; give your wiki a new look.
79; Placeholders defined here will also be made available as LESS variables
80; (with surrounding underscores removed, and the prefix @ini_ added)
81
82[replacements]
83
84;--------------------------------------------------------------------------
85;------ guaranteed dokuwiki color placeholders that every plugin can use
86
87; main text and background colors
88__text__           = "#333"                 ; @ini_text
89__background__     = "#fff"                 ; @ini_background
90; alternative text and background colors
91__text_alt__       = "#999"                 ; @ini_text_alt
92__background_alt__ = "#eee"                 ; @ini_background_alt
93; neutral text and background colors
94__text_neu__       = "#666"                 ; @ini_text_neu
95__background_neu__ = "#ddd"                 ; @ini_background_neu
96; border color
97__border__         = "#ccc"                 ; @ini_border
98
99; highlighted text (e.g. search snippets)
100__highlight__      = "#ff9"                 ; @ini_highlight
101
102;--------------------------------------------------------------------------
103
104; these are used for links
105__existing__       = "#090"                 ; @ini_existing
106__missing__        = "#f30"                 ; @ini_missing
107
108; widths
109__site_width__     = "64em"                 ; @ini_site_width
110__sidebar_width__  = "16em"                 ; @ini_sidebar_width
111