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; Define the stylesheets your template uses here. The second value
11; defines for which output media the style should be loaded. Currently
12; print, screen and all are supported.
13; You can reference CSS and LESS files here. Files referenced here will
14; be checked for updates when considering a cache rebuild while files
15; included through LESS' @import statements are not
16
17[stylesheets]
18css/_normalize.css        = screen
19
20css/_imgdetail.css        = screen
21css/_media_popup.css      = screen
22css/_media_fullscreen.css = screen
23css/_fileuploader.css     = screen
24css/_tabs.css             = screen
25css/_links.css            = screen
26
27css/_forms.css            = screen
28css/_search.css           = screen
29css/_recent.css           = screen
30css/_diff.css             = screen
31css/_edit.css             = screen
32css/_modal.css            = screen
33css/_admin.css            = screen
34css/basic.less            = screen
35css/mixins.less           = screen
36
37css/_wrapper.css          = screen
38css/_helper.css           = screen
39css/_content.css          = screen
40css/_footer.css           = screen
41css/_footnotes.css        = screen
42css/_header.css           = screen
43css/_sidebar.css          = screen
44css/_icomoon.css          = screen
45css/_g.css                = screen
46
47css/_rwd.css              = all
48css/print.css             = print
49
50
51; This section is used to configure some placeholder values used in
52; the stylesheets. Changing this file is the simplest method to
53; give your wiki a new look.
54; Placeholders defined here will also be made available as LESS variables
55; (with surrounding underscores removed, and the prefix @ini_ added)
56
57[replacements]
58
59;--------------------------------------------------------------------------
60;------ guaranteed dokuwiki color placeholders that every plugin can use
61
62; main text and background colors
63__text__                 = "#616161"         ; @ini_text
64__background__           = "#f5f5f5"         ; @ini_background
65
66; border color
67__border__               = "#ddd"            ; @ini_border
68__border_underline__     = "#fff"            ; @ini_border_underline
69
70; highlighted text (e.g. search snippets)
71__highlight__            = "#ff9"            ; @ini_highlight
72
73;--------------------------------------------------------------------------
74
75; width settings
76__site_width__                  = "72.5em"        ; @ini_site_width
77__sidebar_percentage__          = "25%"           ; @ini_sidebar_percentage
78__sidebar_max_width__           = "100%"          ; @ini_sidebar_max_width
79__sidebar_min_width__           = "10em"          ; @ini_sidebar_min_width
80
81__header_background__           = "#f5f5f5"       ; @ini_header_background
82__header_text__                 = "#616161"       ; @ini_header_text
83__header_link__                 = "#0288d1"       ; @ini_header_link
84__header_linkHover__            = "#01579b"       ; @ini_header_linkHover
85
86__search_text__                 = "#616161"       ; @ini_search_text
87__search_iconColor__            = "#0288d1"       ; @ini_search_iconColor
88__search_iconHover__            = "#01579b"       ; @ini_search_iconHover
89__search_input__                = "#fff"          ; @ini_search_input
90
91__footer_background__           = "#f5f5f5"       ; @ini_footer_background
92__footer_text__                 = "#bdbdbd"       ; @ini_footer_text
93
94; these are used for links
95__link__                        = "#2b73b7"       ; @ini_link
96__link_hover__                  = "#01579b"       ; @ini_link_hover
97__existing__                    = "#2b73b7"       ; @ini_existing
98__missing__                     = "#d30"          ; @ini_missing
99
100; breadcrumb
101__breadcrumb_background__       = "#eee"          ; @ini_breadcrumb_background
102__breadcrumb_text__             = "#bdbdbd"       ; @ini_breadcrumb_text
103__breadcrumb_hover__            = "#9e9e9e"       ; @ini_breadcrumb_hover
104
105; cut off points for mobile devices
106__tablet_width__                = "800px"         ; @ini_tablet_width
107__phone_width__                 = "480px"         ; @ini_phone_width
108
109; sort order of sidebar elements
110__sidebar_position__            = "left"          ; @ini_sidebar_position
111__sidebar_title_order__         = "1"             ; @ini_sidebar_title_order
112__sidebar_toc_order__           = "2"             ; @ini_sidebar_toc_order
113__sidebar_page_order__          = "3"             ; @ini_sidebar_page_order
114__sidebar_breadcrumb_order__    = "4"             ; @ini_sidebar_breadcrumb_order
115
116; hide/show sidebar elements
117__sidebar_title_display__       = "block"         ; @ini_sidebar_title_display
118__sidebar_toc_display__         = "block"         ; @ini_sidebar_toc_display
119__sidebar_breadcrumb_display__  = "block"         ; @ini_sidebar_breadcrumb_display
120