theme.rst 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. ########
  2. Theme
  3. ########
  4. Theme specific default settings.
  5. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  6. | Default Setting Subcategory | Default Setting Name | Default Setting Value | Default Setting Enabled | Default Setting Description |
  7. +=================================================+======================+==============================================================+=========================+===============================================================================================+
  8. | background_image | array | /themes/default/images/backgrounds/blue_blur.jpg | TRUE | |
  9. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  10. | background_color | array | #6c89b5 | TRUE | Set a background color. |
  11. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  12. | background_image_enabled | boolean | TRUE | TRUE | Enable use of background images. |
  13. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  14. | logout_icon_visible | text | FALSE | TRUE | Set the visibility of the logout icon. |
  15. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  16. | domain_color | text | #ffffff | FALSE | Set the text color (and opacity) for domain name. |
  17. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  18. | domain_color_hover | text | #69e5ff | FALSE | Set the text hover color (and opacity) for domain name. |
  19. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  20. | logout_icon_color | text | #ffffff | FALSE | Set the color (and opacity) for the logout icon (if visible). |
  21. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  22. | logout_icon_color_hover | text | #69e5ff | FALSE | Set the hover color (and opacity) for the logout icon (if visible). |
  23. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  24. | menu_main_toggle_color | text | #ffffff | FALSE | Set the color (and opacity) for the menu toggle icon (in mobile view). |
  25. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  26. | footer_background_color | text | rgba(0,0,0,0.1) | TRUE | Set the background color (and opacity) for the footer bar. |
  27. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  28. | footer_color | text | rgba(255,255,255,0.1) | FALSE | Set the text color (and opacity) for the footer bar. |
  29. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  30. | footer_border_radius | text | 0 0 4px 4px | FALSE | Set the border radius of the footer bar. |
  31. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  32. | message_default_background_color | text | #fafafa | TRUE | Set the background color for the positive (default) message bar. |
  33. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  34. | message_default_color | text | #666 | TRUE | Set the text color for the positive (default) message bar text. |
  35. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  36. | message_positive_background_color | text | #ccffcc | TRUE | Set the background color for the positive (positive) message bar. |
  37. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  38. | message_positive_color | text | #004200 | TRUE | Set the text color for the positive (positive) message bar text. |
  39. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  40. | message_negative_background_color | text | #ffcdcd | TRUE | Set the background color for the negative message bar. |
  41. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  42. | message_negative_color | text | #670000 | TRUE | Set the text color for the negative message bar text. |
  43. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  44. | message_alert_background_color | text | #ffe585 | TRUE | Set the background color for the alert message bar. |
  45. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  46. | message_alert_color | text | #d66721 | TRUE | Set the text color for the alert message bar text. |
  47. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  48. | message_opacity | text | 0.9 | TRUE | Set the opacity of the message bar (decimal). |
  49. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  50. | body_shadow_color | text | #000000 | TRUE | Set the color (and opacity) of the body. |
  51. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  52. | body_border_radius | text | 4px | FALSE | Set the border radius of the body. |
  53. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  54. | cache | boolean | FALSE | FALSE | Set whether to cache the theme in the session. |
  55. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  56. | logo_align | text | center | FALSE | Set the alignment of the header logo (Inline menu only) |
  57. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  58. | menu_main_background_color | text | #ff0000 | FALSE | Set a background color (and opacity) of the main menu bar. |
  59. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  60. | menu_main_background_color_hover | text | #ff0000 | FALSE | Set a background hover color (and opacity) of the main menu items. |
  61. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  62. | menu_main_icons | boolean | FALSE | FALSE | Show icons next to main menu items. |
  63. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  64. | menu_main_background_image | text | /themes/default/images/background_black.png | FALSE | Set a background image for the main menu bar. |
  65. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  66. | menu_main_shadow_color | text | #000000 | TRUE | Set the shadow color (and opacity) of the main menu bar. |
  67. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  68. | menu_main_text_color | text | #ffffff | FALSE | Set the text color of the main menu items. |
  69. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  70. | menu_main_text_color_hover | text | #69e5ff | FALSE | Set the text hover color of the main menu items. |
  71. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  72. | menu_main_text_font | text | Arial | FALSE | Set the font of the main menu items. |
  73. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  74. | menu_main_text_size | text | 10.25pt | FALSE | Set the text size of the main menu items. |
  75. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  76. | menu_main_border_size | text | 1px | FALSE | Set the border size of the main menu. |
  77. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  78. | menu_main_border_color | text | #ffffff | FALSE | Set the border color (and opacity) of the main menu. |
  79. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  80. | menu_position | text | top | TRUE | Set the position of the main menu (Fixed menu only). |
  81. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  82. | menu_style | text | fixed | TRUE | Set the style of the main menu. |
  83. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  84. | menu_sub_background_color | text | #000000 | FALSE | Set the background color (and opacity) of the sub menus. |
  85. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  86. | menu_sub_icons | boolean | FALSE | TRUE | Show indicator icons next to selected sub menu items. |
  87. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  88. | menu_sub_shadow_color | text | #000000 | TRUE | Set the shadow color (and opacity) of sub menus. |
  89. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  90. | menu_sub_text_color | text | #ffffff | FALSE | Set the text color (and opacity) of sub menu items. |
  91. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  92. | menu_sub_text_color_hover | text | #69e5ff | FALSE | Set the hover text color (and opacity) of sub menu items. |
  93. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  94. | menu_sub_text_font | text | Arial | FALSE | Set the font of the sub menu items. |
  95. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  96. | menu_sub_text_size | text | 10pt | FALSE | Set the text size of the sub menu items. |
  97. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  98. | menu_sub_border_radius | text | 0 0 4px 4px | FALSE | Set the border radius of the sub menu. |
  99. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  100. | menu_sub_border_size | text | 1px | FALSE | Set the border size of the sub menu. |
  101. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  102. | heading_text_font | text | arial | FALSE | Set the font of the page heading text. |
  103. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  104. | heading_text_size | text | 15px | FALSE | Set the size of the page heading text. |
  105. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  106. | heading_text_color | text | #952424 | FALSE | Set the color (and opacity) of the page heading text. |
  107. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  108. | body_text_font | text | arial | FALSE | Set the font of body text. |
  109. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  110. | body_text_color | text | #5f5f5f | FALSE | Set the color (and opacity) of the body text. |
  111. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  112. | text_link_color | text | #004083 | FALSE | Set the link color (and opacity) of text links outside tables. |
  113. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  114. | text_link_color_hover | text | #5082ca | FALSE | Set the hover color (and opacity) of text links outside tables. |
  115. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  116. | table_heading_text_font | text | arial | FALSE | Set the text font of table header rows. |
  117. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  118. | table_heading_text_size | text | 12px | FALSE | Set the text size of table header rows. |
  119. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  120. | table_heading_background_color | text | #ffffff | FALSE | Set the background color (and opacity) of table header rows. |
  121. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  122. | table_heading_border_color | text | #a4aebf | FALSE | Set the bottom border color (and opacity) of table header rows. |
  123. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  124. | table_row_text_font | text | arial | FALSE | Set the text font of table data rows. |
  125. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  126. | table_row_text_size | text | 12px | FALSE | Set the text size of table data rows. |
  127. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  128. | table_row_text_color | text | #000 | FALSE | Set the text color (and opacity) of table data rows. |
  129. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  130. | table_row_background_color_dark | text | #e5e9f0 | FALSE | Set the darker background color (and opacity) of table data rows. |
  131. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  132. | table_row_background_color_medium | text | #f0f2f6 | FALSE | Set the medium background color (and opacity) of table data rows. |
  133. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  134. | table_row_border_color | text | #c5d1e5 | FALSE | Set the bottom border (dividing line) color (and opacity) of table data rows. |
  135. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  136. | dashboard_border_color | text | #dbe0ea | FALSE | Set the border color (and opacity) of the Dashboard blocks. |
  137. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  138. | dashboard_border_color_hover | text | #cbd3e1 | FALSE | Set the border hover color (and opacity) of the Dashboard block. |
  139. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  140. | dashboard_border_radius | text | 5px | FALSE | Set the border radius of the Dashboard block. |
  141. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  142. | dashboard_heading_background_color | text | #8e96a5 | FALSE | Set the background color (and opacity) of the Dashboard block heading. |
  143. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  144. | dashboard_heading_background_color_hover | text | #969dab | FALSE | Set the background hover color (and opacity) of the Dashboard block heading. |
  145. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  146. | dashboard_heading_text_color | text | #ffffff | FALSE | Set the color (and opacity) of the Dashboard block heading text. |
  147. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  148. | dashboard_heading_text_color_hover | text | #ffffff | FALSE | Set the hover color (and opacity) of the Dashboard block heading text. |
  149. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  150. | dashboard_heading_text_size | text | 10.5pt | FALSE | Set the size of the Dashboard block heading text. |
  151. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  152. | dashboard_heading_text_shadow_color | text | #000000 | FALSE | Set the shadow color (and opacity) of the Dashboard block heading text. |
  153. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  154. | dashboard_heading_text_shadow_color_hover | text | #000000 | FALSE | Set the shadow hover color (and opacity) of the Dashboard block heading text. |
  155. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  156. | dashboard_number_background_color | text | #a4aebf | FALSE | Set the background color (and opacity) of the Dashboard block number. |
  157. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  158. | dashboard_number_background_color_hover | text | #aeb7c5 | FALSE | Set the background hover color (and opacity) of the Dashboard block number. |
  159. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  160. | dashboard_number_text_color | text | #ffffff | FALSE | Set the color (and opacity) of the Dashboard block number. |
  161. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  162. | dashboard_number_text_color_hover | text | #ffffff | FALSE | Set the hover color (and opacity) of the Dashboard block number. |
  163. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  164. | dashboard_number_text_font | text | Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif | FALSE | Set the font of the Dashboard block number. |
  165. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  166. | dashboard_number_text_size | text | 60pt | FALSE | Set the size of the Dashboard block number. |
  167. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  168. | dashboard_number_text_shadow_color | text | #737983 | FALSE | Set the shadow color (and opacity) of the Dashboard block number. |
  169. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  170. | dashboard_number_title_text_color | text | #ffffff | FALSE | Set the color (and opacity) of the Dashboard block number title. |
  171. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  172. | dashboard_number_title_text_font | text | Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif | FALSE | Set the font of the Dashboard block number title. |
  173. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  174. | dashboard_number_title_text_size | text | 14px | FALSE | Set the size of the Dashboard block number title. |
  175. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  176. | dashboard_number_title_text_shadow_color | text | #737983 | FALSE | Set the shadow color (and opacity) of the Dashboard block number title. |
  177. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  178. | dashboard_detail_heading_text_size | text | 11px | FALSE | Set the size of the Dashboard block detail header text. |
  179. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  180. | dashboard_detail_row_text_size | text | 11px | FALSE | Set the size of the Dashboard block detail row text. |
  181. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  182. | dashboard_detail_shadow_color | text | #737983 | FALSE | Set the shadow color of the Dashboard block detail box. |
  183. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  184. | dashboard_detail_background_color_center | text | #f9fbfe | FALSE | Set the center gradient color of the Dashboard block detail area. |
  185. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  186. | dashboard_footer_background_color_hover | text | #ebeef3 | FALSE | Set the background hover color (and opacity) of the Dashboard block footer bar. |
  187. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  188. | dashboard_footer_dots_color | text | #a4aebf | FALSE | Set the color (and opacity) of the Dashboard block footer bar dots. |
  189. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  190. | dashboard_footer_dots_color_hover | text | #a4aebf | FALSE | Set the hover color (and opacity) of the Dashboard block footer bar dots. |
  191. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  192. | form_table_label_padding | text | 7px 8px | FALSE | Set the padding of the form label cell. |
  193. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  194. | form_table_label_background_color | text | #e5e9f0 | FALSE | Set the background color (and opacity) of the form label cell. |
  195. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  196. | form_table_label_border_color | text | #ffffff | FALSE | Set the bottom-border color (and opacity) of the form label cell. |
  197. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  198. | form_table_label_border_radius | text | 4px | FALSE | Set the border radius of the form label cell. |
  199. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  200. | form_table_label_text_size | text | 9pt | FALSE | Set the text size of the form label. |
  201. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  202. | form_table_label_text_font | text | Arial | FALSE | Set the text font of the form label. |
  203. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  204. | form_table_label_text_color | text | #000000 | FALSE | Set the text color (and opacity) of the form label. |
  205. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  206. | form_table_label_required_border_color | text | #cbcfd5 | FALSE | Set the right-border color (and opacity) of the required form label cell. |
  207. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  208. | form_table_label_required_text_color | text | #000000 | FALSE | Set the text color (and opacity) of the required form label. |
  209. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  210. | form_table_label_required_text_weight | text | bold | FALSE | Set the text weight of the required form label. |
  211. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  212. | form_table_field_padding | text | 6px | FALSE | Set the padding of the form field cell. |
  213. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  214. | form_table_field_background_color | text | #ffffff | FALSE | Set the background color (and opacity) of the form field cell. |
  215. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  216. | form_table_field_border_color | text | #e5e9f0 | FALSE | Set the bottom-border color (and opacity) of the form field cell. |
  217. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  218. | form_table_field_border_radius | text | 0 | FALSE | Set the border radius of the form label cell. |
  219. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  220. | form_table_field_text_size | text | 8pt | FALSE | Set the size of text in the form field cell. |
  221. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  222. | form_table_field_text_font | text | Arial | FALSE | Set the font of text in the form field cell. |
  223. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  224. | form_table_heading_padding | text | 8px 8px 4px 8px | FALSE | Set the padding of form column headings. |
  225. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  226. | form_table_row_padding | text | 3px 0 | FALSE | Set the padding of form row cells. |
  227. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  228. | form_table_row_text_size | text | 9pt | FALSE | Set the size of text in the form rows. |
  229. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  230. | login_background_color | array | #6c89b5 | FALSE | Set the background color of the login page. |
  231. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  232. | login_background_color | array | #144794 | FALSE | Set a secondary background color of the login page, for a gradient effect. |
  233. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  234. | login_background_image_enabled | boolean | TRUE | FALSE | Enable use of background images on the login page. |
  235. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  236. | login_body_background_color | text | rgba(255,255,255,0.3) | TRUE | Set the background color for the login box. |
  237. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  238. | login_body_shadow_color | text | rgba(140,140,140,0.3) | TRUE | Set the shadow color of the login box. |
  239. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  240. | login_body_padding | text | 30px | FALSE | Set the padding of the login box. |
  241. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  242. | login_body_width | text | 100% | FALSE | Set the width of the login box. |
  243. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  244. | login_body_border_size | text | 1px | FALSE | Set the border size of the login box. |
  245. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  246. | login_body_border_color | text | #ffffff | FALSE | Set the border color (and opacity) of the login box. |
  247. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  248. | login_link_text_color | text | #004083 | FALSE | Set the color (and opacity) of text links on the login box. |
  249. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  250. | login_link_text_color_hover | text | #5082ca | FALSE | Set the hover color (and opacity) of text links on the login box. |
  251. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  252. | login_link_text_size | text | 11px | FALSE | Set the size of text links on the login box. |
  253. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  254. | login_link_text_font | text | Arial | FALSE | Set the font of text links on the login box. |
  255. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  256. | button_background_color_bottom | text | #000000 | FALSE | Set the background bottom color (and opacity) of buttons. |
  257. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  258. | button_background_color_hover | text | #000000 | FALSE | Set the background main/top hover color (and opacity) of buttons. |
  259. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  260. | button_background_color_bottom_hover | text | #000000 | FALSE | Set the background bottom hover color (and opacity) of buttons. |
  261. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  262. | button_border_size | text | 1px | FALSE | Set the border size of buttons. |
  263. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  264. | button_border_color | text | #242424 | FALSE | Set the border color (and opacity) of buttons. |
  265. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  266. | button_border_color_hover | text | #000000 | FALSE | Set the border hover color (and opacity) of buttons. |
  267. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  268. | button_border_radius | text | 3px | FALSE | Set the border radius of buttons. |
  269. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  270. | button_text_size | text | 11px | FALSE | Set the size of button text. |
  271. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  272. | button_text_color | text | #ffffff | FALSE | Set the color (and opacity) of button text. |
  273. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  274. | button_text_weight | text | bold | FALSE | Set the weight of button text. |
  275. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  276. | button_padding | text | 5px 8px | FALSE | Set the padding of buttons. |
  277. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  278. | button_height | text | 28px | FALSE | Set the height of buttons. |
  279. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  280. | input_border_color | text | #c0c0c0 | FALSE | Set the border color (and opacity) of text inputs. |
  281. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  282. | input_border_color_hover | text | #c0c0c0 | FALSE | Set the border hover color (and opacity) of text inputs. |
  283. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  284. | input_border_color_focus | text | #c0c0c0 | FALSE | Set the border focus color (and opacity) of text inputs. |
  285. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  286. | input_border_size | text | 1px | FALSE | Set the border size of text inputs. |
  287. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  288. | input_border_radius | text | 3px | FALSE | Set the border radius of text inputs. |
  289. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  290. | input_shadow_inner_color | text | #cddaf0 | TRUE | Set the inner shadow color (and opacity) of text inputs. |
  291. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  292. | input_shadow_outer_color | text | #ffffff | FALSE | Set the outer shadow color (and opacity) of text inputs. |
  293. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  294. | input_shadow_outer_color_focus | text | #cddaf0 | TRUE | Set the outer focus shadow color (and opacity) of text inputs. |
  295. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  296. | input_text_size | text | 12px | FALSE | Set the size of text input content. |
  297. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  298. | input_text_font | text | Arial | FALSE | Set the font of text input content. |
  299. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  300. | input_text_color | text | #000000 | FALSE | Set the color (and opacity) of text input content. |
  301. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  302. | input_text_placeholder_color | text | #999999 | FALSE | Set the color (and opacity) of input placeholder text. |
  303. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  304. | login_input_background_color | text | #ffffff | FALSE | Set the background color (and opacity) of text inputs on the login box. |
  305. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  306. | login_input_border_color | text | #c0c0c0 | FALSE | Set the border color (and opacity) of text inputs on the login box. |
  307. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  308. | login_input_border_color_focus | text | #c0c0c0 | FALSE | Set the border focus color (and opacity) of text inputs on the login box. |
  309. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  310. | login_input_border_size | text | 1px | FALSE | Set the border size of text inputs on the login box. |
  311. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  312. | login_input_border_radius | text | 3px | FALSE | Set the border radius of text inputs on the login box. |
  313. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  314. | login_input_shadow_inner_color | text | #cddaf0 | FALSE | Set the inner shadow color (and opacity) of text inputs on the login box. |
  315. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  316. | login_input_shadow_inner_color_focus | text | #ffffff | FALSE | Set the inner focus shadow color (and opacity) of text inputs on the login box. |
  317. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  318. | login_input_shadow_outer_color | text | #ffffff | FALSE | Set the outer shadow color (and opacity) of text inputs on the login box. |
  319. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  320. | login_input_shadow_outer_color_focus | text | #cddaf0 | FALSE | Set the outer focus shadow color (and opacity) of text inputs on the login box. |
  321. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  322. | login_input_text_size | text | 12px | FALSE | Set the size of text input content on the login box. |
  323. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  324. | login_input_text_font | text | Arial | FALSE | Set the font of text input content on the login box. |
  325. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  326. | login_input_text_placeholder_color | text | #999999 | FALSE | Set the color (and opacity) of input placeholder text on the login box. |
  327. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  328. | font_loader | text | TRUE | FALSE | Enables the dynamic loading of web fonts (requires an Internet connection). |
  329. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  330. | font_loader_version | text | 1.6.16 | FALSE | Set the web font loader version to use - specific (e.g. 1.6.16) or latest in branch (e.g. 1). |
  331. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  332. | font_retrieval | text | asynchronous | FALSE | Set the retrieval method for the web font loader (default: synchronous). |
  333. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  334. | font_source_key | text | | FALSE | API key that allows access to the available fonts list. |
  335. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  336. | body_icon_color | text | rgba(255,255,255,0.25) | FALSE | Set the color (and opacity) for the icons in the body. |
  337. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  338. | body_icon_color_hover | text | rgba(255,255,255,0.50) | FALSE | Set the hover color (and opacity) for the icons in the body. |
  339. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  340. | menu_brand_type | text | image | FALSE | |
  341. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  342. | background_color | array | #144794 | TRUE | Set a secondary background color, for a gradient effect. |
  343. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  344. | domain_visible | text | TRUE | TRUE | Set the visibility of the name of the domain currently being managed. |
  345. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  346. | menu_main_toggle_color_hover | text | #69e5ff | FALSE | Set the hover color (and opacity) for the menu toggle icon (in mobile view). |
  347. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  348. | message_delay | text | 1.75 | TRUE | Set the hide delay of the message bar (seconds). |
  349. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  350. | domain_selector_shadow_color | text | #888888 | TRUE | Set the shadow color (and opacity) of the domain selector pane. |
  351. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  352. | menu_main_border_radius | text | 0 0 4px 4px | FALSE | Set the border radius of the main menu. |
  353. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  354. | menu_sub_background_color_hover | text | | FALSE | Set the hover background color (and opacity) of the sub menu items. |
  355. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  356. | menu_sub_border_color | text | #ffffff | FALSE | Set the border color (and opacity) of the sub menu. |
  357. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  358. | body_text_size | text | 12px | FALSE | Set the size of the body text. |
  359. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  360. | table_heading_text_color | text | #3164ad | FALSE | Set the text color (and opacity) of table header rows. |
  361. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  362. | table_row_background_color_light | text | #fff | FALSE | Set the lighter background color (and opacity) of table data rows. |
  363. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  364. | dashboard_heading_text_font | text | Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif | FALSE | Set the font of the Dashboard block heading text. |
  365. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  366. | dashboard_number_text_shadow_color_hover | text | #737983 | FALSE | Set the shadow hover color (and opacity) of the Dashboard block number. |
  367. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  368. | dashboard_detail_background_color_edge | text | #edf1f7 | FALSE | Set the edge gradient color of the Dashboard block detail area. |
  369. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  370. | dashboard_footer_background_color | text | #e5e9f0 | FALSE | Set the background color (and opacity) of the Dashboard block footer bar. |
  371. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  372. | form_table_label_required_background_color | text | #e5e9f0 | FALSE | Set the background color of the required form label cell. |
  373. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  374. | form_table_field_text_color | text | #666666 | FALSE | Set the color (and opacity) of text in the form field cell. |
  375. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  376. | login_body_border_radius | text | 4px | FALSE | Set the border radius of the login box. |
  377. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  378. | button_background_color | text | #4f4f4f | FALSE | Set the background main/top color (and opacity) of buttons. |
  379. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  380. | button_text_font | text | Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif | FALSE | Set the font of button text. |
  381. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  382. | button_text_color_hover | text | #ffffff | FALSE | Set the hover color (and opacity) of button text. |
  383. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  384. | input_background_color | text | #ffffff | FALSE | Set the background color (and opacity) of text inputs. |
  385. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  386. | input_shadow_inner_color_focus | text | #ffffff | FALSE | Set the inner focus shadow color (and opacity) of text inputs. |
  387. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  388. | login_input_border_color_hover | text | #c0c0c0 | FALSE | Set the border hover color (and opacity) of text inputs on the login box. |
  389. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  390. | login_input_text_color | text | #000000 | FALSE | Set the color (and opacity) of text input content on the login box. |
  391. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  392. | body_color | text | rgba(255,255,255,0.77) | TRUE | Set then body background color (and opacity) of the content. |
  393. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+
  394. | background_image | array | /themes/default/images/backgrounds/yellowstone_3.jpg | FALSE | |
  395. +-------------------------------------------------+----------------------+--------------------------------------------------------------+-------------------------+-----------------------------------------------------------------------------------------------+