1; Please see http://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] 18; 19;css/basic.less = screen 20;css/_imgdetail.css = screen 21;css/_media_popup.css = screen 22;css/_media_fullscreen.css = screen 23;css/_fileuploader.css = screen 24;css/_tabs.css = screen 25;css/_links.css = screen 26css/_toc.css = screen 27;css/_footnotes.css = screen 28;css/_search.css = screen 29;css/_recent.css = screen 30;css/_diff.css = screen 31css/_edit.css = screen 32;css/_modal.css = screen 33;css/_forms.css = screen 34;css/_admin.less = screen 35;css/structure.less = screen 36;css/design.less = screen 37css/pagetools.less = screen 38css/content.less = screen 39 40css/mobile.less = all 41css/print.css = print 42 43;flat template 44;assets/css/style.css = all 45;assets/css/admin-style.css = screen 46;assets/css/editor-style.css = screen 47assets/css/flat.css = all 48;assets/css/flat.css.map = all 49;assets/css/flay.min.css = screen 50css/customFlat.css = all 51; end 52 53 54 55; This section is used to configure some placeholder values used in 56; the stylesheets. Changing this file is the simplest method to 57; give your wiki a new look. 58; Placeholders defined here will also be made available as LESS variables 59; (with surrounding underscores removed, and the prefix @ini_ added) 60 61[replacements] 62 63;-------------------------------------------------------------------------- 64;------ guaranteed dokuwiki color placeholders that every plugin can use 65 66; main text and background colors 67__text__ = "#333" ; @ini_text 68__background__ = "#fff" ; @ini_background 69; alternative text and background colors 70__text_alt__ = "#999" ; @ini_text_alt 71__background_alt__ = "#eee" ; @ini_background_alt 72; neutral text and background colors 73__text_neu__ = "#666" ; @ini_text_neu 74__background_neu__ = "#ddd" ; @ini_background_neu 75; border color 76__border__ = "#ccc" ; @ini_border 77 78; highlighted text (e.g. search snippets) 79__highlight__ = "#ff9" ; @ini_highlight 80 81;-------------------------------------------------------------------------- 82 83__background_site__ = "#fbfaf9" ; @ini_background_site 84 85; these are used for links 86__link__ = "#2b73b7" ; @ini_link 87__existing__ = "#080" ; @ini_existing 88__missing__ = "#d30" ; @ini_missing 89 90; site and sidebar widths 91__site_width__ = "75em" ; @ini_site_width 92__sidebar_width__ = "16em" ; @ini_sidebar_width 93; cut off points for mobile devices 94__tablet_width__ = "800px" ; @ini_tablet_width 95__phone_width__ = "480px" ; @ini_phone_width 96