django-spire 0.18.3__py3-none-any.whl → 0.19.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (246) hide show
  1. django_spire/ai/admin.py +1 -0
  2. django_spire/ai/chat/apps.py +1 -8
  3. django_spire/ai/chat/intelligence/decoders/tools.py +29 -0
  4. django_spire/ai/chat/intelligence/prompts.py +13 -7
  5. django_spire/ai/chat/intelligence/workflows/chat_workflow.py +55 -57
  6. django_spire/ai/chat/models.py +2 -1
  7. django_spire/ai/chat/querysets.py +1 -3
  8. django_spire/ai/chat/responses.py +5 -0
  9. django_spire/ai/chat/templates/django_spire/ai/chat/card/chat_card.html +2 -2
  10. django_spire/ai/chat/templates/django_spire/ai/chat/dropdown/ellipsis_dropdown.html +1 -1
  11. django_spire/ai/chat/templates/django_spire/ai/chat/element/recent_chat_select_element.html +82 -44
  12. django_spire/ai/chat/templates/django_spire/ai/chat/message/loading_response_message.html +9 -4
  13. django_spire/ai/chat/templates/django_spire/ai/chat/message/message.html +33 -33
  14. django_spire/ai/chat/templates/django_spire/ai/chat/message/request_message.html +5 -8
  15. django_spire/ai/chat/templates/django_spire/ai/chat/message/response_message.html +14 -10
  16. django_spire/ai/chat/templates/django_spire/ai/chat/page/chat_page.html +35 -0
  17. django_spire/ai/chat/templates/django_spire/ai/chat/widget/dialog_widget.html +72 -24
  18. django_spire/ai/chat/templates/django_spire/ai/chat/widget/selection_widget.html +42 -0
  19. django_spire/ai/chat/tests/test_urls/test_json_urls.py +4 -2
  20. django_spire/ai/chat/urls/__init__.py +1 -1
  21. django_spire/ai/chat/urls/json_urls.py +1 -1
  22. django_spire/ai/chat/urls/page_urls.py +1 -1
  23. django_spire/ai/chat/urls/{template_urls.py → template/template_urls.py} +1 -1
  24. django_spire/ai/chat/views/json_views.py +4 -3
  25. django_spire/ai/chat/views/message_request_views.py +32 -14
  26. django_spire/ai/chat/views/message_response_views.py +14 -11
  27. django_spire/ai/chat/views/message_views.py +7 -1
  28. django_spire/ai/chat/views/page_views.py +2 -2
  29. django_spire/ai/chat/views/{template_views.py → template/template_views.py} +1 -7
  30. django_spire/ai/context/__init__.py +0 -0
  31. django_spire/ai/context/admin.py +15 -0
  32. django_spire/ai/context/apps.py +16 -0
  33. django_spire/ai/context/choices.py +11 -0
  34. django_spire/ai/context/intelligence/__init__.py +0 -0
  35. django_spire/ai/context/intelligence/prompts/__init__.py +0 -0
  36. django_spire/ai/context/intelligence/prompts/organization_prompts.py +19 -0
  37. django_spire/ai/context/migrations/0001_initial.py +67 -0
  38. django_spire/ai/context/migrations/__init__.py +0 -0
  39. django_spire/ai/context/models.py +67 -0
  40. django_spire/ai/context/querysets.py +15 -0
  41. django_spire/ai/context/seeding/__init__.py +0 -0
  42. django_spire/ai/context/seeding/seed.py +24 -0
  43. django_spire/ai/prompt/system/bots.py +3 -5
  44. django_spire/ai/prompt/tuning/bots.py +5 -10
  45. django_spire/ai/sms/admin.py +2 -0
  46. django_spire/ai/sms/apps.py +2 -7
  47. django_spire/ai/sms/decorators.py +2 -2
  48. django_spire/ai/sms/intelligence/workflows/sms_conversation_workflow.py +18 -18
  49. django_spire/ai/sms/tests/test_webhook.py +5 -4
  50. django_spire/ai/sms/urls.py +3 -0
  51. django_spire/ai/sms/views.py +3 -5
  52. django_spire/ai/urls.py +2 -0
  53. django_spire/auth/templates/django_spire/auth/form/login_form.html +25 -0
  54. django_spire/auth/templates/django_spire/auth/page/auth_page.html +2 -3
  55. django_spire/auth/templates/django_spire/auth/page/login_page.html +1 -25
  56. django_spire/conf.py +1 -3
  57. django_spire/consts.py +1 -7
  58. django_spire/contrib/seeding/intelligence/bots/seeder_generator_bot.py +3 -2
  59. django_spire/contrib/utils.py +2 -0
  60. django_spire/core/management/commands/spire_startapp_pkg/__init__.py +4 -20
  61. django_spire/core/management/commands/spire_startapp_pkg/builder.py +2 -2
  62. django_spire/core/management/commands/spire_startapp_pkg/config.py +2 -2
  63. django_spire/core/management/commands/spire_startapp_pkg/filesystem.py +1 -19
  64. django_spire/core/management/commands/spire_startapp_pkg/generator.py +8 -8
  65. django_spire/core/management/commands/spire_startapp_pkg/processor.py +3 -3
  66. django_spire/core/management/commands/spire_startapp_pkg/registry.py +0 -16
  67. django_spire/core/management/commands/spire_startapp_pkg/reporter.py +1 -21
  68. django_spire/core/management/commands/spire_startapp_pkg/resolver.py +0 -15
  69. django_spire/core/management/commands/spire_startapp_pkg/template/app/views/form_views.py.template +2 -2
  70. django_spire/core/management/commands/spire_startapp_pkg/template/app/views/page_views.py.template +2 -2
  71. django_spire/core/management/commands/spire_startapp_pkg/validator.py +9 -9
  72. django_spire/core/static/django_spire/css/app-button.css +11 -1
  73. django_spire/core/static/django_spire/css/app-import.css +2 -0
  74. django_spire/core/static/django_spire/css/app-layout.css +15 -0
  75. django_spire/core/static/django_spire/css/app-navigation.css +24 -2
  76. django_spire/core/static/django_spire/css/app-page.css +8 -0
  77. django_spire/core/static/django_spire/css/app-side-panel.css +102 -0
  78. django_spire/core/static/django_spire/css/app-text.css +19 -1
  79. django_spire/core/static/django_spire/css/bootstrap-extension.css +128 -7
  80. django_spire/core/static/django_spire/css/bootstrap-override.css +161 -111
  81. django_spire/core/static/django_spire/css/themes/ayu/app-dark.css +0 -4
  82. django_spire/core/static/django_spire/css/themes/ayu/app-light.css +0 -4
  83. django_spire/core/static/django_spire/css/themes/catppuccin/app-dark.css +0 -4
  84. django_spire/core/static/django_spire/css/themes/catppuccin/app-light.css +0 -4
  85. django_spire/core/static/django_spire/css/themes/default/app-dark.css +0 -4
  86. django_spire/core/static/django_spire/css/themes/default/app-light.css +0 -4
  87. django_spire/core/static/django_spire/css/themes/dracula/app-dark.css +0 -4
  88. django_spire/core/static/django_spire/css/themes/dracula/app-light.css +0 -4
  89. django_spire/core/static/django_spire/css/themes/gruvbox/app-dark.css +0 -4
  90. django_spire/core/static/django_spire/css/themes/gruvbox/app-light.css +0 -4
  91. django_spire/core/static/django_spire/css/themes/material/app-dark.css +0 -4
  92. django_spire/core/static/django_spire/css/themes/material/app-light.css +0 -4
  93. django_spire/core/static/django_spire/css/themes/nord/app-dark.css +0 -4
  94. django_spire/core/static/django_spire/css/themes/nord/app-light.css +0 -4
  95. django_spire/core/static/django_spire/css/themes/oceanic-next/app-dark.css +0 -4
  96. django_spire/core/static/django_spire/css/themes/oceanic-next/app-light.css +0 -4
  97. django_spire/core/static/django_spire/css/themes/one-dark/app-dark.css +0 -4
  98. django_spire/core/static/django_spire/css/themes/one-dark/app-light.css +0 -4
  99. django_spire/core/static/django_spire/css/themes/palenight/app-dark.css +0 -4
  100. django_spire/core/static/django_spire/css/themes/palenight/app-light.css +0 -4
  101. django_spire/core/static/django_spire/css/themes/rose-pine/app-dark.css +0 -4
  102. django_spire/core/static/django_spire/css/themes/rose-pine/app-light.css +0 -4
  103. django_spire/core/static/django_spire/css/themes/synthwave/app-dark.css +0 -4
  104. django_spire/core/static/django_spire/css/themes/synthwave/app-light.css +0 -4
  105. django_spire/core/static/django_spire/css/themes/tokyo-night/app-dark.css +0 -4
  106. django_spire/core/static/django_spire/css/themes/tokyo-night/app-light.css +0 -4
  107. django_spire/core/static/django_spire/font/Poppins-Black.ttf +0 -0
  108. django_spire/core/static/django_spire/font/Poppins-BlackItalic.ttf +0 -0
  109. django_spire/core/static/django_spire/font/Poppins-Bold.ttf +0 -0
  110. django_spire/core/static/django_spire/font/Poppins-BoldItalic.ttf +0 -0
  111. django_spire/core/static/django_spire/font/Poppins-ExtraBold.ttf +0 -0
  112. django_spire/core/static/django_spire/font/Poppins-ExtraBoldItalic.ttf +0 -0
  113. django_spire/core/static/django_spire/font/Poppins-ExtraLight.ttf +0 -0
  114. django_spire/core/static/django_spire/font/Poppins-ExtraLightItalic.ttf +0 -0
  115. django_spire/core/static/django_spire/font/Poppins-Italic.ttf +0 -0
  116. django_spire/core/static/django_spire/font/Poppins-Light.ttf +0 -0
  117. django_spire/core/static/django_spire/font/Poppins-LightItalic.ttf +0 -0
  118. django_spire/core/static/django_spire/font/Poppins-Medium.ttf +0 -0
  119. django_spire/core/static/django_spire/font/Poppins-MediumItalic.ttf +0 -0
  120. django_spire/core/static/django_spire/font/Poppins-SemiBold.ttf +0 -0
  121. django_spire/core/static/django_spire/font/Poppins-SemiBoldItalic.ttf +0 -0
  122. django_spire/core/static/django_spire/font/Poppins-Thin.ttf +0 -0
  123. django_spire/core/static/django_spire/font/Poppins-ThinItalic.ttf +0 -0
  124. django_spire/core/static/django_spire/js/ui.js +12 -0
  125. django_spire/core/templates/django_spire/button/base_button.html +1 -1
  126. django_spire/core/templates/django_spire/button/primary_dark_outlined_button.html +3 -0
  127. django_spire/core/templates/django_spire/dropdown/element/dropdown_link_element.html +12 -8
  128. django_spire/core/templates/django_spire/dropdown/element/ellipsis_dropdown_modal_link_element.html +2 -1
  129. django_spire/core/templates/django_spire/dropdown/ellipsis_dropdown.html +2 -1
  130. django_spire/core/templates/django_spire/navigation/accordion/nav_accordion.html +1 -1
  131. django_spire/core/templates/django_spire/navigation/elements/nav_link.html +1 -1
  132. django_spire/core/templates/django_spire/navigation/elements/nav_title_divider.html +1 -1
  133. django_spire/core/templates/django_spire/navigation/side_navigation.html +52 -8
  134. django_spire/core/templates/django_spire/navigation/top_navigation.html +8 -2
  135. django_spire/core/templates/django_spire/page/full_page.html +223 -11
  136. django_spire/core/utils.py +26 -2
  137. django_spire/knowledge/collection/models.py +24 -0
  138. django_spire/knowledge/collection/services/transformation_service.py +2 -1
  139. django_spire/knowledge/collection/tests/test_services/test_transformation_service.py +44 -42
  140. django_spire/knowledge/collection/urls/form_urls.py +1 -0
  141. django_spire/knowledge/collection/urls/page_urls.py +1 -0
  142. django_spire/knowledge/collection/views/form_views.py +13 -2
  143. django_spire/knowledge/collection/views/page_views.py +36 -4
  144. django_spire/knowledge/entry/models.py +32 -0
  145. django_spire/knowledge/entry/services/transformation_services.py +10 -10
  146. django_spire/knowledge/entry/version/block/data/data.py +2 -1
  147. django_spire/knowledge/entry/version/block/data/heading_data.py +2 -2
  148. django_spire/knowledge/entry/version/block/data/list/data.py +3 -4
  149. django_spire/knowledge/entry/version/block/data/maps.py +3 -5
  150. django_spire/knowledge/entry/version/block/data/text_data.py +2 -2
  151. django_spire/knowledge/entry/version/block/models.py +10 -7
  152. django_spire/knowledge/entry/version/block/services/factory_service.py +11 -10
  153. django_spire/knowledge/entry/version/block/tests/factories.py +6 -5
  154. django_spire/knowledge/entry/version/converters/docx_converter.py +1 -1
  155. django_spire/knowledge/entry/version/intelligence/bots/markdown_format_llm_bot.py +14 -12
  156. django_spire/knowledge/entry/version/seeding/seeder.py +3 -3
  157. django_spire/knowledge/entry/version/services/processor_service.py +36 -10
  158. django_spire/knowledge/entry/version/tests/test_converters/test_docx_converter.py +1 -1
  159. django_spire/knowledge/entry/version/tests/test_urls/test_page_urls.py +1 -1
  160. django_spire/knowledge/entry/version/urls/page_urls.py +1 -1
  161. django_spire/knowledge/entry/version/views/json_views.py +5 -3
  162. django_spire/knowledge/entry/version/views/page_views.py +11 -12
  163. django_spire/knowledge/entry/version/views/redirect_views.py +1 -1
  164. django_spire/knowledge/entry/views/form_views.py +1 -1
  165. django_spire/knowledge/intelligence/bots/entry_search_llm_bot.py +33 -11
  166. django_spire/knowledge/intelligence/decoders/__init__.py +0 -0
  167. django_spire/knowledge/intelligence/{maps/collection_map.py → decoders/collection_decoder.py} +5 -5
  168. django_spire/knowledge/intelligence/{maps/entry_map.py → decoders/entry_decoder.py} +3 -3
  169. django_spire/knowledge/intelligence/intel/collection_intel.py +1 -0
  170. django_spire/knowledge/intelligence/intel/entry_intel.py +5 -2
  171. django_spire/knowledge/intelligence/intel/message_intel.py +2 -0
  172. django_spire/knowledge/intelligence/workflows/knowledge_workflow.py +43 -51
  173. django_spire/knowledge/migrations/0007_alter_collection_options.py +17 -0
  174. django_spire/knowledge/static/django_spire/knowledge/entry/version/js/editor.js +24 -5
  175. django_spire/knowledge/templates/django_spire/knowledge/collection/card/top_level_list_card.html +21 -0
  176. django_spire/knowledge/templates/django_spire/knowledge/collection/component/x_collection_navigation.html +15 -6
  177. django_spire/knowledge/templates/django_spire/knowledge/collection/element/ellipsis_dropdown.html +22 -0
  178. django_spire/knowledge/templates/django_spire/knowledge/collection/form/form.html +21 -9
  179. django_spire/knowledge/templates/django_spire/knowledge/collection/item/collection_item.html +19 -0
  180. django_spire/knowledge/templates/django_spire/knowledge/collection/page/display_page.html +49 -0
  181. django_spire/knowledge/templates/django_spire/knowledge/collection/page/form_page.html +1 -1
  182. django_spire/knowledge/templates/django_spire/knowledge/container/container.html +33 -0
  183. django_spire/knowledge/templates/django_spire/knowledge/entry/file/page/list_page.html +1 -1
  184. django_spire/knowledge/templates/django_spire/knowledge/entry/item/list_item.html +2 -2
  185. django_spire/knowledge/templates/django_spire/knowledge/entry/page/form_page.html +1 -1
  186. django_spire/knowledge/templates/django_spire/knowledge/entry/page/import_form_page.html +1 -1
  187. django_spire/knowledge/templates/django_spire/knowledge/entry/version/container/detail_container.html +51 -45
  188. django_spire/knowledge/templates/django_spire/knowledge/entry/version/page/editor_page.html +54 -0
  189. django_spire/knowledge/templates/django_spire/knowledge/entry/version/page/form_page.html +1 -1
  190. django_spire/knowledge/templates/django_spire/knowledge/message/knowledge_message_intel.html +18 -1
  191. django_spire/knowledge/templates/django_spire/knowledge/page/full_page.html +37 -0
  192. django_spire/knowledge/templates/django_spire/knowledge/page/home_page.html +2 -2
  193. django_spire/knowledge/templates/django_spire/knowledge/sub_navigation/item/collection_sub_navigation_item.html +29 -0
  194. django_spire/knowledge/templates/django_spire/knowledge/sub_navigation/item/entry_sub_navigation_item.html +20 -0
  195. django_spire/knowledge/templates/django_spire/knowledge/{navigation/content/navigation_content.html → sub_navigation/widget/collection_entry_sub_navigation_widget.html} +42 -19
  196. django_spire/knowledge/views/page_views.py +4 -4
  197. django_spire/settings.py +3 -3
  198. django_spire/theme/templates/django_spire/theme/card/badges_preview_card.html +0 -1
  199. django_spire/theme/templates/django_spire/theme/card/base_preview_card.html +1 -0
  200. django_spire/theme/templates/django_spire/theme/card/typography_preview_card.html +1 -1
  201. django_spire/theme/templates/django_spire/theme/example/form/example_form.html +2 -0
  202. django_spire/theme/templates/django_spire/theme/example/form/example_form_card.html +5 -0
  203. django_spire/theme/templates/django_spire/theme/page/badges_page.html +7 -9
  204. django_spire/theme/templates/django_spire/theme/page/borders_page.html +6 -9
  205. django_spire/theme/templates/django_spire/theme/page/buttons_page.html +6 -9
  206. django_spire/theme/templates/django_spire/theme/page/colors_page.html +6 -6
  207. django_spire/theme/templates/django_spire/theme/page/dashboard_page.html +57 -0
  208. django_spire/theme/templates/django_spire/theme/page/django_glue_page.html +7 -9
  209. django_spire/theme/templates/django_spire/theme/page/theme_page.html +24 -0
  210. django_spire/theme/templates/django_spire/theme/page/typography_page.html +6 -9
  211. django_spire/theme/templates/django_spire/theme/section/badge_section_card.html +5 -0
  212. django_spire/theme/templates/django_spire/theme/section/border_section_card.html +5 -0
  213. django_spire/theme/templates/django_spire/theme/section/button_section.html +1 -0
  214. django_spire/theme/templates/django_spire/theme/section/button_section_card.html +5 -0
  215. django_spire/theme/templates/django_spire/theme/section/color_section.html +10 -10
  216. django_spire/theme/templates/django_spire/theme/section/color_section_card.html +5 -0
  217. django_spire/theme/templates/django_spire/theme/section/typography_section.html +41 -1
  218. django_spire/theme/templates/django_spire/theme/section/typography_section_card.html +5 -0
  219. {django_spire-0.18.3.dist-info → django_spire-0.19.1.dist-info}/METADATA +3 -3
  220. {django_spire-0.18.3.dist-info → django_spire-0.19.1.dist-info}/RECORD +229 -190
  221. django_spire/ai/chat/intelligence/bots/chat_bot.py +0 -8
  222. django_spire/ai/chat/intelligence/maps/intent_llm_map.py +0 -10
  223. django_spire/ai/chat/templates/django_spire/ai/chat/page/home_page.html +0 -9
  224. django_spire/ai/chat/templates/django_spire/ai/chat/widget/chat_widget.html +0 -64
  225. django_spire/ai/chat/templates/django_spire/ai/chat/widget/search_chat_results_widget.html +0 -25
  226. django_spire/ai/chat/templates/django_spire/ai/chat/widget/search_chat_widget.html +0 -39
  227. django_spire/ai/chat/templates/django_spire/ai/chat/widget/select_chat_widget.html +0 -24
  228. django_spire/ai/chat/tools.py +0 -57
  229. django_spire/ai/sms/tools.py +0 -57
  230. django_spire/core/static/django_spire/font/Karla-Bold.ttf +0 -0
  231. django_spire/core/static/django_spire/font/Merriweather.ttf +0 -0
  232. django_spire/knowledge/context_processors.py +0 -18
  233. django_spire/knowledge/templates/django_spire/knowledge/entry/version/page/detail_page.html +0 -25
  234. django_spire/knowledge/templates/django_spire/knowledge/navigation/card/navigation_card.html +0 -9
  235. django_spire/knowledge/templates/django_spire/knowledge/navigation/item/collection/collection_item.html +0 -29
  236. django_spire/knowledge/templates/django_spire/knowledge/navigation/item/entry/entry_item.html +0 -18
  237. django_spire/knowledge/templates/django_spire/knowledge/navigation/page/full_page.html +0 -90
  238. /django_spire/ai/chat/intelligence/{bots → decoders}/__init__.py +0 -0
  239. /django_spire/ai/chat/{intelligence/maps → urls/template}/__init__.py +0 -0
  240. /django_spire/{knowledge/intelligence/maps → ai/chat/views/template}/__init__.py +0 -0
  241. /django_spire/knowledge/entry/version/{constants.py → consts.py} +0 -0
  242. /django_spire/knowledge/templates/django_spire/knowledge/{navigation/item/collection/dropdown/navigation_ellipsis_dropdown.html → sub_navigation/element/collection_sub_navigation_ellipsis_dropdown.html} +0 -0
  243. /django_spire/knowledge/templates/django_spire/knowledge/{navigation/item/entry/dropdown/navigation_ellipsis_dropdown.html → sub_navigation/element/entry_sub_navigation_ellipsis_dropdown.html} +0 -0
  244. {django_spire-0.18.3.dist-info → django_spire-0.19.1.dist-info}/WHEEL +0 -0
  245. {django_spire-0.18.3.dist-info → django_spire-0.19.1.dist-info}/licenses/LICENSE.md +0 -0
  246. {django_spire-0.18.3.dist-info → django_spire-0.19.1.dist-info}/top_level.txt +0 -0
@@ -1,146 +1,163 @@
1
1
  :root {
2
- --bs-body-color: var(--app-default-text-color);
2
+ --app-form-field-bg: #ffffff;
3
+ --app-form-field-border: var(--bs-border-color);
4
+ --app-form-field-color: var(--app-default-text-color);
5
+ --app-form-field-disabled-bg: var(--app-layer-three);
6
+ --app-form-field-disabled-border: var(--app-layer-four);
7
+ --app-form-field-disabled-color: var(--app-secondary);
8
+ --app-form-field-focus-border: var(--app-primary);
9
+
10
+ --bs-alert-bg: var(--app-layer-two);
11
+ --bs-alert-border-color: var(--app-layer-three);
12
+ --bs-alert-color: var(--app-default-text-color);
13
+
3
14
  --bs-body-bg: var(--app-default-bg-color);
4
- --bs-emphasis-color: var(--app-default-text-color);
5
- --bs-secondary-color: var(--app-secondary);
6
- --bs-tertiary-color: var(--app-layer-four);
15
+ --bs-body-color: var(--app-default-text-color);
16
+
17
+ --bs-border-color: var(--app-layer-three);
18
+ --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
19
+
20
+ --bs-breadcrumb-bg: var(--app-layer-two);
21
+ --bs-breadcrumb-item-active-color: var(--app-secondary);
22
+
23
+ --bs-card-bg: var(--app-layer-one);
24
+ --bs-card-border-color: var(--app-layer-two);
25
+ --bs-card-color: var(--app-default-text-color);
26
+ --bs-card-subtitle-color: var(--app-secondary);
27
+ --bs-card-title-color: var(--app-default-text-color);
7
28
 
8
- --bs-primary: var(--app-primary);
9
- --bs-secondary: var(--app-secondary);
10
- --bs-success: var(--app-success);
11
- --bs-info: var(--app-primary);
12
- --bs-warning: var(--app-warning);
13
29
  --bs-danger: var(--app-danger);
14
- --bs-light: var(--app-light);
30
+ --bs-danger-rgb: 220, 53, 69;
15
31
  --bs-dark: var(--app-dark);
32
+ --bs-dark-rgb: 33, 37, 41;
16
33
 
17
- --bs-primary-rgb: 13, 110, 253;
18
- --bs-secondary-rgb: 108, 117, 125;
19
- --bs-success-rgb: 25, 135, 84;
34
+ --bs-emphasis-color: var(--app-default-text-color);
35
+
36
+ --bs-info: var(--app-primary);
20
37
  --bs-info-rgb: 13, 202, 240;
21
- --bs-warning-rgb: 255, 193, 7;
22
- --bs-danger-rgb: 220, 53, 69;
38
+
39
+ --bs-light: var(--app-light);
23
40
  --bs-light-rgb: 248, 249, 250;
24
- --bs-dark-rgb: 33, 37, 41;
25
41
 
26
42
  --bs-link-color: var(--app-default-link-color);
27
43
  --bs-link-hover-color: var(--app-default-link-hover-color);
28
44
 
29
- --bs-border-color: var(--app-layer-three);
30
- --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
31
-
32
- --bs-card-bg: var(--app-layer-one);
33
- --bs-card-border-color: var(--app-layer-two);
34
- --bs-card-title-color: var(--app-default-text-color);
35
- --bs-card-subtitle-color: var(--app-secondary);
36
- --bs-card-color: var(--app-default-text-color);
37
-
38
45
  --bs-modal-bg: var(--app-layer-one);
39
46
  --bs-modal-color: var(--app-default-text-color);
40
- --bs-modal-header-border-color: var(--app-layer-two);
41
47
  --bs-modal-footer-border-color: var(--app-layer-two);
48
+ --bs-modal-header-border-color: var(--app-layer-two);
42
49
 
43
- --bs-navbar-color: var(--app-light);
44
- --bs-navbar-hover-color: var(--app-primary);
45
- --bs-navbar-active-color: var(--app-primary);
46
- --bs-navbar-brand-color: var(--app-light);
47
- --bs-navbar-brand-hover-color: var(--app-primary);
50
+ --bs-offcanvas-bg: var(--app-layer-one);
51
+ --bs-offcanvas-border-color: var(--app-layer-two);
52
+ --bs-offcanvas-color: var(--app-default-text-color);
48
53
 
49
- --bs-nav-link-color: var(--app-light);
50
- --bs-nav-link-hover-color: var(--app-primary);
54
+ --bs-primary: var(--app-primary);
55
+ --bs-primary-rgb: 13, 110, 253;
51
56
 
52
- --bs-dropdown-bg: var(--app-layer-one);
53
- --bs-dropdown-color: var(--app-default-text-color);
54
- --bs-dropdown-border-color: var(--app-layer-two);
55
- --bs-dropdown-link-color: var(--app-default-text-color);
56
- --bs-dropdown-link-hover-color: var(--app-default-button-text-color);
57
- --bs-dropdown-link-hover-bg: var(--app-primary);
57
+ --bs-progress-bg: var(--app-layer-two);
58
+
59
+ --bs-secondary: var(--app-secondary);
60
+ --bs-secondary-color: var(--app-secondary);
61
+ --bs-secondary-rgb: 108, 117, 125;
62
+
63
+ --bs-success: var(--app-success);
64
+ --bs-success-rgb: 25, 135, 84;
65
+
66
+ --bs-tertiary-color: var(--app-layer-four);
67
+
68
+ --bs-warning: var(--app-warning);
69
+ --bs-warning-rgb: 255, 193, 7;
58
70
 
59
71
  --bs-accordion-bg: var(--app-layer-one);
60
- --bs-accordion-color: var(--app-default-text-color);
61
72
  --bs-accordion-border-color: var(--app-layer-two);
62
- --bs-accordion-button-color: var(--app-default-text-color);
63
- --bs-accordion-button-bg: var(--app-layer-two);
64
73
  --bs-accordion-button-active-bg: var(--app-primary-soft);
65
74
  --bs-accordion-button-active-color: var(--app-default-text-color);
75
+ --bs-accordion-button-bg: var(--app-layer-two);
76
+ --bs-accordion-button-color: var(--app-default-text-color);
77
+ --bs-accordion-color: var(--app-default-text-color);
66
78
 
67
- --bs-tooltip-bg: var(--app-dark);
68
- --bs-tooltip-color: var(--app-light);
79
+ --bs-btn-bg: var(--app-primary);
80
+ --bs-btn-border-color: var(--app-primary);
81
+ --bs-btn-color: var(--app-default-button-text-color);
82
+ --bs-btn-hover-bg: var(--app-primary-dark);
83
+ --bs-btn-hover-border-color: var(--app-primary-dark);
84
+ --bs-btn-hover-color: var(--app-default-button-text-color);
69
85
 
70
- --bs-popover-bg: var(--app-layer-one);
71
- --bs-popover-color: var(--app-default-text-color);
72
- --bs-popover-border-color: var(--app-layer-two);
73
- --bs-popover-header-bg: var(--app-layer-two);
74
- --bs-popover-header-color: var(--app-default-text-color);
86
+ --bs-dropdown-bg: var(--app-layer-one);
87
+ --bs-dropdown-border-color: var(--app-layer-two);
88
+ --bs-dropdown-color: var(--app-default-text-color);
89
+ --bs-dropdown-link-color: var(--app-default-text-color);
90
+ --bs-dropdown-link-hover-bg: var(--app-primary);
91
+ --bs-dropdown-link-hover-color: var(--app-default-button-text-color);
75
92
 
76
- --bs-form-control-color: var(--app-default-text-color);
77
- --bs-form-control-bg: var(--app-layer-two);
78
- --bs-form-control-border-color: var(--bs-border-color);
79
- --bs-form-control-focus-border-color: var(--app-primary);
93
+ --bs-form-control-bg: var(--app-form-field-bg);
94
+ --bs-form-control-border-color: var(--app-form-field-border);
95
+ --bs-form-control-color: var(--app-form-field-color);
96
+ --bs-form-control-disabled-bg: var(--app-form-field-disabled-bg);
97
+ --bs-form-control-focus-border-color: var(--app-form-field-focus-border);
80
98
  --bs-form-control-focus-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
81
- --bs-form-control-disabled-bg: var(--app-layer-three);
82
99
 
83
- --bs-form-select-color: var(--app-default-text-color);
84
- --bs-form-select-bg: var(--app-layer-two);
85
- --bs-form-select-border-color: var(--bs-border-color);
86
- --bs-form-select-focus-border-color: var(--app-primary);
100
+ --bs-form-select-bg: var(--app-form-field-bg);
101
+ --bs-form-select-border-color: var(--app-form-field-border);
102
+ --bs-form-select-color: var(--app-form-field-color);
103
+ --bs-form-select-focus-border-color: var(--app-form-field-focus-border);
87
104
  --bs-form-select-focus-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
88
105
 
89
- --bs-btn-color: var(--app-default-button-text-color);
90
- --bs-btn-bg: var(--app-primary);
91
- --bs-btn-border-color: var(--app-primary);
92
- --bs-btn-hover-color: var(--app-default-button-text-color);
93
- --bs-btn-hover-bg: var(--app-primary-dark);
94
- --bs-btn-hover-border-color: var(--app-primary-dark);
95
-
106
+ --bs-list-group-action-color: var(--app-default-text-color);
107
+ --bs-list-group-action-hover-color: var(--app-default-text-color);
96
108
  --bs-list-group-bg: var(--app-layer-one);
97
- --bs-list-group-color: var(--app-default-text-color);
98
109
  --bs-list-group-border-color: var(--app-layer-two);
110
+ --bs-list-group-color: var(--app-default-text-color);
99
111
  --bs-list-group-hover-bg: var(--app-layer-two);
100
- --bs-list-group-action-color: var(--app-default-text-color);
101
- --bs-list-group-action-hover-color: var(--app-default-text-color);
102
112
 
103
- --bs-table-bg: transparent;
104
- --bs-table-color: var(--app-default-text-color);
105
- --bs-table-border-color: var(--app-layer-three);
106
- --bs-table-striped-bg: var(--app-layer-two);
107
- --bs-table-hover-bg: var(--app-layer-two);
113
+ --bs-nav-link-color: var(--app-light);
114
+ --bs-nav-link-hover-color: var(--app-primary);
108
115
 
109
- --bs-pagination-color: var(--app-default-text-color);
116
+ --bs-navbar-active-color: var(--app-primary);
117
+ --bs-navbar-brand-color: var(--app-light);
118
+ --bs-navbar-brand-hover-color: var(--app-primary);
119
+ --bs-navbar-color: var(--app-light);
120
+ --bs-navbar-hover-color: var(--app-primary);
121
+
122
+ --bs-pagination-active-bg: var(--app-primary);
123
+ --bs-pagination-active-border-color: var(--app-primary);
124
+ --bs-pagination-active-color: var(--app-default-button-text-color);
110
125
  --bs-pagination-bg: var(--app-layer-one);
111
126
  --bs-pagination-border-color: var(--app-layer-two);
112
- --bs-pagination-hover-color: var(--app-primary);
127
+ --bs-pagination-color: var(--app-default-text-color);
113
128
  --bs-pagination-hover-bg: var(--app-layer-two);
114
129
  --bs-pagination-hover-border-color: var(--app-layer-three);
115
- --bs-pagination-active-color: var(--app-default-button-text-color);
116
- --bs-pagination-active-bg: var(--app-primary);
117
- --bs-pagination-active-border-color: var(--app-primary);
118
-
119
- --bs-alert-color: var(--app-default-text-color);
120
- --bs-alert-bg: var(--app-layer-two);
121
- --bs-alert-border-color: var(--app-layer-three);
130
+ --bs-pagination-hover-color: var(--app-primary);
122
131
 
123
- --bs-breadcrumb-bg: var(--app-layer-two);
124
- --bs-breadcrumb-item-active-color: var(--app-secondary);
132
+ --bs-popover-bg: var(--app-layer-one);
133
+ --bs-popover-border-color: var(--app-layer-two);
134
+ --bs-popover-color: var(--app-default-text-color);
135
+ --bs-popover-header-bg: var(--app-layer-two);
136
+ --bs-popover-header-color: var(--app-default-text-color);
125
137
 
126
- --bs-progress-bg: var(--app-layer-two);
138
+ --bs-table-bg: transparent;
139
+ --bs-table-border-color: var(--app-layer-three);
140
+ --bs-table-color: var(--app-default-text-color);
141
+ --bs-table-hover-bg: var(--app-layer-two);
142
+ --bs-table-striped-bg: var(--app-layer-two);
127
143
 
128
- --bs-offcanvas-bg: var(--app-layer-one);
129
- --bs-offcanvas-color: var(--app-default-text-color);
130
- --bs-offcanvas-border-color: var(--app-layer-two);
144
+ --bs-tooltip-bg: var(--app-dark);
145
+ --bs-tooltip-color: var(--app-light);
131
146
  }
132
147
 
133
148
  [data-theme="dark"] {
149
+ --app-form-field-bg: var(--app-layer-one);
150
+
151
+ --bs-border-color-translucent: rgba(64, 61, 82, 0.175);
152
+
153
+ --bs-danger-rgb: 235, 111, 146;
154
+ --bs-dark-rgb: 25, 23, 36;
155
+ --bs-info-rgb: 196, 167, 231;
156
+ --bs-light-rgb: 224, 222, 244;
134
157
  --bs-primary-rgb: 196, 167, 231;
135
158
  --bs-secondary-rgb: 144, 140, 170;
136
159
  --bs-success-rgb: 49, 116, 143;
137
- --bs-info-rgb: 196, 167, 231;
138
160
  --bs-warning-rgb: 246, 193, 119;
139
- --bs-danger-rgb: 235, 111, 146;
140
- --bs-light-rgb: 224, 222, 244;
141
- --bs-dark-rgb: 25, 23, 36;
142
-
143
- --bs-border-color-translucent: rgba(64, 61, 82, 0.175);
144
161
 
145
162
  --bs-form-control-focus-box-shadow: 0 0 0 0.25rem var(--app-focus-ring-primary);
146
163
  --bs-form-select-focus-box-shadow: 0 0 0 0.25rem var(--app-focus-ring-primary);
@@ -150,44 +167,77 @@
150
167
  }
151
168
 
152
169
  [data-theme="light"] {
170
+ --bs-border-color-translucent: rgba(206, 202, 205, 0.175);
171
+
172
+ --bs-danger-rgb: 215, 130, 126;
173
+ --bs-dark-rgb: 87, 82, 121;
174
+ --bs-info-rgb: 144, 122, 169;
175
+ --bs-light-rgb: 250, 244, 237;
153
176
  --bs-primary-rgb: 144, 122, 169;
154
177
  --bs-secondary-rgb: 121, 117, 147;
155
178
  --bs-success-rgb: 40, 105, 131;
156
- --bs-info-rgb: 144, 122, 169;
157
179
  --bs-warning-rgb: 234, 157, 52;
158
- --bs-danger-rgb: 215, 130, 126;
159
- --bs-light-rgb: 250, 244, 237;
160
- --bs-dark-rgb: 87, 82, 121;
161
-
162
- --bs-border-color-translucent: rgba(206, 202, 205, 0.175);
163
180
 
164
181
  --bs-form-control-focus-box-shadow: 0 0 0 0.25rem var(--app-focus-ring-primary);
165
182
  --bs-form-select-focus-box-shadow: 0 0 0 0.25rem var(--app-focus-ring-primary);
166
183
  }
167
184
 
168
185
  .form-control {
169
- background-color: var(--app-layer-two) !important;
170
- color: var(--app-default-text-color) !important;
171
- border-color: var(--bs-border-color) !important;
172
- caret-color: var(--app-default-text-color) !important;
186
+ background-color: var(--app-form-field-bg) !important;
187
+ border-color: var(--app-form-field-border) !important;
188
+ caret-color: var(--app-form-field-color) !important;
189
+ color: var(--app-form-field-color) !important;
173
190
  }
174
191
 
175
192
  .form-control:focus {
193
+ border-color: var(--app-form-field-focus-border) !important;
176
194
  box-shadow: none !important;
177
195
  outline: none !important;
178
- border-color: var(--app-primary) !important;
179
- border-width: 2px !important;
180
196
  }
181
197
 
182
198
  .form-control:disabled,
183
199
  .form-control[readonly] {
184
- background-color: var(--app-layer-three) !important;
200
+ background-color: var(--app-form-field-disabled-bg) !important;
201
+ border-color: var(--app-form-field-disabled-border) !important;
202
+ color: var(--app-form-field-disabled-color) !important;
203
+ cursor: not-allowed;
185
204
  }
186
205
 
187
206
  .form-control:-webkit-autofill,
188
- .form-control:-webkit-autofill:hover,
207
+ .form-control:-webkit-autofill:active,
189
208
  .form-control:-webkit-autofill:focus,
190
- .form-control:-webkit-autofill:active {
191
- -webkit-box-shadow: 0 0 0 30px var(--app-layer-two) inset !important;
192
- -webkit-text-fill-color: var(--app-default-text-color) !important;
209
+ .form-control:-webkit-autofill:hover {
210
+ -webkit-box-shadow: 0 0 0 30px var(--app-form-field-bg) inset !important;
211
+ -webkit-text-fill-color: var(--app-form-field-color) !important;
212
+ }
213
+
214
+ .form-select {
215
+ background-color: var(--app-form-field-bg) !important;
216
+ border-color: var(--app-form-field-border) !important;
217
+ color: var(--app-form-field-color) !important;
218
+ }
219
+
220
+ .form-select:focus {
221
+ border-color: var(--app-form-field-focus-border) !important;
222
+ box-shadow: none !important;
223
+ outline: none !important;
224
+ }
225
+
226
+ .form-select:disabled {
227
+ background-color: var(--app-form-field-disabled-bg) !important;
228
+ border-color: var(--app-form-field-disabled-border) !important;
229
+ color: var(--app-form-field-disabled-color) !important;
230
+ cursor: not-allowed;
231
+ }
232
+
233
+ .ce-block__content [data-placeholder]:empty::before,
234
+ .ce-block__content [data-placeholder][data-empty="true"]::before {
235
+ color: var(--app-primary) !important;
236
+ opacity: 0.8;
237
+ }
238
+
239
+ .ce-paragraph[data-placeholder]:empty::before,
240
+ .ce-paragraph[data-placeholder-active]::before {
241
+ color: var(--app-primary) !important;
242
+ opacity: 0.8;
193
243
  }
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #bfbdb6;
45
45
  --app-side-navigation-link-color: #bfbdb6;
46
46
  --app-side-navigation-link-hover-color: #59c2ff;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #0d1017;
52
49
  --app-top-navigation-text-color: #bfbdb6;
53
50
  --app-top-navigation-link-color: #59c2ff;
54
51
  --app-top-navigation-link-hover-color: #ffd580;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #0d1017;
58
54
  --app-footer-text-color: #bfbdb6;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #fafafa;
45
45
  --app-side-navigation-link-color: #fafafa;
46
46
  --app-side-navigation-link-hover-color: #59c2ff;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #fafafa;
52
49
  --app-top-navigation-text-color: #5c6773;
53
50
  --app-top-navigation-link-color: #0066cc;
54
51
  --app-top-navigation-link-hover-color: #ff6a00;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f3f4f5;
58
54
  --app-footer-text-color: #5c6773;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #cdd6f4;
45
45
  --app-side-navigation-link-color: #cdd6f4;
46
46
  --app-side-navigation-link-hover-color: #cba6f7;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #181825;
52
49
  --app-top-navigation-text-color: #cdd6f4;
53
50
  --app-top-navigation-link-color: #cba6f7;
54
51
  --app-top-navigation-link-hover-color: #f38ba8;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #181825;
58
54
  --app-footer-text-color: #cdd6f4;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #eff1f5;
45
45
  --app-side-navigation-link-color: #eff1f5;
46
46
  --app-side-navigation-link-hover-color: #cba6f7;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #eff1f5;
52
49
  --app-top-navigation-text-color: #4c4f69;
53
50
  --app-top-navigation-link-color: #8839ef;
54
51
  --app-top-navigation-link-hover-color: #d20f39;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #e6e9ef;
58
54
  --app-footer-text-color: #4c4f69;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #ffffff;
45
45
  --app-side-navigation-link-color: #ffffff;
46
46
  --app-side-navigation-link-hover-color: #0097c9;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #0f0f0f;
52
49
  --app-top-navigation-text-color: #ffffff;
53
50
  --app-top-navigation-link-color: #0097c9;
54
51
  --app-top-navigation-link-hover-color: #00b8e6;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #0f0f0f;
58
54
  --app-footer-text-color: #ffffff;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #ffffff;
45
45
  --app-side-navigation-link-color: #ffffff;
46
46
  --app-side-navigation-link-hover-color: #0097c9;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #ffffff;
52
49
  --app-top-navigation-text-color: #181818;
53
50
  --app-top-navigation-link-color: #0097c9;
54
51
  --app-top-navigation-link-hover-color: #007ba3;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f5f5f6;
58
54
  --app-footer-text-color: #181818;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #f8f8f2;
45
45
  --app-side-navigation-link-color: #f8f8f2;
46
46
  --app-side-navigation-link-hover-color: #bd93f9;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #282a36;
52
49
  --app-top-navigation-text-color: #f8f8f2;
53
50
  --app-top-navigation-link-color: #bd93f9;
54
51
  --app-top-navigation-link-hover-color: #ff79c6;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #282a36;
58
54
  --app-footer-text-color: #f8f8f2;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #f8f8f2;
45
45
  --app-side-navigation-link-color: #f8f8f2;
46
46
  --app-side-navigation-link-hover-color: #bd93f9;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #f8f8f2;
52
49
  --app-top-navigation-text-color: #44475a;
53
50
  --app-top-navigation-link-color: #bd93f9;
54
51
  --app-top-navigation-link-hover-color: #ff79c6;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f0f0ea;
58
54
  --app-footer-text-color: #44475a;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #ebdbb2;
45
45
  --app-side-navigation-link-color: #ebdbb2;
46
46
  --app-side-navigation-link-hover-color: #fabd2f;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #1d2021;
52
49
  --app-top-navigation-text-color: #ebdbb2;
53
50
  --app-top-navigation-link-color: #fabd2f;
54
51
  --app-top-navigation-link-hover-color: #fe8019;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #1d2021;
58
54
  --app-footer-text-color: #ebdbb2;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #fbf1c7;
45
45
  --app-side-navigation-link-color: #fbf1c7;
46
46
  --app-side-navigation-link-hover-color: #fabd2f;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #fbf1c7;
52
49
  --app-top-navigation-text-color: #3c3836;
53
50
  --app-top-navigation-link-color: #b57614;
54
51
  --app-top-navigation-link-hover-color: #af3a03;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f2e5bc;
58
54
  --app-footer-text-color: #3c3836;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #ffffff;
45
45
  --app-side-navigation-link-color: #ffffff;
46
46
  --app-side-navigation-link-hover-color: #90caf9;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #121212;
52
49
  --app-top-navigation-text-color: #ffffff;
53
50
  --app-top-navigation-link-color: #90caf9;
54
51
  --app-top-navigation-link-hover-color: #ff8a65;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #121212;
58
54
  --app-footer-text-color: #ffffff;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #eceff1;
45
45
  --app-side-navigation-link-color: #eceff1;
46
46
  --app-side-navigation-link-hover-color: #64b5f6;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #fafafa;
52
49
  --app-top-navigation-text-color: #212121;
53
50
  --app-top-navigation-link-color: #2196f3;
54
51
  --app-top-navigation-link-hover-color: #ff5722;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f5f5f5;
58
54
  --app-footer-text-color: #212121;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #eceff4;
45
45
  --app-side-navigation-link-color: #eceff4;
46
46
  --app-side-navigation-link-hover-color: #88c0d0;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #2e3440;
52
49
  --app-top-navigation-text-color: #eceff4;
53
50
  --app-top-navigation-link-color: #81a1c1;
54
51
  --app-top-navigation-link-hover-color: #bf616a;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #2e3440;
58
54
  --app-footer-text-color: #eceff4;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #eceff4;
45
45
  --app-side-navigation-link-color: #eceff4;
46
46
  --app-side-navigation-link-hover-color: #88c0d0;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #eceff4;
52
49
  --app-top-navigation-text-color: #2e3440;
53
50
  --app-top-navigation-link-color: #5e81ac;
54
51
  --app-top-navigation-link-hover-color: #bf616a;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #e5e9f0;
58
54
  --app-footer-text-color: #2e3440;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #c0c5ce;
45
45
  --app-side-navigation-link-color: #c0c5ce;
46
46
  --app-side-navigation-link-hover-color: #6699cc;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #152028;
52
49
  --app-top-navigation-text-color: #c0c5ce;
53
50
  --app-top-navigation-link-color: #6699cc;
54
51
  --app-top-navigation-link-hover-color: #5fb3b3;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #152028;
58
54
  --app-footer-text-color: #c0c5ce;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #ffffff;
45
45
  --app-side-navigation-link-color: #ffffff;
46
46
  --app-side-navigation-link-hover-color: #4fc3f7;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #ffffff;
52
49
  --app-top-navigation-text-color: #263238;
53
50
  --app-top-navigation-link-color: #0277bd;
54
51
  --app-top-navigation-link-hover-color: #00acc1;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #fafafa;
58
54
  --app-footer-text-color: #263238;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #abb2bf;
45
45
  --app-side-navigation-link-color: #abb2bf;
46
46
  --app-side-navigation-link-hover-color: #61afef;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #1e2227;
52
49
  --app-top-navigation-text-color: #abb2bf;
53
50
  --app-top-navigation-link-color: #61afef;
54
51
  --app-top-navigation-link-hover-color: #c678dd;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #1e2227;
58
54
  --app-footer-text-color: #abb2bf;
@@ -44,15 +44,11 @@
44
44
  --app-side-navigation-text-color: #fafafa;
45
45
  --app-side-navigation-link-color: #fafafa;
46
46
  --app-side-navigation-link-hover-color: #61afef;
47
- --app-side-navigation-width: 200px;
48
-
49
- --app-mobile-navigation-width: 200px;
50
47
 
51
48
  --app-top-navigation-bg-color: #fafafa;
52
49
  --app-top-navigation-text-color: #383a42;
53
50
  --app-top-navigation-link-color: #4078f2;
54
51
  --app-top-navigation-link-hover-color: #a626a4;
55
- --app-top-navigation-height: 100px;
56
52
 
57
53
  --app-footer-bg-color: #f0f0f1;
58
54
  --app-footer-text-color: #383a42;