alchemy_cms 7.0.8 → 7.1.0.pre.b2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (394) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +162 -0
  3. data/Gemfile +9 -11
  4. data/README.md +11 -9
  5. data/alchemy_cms.gemspec +4 -3
  6. data/app/assets/config/alchemy_manifest.js +3 -5
  7. data/app/assets/images/alchemy/missing-image.svg +1 -1
  8. data/app/assets/javascripts/alchemy/admin.js +1 -23
  9. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -3
  10. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +19 -34
  11. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +38 -13
  12. data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +1 -1
  13. data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +32 -25
  14. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +1 -1
  15. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +3 -5
  16. data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -57
  17. data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +24 -65
  18. data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +2 -2
  19. data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +5 -4
  20. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +5 -5
  21. data/app/assets/javascripts/alchemy/templates/index.js +0 -2
  22. data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
  23. data/app/assets/javascripts/alchemy/templates/page.hbs +1 -1
  24. data/app/assets/javascripts/alchemy/templates/page_folder.hbs +2 -2
  25. data/app/assets/javascripts/tinymce/icons/remixicons/icons.js +93 -0
  26. data/app/assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js +37 -18
  27. data/app/assets/stylesheets/alchemy/_custom-properties.scss +82 -0
  28. data/app/assets/stylesheets/alchemy/_mixins.scss +38 -30
  29. data/app/assets/stylesheets/alchemy/_variables.scss +23 -8
  30. data/app/assets/stylesheets/alchemy/admin.scss +3 -4
  31. data/app/assets/stylesheets/alchemy/archive.scss +110 -50
  32. data/app/assets/stylesheets/alchemy/attachments.scss +5 -4
  33. data/app/assets/stylesheets/alchemy/buttons.scss +41 -166
  34. data/app/assets/stylesheets/alchemy/dashboard.scss +31 -6
  35. data/app/assets/stylesheets/alchemy/dialogs.scss +12 -28
  36. data/app/assets/stylesheets/alchemy/elements.scss +272 -282
  37. data/app/assets/stylesheets/alchemy/flash.scss +20 -12
  38. data/app/assets/stylesheets/alchemy/forms.scss +21 -34
  39. data/app/assets/stylesheets/alchemy/frame.scss +11 -32
  40. data/app/assets/stylesheets/alchemy/hints.scss +4 -62
  41. data/app/assets/stylesheets/alchemy/image_library.scss +36 -33
  42. data/app/assets/stylesheets/alchemy/menubar.scss +7 -6
  43. data/app/assets/stylesheets/alchemy/navigation.scss +27 -15
  44. data/app/assets/stylesheets/alchemy/nodes.scss +11 -7
  45. data/app/assets/stylesheets/alchemy/notices.scss +16 -4
  46. data/app/assets/stylesheets/alchemy/page-select.scss +10 -2
  47. data/app/assets/stylesheets/alchemy/pagination.scss +22 -13
  48. data/app/assets/stylesheets/alchemy/resource_info.scss +7 -5
  49. data/app/assets/stylesheets/alchemy/selects.scss +49 -42
  50. data/app/assets/stylesheets/alchemy/shoelace.scss +345 -0
  51. data/app/assets/stylesheets/alchemy/sitemap.scss +24 -14
  52. data/app/assets/stylesheets/alchemy/spinner.scss +9 -19
  53. data/app/assets/stylesheets/alchemy/tables.scss +16 -24
  54. data/app/assets/stylesheets/alchemy/tags.scss +4 -0
  55. data/app/assets/stylesheets/alchemy/toolbar.scss +29 -25
  56. data/app/assets/stylesheets/alchemy/upload.scss +140 -89
  57. data/app/assets/stylesheets/tinymce/skins/content/alchemy/content.min.scss +69 -0
  58. data/app/assets/stylesheets/tinymce/skins/skintool.json +38 -0
  59. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.css +711 -0
  60. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.inline.css +705 -0
  61. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.inline.min.css +7 -0
  62. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.min.css +7 -0
  63. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.css +29 -0
  64. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.min.css +7 -0
  65. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/fonts/tinymce-mobile.woff +0 -0
  66. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.min.scss +3798 -0
  67. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.css +677 -0
  68. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.min.css +7 -0
  69. data/app/components/alchemy/admin/node_select.rb +39 -0
  70. data/app/components/alchemy/admin/page_select.rb +42 -0
  71. data/app/controllers/alchemy/admin/base_controller.rb +5 -6
  72. data/app/controllers/alchemy/admin/elements_controller.rb +63 -35
  73. data/app/controllers/alchemy/admin/pages_controller.rb +9 -4
  74. data/app/controllers/alchemy/base_controller.rb +4 -2
  75. data/app/controllers/concerns/alchemy/admin/uploader_responses.rb +1 -1
  76. data/app/controllers/concerns/alchemy/site_redirects.rb +1 -1
  77. data/app/decorators/alchemy/element_editor.rb +0 -2
  78. data/app/helpers/alchemy/admin/attachments_helper.rb +6 -5
  79. data/app/helpers/alchemy/admin/base_helper.rb +17 -12
  80. data/app/helpers/alchemy/admin/ingredients_helper.rb +4 -1
  81. data/app/helpers/alchemy/admin/pages_helper.rb +5 -11
  82. data/app/helpers/alchemy/base_helper.rb +47 -13
  83. data/app/javascript/alchemy_admin/clipboard.js +16 -0
  84. data/app/javascript/alchemy_admin/components/alchemy_html_element.js +129 -0
  85. data/app/javascript/alchemy_admin/components/button.js +59 -0
  86. data/app/javascript/alchemy_admin/components/char_counter.js +40 -0
  87. data/app/javascript/alchemy_admin/components/datepicker.js +39 -0
  88. data/app/javascript/alchemy_admin/components/dialog_link.js +45 -0
  89. data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +36 -0
  90. data/app/javascript/alchemy_admin/components/element_editor.js +553 -0
  91. data/app/javascript/alchemy_admin/components/ingredient_group.js +54 -0
  92. data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +48 -0
  93. data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +38 -0
  94. data/app/javascript/alchemy_admin/components/link_buttons.js +79 -0
  95. data/app/javascript/alchemy_admin/components/node_select.js +45 -0
  96. data/app/javascript/alchemy_admin/components/overlay.js +18 -0
  97. data/app/javascript/alchemy_admin/components/page_select.js +63 -0
  98. data/app/javascript/alchemy_admin/components/remote_select.js +134 -0
  99. data/app/javascript/alchemy_admin/components/select.js +12 -0
  100. data/app/javascript/alchemy_admin/components/spinner.js +31 -0
  101. data/app/javascript/alchemy_admin/components/tinymce.js +134 -0
  102. data/app/javascript/alchemy_admin/components/uploader/file_upload.js +266 -0
  103. data/app/javascript/alchemy_admin/components/uploader/progress.js +258 -0
  104. data/app/javascript/alchemy_admin/components/uploader.js +132 -0
  105. data/app/javascript/alchemy_admin/dirty.js +49 -0
  106. data/app/javascript/alchemy_admin/file_editors.js +1 -1
  107. data/app/javascript/alchemy_admin/gui.js +14 -0
  108. data/app/javascript/alchemy_admin/i18n.js +12 -8
  109. data/app/javascript/alchemy_admin/image_cropper.js +6 -3
  110. data/app/javascript/alchemy_admin/image_loader.js +7 -15
  111. data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -5
  112. data/app/javascript/alchemy_admin/initializer.js +65 -0
  113. data/app/javascript/alchemy_admin/locales/en.js +31 -0
  114. data/app/javascript/alchemy_admin/picture_editors.js +6 -4
  115. data/app/javascript/alchemy_admin/picture_selector.js +38 -0
  116. data/app/javascript/alchemy_admin/please_wait_overlay.js +8 -0
  117. data/app/javascript/alchemy_admin/sortable_elements.js +78 -0
  118. data/app/javascript/alchemy_admin/spinner.js +36 -0
  119. data/app/javascript/alchemy_admin/tags_autocomplete.js +46 -0
  120. data/app/javascript/alchemy_admin/utils/ajax.js +6 -5
  121. data/app/javascript/alchemy_admin/utils/debounce.js +10 -0
  122. data/app/javascript/alchemy_admin/utils/dom_helpers.js +20 -0
  123. data/app/javascript/alchemy_admin/utils/format.js +11 -0
  124. data/app/javascript/alchemy_admin/utils/max.js +3 -0
  125. data/app/javascript/alchemy_admin/utils/string_conversions.js +10 -0
  126. data/app/javascript/alchemy_admin.js +64 -13
  127. data/app/javascript/menubar.js +10 -0
  128. data/app/models/alchemy/attachment.rb +9 -11
  129. data/app/models/alchemy/element.rb +11 -0
  130. data/app/models/alchemy/ingredients/richtext.rb +1 -10
  131. data/app/models/alchemy/node.rb +4 -0
  132. data/app/models/alchemy/page/page_naming.rb +7 -0
  133. data/app/models/alchemy/page/page_natures.rb +10 -2
  134. data/app/models/alchemy/page.rb +11 -51
  135. data/app/models/alchemy/picture/url.rb +1 -9
  136. data/app/models/alchemy/picture_variant.rb +11 -2
  137. data/app/models/concerns/alchemy/picture_thumbnails.rb +1 -1
  138. data/app/serializers/alchemy/page_tree_serializer.rb +2 -1
  139. data/app/services/alchemy/copy_page.rb +98 -0
  140. data/app/views/alchemy/_menubar.html.erb +17 -13
  141. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -10
  142. data/app/views/alchemy/admin/attachments/_attachment.html.erb +44 -36
  143. data/app/views/alchemy/admin/attachments/_replace_button.html.erb +15 -21
  144. data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
  145. data/app/views/alchemy/admin/attachments/assign.js.erb +1 -1
  146. data/app/views/alchemy/admin/attachments/index.html.erb +6 -4
  147. data/app/views/alchemy/admin/attachments/show.html.erb +10 -23
  148. data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
  149. data/app/views/alchemy/admin/clipboard/index.html.erb +3 -7
  150. data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
  151. data/app/views/alchemy/admin/crop.html.erb +1 -1
  152. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
  153. data/app/views/alchemy/admin/dashboard/index.html.erb +13 -11
  154. data/app/views/alchemy/admin/dashboard/info.html.erb +7 -7
  155. data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +21 -23
  156. data/app/views/alchemy/admin/elements/_element.html.erb +52 -44
  157. data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
  158. data/app/views/alchemy/admin/elements/_form.html.erb +1 -1
  159. data/app/views/alchemy/admin/elements/_header.html.erb +11 -12
  160. data/app/views/alchemy/admin/elements/_toolbar.html.erb +33 -45
  161. data/app/views/alchemy/admin/elements/create.js.erb +7 -15
  162. data/app/views/alchemy/admin/elements/destroy.js.erb +0 -2
  163. data/app/views/alchemy/admin/elements/index.html.erb +27 -24
  164. data/app/views/alchemy/admin/elements/new.html.erb +9 -11
  165. data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +2 -2
  166. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +3 -3
  167. data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +1 -2
  168. data/app/views/alchemy/admin/languages/_form.html.erb +2 -3
  169. data/app/views/alchemy/admin/languages/_language.html.erb +15 -8
  170. data/app/views/alchemy/admin/languages/_table.html.erb +1 -0
  171. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +28 -16
  172. data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
  173. data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +12 -8
  174. data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +1 -1
  175. data/app/views/alchemy/admin/nodes/_form.html.erb +20 -21
  176. data/app/views/alchemy/admin/nodes/_node.html.erb +39 -34
  177. data/app/views/alchemy/admin/nodes/index.html.erb +1 -1
  178. data/app/views/alchemy/admin/pages/_anchor_link.html.erb +4 -4
  179. data/app/views/alchemy/admin/pages/_create_language_form.html.erb +2 -2
  180. data/app/views/alchemy/admin/pages/_current_page.html.erb +1 -1
  181. data/app/views/alchemy/admin/pages/_external_link.html.erb +4 -4
  182. data/app/views/alchemy/admin/pages/_file_link.html.erb +5 -5
  183. data/app/views/alchemy/admin/pages/_form.html.erb +10 -21
  184. data/app/views/alchemy/admin/pages/_internal_link.html.erb +4 -4
  185. data/app/views/alchemy/admin/pages/_locked_page.html.erb +2 -2
  186. data/app/views/alchemy/admin/pages/_new_page_form.html.erb +4 -17
  187. data/app/views/alchemy/admin/pages/_page.html.erb +76 -72
  188. data/app/views/alchemy/admin/pages/_page_infos.html.erb +23 -7
  189. data/app/views/alchemy/admin/pages/_page_layout_filter.html.erb +2 -1
  190. data/app/views/alchemy/admin/pages/_page_status.html.erb +11 -21
  191. data/app/views/alchemy/admin/pages/_publication_fields.html.erb +2 -5
  192. data/app/views/alchemy/admin/pages/_table.html.erb +1 -1
  193. data/app/views/alchemy/admin/pages/_table_row.html.erb +43 -39
  194. data/app/views/alchemy/admin/pages/_toolbar.html.erb +43 -38
  195. data/app/views/alchemy/admin/pages/configure.html.erb +12 -14
  196. data/app/views/alchemy/admin/pages/edit.html.erb +80 -103
  197. data/app/views/alchemy/admin/pages/info.html.erb +20 -11
  198. data/app/views/alchemy/admin/pages/link.html.erb +22 -16
  199. data/app/views/alchemy/admin/pages/new.html.erb +9 -11
  200. data/app/views/alchemy/admin/pages/unlock.js.erb +10 -3
  201. data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +15 -13
  202. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +3 -5
  203. data/app/views/alchemy/admin/partials/_routes.html.erb +10 -2
  204. data/app/views/alchemy/admin/partials/_site_select.html.erb +6 -5
  205. data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +28 -23
  206. data/app/views/alchemy/admin/pictures/_archive.html.erb +5 -5
  207. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  208. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +21 -23
  209. data/app/views/alchemy/admin/pictures/_infos.html.erb +2 -6
  210. data/app/views/alchemy/admin/pictures/_picture.html.erb +17 -21
  211. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +17 -16
  212. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +1 -1
  213. data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +1 -1
  214. data/app/views/alchemy/admin/pictures/assign.js.erb +1 -1
  215. data/app/views/alchemy/admin/pictures/index.html.erb +34 -30
  216. data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
  217. data/app/views/alchemy/admin/resources/_filter.html.erb +2 -2
  218. data/app/views/alchemy/admin/resources/_form.html.erb +2 -2
  219. data/app/views/alchemy/admin/resources/_per_page_select.html.erb +1 -1
  220. data/app/views/alchemy/admin/resources/_resource.html.erb +16 -9
  221. data/app/views/alchemy/admin/resources/_table.html.erb +4 -1
  222. data/app/views/alchemy/admin/resources/index.html.erb +22 -19
  223. data/app/views/alchemy/admin/sites/index.html.erb +2 -1
  224. data/app/views/alchemy/admin/styleguide/index.html.erb +54 -28
  225. data/app/views/alchemy/admin/tags/_tag.html.erb +16 -14
  226. data/app/views/alchemy/admin/tags/index.html.erb +15 -12
  227. data/app/views/alchemy/admin/tinymce/_setup.html.erb +28 -0
  228. data/app/views/alchemy/admin/uploader/_button.html.erb +23 -29
  229. data/app/views/alchemy/admin/uploader/_setup.html.erb +3 -8
  230. data/app/views/alchemy/base/500.html.erb +1 -1
  231. data/app/views/alchemy/base/error_notice.js.erb +0 -1
  232. data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
  233. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +1 -1
  234. data/app/views/alchemy/ingredients/_file_editor.html.erb +5 -5
  235. data/app/views/alchemy/ingredients/_link_editor.html.erb +1 -1
  236. data/app/views/alchemy/ingredients/_node_editor.html.erb +6 -19
  237. data/app/views/alchemy/ingredients/_page_editor.html.erb +7 -19
  238. data/app/views/alchemy/ingredients/_picture_editor.html.erb +2 -2
  239. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +6 -15
  240. data/app/views/alchemy/ingredients/_select_editor.html.erb +2 -1
  241. data/app/views/alchemy/ingredients/_text_editor.html.erb +1 -1
  242. data/app/views/alchemy/ingredients/shared/_anchor.html.erb +1 -1
  243. data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +10 -20
  244. data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +42 -49
  245. data/app/views/kaminari/alchemy/_first_page.html.erb +4 -2
  246. data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
  247. data/app/views/kaminari/alchemy/_last_page.html.erb +4 -2
  248. data/app/views/kaminari/alchemy/_next_page.html.erb +4 -2
  249. data/app/views/kaminari/alchemy/_prev_page.html.erb +4 -2
  250. data/app/views/layouts/alchemy/admin.html.erb +10 -29
  251. data/bundles/shoelace.js +10 -0
  252. data/bundles/tinymce.js +20 -0
  253. data/config/alchemy/config.yml +11 -10
  254. data/config/alchemy/modules.yml +30 -30
  255. data/config/brakeman.ignore +0 -34
  256. data/config/importmap.rb +9 -5
  257. data/config/initializers/dragonfly.rb +1 -0
  258. data/config/initializers/rails_live_reload.rb +13 -0
  259. data/config/locales/alchemy.en.yml +25 -9
  260. data/config/routes.rb +2 -1
  261. data/lib/alchemy/auth_accessors.rb +6 -1
  262. data/lib/alchemy/config.rb +24 -2
  263. data/lib/alchemy/dev_support/live_reload_watcher.rb +5 -0
  264. data/lib/alchemy/engine.rb +10 -3
  265. data/lib/alchemy/forms/builder.rb +18 -12
  266. data/lib/alchemy/resources_helper.rb +3 -3
  267. data/lib/alchemy/test_support/capybara_helpers.rb +8 -5
  268. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +6 -6
  269. data/lib/alchemy/test_support/rspec_matchers.rb +14 -0
  270. data/lib/alchemy/test_support/shared_uploader_examples.rb +1 -1
  271. data/lib/alchemy/tinymce.rb +19 -3
  272. data/lib/alchemy/version.rb +1 -1
  273. data/package.json +30 -9
  274. data/rollup.config.mjs +65 -0
  275. data/vendor/assets/fonts/remixicon.eot +0 -0
  276. data/vendor/assets/fonts/remixicon.svg +7816 -0
  277. data/vendor/assets/fonts/remixicon.ttf +0 -0
  278. data/vendor/assets/fonts/remixicon.woff +0 -0
  279. data/vendor/assets/fonts/remixicon.woff2 +0 -0
  280. data/vendor/assets/stylesheets/remixicon.scss +10480 -0
  281. data/vendor/assets/stylesheets/tinymce/skins/content/default/content.min.css +1 -0
  282. data/vendor/javascript/clipboard.min.js +7 -0
  283. data/vendor/javascript/flatpickr.min.js +1 -0
  284. data/vendor/javascript/keymaster.min.js +1 -0
  285. data/vendor/javascript/rails-ujs.min.js +1 -0
  286. data/vendor/javascript/shoelace.min.js +995 -0
  287. data/vendor/javascript/sortable.min.js +7 -0
  288. data/vendor/javascript/tinymce.min.js +1 -0
  289. data/vendor/javascript/ungap-custom-elements.min.js +3 -0
  290. metadata +111 -124
  291. data/.codeclimate.yml +0 -35
  292. data/.editorconfig +0 -23
  293. data/.github/FUNDING.yml +0 -4
  294. data/.github/ISSUE_TEMPLATE/Bug_report.md +0 -22
  295. data/.github/ISSUE_TEMPLATE/Feature_request.md +0 -17
  296. data/.github/PULL_REQUEST_TEMPLATE.md +0 -18
  297. data/.github/workflows/brakeman-analysis.yml +0 -46
  298. data/.github/workflows/lint.yml +0 -37
  299. data/.github/workflows/stale.yml +0 -33
  300. data/.github/workflows/test.yml +0 -124
  301. data/.gitignore +0 -31
  302. data/.hound.yml +0 -9
  303. data/.localeapp/config.rb +0 -8
  304. data/.prettierrc +0 -6
  305. data/.rspec +0 -1
  306. data/.rubocop.yml +0 -7
  307. data/.standard.yml +0 -4
  308. data/.yardopts +0 -5
  309. data/app/assets/javascripts/alchemy/alchemy.autocomplete.js.coffee +0 -30
  310. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -53
  311. data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +0 -45
  312. data/app/assets/javascripts/alchemy/alchemy.char_counter.js.coffee +0 -19
  313. data/app/assets/javascripts/alchemy/alchemy.dirty.js.coffee +0 -59
  314. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -79
  315. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +0 -267
  316. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +0 -27
  317. data/app/assets/javascripts/alchemy/alchemy.spinner.js +0 -32
  318. data/app/assets/javascripts/alchemy/alchemy.tooltips.coffee +0 -10
  319. data/app/assets/javascripts/alchemy/alchemy.uploader.js.coffee +0 -131
  320. data/app/assets/javascripts/alchemy/menubar.js.coffee +0 -8
  321. data/app/assets/javascripts/alchemy/node_select.js +0 -39
  322. data/app/assets/javascripts/alchemy/page_select.js +0 -46
  323. data/app/assets/javascripts/alchemy/templates/node.hbs +0 -16
  324. data/app/assets/javascripts/alchemy/templates/spinner.hbs +0 -7
  325. data/app/assets/stylesheets/alchemy/jquery-ui.scss +0 -435
  326. data/app/assets/stylesheets/tinymce/skins/alchemy/content.min.css.scss +0 -94
  327. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.svg +0 -63
  328. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.ttf +0 -0
  329. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce-small.woff +0 -0
  330. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.svg +0 -129
  331. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.ttf +0 -0
  332. data/app/assets/stylesheets/tinymce/skins/alchemy/fonts/tinymce.woff +0 -0
  333. data/app/assets/stylesheets/tinymce/skins/alchemy/img/anchor.gif +0 -0
  334. data/app/assets/stylesheets/tinymce/skins/alchemy/img/loader.gif +0 -0
  335. data/app/assets/stylesheets/tinymce/skins/alchemy/img/object.gif +0 -0
  336. data/app/assets/stylesheets/tinymce/skins/alchemy/img/trans.gif +0 -0
  337. data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +0 -2105
  338. data/app/javascript/alchemy_admin/datepicker.js +0 -33
  339. data/app/javascript/alchemy_admin/tinymce.js +0 -146
  340. data/app/javascript/alchemy_admin/translations.js +0 -32
  341. data/app/views/alchemy/admin/elements/fold.js.erb +0 -33
  342. data/app/views/alchemy/admin/elements/order.js.erb +0 -11
  343. data/app/views/alchemy/admin/elements/publish.js.erb +0 -21
  344. data/app/views/alchemy/admin/elements/update.js.erb +0 -27
  345. data/vendor/assets/fonts/fa-regular-400.eot +0 -0
  346. data/vendor/assets/fonts/fa-regular-400.svg +0 -803
  347. data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
  348. data/vendor/assets/fonts/fa-regular-400.woff +0 -0
  349. data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
  350. data/vendor/assets/fonts/fa-solid-900.eot +0 -0
  351. data/vendor/assets/fonts/fa-solid-900.svg +0 -4938
  352. data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
  353. data/vendor/assets/fonts/fa-solid-900.woff +0 -0
  354. data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
  355. data/vendor/assets/javascripts/clipboard.min.js +0 -7
  356. data/vendor/assets/javascripts/fileupload/jquery.fileupload-process.js +0 -178
  357. data/vendor/assets/javascripts/fileupload/jquery.fileupload-validate.js +0 -125
  358. data/vendor/assets/javascripts/fileupload/jquery.fileupload.js +0 -1502
  359. data/vendor/assets/javascripts/fileupload/jquery.iframe-transport.js +0 -224
  360. data/vendor/assets/javascripts/jquery-ui/data.js +0 -45
  361. data/vendor/assets/javascripts/jquery-ui/ie.js +0 -20
  362. data/vendor/assets/javascripts/jquery-ui/keycode.js +0 -51
  363. data/vendor/assets/javascripts/jquery-ui/plugin.js +0 -49
  364. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +0 -46
  365. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +0 -27
  366. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +0 -50
  367. data/vendor/assets/javascripts/jquery-ui/unique-id.js +0 -54
  368. data/vendor/assets/javascripts/jquery-ui/version.js +0 -20
  369. data/vendor/assets/javascripts/jquery-ui/widget.js +0 -754
  370. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +0 -1268
  371. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +0 -241
  372. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +0 -1623
  373. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +0 -931
  374. data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +0 -7
  375. data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +0 -296
  376. data/vendor/assets/javascripts/keymaster.js +0 -296
  377. data/vendor/assets/javascripts/requestAnimationFrame.js +0 -31
  378. data/vendor/assets/javascripts/tinymce/license.txt +0 -504
  379. data/vendor/assets/javascripts/tinymce/tinymce.min.js +0 -2
  380. data/vendor/assets/stylesheets/fontawesome/_animated.scss +0 -20
  381. data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +0 -20
  382. data/vendor/assets/stylesheets/fontawesome/_core.scss +0 -21
  383. data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +0 -6
  384. data/vendor/assets/stylesheets/fontawesome/_icons.scss +0 -1441
  385. data/vendor/assets/stylesheets/fontawesome/_larger.scss +0 -23
  386. data/vendor/assets/stylesheets/fontawesome/_list.scss +0 -18
  387. data/vendor/assets/stylesheets/fontawesome/_mixins.scss +0 -56
  388. data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +0 -24
  389. data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +0 -5
  390. data/vendor/assets/stylesheets/fontawesome/_stacked.scss +0 -31
  391. data/vendor/assets/stylesheets/fontawesome/_variables.scss +0 -1458
  392. data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +0 -16
  393. data/vendor/assets/stylesheets/fontawesome/regular.scss +0 -23
  394. data/vendor/assets/stylesheets/fontawesome/solid.scss +0 -24
@@ -0,0 +1,3798 @@
1
+ /**
2
+ * Copyright (c) Tiny Technologies, Inc. All rights reserved.
3
+ * Licensed under the LGPL or a commercial license.
4
+ * For LGPL see License.txt in the project root for license information.
5
+ * For commercial licenses see https://www.tiny.cloud/
6
+ */
7
+
8
+ @import "alchemy/variables";
9
+
10
+ .tox {
11
+ box-shadow: none;
12
+ box-sizing: content-box;
13
+ color: #000;
14
+ cursor: auto;
15
+ font-family: $default-font-family;
16
+ font-size: 13px;
17
+ font-style: normal;
18
+ font-weight: 400;
19
+ line-height: normal;
20
+ -webkit-tap-highlight-color: transparent;
21
+ text-decoration: none;
22
+ text-shadow: none;
23
+ text-transform: none;
24
+ vertical-align: initial;
25
+ white-space: normal;
26
+ }
27
+
28
+ .tox :not(svg):not(rect) {
29
+ box-sizing: inherit;
30
+ color: inherit;
31
+ cursor: inherit;
32
+ direction: inherit;
33
+ font-family: inherit;
34
+ font-size: inherit;
35
+ font-style: inherit;
36
+ font-weight: inherit;
37
+ line-height: inherit;
38
+ -webkit-tap-highlight-color: inherit;
39
+ text-align: inherit;
40
+ text-decoration: inherit;
41
+ text-shadow: inherit;
42
+ text-transform: inherit;
43
+ vertical-align: inherit;
44
+ white-space: inherit;
45
+ }
46
+
47
+ .tox :not(svg):not(rect) {
48
+ background: 0 0;
49
+ border: 0;
50
+ box-shadow: none;
51
+ float: none;
52
+ height: auto;
53
+ margin: 0;
54
+ max-width: none;
55
+ outline: 0;
56
+ padding: 0;
57
+ position: static;
58
+ width: auto;
59
+ }
60
+
61
+ .tox:not([dir="rtl"]) {
62
+ direction: ltr;
63
+ text-align: left;
64
+ }
65
+
66
+ .tox[dir="rtl"] {
67
+ direction: rtl;
68
+ text-align: right;
69
+ }
70
+
71
+ .tox-tinymce {
72
+ border: $default-border;
73
+ border-radius: $default-border-radius;
74
+ box-shadow: none;
75
+ box-sizing: border-box;
76
+ display: flex;
77
+ flex-direction: column;
78
+ font-family: $default-font-family;
79
+ overflow: hidden;
80
+ position: relative;
81
+ visibility: inherit !important;
82
+ }
83
+
84
+ .tox-tinymce-inline {
85
+ border: none;
86
+ box-shadow: none;
87
+ }
88
+
89
+ .tox-tinymce-inline .tox-editor-header {
90
+ background-color: transparent;
91
+ border: $default-border;
92
+ border-radius: $default-border-radius;
93
+ box-shadow: none;
94
+ }
95
+
96
+ .tox-tinymce-aux {
97
+ font-family: $default-font-family;
98
+ z-index: 1300;
99
+ }
100
+
101
+ .tox-tinymce :focus,
102
+ .tox-tinymce-aux :focus {
103
+ outline: 0;
104
+ }
105
+
106
+ button::-moz-focus-inner {
107
+ border: 0;
108
+ }
109
+
110
+ .tox[dir="rtl"] .tox-icon--flip svg {
111
+ transform: rotateY(180deg);
112
+ }
113
+
114
+ .tox .accessibility-issue__header {
115
+ align-items: center;
116
+ display: flex;
117
+ margin-bottom: 3.25px;
118
+ }
119
+
120
+ .tox .accessibility-issue__description {
121
+ align-items: stretch;
122
+ border: $default-border;
123
+ border-radius: $default-border-radius;
124
+ display: flex;
125
+ justify-content: space-between;
126
+ }
127
+
128
+ .tox .accessibility-issue__description > div {
129
+ padding-bottom: 3.25px;
130
+ }
131
+
132
+ .tox .accessibility-issue__description > div > div {
133
+ align-items: center;
134
+ display: flex;
135
+ margin-bottom: 3.25px;
136
+ }
137
+
138
+ .tox .accessibility-issue__description > :last-child:not(:only-child) {
139
+ border-color: rgba(175, 175, 175, 0.5);
140
+ border-style: solid;
141
+ }
142
+
143
+ .tox .accessibility-issue__repair {
144
+ margin-top: 16px;
145
+ }
146
+
147
+ .tox
148
+ .tox-dialog__body-content
149
+ .accessibility-issue--info
150
+ .accessibility-issue__description {
151
+ background-color: rgba(45, 90, 141, 0.1);
152
+ border-color: rgba(45, 90, 141, 0.4);
153
+ color: #000;
154
+ }
155
+
156
+ .tox
157
+ .tox-dialog__body-content
158
+ .accessibility-issue--info
159
+ .accessibility-issue__description
160
+ > :last-child {
161
+ border-color: rgba(45, 90, 141, 0.4);
162
+ }
163
+
164
+ .tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
165
+ color: #2d5a8d;
166
+ }
167
+
168
+ .tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
169
+ fill: #2d5a8d;
170
+ }
171
+
172
+ .tox .tox-dialog__body-content .accessibility-issue--info a .tox-icon {
173
+ color: #2d5a8d;
174
+ }
175
+
176
+ .tox
177
+ .tox-dialog__body-content
178
+ .accessibility-issue--warn
179
+ .accessibility-issue__description {
180
+ background-color: rgba(255, 165, 0, 0.1);
181
+ border-color: rgba(255, 165, 0, 0.5);
182
+ color: #000;
183
+ }
184
+
185
+ .tox
186
+ .tox-dialog__body-content
187
+ .accessibility-issue--warn
188
+ .accessibility-issue__description
189
+ > :last-child {
190
+ border-color: rgba(255, 165, 0, 0.5);
191
+ }
192
+
193
+ .tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
194
+ color: #cc8500;
195
+ }
196
+
197
+ .tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
198
+ fill: #cc8500;
199
+ }
200
+
201
+ .tox .tox-dialog__body-content .accessibility-issue--warn a .tox-icon {
202
+ color: #cc8500;
203
+ }
204
+
205
+ .tox
206
+ .tox-dialog__body-content
207
+ .accessibility-issue--error
208
+ .accessibility-issue__description {
209
+ background-color: rgba(239, 211, 211, 0.1);
210
+ border-color: rgba(239, 211, 211, 0.4);
211
+ color: #000;
212
+ }
213
+
214
+ .tox
215
+ .tox-dialog__body-content
216
+ .accessibility-issue--error
217
+ .accessibility-issue__description
218
+ > :last-child {
219
+ border-color: rgba(239, 211, 211, 0.4);
220
+ }
221
+
222
+ .tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
223
+ color: #efd3d3;
224
+ }
225
+
226
+ .tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
227
+ fill: #efd3d3;
228
+ }
229
+
230
+ .tox .tox-dialog__body-content .accessibility-issue--error a .tox-icon {
231
+ color: #efd3d3;
232
+ }
233
+
234
+ .tox
235
+ .tox-dialog__body-content
236
+ .accessibility-issue--success
237
+ .accessibility-issue__description {
238
+ background-color: rgba(226, 239, 211, 0.1);
239
+ border-color: rgba(226, 239, 211, 0.4);
240
+ color: #000;
241
+ }
242
+
243
+ .tox
244
+ .tox-dialog__body-content
245
+ .accessibility-issue--success
246
+ .accessibility-issue__description
247
+ > :last-child {
248
+ border-color: rgba(226, 239, 211, 0.4);
249
+ }
250
+
251
+ .tox
252
+ .tox-dialog__body-content
253
+ .accessibility-issue--success
254
+ .tox-form__group
255
+ h2 {
256
+ color: #e2efd3;
257
+ }
258
+
259
+ .tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
260
+ fill: #e2efd3;
261
+ }
262
+
263
+ .tox .tox-dialog__body-content .accessibility-issue--success a .tox-icon {
264
+ color: #e2efd3;
265
+ }
266
+
267
+ .tox .tox-dialog__body-content .accessibility-issue__header h1,
268
+ .tox
269
+ .tox-dialog__body-content
270
+ .tox-form__group
271
+ .accessibility-issue__description
272
+ h2 {
273
+ margin-top: 0;
274
+ }
275
+
276
+ .tox:not([dir="rtl"])
277
+ .tox-dialog__body-content
278
+ .accessibility-issue__header
279
+ .tox-button {
280
+ margin-left: 3.25px;
281
+ }
282
+
283
+ .tox:not([dir="rtl"])
284
+ .tox-dialog__body-content
285
+ .accessibility-issue__header
286
+ > :nth-last-child(2) {
287
+ margin-left: auto;
288
+ }
289
+
290
+ .tox:not([dir="rtl"])
291
+ .tox-dialog__body-content
292
+ .accessibility-issue__description {
293
+ padding: 3.25px 3.25px 3.25px 6.5px;
294
+ }
295
+
296
+ .tox:not([dir="rtl"])
297
+ .tox-dialog__body-content
298
+ .accessibility-issue__description
299
+ > :last-child {
300
+ border-left-width: 1px;
301
+ padding-left: 3.25px;
302
+ }
303
+
304
+ .tox[dir="rtl"]
305
+ .tox-dialog__body-content
306
+ .accessibility-issue__header
307
+ .tox-button {
308
+ margin-right: 3.25px;
309
+ }
310
+
311
+ .tox[dir="rtl"]
312
+ .tox-dialog__body-content
313
+ .accessibility-issue__header
314
+ > :nth-last-child(2) {
315
+ margin-right: auto;
316
+ }
317
+
318
+ .tox[dir="rtl"] .tox-dialog__body-content .accessibility-issue__description {
319
+ padding: 3.25px 6.5px 3.25px 3.25px;
320
+ }
321
+
322
+ .tox[dir="rtl"]
323
+ .tox-dialog__body-content
324
+ .accessibility-issue__description
325
+ > :last-child {
326
+ border-right-width: 1px;
327
+ padding-right: 3.25px;
328
+ }
329
+
330
+ .tox .tox-anchorbar {
331
+ display: flex;
332
+ flex: 0 0 auto;
333
+ }
334
+
335
+ .tox .tox-bar {
336
+ display: flex;
337
+ flex: 0 0 auto;
338
+ }
339
+
340
+ .tox .tox-button {
341
+ background-color: $button-bg-color;
342
+ background-image: none;
343
+ background-position: 0 0;
344
+ background-repeat: repeat;
345
+ border-color: $button-border-color;
346
+ border-radius: $button-border-radius;
347
+ border-style: solid;
348
+ border-width: $button-border-width;
349
+ box-shadow: $button-box-shadow;
350
+ box-sizing: border-box;
351
+ color: $button-text-color;
352
+ cursor: pointer;
353
+ display: inline-block;
354
+ font-family: $default-font-family;
355
+ font-size: $base-font-size;
356
+ font-style: normal;
357
+ font-weight: $button-font-weight;
358
+ letter-spacing: normal;
359
+ line-height: 24px;
360
+ margin: 0;
361
+ outline: 0;
362
+ padding: $button-padding;
363
+ text-align: center;
364
+ text-decoration: none;
365
+ text-transform: none;
366
+ white-space: nowrap;
367
+ }
368
+
369
+ .tox .tox-button[disabled] {
370
+ background-color: #2d5a8d;
371
+ background-image: none;
372
+ border-color: #2d5a8d;
373
+ box-shadow: none;
374
+ color: rgba(255, 255, 255, 0.5);
375
+ cursor: not-allowed;
376
+ }
377
+
378
+ .tox .tox-button:focus:not(:disabled) {
379
+ background-color: #274e7a;
380
+ background-image: none;
381
+ border-color: #274e7a;
382
+ box-shadow: none;
383
+ color: #fff;
384
+ }
385
+
386
+ .tox .tox-button:hover:not(:disabled) {
387
+ background-color: $button-hover-bg-color;
388
+ background-image: none;
389
+ border-color: $button-hover-border-color;
390
+ box-shadow: none;
391
+ color: $button-text-color;
392
+ }
393
+
394
+ .tox .tox-button:active:not(:disabled) {
395
+ background-color: $button-hover-bg-color;
396
+ background-image: none;
397
+ border-color: $button-hover-border-color;
398
+ box-shadow: none;
399
+ color: $button-text-color;
400
+ }
401
+
402
+ .tox .tox-button--secondary {
403
+ background-color: $secondary-button-bg-color;
404
+ background-image: none;
405
+ background-position: 0 0;
406
+ background-repeat: repeat;
407
+ border-color: $secondary-button-border-color;
408
+ border-radius: $default-border-radius;
409
+ border-style: solid;
410
+ border-width: $button-border-width;
411
+ box-shadow: none;
412
+ color: $secondary-button-text-color;
413
+ font-size: $default-font-size;
414
+ font-style: normal;
415
+ font-weight: $button-font-weight;
416
+ letter-spacing: normal;
417
+ outline: 0;
418
+ padding: $button-padding;
419
+ text-decoration: none;
420
+ text-transform: none;
421
+ }
422
+
423
+ .tox .tox-button--secondary[disabled] {
424
+ background-color: #f0f0f0;
425
+ background-image: none;
426
+ border-color: #f0f0f0;
427
+ box-shadow: none;
428
+ color: rgba(0, 0, 0, 0.5);
429
+ }
430
+
431
+ .tox .tox-button--secondary:focus:not(:disabled) {
432
+ background-color: #e3e3e3;
433
+ background-image: none;
434
+ border-color: #e3e3e3;
435
+ box-shadow: none;
436
+ color: #000;
437
+ }
438
+
439
+ .tox .tox-button--secondary:hover:not(:disabled) {
440
+ background-color: #e3e3e3;
441
+ background-image: none;
442
+ border-color: #e3e3e3;
443
+ box-shadow: none;
444
+ color: #000;
445
+ }
446
+
447
+ .tox .tox-button--secondary:active:not(:disabled) {
448
+ background-color: #d6d6d6;
449
+ background-image: none;
450
+ border-color: #d6d6d6;
451
+ box-shadow: none;
452
+ color: #000;
453
+ }
454
+
455
+ .tox .tox-button--icon,
456
+ .tox .tox-button.tox-button--icon,
457
+ .tox .tox-button.tox-button--secondary.tox-button--icon {
458
+ padding: 3.25px;
459
+ }
460
+
461
+ .tox .tox-button--icon .tox-icon svg,
462
+ .tox .tox-button.tox-button--icon .tox-icon svg,
463
+ .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
464
+ display: block;
465
+ fill: currentColor;
466
+ }
467
+
468
+ .tox .tox-button-link {
469
+ background: 0;
470
+ border: none;
471
+ box-sizing: border-box;
472
+ cursor: pointer;
473
+ display: inline-block;
474
+ font-family: $default-font-family;
475
+ font-size: 13px;
476
+ font-weight: 400;
477
+ line-height: 1.3;
478
+ margin: 0;
479
+ padding: 0;
480
+ white-space: nowrap;
481
+ }
482
+
483
+ .tox .tox-button-link--sm {
484
+ font-size: $base-font-size;
485
+ }
486
+
487
+ .tox .tox-button--naked {
488
+ background-color: transparent;
489
+ border-color: transparent;
490
+ box-shadow: unset;
491
+ color: #000;
492
+ }
493
+
494
+ .tox .tox-button--naked[disabled] {
495
+ background-color: #f0f0f0;
496
+ border-color: #f0f0f0;
497
+ box-shadow: none;
498
+ color: rgba(0, 0, 0, 0.5);
499
+ }
500
+
501
+ .tox .tox-button--naked:hover:not(:disabled) {
502
+ background-color: #e3e3e3;
503
+ border-color: #e3e3e3;
504
+ box-shadow: none;
505
+ color: #000;
506
+ }
507
+
508
+ .tox .tox-button--naked:focus:not(:disabled) {
509
+ background-color: #e3e3e3;
510
+ border-color: #e3e3e3;
511
+ box-shadow: none;
512
+ color: #000;
513
+ }
514
+
515
+ .tox .tox-button--naked:active:not(:disabled) {
516
+ background-color: #d6d6d6;
517
+ border-color: #d6d6d6;
518
+ box-shadow: none;
519
+ color: #000;
520
+ }
521
+
522
+ .tox .tox-button--naked .tox-icon svg {
523
+ fill: currentColor;
524
+ }
525
+
526
+ .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
527
+ color: #000;
528
+ }
529
+
530
+ .tox .tox-checkbox {
531
+ align-items: center;
532
+ border-radius: $default-border-radius;
533
+ cursor: pointer;
534
+ display: flex;
535
+ height: 36px;
536
+ min-width: 36px;
537
+ }
538
+
539
+ .tox .tox-checkbox__input {
540
+ height: 1px;
541
+ overflow: hidden;
542
+ position: absolute;
543
+ top: auto;
544
+ width: 1px;
545
+ }
546
+
547
+ .tox .tox-checkbox__icons {
548
+ align-items: center;
549
+ border-radius: $default-border-radius;
550
+ box-shadow: 0 0 0 2px transparent;
551
+ box-sizing: content-box;
552
+ display: flex;
553
+ height: 24px;
554
+ justify-content: center;
555
+ padding: calc(3.25px - 1px);
556
+ width: 24px;
557
+ }
558
+
559
+ .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
560
+ display: block;
561
+ fill: rgba(0, 0, 0, 0.3);
562
+ }
563
+
564
+ .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
565
+ display: none;
566
+ fill: #2d5a8d;
567
+ }
568
+
569
+ .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
570
+ display: none;
571
+ fill: #2d5a8d;
572
+ }
573
+
574
+ .tox .tox-checkbox--disabled {
575
+ color: rgba(0, 0, 0, 0.5);
576
+ cursor: not-allowed;
577
+ }
578
+
579
+ .tox
580
+ .tox-checkbox--disabled
581
+ .tox-checkbox__icons
582
+ .tox-checkbox-icon__checked
583
+ svg {
584
+ fill: rgba(0, 0, 0, 0.5);
585
+ }
586
+
587
+ .tox
588
+ .tox-checkbox--disabled
589
+ .tox-checkbox__icons
590
+ .tox-checkbox-icon__unchecked
591
+ svg {
592
+ fill: rgba(0, 0, 0, 0.5);
593
+ }
594
+
595
+ .tox
596
+ .tox-checkbox--disabled
597
+ .tox-checkbox__icons
598
+ .tox-checkbox-icon__indeterminate
599
+ svg {
600
+ fill: rgba(0, 0, 0, 0.5);
601
+ }
602
+
603
+ .tox
604
+ input.tox-checkbox__input:checked
605
+ + .tox-checkbox__icons
606
+ .tox-checkbox-icon__unchecked
607
+ svg {
608
+ display: none;
609
+ }
610
+
611
+ .tox
612
+ input.tox-checkbox__input:checked
613
+ + .tox-checkbox__icons
614
+ .tox-checkbox-icon__checked
615
+ svg {
616
+ display: block;
617
+ }
618
+
619
+ .tox
620
+ input.tox-checkbox__input:indeterminate
621
+ + .tox-checkbox__icons
622
+ .tox-checkbox-icon__unchecked
623
+ svg {
624
+ display: none;
625
+ }
626
+
627
+ .tox
628
+ input.tox-checkbox__input:indeterminate
629
+ + .tox-checkbox__icons
630
+ .tox-checkbox-icon__indeterminate
631
+ svg {
632
+ display: block;
633
+ }
634
+
635
+ .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
636
+ border-radius: $default-border-radius;
637
+ box-shadow: inset 0 0 0 1px #2d5a8d;
638
+ padding: calc(3.25px - 1px);
639
+ }
640
+
641
+ .tox:not([dir="rtl"]) .tox-checkbox__label {
642
+ margin-left: 3.25px;
643
+ }
644
+
645
+ .tox:not([dir="rtl"]) .tox-checkbox__input {
646
+ left: -10000px;
647
+ }
648
+
649
+ .tox:not([dir="rtl"]) .tox-bar .tox-checkbox {
650
+ margin-left: 3.25px;
651
+ }
652
+
653
+ .tox[dir="rtl"] .tox-checkbox__label {
654
+ margin-right: 3.25px;
655
+ }
656
+
657
+ .tox[dir="rtl"] .tox-checkbox__input {
658
+ right: -10000px;
659
+ }
660
+
661
+ .tox[dir="rtl"] .tox-bar .tox-checkbox {
662
+ margin-right: 3.25px;
663
+ }
664
+
665
+ .tox .tox-collection--toolbar .tox-collection__group {
666
+ display: flex;
667
+ padding: 2px;
668
+ }
669
+
670
+ .tox .tox-collection--grid .tox-collection__group {
671
+ display: flex;
672
+ flex-wrap: wrap;
673
+ max-height: 208px;
674
+ overflow-x: hidden;
675
+ overflow-y: auto;
676
+ padding: 2px;
677
+ }
678
+
679
+ .tox .tox-collection--list .tox-collection__group {
680
+ border-bottom-width: 0;
681
+ border-color: rgba(175, 175, 175, 0.5);
682
+ border-left-width: 0;
683
+ border-right-width: 0;
684
+ border-style: solid;
685
+ border-top-width: 1px;
686
+ padding: 3.25px 0;
687
+ }
688
+
689
+ .tox .tox-collection--list .tox-collection__group:first-child {
690
+ border-top-width: 0;
691
+ }
692
+
693
+ .tox .tox-collection__group-heading {
694
+ background-color: rgba(201, 201, 201, 0.5);
695
+ color: rgba(0, 0, 0, 0.7);
696
+ cursor: default;
697
+ font-size: 12px;
698
+ font-style: normal;
699
+ font-weight: 400;
700
+ margin-bottom: 3.25px;
701
+ margin-top: -3.25px;
702
+ padding: 3.25px 6.5px;
703
+ text-transform: none;
704
+ -webkit-touch-callout: none;
705
+ -webkit-user-select: none;
706
+ -ms-user-select: none;
707
+ user-select: none;
708
+ }
709
+
710
+ .tox .tox-collection__item {
711
+ align-items: center;
712
+ color: #000;
713
+ cursor: pointer;
714
+ display: flex;
715
+ -webkit-touch-callout: none;
716
+ -webkit-user-select: none;
717
+ -ms-user-select: none;
718
+ user-select: none;
719
+ }
720
+
721
+ .tox .tox-collection--list .tox-collection__item {
722
+ padding: 3.25px 6.5px;
723
+ }
724
+
725
+ .tox .tox-collection--toolbar .tox-collection__item {
726
+ border-radius: $default-border-radius;
727
+ padding: 3.25px;
728
+ }
729
+
730
+ .tox .tox-collection--grid .tox-collection__item {
731
+ border-radius: $default-border-radius;
732
+ padding: 3.25px;
733
+ }
734
+
735
+ .tox .tox-collection--list .tox-collection__item--enabled {
736
+ background-color: rgba(175, 175, 175, 0.25);
737
+ color: $text-color;
738
+ }
739
+
740
+ .tox .tox-collection--toolbar .tox-collection__item--enabled {
741
+ background-color: rgba(175, 175, 175, 0.5);
742
+ color: $text-color;
743
+ }
744
+
745
+ .tox .tox-collection--toolbar .tox-collection__item--active {
746
+ background-color: rgba(175, 175, 175, 0.25);
747
+ }
748
+
749
+ .tox .tox-collection--grid .tox-collection__item--enabled {
750
+ background-color: rgba(175, 175, 175, 0.5);
751
+ color: $text-color;
752
+ }
753
+
754
+ .tox
755
+ .tox-collection--grid
756
+ .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
757
+ background-color: rgba(175, 175, 175, 0.25);
758
+ color: $text-color;
759
+ outline: none;
760
+ }
761
+
762
+ .tox
763
+ .tox-collection--list
764
+ .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
765
+ background-color: $select-hover-bg-color;
766
+ color: $select-hover-text-color;
767
+
768
+ .tox-collection__item-caret svg {
769
+ fill: $select-hover-text-color;
770
+ }
771
+ .tox-collection__item-accessory {
772
+ color: $select-hover-text-color;
773
+ }
774
+ }
775
+
776
+ .tox
777
+ .tox-collection--toolbar
778
+ .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
779
+ color: $text-color;
780
+ }
781
+
782
+ .tox .tox-collection__item-checkmark,
783
+ .tox .tox-collection__item-icon {
784
+ align-items: center;
785
+ display: flex;
786
+ height: $icon-button-medium-height;
787
+ justify-content: center;
788
+ width: $icon-button-medium-width;
789
+ font-size: 14px;
790
+ }
791
+
792
+ .tox .tox-collection__item-checkmark svg,
793
+ .tox .tox-collection__item-icon svg {
794
+ fill: currentColor;
795
+ }
796
+
797
+ .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
798
+ height: 48px;
799
+ width: 48px;
800
+ }
801
+
802
+ .tox .tox-collection__item-label {
803
+ color: currentColor;
804
+ display: inline-block;
805
+ flex: 1;
806
+ -ms-flex-preferred-size: auto;
807
+ font-size: $base-font-size;
808
+ font-style: normal;
809
+ font-weight: 400;
810
+ line-height: 24px;
811
+ text-transform: none;
812
+ word-break: break-all;
813
+
814
+ // Fix active select style, because Tinymce hard codes the color on the element
815
+ > * {
816
+ color: inherit !important;
817
+ }
818
+ }
819
+
820
+ .tox .tox-collection__item-accessory {
821
+ color: rgba(0, 0, 0, 0.7);
822
+ display: inline-block;
823
+ font-size: $base-font-size;
824
+ height: 24px;
825
+ line-height: 24px;
826
+ text-transform: none;
827
+ }
828
+
829
+ .tox .tox-collection__item-caret {
830
+ align-items: center;
831
+ display: flex;
832
+ min-height: 24px;
833
+ }
834
+
835
+ .tox .tox-collection__item-caret::after {
836
+ content: "";
837
+ font-size: 0;
838
+ min-height: inherit;
839
+ }
840
+
841
+ .tox .tox-collection__item-caret svg {
842
+ fill: #000;
843
+ }
844
+
845
+ .tox .tox-collection__item--state-disabled {
846
+ background-color: transparent;
847
+ color: rgba(0, 0, 0, 0.5);
848
+ cursor: not-allowed;
849
+ }
850
+
851
+ .tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
852
+ fill: rgba(0, 0, 0, 0.5);
853
+ }
854
+
855
+ .tox
856
+ .tox-collection--list
857
+ .tox-collection__item:not(.tox-collection__item--enabled)
858
+ .tox-collection__item-checkmark
859
+ svg {
860
+ display: none;
861
+ }
862
+
863
+ .tox
864
+ .tox-collection--list
865
+ .tox-collection__item:not(.tox-collection__item--enabled)
866
+ .tox-collection__item-accessory
867
+ + .tox-collection__item-checkmark {
868
+ display: none;
869
+ }
870
+
871
+ .tox .tox-collection--horizontal {
872
+ background-color: #fff;
873
+ border: $default-border;
874
+ border-radius: $default-border-radius;
875
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
876
+ display: flex;
877
+ flex: 0 0 auto;
878
+ flex-shrink: 0;
879
+ flex-wrap: nowrap;
880
+ margin-bottom: 0;
881
+ overflow-x: auto;
882
+ padding: 0;
883
+ }
884
+
885
+ .tox .tox-collection--horizontal .tox-collection__group {
886
+ align-items: center;
887
+ display: flex;
888
+ flex-wrap: nowrap;
889
+ margin: 0;
890
+ padding: 0 3.25px;
891
+ }
892
+
893
+ .tox .tox-collection--horizontal .tox-collection__item {
894
+ height: 34px;
895
+ margin: 2px 0 3px 0;
896
+ padding: 0 4px;
897
+ }
898
+
899
+ .tox .tox-collection--horizontal .tox-collection__item-label {
900
+ white-space: nowrap;
901
+ }
902
+
903
+ .tox .tox-collection--horizontal .tox-collection__item-caret {
904
+ margin-left: 4px;
905
+ }
906
+
907
+ .tox .tox-collection__item-container {
908
+ display: flex;
909
+ }
910
+
911
+ .tox .tox-collection__item-container--row {
912
+ align-items: center;
913
+ flex: 1 1 auto;
914
+ flex-direction: row;
915
+ }
916
+
917
+ .tox
918
+ .tox-collection__item-container--row.tox-collection__item-container--align-left {
919
+ margin-right: auto;
920
+ }
921
+
922
+ .tox
923
+ .tox-collection__item-container--row.tox-collection__item-container--align-right {
924
+ justify-content: flex-end;
925
+ margin-left: auto;
926
+ }
927
+
928
+ .tox
929
+ .tox-collection__item-container--row.tox-collection__item-container--valign-top {
930
+ align-items: flex-start;
931
+ margin-bottom: auto;
932
+ }
933
+
934
+ .tox
935
+ .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
936
+ align-items: center;
937
+ }
938
+
939
+ .tox
940
+ .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
941
+ align-items: flex-end;
942
+ margin-top: auto;
943
+ }
944
+
945
+ .tox .tox-collection__item-container--column {
946
+ -ms-grid-row-align: center;
947
+ align-self: center;
948
+ flex: 1 1 auto;
949
+ flex-direction: column;
950
+ }
951
+
952
+ .tox
953
+ .tox-collection__item-container--column.tox-collection__item-container--align-left {
954
+ align-items: flex-start;
955
+ }
956
+
957
+ .tox
958
+ .tox-collection__item-container--column.tox-collection__item-container--align-right {
959
+ align-items: flex-end;
960
+ }
961
+
962
+ .tox
963
+ .tox-collection__item-container--column.tox-collection__item-container--valign-top {
964
+ align-self: flex-start;
965
+ }
966
+
967
+ .tox
968
+ .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
969
+ -ms-grid-row-align: center;
970
+ align-self: center;
971
+ }
972
+
973
+ .tox
974
+ .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
975
+ align-self: flex-end;
976
+ }
977
+
978
+ .tox:not([dir="rtl"])
979
+ .tox-collection--horizontal
980
+ .tox-collection__group:not(:last-of-type) {
981
+ border-right: $default-border;
982
+ }
983
+
984
+ .tox:not([dir="rtl"])
985
+ .tox-collection--list
986
+ .tox-collection__item
987
+ > :not(:first-child) {
988
+ margin-left: 6.5px;
989
+ }
990
+
991
+ .tox:not([dir="rtl"])
992
+ .tox-collection--list
993
+ .tox-collection__item
994
+ > .tox-collection__item-label:first-child {
995
+ margin-left: 3.25px;
996
+ }
997
+
998
+ .tox:not([dir="rtl"]) .tox-collection__item-accessory {
999
+ margin-left: 13px;
1000
+ text-align: right;
1001
+ }
1002
+
1003
+ .tox:not([dir="rtl"]) .tox-collection .tox-collection__item-caret {
1004
+ margin-left: 13px;
1005
+ }
1006
+
1007
+ .tox[dir="rtl"]
1008
+ .tox-collection--horizontal
1009
+ .tox-collection__group:not(:last-of-type) {
1010
+ border-left: $default-border;
1011
+ }
1012
+
1013
+ .tox[dir="rtl"]
1014
+ .tox-collection--list
1015
+ .tox-collection__item
1016
+ > :not(:first-child) {
1017
+ margin-right: 6.5px;
1018
+ }
1019
+
1020
+ .tox[dir="rtl"]
1021
+ .tox-collection--list
1022
+ .tox-collection__item
1023
+ > .tox-collection__item-label:first-child {
1024
+ margin-right: 3.25px;
1025
+ }
1026
+
1027
+ .tox[dir="rtl"] .tox-collection__item-accessory {
1028
+ margin-right: 13px;
1029
+ text-align: left;
1030
+ }
1031
+
1032
+ .tox[dir="rtl"] .tox-collection .tox-collection__item-caret {
1033
+ margin-right: 13px;
1034
+ transform: rotateY(180deg);
1035
+ }
1036
+
1037
+ .tox[dir="rtl"] .tox-collection--horizontal .tox-collection__item-caret {
1038
+ margin-right: 4px;
1039
+ }
1040
+
1041
+ .tox .tox-color-picker-container {
1042
+ display: flex;
1043
+ flex-direction: row;
1044
+ height: 225px;
1045
+ margin: 0;
1046
+ }
1047
+
1048
+ .tox .tox-sv-palette {
1049
+ box-sizing: border-box;
1050
+ display: flex;
1051
+ height: 100%;
1052
+ }
1053
+
1054
+ .tox .tox-sv-palette-spectrum {
1055
+ height: 100%;
1056
+ }
1057
+
1058
+ .tox .tox-sv-palette,
1059
+ .tox .tox-sv-palette-spectrum {
1060
+ width: 225px;
1061
+ }
1062
+
1063
+ .tox .tox-sv-palette-thumb {
1064
+ background: 0 0;
1065
+ border: 1px solid #000;
1066
+ border-radius: 50%;
1067
+ box-sizing: content-box;
1068
+ height: 12px;
1069
+ position: absolute;
1070
+ width: 12px;
1071
+ }
1072
+
1073
+ .tox .tox-sv-palette-inner-thumb {
1074
+ border: 1px solid #fff;
1075
+ border-radius: 50%;
1076
+ height: 10px;
1077
+ position: absolute;
1078
+ width: 10px;
1079
+ }
1080
+
1081
+ .tox .tox-hue-slider {
1082
+ box-sizing: border-box;
1083
+ height: 100%;
1084
+ width: 25px;
1085
+ }
1086
+
1087
+ .tox .tox-hue-slider-spectrum {
1088
+ background: linear-gradient(
1089
+ to bottom,
1090
+ red,
1091
+ #ff0080,
1092
+ #f0f,
1093
+ #8000ff,
1094
+ #00f,
1095
+ #0080ff,
1096
+ #0ff,
1097
+ #00ff80,
1098
+ #0f0,
1099
+ #80ff00,
1100
+ #ff0,
1101
+ #ff8000,
1102
+ red
1103
+ );
1104
+ height: 100%;
1105
+ width: 100%;
1106
+ }
1107
+
1108
+ .tox .tox-hue-slider,
1109
+ .tox .tox-hue-slider-spectrum {
1110
+ width: 20px;
1111
+ }
1112
+
1113
+ .tox .tox-hue-slider-thumb {
1114
+ background: #fff;
1115
+ border: 1px solid #000;
1116
+ box-sizing: content-box;
1117
+ height: 4px;
1118
+ width: 100%;
1119
+ }
1120
+
1121
+ .tox .tox-rgb-form {
1122
+ display: flex;
1123
+ flex-direction: column;
1124
+ justify-content: space-between;
1125
+ }
1126
+
1127
+ .tox .tox-rgb-form div {
1128
+ align-items: center;
1129
+ display: flex;
1130
+ justify-content: space-between;
1131
+ margin-bottom: 5px;
1132
+ width: inherit;
1133
+ }
1134
+
1135
+ .tox .tox-rgb-form input {
1136
+ width: 6em;
1137
+ }
1138
+
1139
+ .tox .tox-rgb-form input.tox-invalid {
1140
+ border: 1px solid red !important;
1141
+ }
1142
+
1143
+ .tox .tox-rgb-form .tox-rgba-preview {
1144
+ border: 1px solid #000;
1145
+ flex-grow: 2;
1146
+ margin-bottom: 0;
1147
+ }
1148
+
1149
+ .tox:not([dir="rtl"]) .tox-sv-palette {
1150
+ margin-right: 15px;
1151
+ }
1152
+
1153
+ .tox:not([dir="rtl"]) .tox-hue-slider {
1154
+ margin-right: 15px;
1155
+ }
1156
+
1157
+ .tox:not([dir="rtl"]) .tox-hue-slider-thumb {
1158
+ margin-left: -1px;
1159
+ }
1160
+
1161
+ .tox:not([dir="rtl"]) .tox-rgb-form label {
1162
+ margin-right: 0.5em;
1163
+ }
1164
+
1165
+ .tox[dir="rtl"] .tox-sv-palette {
1166
+ margin-left: 15px;
1167
+ }
1168
+
1169
+ .tox[dir="rtl"] .tox-hue-slider {
1170
+ margin-left: 15px;
1171
+ }
1172
+
1173
+ .tox[dir="rtl"] .tox-hue-slider-thumb {
1174
+ margin-right: -1px;
1175
+ }
1176
+
1177
+ .tox[dir="rtl"] .tox-rgb-form label {
1178
+ margin-left: 0.5em;
1179
+ }
1180
+
1181
+ .tox .tox-toolbar .tox-swatches,
1182
+ .tox .tox-toolbar__overflow .tox-swatches,
1183
+ .tox .tox-toolbar__primary .tox-swatches {
1184
+ margin: 2px 0 3px 4px;
1185
+ }
1186
+
1187
+ .tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
1188
+ border: 0;
1189
+ margin: -3.25px 0;
1190
+ }
1191
+
1192
+ .tox .tox-swatches__row {
1193
+ display: flex;
1194
+ }
1195
+
1196
+ .tox .tox-swatch {
1197
+ height: 30px;
1198
+ transition:
1199
+ transform 0.15s,
1200
+ box-shadow 0.15s;
1201
+ width: 30px;
1202
+ }
1203
+
1204
+ .tox .tox-swatch:focus,
1205
+ .tox .tox-swatch:hover {
1206
+ box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
1207
+ transform: scale(0.8);
1208
+ }
1209
+
1210
+ .tox .tox-swatch--remove {
1211
+ align-items: center;
1212
+ display: flex;
1213
+ justify-content: center;
1214
+ }
1215
+
1216
+ .tox .tox-swatch--remove svg path {
1217
+ stroke: #e74c3c;
1218
+ }
1219
+
1220
+ .tox .tox-swatches__picker-btn {
1221
+ align-items: center;
1222
+ background-color: transparent;
1223
+ border: 0;
1224
+ cursor: pointer;
1225
+ display: flex;
1226
+ height: 30px;
1227
+ justify-content: center;
1228
+ outline: 0;
1229
+ padding: 0;
1230
+ width: 30px;
1231
+ }
1232
+
1233
+ .tox .tox-swatches__picker-btn svg {
1234
+ height: 24px;
1235
+ width: 24px;
1236
+ }
1237
+
1238
+ .tox .tox-swatches__picker-btn:hover {
1239
+ background: rgba(175, 175, 175, 0.25);
1240
+ }
1241
+
1242
+ .tox:not([dir="rtl"]) .tox-swatches__picker-btn {
1243
+ margin-left: auto;
1244
+ }
1245
+
1246
+ .tox[dir="rtl"] .tox-swatches__picker-btn {
1247
+ margin-right: auto;
1248
+ }
1249
+
1250
+ .tox .tox-comment-thread {
1251
+ background: #fff;
1252
+ position: relative;
1253
+ }
1254
+
1255
+ .tox .tox-comment-thread > :not(:first-child) {
1256
+ margin-top: 6.5px;
1257
+ }
1258
+
1259
+ .tox .tox-comment {
1260
+ background: #fff;
1261
+ border: $default-border;
1262
+ border-radius: $default-border-radius;
1263
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
1264
+ padding: 6.5px 6.5px 13px 6.5px;
1265
+ position: relative;
1266
+ }
1267
+
1268
+ .tox .tox-comment__header {
1269
+ align-items: center;
1270
+ color: #000;
1271
+ display: flex;
1272
+ justify-content: space-between;
1273
+ }
1274
+
1275
+ .tox .tox-comment__date {
1276
+ color: rgba(0, 0, 0, 0.7);
1277
+ font-size: 12px;
1278
+ }
1279
+
1280
+ .tox .tox-comment__body {
1281
+ color: #000;
1282
+ font-size: $base-font-size;
1283
+ font-style: normal;
1284
+ font-weight: 400;
1285
+ line-height: 1.3;
1286
+ margin-top: 6.5px;
1287
+ position: relative;
1288
+ text-transform: initial;
1289
+ }
1290
+
1291
+ .tox .tox-comment__body textarea {
1292
+ resize: none;
1293
+ white-space: normal;
1294
+ width: 100%;
1295
+ }
1296
+
1297
+ .tox .tox-comment__expander {
1298
+ padding-top: 6.5px;
1299
+ }
1300
+
1301
+ .tox .tox-comment__expander p {
1302
+ color: rgba(0, 0, 0, 0.7);
1303
+ font-size: $base-font-size;
1304
+ font-style: normal;
1305
+ }
1306
+
1307
+ .tox .tox-comment__body p {
1308
+ margin: 0;
1309
+ }
1310
+
1311
+ .tox .tox-comment__buttonspacing {
1312
+ padding-top: 13px;
1313
+ text-align: center;
1314
+ }
1315
+
1316
+ .tox .tox-comment-thread__overlay::after {
1317
+ background: #fff;
1318
+ bottom: 0;
1319
+ content: "";
1320
+ display: flex;
1321
+ left: 0;
1322
+ opacity: 0.9;
1323
+ position: absolute;
1324
+ right: 0;
1325
+ top: 0;
1326
+ z-index: 5;
1327
+ }
1328
+
1329
+ .tox .tox-comment__reply {
1330
+ display: flex;
1331
+ flex-shrink: 0;
1332
+ flex-wrap: wrap;
1333
+ justify-content: flex-end;
1334
+ margin-top: 6.5px;
1335
+ }
1336
+
1337
+ .tox .tox-comment__reply > :first-child {
1338
+ margin-bottom: 6.5px;
1339
+ width: 100%;
1340
+ }
1341
+
1342
+ .tox .tox-comment__edit {
1343
+ display: flex;
1344
+ flex-wrap: wrap;
1345
+ justify-content: flex-end;
1346
+ margin-top: 13px;
1347
+ }
1348
+
1349
+ .tox .tox-comment__gradient::after {
1350
+ background: linear-gradient(rgba(255, 255, 255, 0), #fff);
1351
+ bottom: 0;
1352
+ content: "";
1353
+ display: block;
1354
+ height: 5em;
1355
+ margin-top: -40px;
1356
+ position: absolute;
1357
+ width: 100%;
1358
+ }
1359
+
1360
+ .tox .tox-comment__overlay {
1361
+ background: #fff;
1362
+ bottom: 0;
1363
+ display: flex;
1364
+ flex-direction: column;
1365
+ flex-grow: 1;
1366
+ left: 0;
1367
+ opacity: 0.9;
1368
+ position: absolute;
1369
+ right: 0;
1370
+ text-align: center;
1371
+ top: 0;
1372
+ z-index: 5;
1373
+ }
1374
+
1375
+ .tox .tox-comment__loading-text {
1376
+ align-items: center;
1377
+ color: #000;
1378
+ display: flex;
1379
+ flex-direction: column;
1380
+ position: relative;
1381
+ }
1382
+
1383
+ .tox .tox-comment__loading-text > div {
1384
+ padding-bottom: 13px;
1385
+ }
1386
+
1387
+ .tox .tox-comment__overlaytext {
1388
+ bottom: 0;
1389
+ flex-direction: column;
1390
+ font-size: $base-font-size;
1391
+ left: 0;
1392
+ padding: 1em;
1393
+ position: absolute;
1394
+ right: 0;
1395
+ top: 0;
1396
+ z-index: 10;
1397
+ }
1398
+
1399
+ .tox .tox-comment__overlaytext p {
1400
+ background-color: #fff;
1401
+ box-shadow: 0 0 8px 8px #fff;
1402
+ color: #000;
1403
+ text-align: center;
1404
+ }
1405
+
1406
+ .tox .tox-comment__overlaytext div:nth-of-type(2) {
1407
+ font-size: 0.8em;
1408
+ }
1409
+
1410
+ .tox .tox-comment__busy-spinner {
1411
+ align-items: center;
1412
+ background-color: #fff;
1413
+ bottom: 0;
1414
+ display: flex;
1415
+ justify-content: center;
1416
+ left: 0;
1417
+ position: absolute;
1418
+ right: 0;
1419
+ top: 0;
1420
+ z-index: 20;
1421
+ }
1422
+
1423
+ .tox .tox-comment__scroll {
1424
+ display: flex;
1425
+ flex-direction: column;
1426
+ flex-shrink: 1;
1427
+ overflow: auto;
1428
+ }
1429
+
1430
+ .tox .tox-conversations {
1431
+ margin: 6.5px;
1432
+ }
1433
+
1434
+ .tox:not([dir="rtl"]) .tox-comment__edit {
1435
+ margin-left: 6.5px;
1436
+ }
1437
+
1438
+ .tox:not([dir="rtl"]) .tox-comment__buttonspacing > :last-child,
1439
+ .tox:not([dir="rtl"]) .tox-comment__edit > :last-child,
1440
+ .tox:not([dir="rtl"]) .tox-comment__reply > :last-child {
1441
+ margin-left: 6.5px;
1442
+ }
1443
+
1444
+ .tox[dir="rtl"] .tox-comment__edit {
1445
+ margin-right: 6.5px;
1446
+ }
1447
+
1448
+ .tox[dir="rtl"] .tox-comment__buttonspacing > :last-child,
1449
+ .tox[dir="rtl"] .tox-comment__edit > :last-child,
1450
+ .tox[dir="rtl"] .tox-comment__reply > :last-child {
1451
+ margin-right: 6.5px;
1452
+ }
1453
+
1454
+ .tox .tox-user {
1455
+ align-items: center;
1456
+ display: flex;
1457
+ }
1458
+
1459
+ .tox .tox-user__avatar svg {
1460
+ fill: rgba(0, 0, 0, 0.7);
1461
+ }
1462
+
1463
+ .tox .tox-user__name {
1464
+ color: rgba(0, 0, 0, 0.7);
1465
+ font-size: 12px;
1466
+ font-style: normal;
1467
+ font-weight: 700;
1468
+ text-transform: uppercase;
1469
+ }
1470
+
1471
+ .tox:not([dir="rtl"]) .tox-user__avatar svg {
1472
+ margin-right: 6.5px;
1473
+ }
1474
+
1475
+ .tox:not([dir="rtl"]) .tox-user__avatar + .tox-user__name {
1476
+ margin-left: 6.5px;
1477
+ }
1478
+
1479
+ .tox[dir="rtl"] .tox-user__avatar svg {
1480
+ margin-left: 6.5px;
1481
+ }
1482
+
1483
+ .tox[dir="rtl"] .tox-user__avatar + .tox-user__name {
1484
+ margin-right: 6.5px;
1485
+ }
1486
+
1487
+ .tox .tox-dialog-wrap {
1488
+ align-items: center;
1489
+ bottom: 0;
1490
+ display: flex;
1491
+ justify-content: center;
1492
+ left: 0;
1493
+ position: fixed;
1494
+ right: 0;
1495
+ top: 0;
1496
+ z-index: 1100;
1497
+ }
1498
+
1499
+ .tox .tox-dialog-wrap__backdrop {
1500
+ background-color: $dialog-overlay-color;
1501
+ opacity: $dialog-overlay-opacity;
1502
+ bottom: 0;
1503
+ left: 0;
1504
+ position: absolute;
1505
+ right: 0;
1506
+ top: 0;
1507
+ z-index: 1;
1508
+ }
1509
+
1510
+ .tox .tox-dialog-wrap__backdrop--opaque {
1511
+ background-color: $dialog-overlay-color;
1512
+ }
1513
+
1514
+ .tox .tox-dialog {
1515
+ background-color: $dialog-background-color;
1516
+ border-color: transparent;
1517
+ border-radius: $default-border-radius;
1518
+ border-style: solid;
1519
+ border-width: 0;
1520
+ box-shadow: $dialog-box-shadow;
1521
+ display: flex;
1522
+ flex-direction: column;
1523
+ max-height: 100%;
1524
+ max-width: 480px;
1525
+ overflow: hidden;
1526
+ position: relative;
1527
+ width: 95vw;
1528
+ z-index: 2;
1529
+ }
1530
+
1531
+ @media only screen and (max-width: 767px) {
1532
+ body:not(.tox-force-desktop) .tox .tox-dialog {
1533
+ align-self: flex-start;
1534
+ margin: 6.5px auto;
1535
+ width: calc(100vw - 13px);
1536
+ }
1537
+ }
1538
+
1539
+ .tox .tox-dialog-inline {
1540
+ z-index: 1100;
1541
+ }
1542
+
1543
+ .tox .tox-dialog__header {
1544
+ height: $dialog-header-height;
1545
+ align-items: center;
1546
+ background-color: $dialog-header-color;
1547
+ border-bottom: none;
1548
+ color: $dialog-header-text-color;
1549
+ display: flex;
1550
+ font-size: $dialog-header-font-size;
1551
+ justify-content: space-between;
1552
+ padding: $dialog-header-padding;
1553
+ position: relative;
1554
+ }
1555
+
1556
+ .tox .tox-dialog__header .tox-button {
1557
+ z-index: 1;
1558
+ color: $white;
1559
+ background-image: none; // If used in Solidus we need to override the background image
1560
+ border: none; // If used in Solidus we need to override the border
1561
+ }
1562
+
1563
+ .tox .tox-dialog__draghandle {
1564
+ cursor: grab;
1565
+ height: 100%;
1566
+ left: 0;
1567
+ position: absolute;
1568
+ top: 0;
1569
+ width: 100%;
1570
+ }
1571
+
1572
+ .tox .tox-dialog__draghandle:active {
1573
+ cursor: grabbing;
1574
+ }
1575
+
1576
+ .tox .tox-dialog__dismiss {
1577
+ margin-left: auto;
1578
+ }
1579
+
1580
+ .tox .tox-dialog__title {
1581
+ font-family: $default-font-family;
1582
+ font-size: 1em;
1583
+ font-style: normal;
1584
+ font-weight: bold;
1585
+ line-height: 1.3;
1586
+ margin: 0;
1587
+ padding-left: 6px;
1588
+ text-transform: none;
1589
+ }
1590
+
1591
+ .tox .tox-dialog__body {
1592
+ color: #000;
1593
+ display: flex;
1594
+ flex: 1;
1595
+ flex-direction: column;
1596
+ -ms-flex-preferred-size: auto;
1597
+ font-size: 13px;
1598
+ font-style: normal;
1599
+ font-weight: 400;
1600
+ line-height: 1.3;
1601
+ min-width: 0;
1602
+ text-align: left;
1603
+ text-transform: none;
1604
+ }
1605
+
1606
+ .tox .tox-dialog__body-nav {
1607
+ align-items: flex-start;
1608
+ display: flex;
1609
+ flex-direction: row;
1610
+ padding: 0;
1611
+ -webkit-overflow-scrolling: touch;
1612
+ overflow-x: auto;
1613
+ box-shadow: inset 0 -2px 0 var(--tabs_track-color);
1614
+ }
1615
+
1616
+ .tox .tox-dialog__body-nav-item {
1617
+ border-bottom: 2px solid transparent;
1618
+ color: var(--sl-color-neutral-600);
1619
+ display: inline-block;
1620
+ font-size: $base-font-size;
1621
+ line-height: 1.3;
1622
+ padding: 16px 15px;
1623
+ text-decoration: none;
1624
+ white-space: nowrap;
1625
+ border-bottom: 2px solid var(--tabs_track-color);
1626
+ }
1627
+
1628
+ .tox .tox-dialog__body-nav-item:hover {
1629
+ color: var(--sl-color-primary-600);
1630
+ }
1631
+
1632
+ .tox .tox-dialog__body-nav-item--active {
1633
+ border-bottom-color: var(--tabs_indicator-color);
1634
+ color: var(--sl-color-primary-600);
1635
+ }
1636
+
1637
+ .tox .tox-dialog__body-content {
1638
+ box-sizing: border-box;
1639
+ display: flex;
1640
+ flex: 1;
1641
+ flex-direction: column;
1642
+ -ms-flex-preferred-size: auto;
1643
+ max-height: 650px;
1644
+ overflow: auto;
1645
+ -webkit-overflow-scrolling: touch;
1646
+ padding: 13px 13px;
1647
+ }
1648
+
1649
+ .tox .tox-dialog__body-content > * {
1650
+ margin-bottom: 0;
1651
+ margin-top: 13px;
1652
+ }
1653
+
1654
+ .tox .tox-dialog__body-content > :first-child {
1655
+ margin-top: 0;
1656
+ }
1657
+
1658
+ .tox .tox-dialog__body-content > :last-child {
1659
+ margin-bottom: 0;
1660
+ }
1661
+
1662
+ .tox .tox-dialog__body-content > :only-child {
1663
+ margin-bottom: 0;
1664
+ margin-top: 0;
1665
+ }
1666
+
1667
+ .tox .tox-dialog__body-content a {
1668
+ color: #2d5a8d;
1669
+ cursor: pointer;
1670
+ text-decoration: none;
1671
+ }
1672
+
1673
+ .tox .tox-dialog__body-content a:focus,
1674
+ .tox .tox-dialog__body-content a:hover {
1675
+ color: #214166;
1676
+ text-decoration: none;
1677
+ }
1678
+
1679
+ .tox .tox-dialog__body-content a:active {
1680
+ color: #214166;
1681
+ text-decoration: none;
1682
+ }
1683
+
1684
+ .tox .tox-dialog__body-content svg {
1685
+ fill: #000;
1686
+ }
1687
+
1688
+ .tox .tox-dialog__body-content ul {
1689
+ display: block;
1690
+ list-style-type: disc;
1691
+ margin-bottom: 13px;
1692
+ -webkit-margin-end: 0;
1693
+ margin-inline-end: 0;
1694
+ -webkit-margin-start: 0;
1695
+ margin-inline-start: 0;
1696
+ -webkit-padding-start: 2.5rem;
1697
+ padding-inline-start: 2.5rem;
1698
+ }
1699
+
1700
+ .tox .tox-dialog__body-content .tox-form__group h1 {
1701
+ color: #000;
1702
+ font-size: 16.25px;
1703
+ font-style: normal;
1704
+ font-weight: 700;
1705
+ letter-spacing: normal;
1706
+ margin-bottom: 4 * $default-margin;
1707
+ margin-top: 2rem;
1708
+ text-transform: none;
1709
+ }
1710
+
1711
+ .tox .tox-dialog__body-content .tox-form__group h2 {
1712
+ color: #000;
1713
+ font-size: 13px;
1714
+ font-style: normal;
1715
+ font-weight: 700;
1716
+ letter-spacing: normal;
1717
+ margin-bottom: 4 * $default-margin;
1718
+ margin-top: 2rem;
1719
+ text-transform: none;
1720
+ }
1721
+
1722
+ .tox .tox-dialog__body-content .tox-form__group p {
1723
+ margin-bottom: 4 * $default-margin;
1724
+ }
1725
+
1726
+ .tox .tox-dialog__body-content .tox-form__group h1:first-child,
1727
+ .tox .tox-dialog__body-content .tox-form__group h2:first-child,
1728
+ .tox .tox-dialog__body-content .tox-form__group p:first-child {
1729
+ margin-top: 0;
1730
+ }
1731
+
1732
+ .tox .tox-dialog__body-content .tox-form__group h1:last-child,
1733
+ .tox .tox-dialog__body-content .tox-form__group h2:last-child,
1734
+ .tox .tox-dialog__body-content .tox-form__group p:last-child {
1735
+ margin-bottom: 0;
1736
+ }
1737
+
1738
+ .tox .tox-dialog__body-content .tox-form__group h1:only-child,
1739
+ .tox .tox-dialog__body-content .tox-form__group h2:only-child,
1740
+ .tox .tox-dialog__body-content .tox-form__group p:only-child {
1741
+ margin-bottom: 0;
1742
+ margin-top: 0;
1743
+ }
1744
+
1745
+ .tox .tox-dialog--width-lg {
1746
+ height: 650px;
1747
+ max-width: 1200px;
1748
+ }
1749
+
1750
+ .tox .tox-dialog--width-md {
1751
+ max-width: 800px;
1752
+ }
1753
+
1754
+ .tox .tox-dialog--width-md .tox-dialog__body-content {
1755
+ overflow: auto;
1756
+ }
1757
+
1758
+ .tox .tox-dialog__body-content--centered {
1759
+ text-align: center;
1760
+ }
1761
+
1762
+ .tox .tox-dialog__footer {
1763
+ align-items: center;
1764
+ background-color: $dialog-background-color;
1765
+ border-top: none;
1766
+ display: flex;
1767
+ justify-content: space-between;
1768
+ padding: 6.5px 13px;
1769
+ }
1770
+
1771
+ .tox .tox-dialog__footer-end,
1772
+ .tox .tox-dialog__footer-start {
1773
+ display: flex;
1774
+ }
1775
+
1776
+ .tox .tox-dialog__busy-spinner {
1777
+ align-items: center;
1778
+ background-color: rgba(255, 255, 255, 0.75);
1779
+ bottom: 0;
1780
+ display: flex;
1781
+ justify-content: center;
1782
+ left: 0;
1783
+ position: absolute;
1784
+ right: 0;
1785
+ top: 0;
1786
+ z-index: 3;
1787
+ }
1788
+
1789
+ .tox .tox-dialog__table {
1790
+ border-collapse: collapse;
1791
+ width: 100%;
1792
+ }
1793
+
1794
+ .tox .tox-dialog__table thead th {
1795
+ font-weight: 700;
1796
+ padding-bottom: 6.5px;
1797
+ }
1798
+
1799
+ .tox .tox-dialog__table tbody tr {
1800
+ border-bottom: $default-border;
1801
+ }
1802
+
1803
+ .tox .tox-dialog__table tbody tr:last-child {
1804
+ border-bottom: none;
1805
+ }
1806
+
1807
+ .tox .tox-dialog__table td {
1808
+ padding-bottom: 6.5px;
1809
+ padding-top: 6.5px;
1810
+ }
1811
+
1812
+ .tox .tox-dialog__popups {
1813
+ position: absolute;
1814
+ width: 100%;
1815
+ z-index: 1100;
1816
+ }
1817
+
1818
+ .tox .tox-dialog__body-iframe {
1819
+ display: flex;
1820
+ flex: 1;
1821
+ flex-direction: column;
1822
+ -ms-flex-preferred-size: auto;
1823
+ }
1824
+
1825
+ .tox .tox-dialog__body-iframe .tox-navobj {
1826
+ display: flex;
1827
+ flex: 1;
1828
+ -ms-flex-preferred-size: auto;
1829
+ }
1830
+
1831
+ .tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
1832
+ flex: 1;
1833
+ -ms-flex-preferred-size: auto;
1834
+ height: 100%;
1835
+ }
1836
+
1837
+ .tox .tox-dialog-dock-fadeout {
1838
+ opacity: 0;
1839
+ visibility: hidden;
1840
+ }
1841
+
1842
+ .tox .tox-dialog-dock-fadein {
1843
+ opacity: 1;
1844
+ visibility: visible;
1845
+ }
1846
+
1847
+ .tox .tox-dialog-dock-transition {
1848
+ transition:
1849
+ visibility 0s linear 0.3s,
1850
+ opacity 0.3s ease;
1851
+ }
1852
+
1853
+ .tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
1854
+ transition-delay: 0s;
1855
+ }
1856
+
1857
+ .tox.tox-platform-ie .tox-dialog-wrap {
1858
+ position: -ms-device-fixed;
1859
+ }
1860
+
1861
+ @media only screen and (max-width: 767px) {
1862
+ body:not(.tox-force-desktop) .tox:not([dir="rtl"]) .tox-dialog__body-nav {
1863
+ margin-right: 0;
1864
+ }
1865
+ }
1866
+
1867
+ @media only screen and (max-width: 767px) {
1868
+ body:not(.tox-force-desktop)
1869
+ .tox:not([dir="rtl"])
1870
+ .tox-dialog__body-nav-item:not(:first-child) {
1871
+ margin-left: 6.5px;
1872
+ }
1873
+ }
1874
+
1875
+ .tox:not([dir="rtl"]) .tox-dialog__footer .tox-dialog__footer-end > *,
1876
+ .tox:not([dir="rtl"]) .tox-dialog__footer .tox-dialog__footer-start > * {
1877
+ margin-left: 6.5px;
1878
+ }
1879
+
1880
+ .tox[dir="rtl"] .tox-dialog__body {
1881
+ text-align: right;
1882
+ }
1883
+
1884
+ @media only screen and (max-width: 767px) {
1885
+ body:not(.tox-force-desktop) .tox[dir="rtl"] .tox-dialog__body-nav {
1886
+ margin-left: 0;
1887
+ }
1888
+ }
1889
+
1890
+ @media only screen and (max-width: 767px) {
1891
+ body:not(.tox-force-desktop)
1892
+ .tox[dir="rtl"]
1893
+ .tox-dialog__body-nav-item:not(:first-child) {
1894
+ margin-right: 6.5px;
1895
+ }
1896
+ }
1897
+
1898
+ .tox[dir="rtl"] .tox-dialog__footer .tox-dialog__footer-end > *,
1899
+ .tox[dir="rtl"] .tox-dialog__footer .tox-dialog__footer-start > * {
1900
+ margin-right: 6.5px;
1901
+ }
1902
+
1903
+ body.tox-dialog__disable-scroll {
1904
+ overflow: hidden;
1905
+ }
1906
+
1907
+ .tox .tox-dropzone-container {
1908
+ display: flex;
1909
+ flex: 1;
1910
+ -ms-flex-preferred-size: auto;
1911
+ }
1912
+
1913
+ .tox .tox-dropzone {
1914
+ align-items: center;
1915
+ background: #fff;
1916
+ border: 2px dashed rgba(175, 175, 175, 0.5);
1917
+ box-sizing: border-box;
1918
+ display: flex;
1919
+ flex-direction: column;
1920
+ flex-grow: 1;
1921
+ justify-content: center;
1922
+ min-height: 100px;
1923
+ padding: 10px;
1924
+ }
1925
+
1926
+ .tox .tox-dropzone p {
1927
+ color: rgba(0, 0, 0, 0.7);
1928
+ margin: 0 0 13px 0;
1929
+ }
1930
+
1931
+ .tox .tox-edit-area {
1932
+ display: flex;
1933
+ flex: 1;
1934
+ -ms-flex-preferred-size: auto;
1935
+ overflow: hidden;
1936
+ position: relative;
1937
+ }
1938
+
1939
+ .tox .tox-edit-area__iframe {
1940
+ background-color: #fff;
1941
+ border: 0;
1942
+ box-sizing: border-box;
1943
+ flex: 1;
1944
+ -ms-flex-preferred-size: auto;
1945
+ height: 100%;
1946
+ position: absolute;
1947
+ width: 100%;
1948
+ }
1949
+
1950
+ .tox.tox-inline-edit-area {
1951
+ border: 1px dotted rgba(175, 175, 175, 0.5);
1952
+ }
1953
+
1954
+ .tox .tox-editor-container {
1955
+ display: flex;
1956
+ flex: 1 1 auto;
1957
+ flex-direction: column;
1958
+ overflow: hidden;
1959
+ }
1960
+
1961
+ .tox .tox-editor-header {
1962
+ z-index: 1;
1963
+ }
1964
+
1965
+ .tox:not(.tox-tinymce-inline) .tox-editor-header {
1966
+ box-shadow: none;
1967
+ transition: box-shadow 0.5s;
1968
+ }
1969
+
1970
+ .tox.tox-tinymce--toolbar-bottom .tox-editor-header,
1971
+ .tox.tox-tinymce-inline .tox-editor-header {
1972
+ margin-bottom: -1px;
1973
+ }
1974
+
1975
+ .tox.tox-tinymce--toolbar-sticky-on .tox-editor-header {
1976
+ background-color: transparent;
1977
+ box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
1978
+ }
1979
+
1980
+ .tox-editor-dock-fadeout {
1981
+ opacity: 0;
1982
+ visibility: hidden;
1983
+ }
1984
+
1985
+ .tox-editor-dock-fadein {
1986
+ opacity: 1;
1987
+ visibility: visible;
1988
+ }
1989
+
1990
+ .tox-editor-dock-transition {
1991
+ transition:
1992
+ visibility 0s linear 0.25s,
1993
+ opacity 0.25s ease;
1994
+ }
1995
+
1996
+ .tox-editor-dock-transition.tox-editor-dock-fadein {
1997
+ transition-delay: 0s;
1998
+ }
1999
+
2000
+ .tox .tox-control-wrap {
2001
+ flex: 1;
2002
+ position: relative;
2003
+ }
2004
+
2005
+ .tox
2006
+ .tox-control-wrap:not(.tox-control-wrap--status-invalid)
2007
+ .tox-control-wrap__status-icon-invalid,
2008
+ .tox
2009
+ .tox-control-wrap:not(.tox-control-wrap--status-unknown)
2010
+ .tox-control-wrap__status-icon-unknown,
2011
+ .tox
2012
+ .tox-control-wrap:not(.tox-control-wrap--status-valid)
2013
+ .tox-control-wrap__status-icon-valid {
2014
+ display: none;
2015
+ }
2016
+
2017
+ .tox .tox-control-wrap svg {
2018
+ display: block;
2019
+ }
2020
+
2021
+ .tox .tox-control-wrap__status-icon-wrap {
2022
+ position: absolute;
2023
+ top: 50%;
2024
+ transform: translateY(-50%);
2025
+ }
2026
+
2027
+ .tox .tox-control-wrap__status-icon-invalid svg {
2028
+ fill: #efd3d3;
2029
+ }
2030
+
2031
+ .tox .tox-control-wrap__status-icon-unknown svg {
2032
+ fill: orange;
2033
+ }
2034
+
2035
+ .tox .tox-control-wrap__status-icon-valid svg {
2036
+ fill: green;
2037
+ }
2038
+
2039
+ .tox:not([dir="rtl"]) .tox-control-wrap--status-invalid .tox-textfield,
2040
+ .tox:not([dir="rtl"]) .tox-control-wrap--status-unknown .tox-textfield,
2041
+ .tox:not([dir="rtl"]) .tox-control-wrap--status-valid .tox-textfield {
2042
+ padding-right: 26px;
2043
+ }
2044
+
2045
+ .tox:not([dir="rtl"]) .tox-control-wrap__status-icon-wrap {
2046
+ right: 3.25px;
2047
+ }
2048
+
2049
+ .tox[dir="rtl"] .tox-control-wrap--status-invalid .tox-textfield,
2050
+ .tox[dir="rtl"] .tox-control-wrap--status-unknown .tox-textfield,
2051
+ .tox[dir="rtl"] .tox-control-wrap--status-valid .tox-textfield {
2052
+ padding-left: 26px;
2053
+ }
2054
+
2055
+ .tox[dir="rtl"] .tox-control-wrap__status-icon-wrap {
2056
+ left: 3.25px;
2057
+ }
2058
+
2059
+ .tox .tox-autocompleter {
2060
+ max-width: 25em;
2061
+ }
2062
+
2063
+ .tox .tox-autocompleter .tox-menu {
2064
+ max-width: 25em;
2065
+ }
2066
+
2067
+ .tox .tox-autocompleter .tox-autocompleter-highlight {
2068
+ font-weight: 700;
2069
+ }
2070
+
2071
+ .tox .tox-color-input {
2072
+ display: flex;
2073
+ position: relative;
2074
+ z-index: 1;
2075
+ }
2076
+
2077
+ .tox .tox-color-input .tox-textfield {
2078
+ z-index: -1;
2079
+ }
2080
+
2081
+ .tox .tox-color-input span {
2082
+ border-color: rgba(0, 0, 0, 0.2);
2083
+ border-radius: $default-border-radius;
2084
+ border-style: solid;
2085
+ border-width: 1px;
2086
+ box-shadow: none;
2087
+ box-sizing: border-box;
2088
+ height: 23px;
2089
+ position: absolute;
2090
+ top: 4px;
2091
+ width: 24px;
2092
+ }
2093
+
2094
+ .tox .tox-color-input span:focus:not([aria-disabled="true"]),
2095
+ .tox .tox-color-input span:hover:not([aria-disabled="true"]) {
2096
+ border-color: #2d5a8d;
2097
+ cursor: pointer;
2098
+ }
2099
+
2100
+ .tox .tox-color-input span::before {
2101
+ background-image: linear-gradient(
2102
+ 45deg,
2103
+ rgba(0, 0, 0, 0.25) 25%,
2104
+ transparent 25%
2105
+ ),
2106
+ linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%),
2107
+ linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%),
2108
+ linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%);
2109
+ background-position:
2110
+ -1px -1px,
2111
+ -1px 3px,
2112
+ 3px -5px,
2113
+ -5px -1px;
2114
+ background-size: 8px 8px;
2115
+ border: 1px solid #fff;
2116
+ border-radius: $default-border-radius;
2117
+ box-sizing: border-box;
2118
+ content: "";
2119
+ height: 24px;
2120
+ left: -1px;
2121
+ position: absolute;
2122
+ top: -1px;
2123
+ width: 24px;
2124
+ z-index: -1;
2125
+ }
2126
+
2127
+ .tox .tox-color-input span[aria-disabled="true"] {
2128
+ cursor: not-allowed;
2129
+ }
2130
+
2131
+ .tox:not([dir="rtl"]) .tox-color-input .tox-textfield {
2132
+ padding-left: 36px;
2133
+ }
2134
+
2135
+ .tox:not([dir="rtl"]) .tox-color-input span {
2136
+ left: 4px;
2137
+ }
2138
+
2139
+ .tox[dir="rtl"] .tox-color-input .tox-textfield {
2140
+ padding-right: 36px;
2141
+ }
2142
+
2143
+ .tox[dir="rtl"] .tox-color-input span {
2144
+ right: 4px;
2145
+ }
2146
+
2147
+ .tox .tox-label,
2148
+ .tox .tox-toolbar-label {
2149
+ color: rgba(0, 0, 0, 0.7);
2150
+ display: block;
2151
+ font-size: $base-font-size;
2152
+ font-style: normal;
2153
+ font-weight: 400;
2154
+ line-height: 1.3;
2155
+ padding: 0 6.5px 0 0;
2156
+ text-transform: none;
2157
+ white-space: nowrap;
2158
+ }
2159
+
2160
+ .tox .tox-toolbar-label {
2161
+ padding: 0 6.5px;
2162
+ }
2163
+
2164
+ .tox[dir="rtl"] .tox-label {
2165
+ padding: 0 0 0 6.5px;
2166
+ }
2167
+
2168
+ .tox .tox-form {
2169
+ display: flex;
2170
+ flex: 1;
2171
+ flex-direction: column;
2172
+ -ms-flex-preferred-size: auto;
2173
+ }
2174
+
2175
+ .tox .tox-form__group {
2176
+ box-sizing: border-box;
2177
+ margin-bottom: 4 * $default-margin;
2178
+ }
2179
+
2180
+ .tox .tox-form__group .tox-label {
2181
+ margin-bottom: $default-margin;
2182
+ }
2183
+
2184
+ .tox .tox-form-group--maximize {
2185
+ flex: 1;
2186
+ }
2187
+
2188
+ .tox .tox-form__group--error {
2189
+ color: #efd3d3;
2190
+ }
2191
+
2192
+ .tox .tox-form__group--collection {
2193
+ display: flex;
2194
+ }
2195
+
2196
+ .tox .tox-form__grid {
2197
+ display: flex;
2198
+ flex-direction: row;
2199
+ flex-wrap: wrap;
2200
+ justify-content: space-between;
2201
+ }
2202
+
2203
+ .tox .tox-form__grid--2col > .tox-form__group {
2204
+ width: calc(50% - (6.5px / 2));
2205
+ }
2206
+
2207
+ .tox .tox-form__grid--3col > .tox-form__group {
2208
+ width: calc(100% / 3 - (6.5px / 2));
2209
+ }
2210
+
2211
+ .tox .tox-form__grid--4col > .tox-form__group {
2212
+ width: calc(25% - (6.5px / 2));
2213
+ }
2214
+
2215
+ .tox .tox-form__controls-h-stack {
2216
+ align-items: center;
2217
+ display: flex;
2218
+ }
2219
+
2220
+ .tox .tox-form__group--inline {
2221
+ align-items: center;
2222
+ display: flex;
2223
+ }
2224
+
2225
+ .tox .tox-form__group--stretched {
2226
+ display: flex;
2227
+ flex: 1;
2228
+ flex-direction: column;
2229
+ -ms-flex-preferred-size: auto;
2230
+ }
2231
+
2232
+ .tox .tox-form__group--stretched .tox-textarea {
2233
+ flex: 1;
2234
+ -ms-flex-preferred-size: auto;
2235
+ }
2236
+
2237
+ .tox .tox-form__group--stretched .tox-navobj {
2238
+ display: flex;
2239
+ flex: 1;
2240
+ -ms-flex-preferred-size: auto;
2241
+ }
2242
+
2243
+ .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
2244
+ flex: 1;
2245
+ -ms-flex-preferred-size: auto;
2246
+ height: 100%;
2247
+ }
2248
+
2249
+ .tox:not([dir="rtl"]) .tox-form__controls-h-stack > :not(:first-child) {
2250
+ margin-left: 3.25px;
2251
+ }
2252
+
2253
+ .tox[dir="rtl"] .tox-form__controls-h-stack > :not(:first-child) {
2254
+ margin-right: 3.25px;
2255
+ }
2256
+
2257
+ .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
2258
+ .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
2259
+ display: none;
2260
+ }
2261
+
2262
+ .tox .tox-listboxfield .tox-listbox--select,
2263
+ .tox .tox-textarea,
2264
+ .tox .tox-textfield,
2265
+ .tox .tox-toolbar-textfield {
2266
+ -webkit-appearance: none;
2267
+ -moz-appearance: none;
2268
+ appearance: none;
2269
+ background-color: $form-field-background-color;
2270
+ background-image: none; // If nested in Solidus we need to override the background image
2271
+ border-color: $form-field-border-color;
2272
+ border-radius: $default-border-radius;
2273
+ border-style: $form-field-border-style;
2274
+ border-width: $form-field-border-width;
2275
+ box-shadow: none;
2276
+ box-sizing: border-box;
2277
+ color: $form-field-text-color;
2278
+ font-family: $default-font-family;
2279
+ font-size: $form-field-font-size;
2280
+ line-height: $form-field-line-height;
2281
+ margin: 0;
2282
+ min-height: $form-field-height;
2283
+ outline: 0;
2284
+ padding: $form-field-padding;
2285
+ resize: none;
2286
+ width: 100%;
2287
+
2288
+ // If nested in Solidus we need to override the background image
2289
+ &:hover {
2290
+ background-image: none;
2291
+ }
2292
+ }
2293
+
2294
+ .tox .tox-textarea[disabled],
2295
+ .tox .tox-textfield[disabled] {
2296
+ background-color: #f2f2f2;
2297
+ color: rgba(0, 0, 0, 0.85);
2298
+ cursor: not-allowed;
2299
+ }
2300
+
2301
+ .tox .tox-listboxfield .tox-listbox--select:focus,
2302
+ .tox .tox-textarea:focus,
2303
+ .tox .tox-textfield:focus {
2304
+ border-color: transparent;
2305
+ box-shadow: none;
2306
+ outline: 1px solid $focus-color !important; // Need to force the outline if used in Solidus
2307
+ }
2308
+
2309
+ .tox .tox-toolbar-textfield {
2310
+ border-width: 0;
2311
+ margin-bottom: 3px;
2312
+ margin-top: 2px;
2313
+ max-width: 250px;
2314
+ }
2315
+
2316
+ .tox .tox-naked-btn {
2317
+ background-color: transparent;
2318
+ border: 0;
2319
+ border-color: transparent;
2320
+ box-shadow: unset;
2321
+ color: #2d5a8d;
2322
+ cursor: pointer;
2323
+ display: block;
2324
+ margin: 0;
2325
+ padding: 0;
2326
+ }
2327
+
2328
+ .tox .tox-naked-btn svg {
2329
+ display: block;
2330
+ fill: #000;
2331
+ }
2332
+
2333
+ .tox:not([dir="rtl"]) .tox-toolbar-textfield + * {
2334
+ margin-left: 3.25px;
2335
+ }
2336
+
2337
+ .tox[dir="rtl"] .tox-toolbar-textfield + * {
2338
+ margin-right: 3.25px;
2339
+ }
2340
+
2341
+ .tox .tox-listboxfield {
2342
+ cursor: pointer;
2343
+ position: relative;
2344
+ }
2345
+
2346
+ .tox .tox-listboxfield .tox-listbox--select[disabled] {
2347
+ background-color: #f2f2f2;
2348
+ color: rgba(0, 0, 0, 0.85);
2349
+ cursor: not-allowed;
2350
+ }
2351
+
2352
+ .tox .tox-listbox__select-label {
2353
+ cursor: default;
2354
+ flex: 1;
2355
+ margin: 0 4px;
2356
+ }
2357
+
2358
+ .tox .tox-listbox__select-chevron {
2359
+ align-items: center;
2360
+ display: flex;
2361
+ justify-content: center;
2362
+ width: 13px;
2363
+ }
2364
+
2365
+ .tox .tox-listbox__select-chevron svg {
2366
+ fill: #000;
2367
+ }
2368
+
2369
+ .tox .tox-listboxfield .tox-listbox--select {
2370
+ align-items: center;
2371
+ display: flex;
2372
+ }
2373
+
2374
+ .tox:not([dir="rtl"]) .tox-listboxfield svg {
2375
+ right: 6.5px;
2376
+ }
2377
+
2378
+ .tox[dir="rtl"] .tox-listboxfield svg {
2379
+ left: 6.5px;
2380
+ }
2381
+
2382
+ .tox .tox-selectfield {
2383
+ cursor: pointer;
2384
+ position: relative;
2385
+ }
2386
+
2387
+ .tox .tox-selectfield select {
2388
+ -webkit-appearance: none;
2389
+ -moz-appearance: none;
2390
+ appearance: none;
2391
+ background-color: #fff;
2392
+ border-color: rgba(175, 175, 175, 0.5);
2393
+ border-radius: $default-border-radius;
2394
+ border-style: solid;
2395
+ border-width: 1px;
2396
+ box-shadow: none;
2397
+ box-sizing: border-box;
2398
+ color: #000;
2399
+ font-family: $default-font-family;
2400
+ font-size: 13px;
2401
+ line-height: 24px;
2402
+ margin: 0;
2403
+ min-height: 34px;
2404
+ outline: 0;
2405
+ padding: 5px 4px;
2406
+ resize: none;
2407
+ width: 100%;
2408
+ }
2409
+
2410
+ .tox .tox-selectfield select[disabled] {
2411
+ background-color: #f2f2f2;
2412
+ color: rgba(0, 0, 0, 0.85);
2413
+ cursor: not-allowed;
2414
+ }
2415
+
2416
+ .tox .tox-selectfield select::-ms-expand {
2417
+ display: none;
2418
+ }
2419
+
2420
+ .tox .tox-selectfield select:focus {
2421
+ background-color: #fff;
2422
+ border-color: #2d5a8d;
2423
+ box-shadow: none;
2424
+ outline: 0;
2425
+ }
2426
+
2427
+ .tox .tox-selectfield svg {
2428
+ pointer-events: none;
2429
+ position: absolute;
2430
+ top: 50%;
2431
+ transform: translateY(-50%);
2432
+ }
2433
+
2434
+ .tox:not([dir="rtl"]) .tox-selectfield select[size="0"],
2435
+ .tox:not([dir="rtl"]) .tox-selectfield select[size="1"] {
2436
+ padding-right: 19.5px;
2437
+ }
2438
+
2439
+ .tox:not([dir="rtl"]) .tox-selectfield svg {
2440
+ right: 6.5px;
2441
+ }
2442
+
2443
+ .tox[dir="rtl"] .tox-selectfield select[size="0"],
2444
+ .tox[dir="rtl"] .tox-selectfield select[size="1"] {
2445
+ padding-left: 19.5px;
2446
+ }
2447
+
2448
+ .tox[dir="rtl"] .tox-selectfield svg {
2449
+ left: 6.5px;
2450
+ }
2451
+
2452
+ .tox .tox-textarea {
2453
+ -webkit-appearance: textarea;
2454
+ -moz-appearance: textarea;
2455
+ appearance: textarea;
2456
+ white-space: pre-wrap;
2457
+ }
2458
+
2459
+ .tox-fullscreen {
2460
+ border: 0;
2461
+ height: 100%;
2462
+ margin: 0;
2463
+ overflow: hidden;
2464
+ -ms-scroll-chaining: none;
2465
+ overscroll-behavior: none;
2466
+ padding: 0;
2467
+ touch-action: pinch-zoom;
2468
+ width: 100%;
2469
+ }
2470
+
2471
+ .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
2472
+ display: none;
2473
+ }
2474
+
2475
+ .tox-shadowhost.tox-fullscreen,
2476
+ .tox.tox-tinymce.tox-fullscreen {
2477
+ left: 0;
2478
+ position: fixed;
2479
+ top: 0;
2480
+ z-index: 1200;
2481
+ }
2482
+
2483
+ .tox.tox-tinymce.tox-fullscreen {
2484
+ background-color: transparent;
2485
+ }
2486
+
2487
+ .tox-fullscreen .tox.tox-tinymce-aux,
2488
+ .tox-fullscreen ~ .tox.tox-tinymce-aux {
2489
+ z-index: 1201;
2490
+ }
2491
+
2492
+ .tox .tox-help__more-link {
2493
+ list-style: none;
2494
+ margin-top: 1em;
2495
+ }
2496
+
2497
+ .tox .tox-image-tools {
2498
+ width: 100%;
2499
+ }
2500
+
2501
+ .tox .tox-image-tools__toolbar {
2502
+ align-items: center;
2503
+ display: flex;
2504
+ justify-content: center;
2505
+ }
2506
+
2507
+ .tox .tox-image-tools__image {
2508
+ background-color: #666;
2509
+ height: 380px;
2510
+ overflow: auto;
2511
+ position: relative;
2512
+ width: 100%;
2513
+ }
2514
+
2515
+ .tox .tox-image-tools__image,
2516
+ .tox .tox-image-tools__image + .tox-image-tools__toolbar {
2517
+ margin-top: 6.5px;
2518
+ }
2519
+
2520
+ .tox .tox-image-tools__image-bg {
2521
+ background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
2522
+ }
2523
+
2524
+ .tox .tox-image-tools__toolbar > .tox-spacer {
2525
+ flex: 1;
2526
+ -ms-flex-preferred-size: auto;
2527
+ }
2528
+
2529
+ .tox .tox-croprect-block {
2530
+ background: #000;
2531
+ opacity: 0.5;
2532
+ position: absolute;
2533
+ zoom: 1;
2534
+ }
2535
+
2536
+ .tox .tox-croprect-handle {
2537
+ border: 2px solid #fff;
2538
+ height: 20px;
2539
+ left: 0;
2540
+ position: absolute;
2541
+ top: 0;
2542
+ width: 20px;
2543
+ }
2544
+
2545
+ .tox .tox-croprect-handle-move {
2546
+ border: 0;
2547
+ cursor: move;
2548
+ position: absolute;
2549
+ }
2550
+
2551
+ .tox .tox-croprect-handle-nw {
2552
+ border-width: 2px 0 0 2px;
2553
+ cursor: nw-resize;
2554
+ left: 100px;
2555
+ margin: -2px 0 0 -2px;
2556
+ top: 100px;
2557
+ }
2558
+
2559
+ .tox .tox-croprect-handle-ne {
2560
+ border-width: 2px 2px 0 0;
2561
+ cursor: ne-resize;
2562
+ left: 200px;
2563
+ margin: -2px 0 0 -20px;
2564
+ top: 100px;
2565
+ }
2566
+
2567
+ .tox .tox-croprect-handle-sw {
2568
+ border-width: 0 0 2px 2px;
2569
+ cursor: sw-resize;
2570
+ left: 100px;
2571
+ margin: -20px 2px 0 -2px;
2572
+ top: 200px;
2573
+ }
2574
+
2575
+ .tox .tox-croprect-handle-se {
2576
+ border-width: 0 2px 2px 0;
2577
+ cursor: se-resize;
2578
+ left: 200px;
2579
+ margin: -20px 0 0 -20px;
2580
+ top: 200px;
2581
+ }
2582
+
2583
+ .tox:not([dir="rtl"])
2584
+ .tox-image-tools__toolbar
2585
+ > .tox-slider:not(:first-of-type) {
2586
+ margin-left: 6.5px;
2587
+ }
2588
+
2589
+ .tox:not([dir="rtl"]) .tox-image-tools__toolbar > .tox-button + .tox-slider {
2590
+ margin-left: 26px;
2591
+ }
2592
+
2593
+ .tox:not([dir="rtl"]) .tox-image-tools__toolbar > .tox-slider + .tox-button {
2594
+ margin-left: 26px;
2595
+ }
2596
+
2597
+ .tox[dir="rtl"] .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
2598
+ margin-right: 6.5px;
2599
+ }
2600
+
2601
+ .tox[dir="rtl"] .tox-image-tools__toolbar > .tox-button + .tox-slider {
2602
+ margin-right: 26px;
2603
+ }
2604
+
2605
+ .tox[dir="rtl"] .tox-image-tools__toolbar > .tox-slider + .tox-button {
2606
+ margin-right: 26px;
2607
+ }
2608
+
2609
+ .tox .tox-insert-table-picker {
2610
+ display: flex;
2611
+ flex-wrap: wrap;
2612
+ width: 140px;
2613
+ }
2614
+
2615
+ .tox .tox-insert-table-picker > div {
2616
+ border-color: rgba(175, 175, 175, 0.5);
2617
+ border-style: solid;
2618
+ border-width: 0 1px 1px 0;
2619
+ box-sizing: border-box;
2620
+ height: 14px;
2621
+ width: 14px;
2622
+ }
2623
+
2624
+ .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
2625
+ margin: -3.25px 0;
2626
+ }
2627
+
2628
+ .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
2629
+ background-color: rgba(45, 90, 141, 0.5);
2630
+ border-color: rgba(45, 90, 141, 0.5);
2631
+ }
2632
+
2633
+ .tox .tox-insert-table-picker__label {
2634
+ color: rgba(0, 0, 0, 0.7);
2635
+ display: block;
2636
+ font-size: $base-font-size;
2637
+ padding: 3.25px;
2638
+ text-align: center;
2639
+ width: 100%;
2640
+ }
2641
+
2642
+ .tox:not([dir="rtl"]) .tox-insert-table-picker > div:nth-child(10n) {
2643
+ border-right: 0;
2644
+ }
2645
+
2646
+ .tox[dir="rtl"] .tox-insert-table-picker > div:nth-child(10n + 1) {
2647
+ border-right: 0;
2648
+ }
2649
+
2650
+ .tox .tox-menu {
2651
+ background-color: #fff;
2652
+ border: $default-border;
2653
+ border-radius: $default-border-radius;
2654
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
2655
+ display: inline-block;
2656
+ overflow: hidden;
2657
+ vertical-align: top;
2658
+ z-index: 1150;
2659
+ }
2660
+
2661
+ .tox .tox-menu.tox-collection.tox-collection--list {
2662
+ padding: 0;
2663
+ }
2664
+
2665
+ .tox .tox-menu.tox-collection.tox-collection--toolbar {
2666
+ padding: 3.25px;
2667
+ }
2668
+
2669
+ .tox .tox-menu.tox-collection.tox-collection--grid {
2670
+ padding: 3.25px;
2671
+ }
2672
+
2673
+ .tox .tox-menu__label blockquote,
2674
+ .tox .tox-menu__label code,
2675
+ .tox .tox-menu__label h1,
2676
+ .tox .tox-menu__label h2,
2677
+ .tox .tox-menu__label h3,
2678
+ .tox .tox-menu__label h4,
2679
+ .tox .tox-menu__label h5,
2680
+ .tox .tox-menu__label h6,
2681
+ .tox .tox-menu__label p {
2682
+ margin: 0;
2683
+ }
2684
+
2685
+ .tox .tox-menubar {
2686
+ background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='rgba%28175,%20175,%20175,%200.5%29'/%3E%3C/svg%3E")
2687
+ left 0 top 0 $light-gray;
2688
+ background-color: $light-gray;
2689
+ display: flex;
2690
+ flex: 0 0 auto;
2691
+ flex-shrink: 0;
2692
+ flex-wrap: wrap;
2693
+ padding: 0 4px 0 4px;
2694
+ }
2695
+
2696
+ .tox.tox-tinymce:not(.tox-tinymce-inline)
2697
+ .tox-editor-header:not(:first-child)
2698
+ .tox-menubar {
2699
+ border-top: $default-border;
2700
+ }
2701
+
2702
+ .tox .tox-mbtn {
2703
+ align-items: center;
2704
+ background: 0 0;
2705
+ border: 0;
2706
+ border-radius: $default-border-radius;
2707
+ box-shadow: none;
2708
+ color: $icon-color;
2709
+ display: flex;
2710
+ flex: 0 0 auto;
2711
+ font-size: $base-font-size;
2712
+ font-style: normal;
2713
+ font-weight: 400;
2714
+ height: 34px;
2715
+ justify-content: center;
2716
+ margin: 2px 0 3px 0;
2717
+ outline: 0;
2718
+ overflow: hidden;
2719
+ padding: 0 4px;
2720
+ text-transform: none;
2721
+ width: auto;
2722
+ }
2723
+
2724
+ .tox .tox-mbtn[disabled] {
2725
+ background-color: transparent;
2726
+ border: 0;
2727
+ box-shadow: none;
2728
+ color: rgba(51, 59, 81, 0.5);
2729
+ cursor: not-allowed;
2730
+ }
2731
+
2732
+ .tox .tox-mbtn:focus:not(:disabled) {
2733
+ background: rgba(175, 175, 175, 0.25);
2734
+ border: 0;
2735
+ box-shadow: none;
2736
+ color: rgba(51, 59, 81, 0.8);
2737
+ }
2738
+
2739
+ .tox .tox-mbtn--active {
2740
+ background: rgba(175, 175, 175, 0.5);
2741
+ border: 0;
2742
+ box-shadow: none;
2743
+ color: rgba(51, 59, 81, 0.8);
2744
+ }
2745
+
2746
+ .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
2747
+ background: rgba(175, 175, 175, 0.25);
2748
+ border: 0;
2749
+ box-shadow: none;
2750
+ color: rgba(51, 59, 81, 0.8);
2751
+ }
2752
+
2753
+ .tox .tox-mbtn__select-label {
2754
+ cursor: default;
2755
+ font-weight: 400;
2756
+ margin: 0 4px;
2757
+ }
2758
+
2759
+ .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
2760
+ cursor: not-allowed;
2761
+ }
2762
+
2763
+ .tox .tox-mbtn__select-chevron {
2764
+ align-items: center;
2765
+ display: flex;
2766
+ justify-content: center;
2767
+ width: 16px;
2768
+ display: none;
2769
+ }
2770
+
2771
+ .tox .tox-notification {
2772
+ border-radius: $default-border-radius;
2773
+ border-style: solid;
2774
+ border-width: 1px;
2775
+ box-shadow: none;
2776
+ box-sizing: border-box;
2777
+ display: -ms-grid;
2778
+ display: grid;
2779
+ font-size: $base-font-size;
2780
+ font-weight: 400;
2781
+ -ms-grid-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
2782
+ grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
2783
+ margin-top: 3.25px;
2784
+ opacity: 0;
2785
+ padding: 3.25px;
2786
+ transition:
2787
+ transform 0.1s ease-in,
2788
+ opacity 150ms ease-in;
2789
+ }
2790
+
2791
+ .tox .tox-notification p {
2792
+ font-size: $base-font-size;
2793
+ font-weight: 400;
2794
+ }
2795
+
2796
+ .tox .tox-notification a {
2797
+ cursor: pointer;
2798
+ text-decoration: underline;
2799
+ }
2800
+
2801
+ .tox .tox-notification--in {
2802
+ opacity: 1;
2803
+ }
2804
+
2805
+ .tox .tox-notification--success {
2806
+ background-color: #f9fcf6;
2807
+ border-color: #f6faf2;
2808
+ color: #000;
2809
+ }
2810
+
2811
+ .tox .tox-notification--success p {
2812
+ color: #000;
2813
+ }
2814
+
2815
+ .tox .tox-notification--success a {
2816
+ color: #9ea794;
2817
+ }
2818
+
2819
+ .tox .tox-notification--success svg {
2820
+ fill: #000;
2821
+ }
2822
+
2823
+ .tox .tox-notification--error {
2824
+ background-color: #fdf9f9;
2825
+ border-color: #fbf4f4;
2826
+ color: #000;
2827
+ }
2828
+
2829
+ .tox .tox-notification--error p {
2830
+ color: #000;
2831
+ }
2832
+
2833
+ .tox .tox-notification--error a {
2834
+ color: #efd3d3;
2835
+ }
2836
+
2837
+ .tox .tox-notification--error svg {
2838
+ fill: #000;
2839
+ }
2840
+
2841
+ .tox .tox-notification--warn,
2842
+ .tox .tox-notification--warning {
2843
+ background-color: #fffaea;
2844
+ border-color: #ffe89d;
2845
+ color: #000;
2846
+ }
2847
+
2848
+ .tox .tox-notification--warn p,
2849
+ .tox .tox-notification--warning p {
2850
+ color: #000;
2851
+ }
2852
+
2853
+ .tox .tox-notification--warn a,
2854
+ .tox .tox-notification--warning a {
2855
+ color: #000;
2856
+ }
2857
+
2858
+ .tox .tox-notification--warn svg,
2859
+ .tox .tox-notification--warning svg {
2860
+ fill: #000;
2861
+ }
2862
+
2863
+ .tox .tox-notification--info {
2864
+ background-color: #d9edf7;
2865
+ border-color: #779ecb;
2866
+ color: #000;
2867
+ }
2868
+
2869
+ .tox .tox-notification--info p {
2870
+ color: #000;
2871
+ }
2872
+
2873
+ .tox .tox-notification--info a {
2874
+ color: #000;
2875
+ }
2876
+
2877
+ .tox .tox-notification--info svg {
2878
+ fill: #000;
2879
+ }
2880
+
2881
+ .tox .tox-notification__body {
2882
+ -ms-grid-row-align: center;
2883
+ align-self: center;
2884
+ color: #000;
2885
+ font-size: 14px;
2886
+ -ms-grid-column-span: 1;
2887
+ grid-column-end: 3;
2888
+ -ms-grid-column: 2;
2889
+ grid-column-start: 2;
2890
+ -ms-grid-row-span: 1;
2891
+ grid-row-end: 2;
2892
+ -ms-grid-row: 1;
2893
+ grid-row-start: 1;
2894
+ text-align: center;
2895
+ white-space: normal;
2896
+ word-break: break-all;
2897
+ word-break: break-word;
2898
+ }
2899
+
2900
+ .tox .tox-notification__body > * {
2901
+ margin: 0;
2902
+ }
2903
+
2904
+ .tox .tox-notification__body > * + * {
2905
+ margin-top: 1rem;
2906
+ }
2907
+
2908
+ .tox .tox-notification__icon {
2909
+ -ms-grid-row-align: center;
2910
+ align-self: center;
2911
+ -ms-grid-column-span: 1;
2912
+ grid-column-end: 2;
2913
+ -ms-grid-column: 1;
2914
+ grid-column-start: 1;
2915
+ -ms-grid-row-span: 1;
2916
+ grid-row-end: 2;
2917
+ -ms-grid-row: 1;
2918
+ grid-row-start: 1;
2919
+ -ms-grid-column-align: end;
2920
+ justify-self: end;
2921
+ }
2922
+
2923
+ .tox .tox-notification__icon svg {
2924
+ display: block;
2925
+ }
2926
+
2927
+ .tox .tox-notification__dismiss {
2928
+ -ms-grid-row-align: start;
2929
+ align-self: start;
2930
+ -ms-grid-column-span: 1;
2931
+ grid-column-end: 4;
2932
+ -ms-grid-column: 3;
2933
+ grid-column-start: 3;
2934
+ -ms-grid-row-span: 1;
2935
+ grid-row-end: 2;
2936
+ -ms-grid-row: 1;
2937
+ grid-row-start: 1;
2938
+ -ms-grid-column-align: end;
2939
+ justify-self: end;
2940
+ }
2941
+
2942
+ .tox .tox-notification .tox-progress-bar {
2943
+ -ms-grid-column-span: 3;
2944
+ grid-column-end: 4;
2945
+ -ms-grid-column: 1;
2946
+ grid-column-start: 1;
2947
+ -ms-grid-row-span: 1;
2948
+ grid-row-end: 3;
2949
+ -ms-grid-row: 2;
2950
+ grid-row-start: 2;
2951
+ -ms-grid-column-align: center;
2952
+ justify-self: center;
2953
+ }
2954
+
2955
+ .tox .tox-pop {
2956
+ display: inline-block;
2957
+ position: relative;
2958
+ }
2959
+
2960
+ .tox .tox-pop--resizing {
2961
+ transition: width 0.1s ease;
2962
+ }
2963
+
2964
+ .tox .tox-pop--resizing .tox-toolbar,
2965
+ .tox .tox-pop--resizing .tox-toolbar__group {
2966
+ flex-wrap: nowrap;
2967
+ }
2968
+
2969
+ .tox .tox-pop--transition {
2970
+ transition: 0.15s ease;
2971
+ transition-property: left, right, top, bottom;
2972
+ }
2973
+
2974
+ .tox .tox-pop--transition::after,
2975
+ .tox .tox-pop--transition::before {
2976
+ transition:
2977
+ all 0.15s,
2978
+ visibility 0s,
2979
+ opacity 75ms ease 75ms;
2980
+ }
2981
+
2982
+ .tox .tox-pop__dialog {
2983
+ background-color: #fff;
2984
+ border: $default-border;
2985
+ border-radius: $default-border-radius;
2986
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
2987
+ min-width: 0;
2988
+ overflow: hidden;
2989
+ }
2990
+
2991
+ .tox .tox-pop__dialog > :not(.tox-toolbar) {
2992
+ margin: 3.25px 3.25px 3.25px 6.5px;
2993
+ }
2994
+
2995
+ .tox .tox-pop__dialog .tox-toolbar {
2996
+ background-color: transparent;
2997
+ margin-bottom: -1px;
2998
+ }
2999
+
3000
+ .tox .tox-pop::after,
3001
+ .tox .tox-pop::before {
3002
+ border-style: solid;
3003
+ content: "";
3004
+ display: block;
3005
+ height: 0;
3006
+ opacity: 1;
3007
+ position: absolute;
3008
+ width: 0;
3009
+ }
3010
+
3011
+ .tox .tox-pop.tox-pop--inset::after,
3012
+ .tox .tox-pop.tox-pop--inset::before {
3013
+ opacity: 0;
3014
+ transition:
3015
+ all 0s 0.15s,
3016
+ visibility 0s,
3017
+ opacity 75ms ease;
3018
+ }
3019
+
3020
+ .tox .tox-pop.tox-pop--bottom::after,
3021
+ .tox .tox-pop.tox-pop--bottom::before {
3022
+ left: 50%;
3023
+ top: 100%;
3024
+ }
3025
+
3026
+ .tox .tox-pop.tox-pop--bottom::after {
3027
+ border-color: #fff transparent transparent transparent;
3028
+ border-width: 8px;
3029
+ margin-left: -8px;
3030
+ margin-top: -1px;
3031
+ }
3032
+
3033
+ .tox .tox-pop.tox-pop--bottom::before {
3034
+ border-color: rgba(175, 175, 175, 0.5) transparent transparent transparent;
3035
+ border-width: 9px;
3036
+ margin-left: -9px;
3037
+ }
3038
+
3039
+ .tox .tox-pop.tox-pop--top::after,
3040
+ .tox .tox-pop.tox-pop--top::before {
3041
+ left: 50%;
3042
+ top: 0;
3043
+ transform: translateY(-100%);
3044
+ }
3045
+
3046
+ .tox .tox-pop.tox-pop--top::after {
3047
+ border-color: transparent transparent #fff transparent;
3048
+ border-width: 8px;
3049
+ margin-left: -8px;
3050
+ margin-top: 1px;
3051
+ }
3052
+
3053
+ .tox .tox-pop.tox-pop--top::before {
3054
+ border-color: transparent transparent rgba(175, 175, 175, 0.5) transparent;
3055
+ border-width: 9px;
3056
+ margin-left: -9px;
3057
+ }
3058
+
3059
+ .tox .tox-pop.tox-pop--left::after,
3060
+ .tox .tox-pop.tox-pop--left::before {
3061
+ left: 0;
3062
+ top: calc(50% - 1px);
3063
+ transform: translateY(-50%);
3064
+ }
3065
+
3066
+ .tox .tox-pop.tox-pop--left::after {
3067
+ border-color: transparent #fff transparent transparent;
3068
+ border-width: 8px;
3069
+ margin-left: -15px;
3070
+ }
3071
+
3072
+ .tox .tox-pop.tox-pop--left::before {
3073
+ border-color: transparent rgba(175, 175, 175, 0.5) transparent transparent;
3074
+ border-width: 10px;
3075
+ margin-left: -19px;
3076
+ }
3077
+
3078
+ .tox .tox-pop.tox-pop--right::after,
3079
+ .tox .tox-pop.tox-pop--right::before {
3080
+ left: 100%;
3081
+ top: calc(50% + 1px);
3082
+ transform: translateY(-50%);
3083
+ }
3084
+
3085
+ .tox .tox-pop.tox-pop--right::after {
3086
+ border-color: transparent transparent transparent #fff;
3087
+ border-width: 8px;
3088
+ margin-left: -1px;
3089
+ }
3090
+
3091
+ .tox .tox-pop.tox-pop--right::before {
3092
+ border-color: transparent transparent transparent rgba(175, 175, 175, 0.5);
3093
+ border-width: 10px;
3094
+ margin-left: -1px;
3095
+ }
3096
+
3097
+ .tox .tox-pop.tox-pop--align-left::after,
3098
+ .tox .tox-pop.tox-pop--align-left::before {
3099
+ left: 20px;
3100
+ }
3101
+
3102
+ .tox .tox-pop.tox-pop--align-right::after,
3103
+ .tox .tox-pop.tox-pop--align-right::before {
3104
+ left: calc(100% - 20px);
3105
+ }
3106
+
3107
+ .tox .tox-sidebar-wrap {
3108
+ display: flex;
3109
+ flex-direction: row;
3110
+ flex-grow: 1;
3111
+ -ms-flex-preferred-size: 0;
3112
+ min-height: 0;
3113
+ }
3114
+
3115
+ .tox .tox-sidebar {
3116
+ background-color: #fff;
3117
+ display: flex;
3118
+ flex-direction: row;
3119
+ justify-content: flex-end;
3120
+ }
3121
+
3122
+ .tox .tox-sidebar__slider {
3123
+ display: flex;
3124
+ overflow: hidden;
3125
+ }
3126
+
3127
+ .tox .tox-sidebar__pane-container {
3128
+ display: flex;
3129
+ }
3130
+
3131
+ .tox .tox-sidebar__pane {
3132
+ display: flex;
3133
+ }
3134
+
3135
+ .tox .tox-sidebar--sliding-closed {
3136
+ opacity: 0;
3137
+ }
3138
+
3139
+ .tox .tox-sidebar--sliding-open {
3140
+ opacity: 1;
3141
+ }
3142
+
3143
+ .tox .tox-sidebar--sliding-growing,
3144
+ .tox .tox-sidebar--sliding-shrinking {
3145
+ transition:
3146
+ width 0.5s ease,
3147
+ opacity 0.5s ease;
3148
+ }
3149
+
3150
+ .tox .tox-selector {
3151
+ background-color: #4099ff;
3152
+ border-color: #4099ff;
3153
+ border-style: solid;
3154
+ border-width: 1px;
3155
+ box-sizing: border-box;
3156
+ display: inline-block;
3157
+ height: 10px;
3158
+ position: absolute;
3159
+ width: 10px;
3160
+ }
3161
+
3162
+ .tox.tox-platform-touch .tox-selector {
3163
+ height: 12px;
3164
+ width: 12px;
3165
+ }
3166
+
3167
+ .tox .tox-slider {
3168
+ align-items: center;
3169
+ display: flex;
3170
+ flex: 1;
3171
+ -ms-flex-preferred-size: auto;
3172
+ height: 24px;
3173
+ justify-content: center;
3174
+ position: relative;
3175
+ }
3176
+
3177
+ .tox .tox-slider__rail {
3178
+ background-color: transparent;
3179
+ border: $default-border;
3180
+ border-radius: $default-border-radius;
3181
+ height: 10px;
3182
+ min-width: 120px;
3183
+ width: 100%;
3184
+ }
3185
+
3186
+ .tox .tox-slider__handle {
3187
+ background-color: #2d5a8d;
3188
+ border: 2px solid #214166;
3189
+ border-radius: $default-border-radius;
3190
+ box-shadow: none;
3191
+ height: 24px;
3192
+ left: 50%;
3193
+ position: absolute;
3194
+ top: 50%;
3195
+ transform: translateX(-50%) translateY(-50%);
3196
+ width: 14px;
3197
+ }
3198
+
3199
+ .tox .tox-source-code {
3200
+ overflow: auto;
3201
+ }
3202
+
3203
+ .tox .tox-spinner {
3204
+ display: flex;
3205
+ }
3206
+
3207
+ .tox .tox-spinner > div {
3208
+ animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
3209
+ background-color: rgba(0, 0, 0, 0.7);
3210
+ border-radius: 100%;
3211
+ height: 6.5px;
3212
+ width: 6.5px;
3213
+ }
3214
+
3215
+ .tox .tox-spinner > div:nth-child(1) {
3216
+ animation-delay: -0.32s;
3217
+ }
3218
+
3219
+ .tox .tox-spinner > div:nth-child(2) {
3220
+ animation-delay: -0.16s;
3221
+ }
3222
+
3223
+ @keyframes tam-bouncing-dots {
3224
+ 0%,
3225
+ 100%,
3226
+ 80% {
3227
+ transform: scale(0);
3228
+ }
3229
+
3230
+ 40% {
3231
+ transform: scale(1);
3232
+ }
3233
+ }
3234
+
3235
+ .tox:not([dir="rtl"]) .tox-spinner > div:not(:first-child) {
3236
+ margin-left: 3.25px;
3237
+ }
3238
+
3239
+ .tox[dir="rtl"] .tox-spinner > div:not(:first-child) {
3240
+ margin-right: 3.25px;
3241
+ }
3242
+
3243
+ .tox .tox-statusbar {
3244
+ align-items: center;
3245
+ background-color: $light-gray;
3246
+ border-top: $default-border;
3247
+ color: $muted-text-color;
3248
+ display: flex;
3249
+ flex: 0 0 auto;
3250
+ font-size: $small-font-size;
3251
+ font-weight: 400;
3252
+ height: 18px;
3253
+ overflow: hidden;
3254
+ padding: 0 6.5px;
3255
+ position: relative;
3256
+ }
3257
+
3258
+ .tox .tox-statusbar__text-container {
3259
+ display: flex;
3260
+ flex: 1 1 auto;
3261
+ justify-content: flex-end;
3262
+ overflow: hidden;
3263
+ }
3264
+
3265
+ .tox .tox-statusbar__path {
3266
+ display: flex;
3267
+ flex: 1 1 auto;
3268
+ margin-right: auto;
3269
+ overflow: hidden;
3270
+ text-overflow: ellipsis;
3271
+ white-space: nowrap;
3272
+ }
3273
+
3274
+ .tox .tox-statusbar__path > * {
3275
+ display: inline;
3276
+ white-space: nowrap;
3277
+ }
3278
+
3279
+ .tox .tox-statusbar__wordcount {
3280
+ flex: 0 0 auto;
3281
+ margin-left: 1ch;
3282
+ }
3283
+
3284
+ .tox .tox-statusbar a,
3285
+ .tox .tox-statusbar__path-item,
3286
+ .tox .tox-statusbar__wordcount {
3287
+ color: $text-color;
3288
+ text-decoration: none;
3289
+ }
3290
+
3291
+ .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled="true"]),
3292
+ .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled="true"]),
3293
+ .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled="true"]),
3294
+ .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled="true"]),
3295
+ .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled="true"]),
3296
+ .tox
3297
+ .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled="true"]) {
3298
+ cursor: pointer;
3299
+ text-decoration: underline;
3300
+ }
3301
+
3302
+ .tox .tox-statusbar__resize-handle {
3303
+ align-items: flex-end;
3304
+ align-self: stretch;
3305
+ cursor: nwse-resize;
3306
+ display: flex;
3307
+ flex: 0 0 auto;
3308
+ justify-content: flex-end;
3309
+ margin-left: auto;
3310
+ margin-right: -6.5px;
3311
+ padding-left: 1ch;
3312
+ }
3313
+
3314
+ .tox .tox-statusbar__resize-handle svg {
3315
+ display: block;
3316
+ fill: $icon-color;
3317
+ }
3318
+
3319
+ .tox .tox-statusbar__resize-handle:focus svg {
3320
+ background-color: #d9d9d9;
3321
+ border-radius: 1px;
3322
+ box-shadow: 0 0 0 2px #d9d9d9;
3323
+ }
3324
+
3325
+ .tox:not([dir="rtl"]) .tox-statusbar__path > * {
3326
+ margin-right: 3.25px;
3327
+ }
3328
+
3329
+ .tox:not([dir="rtl"]) .tox-statusbar__branding {
3330
+ margin-left: 1ch;
3331
+ }
3332
+
3333
+ .tox[dir="rtl"] .tox-statusbar {
3334
+ flex-direction: row-reverse;
3335
+ }
3336
+
3337
+ .tox[dir="rtl"] .tox-statusbar__path > * {
3338
+ margin-left: 3.25px;
3339
+ }
3340
+
3341
+ .tox .tox-throbber {
3342
+ z-index: 1299;
3343
+ }
3344
+
3345
+ .tox .tox-throbber__busy-spinner {
3346
+ align-items: center;
3347
+ background-color: rgba(255, 255, 255, 0.6);
3348
+ bottom: 0;
3349
+ display: flex;
3350
+ justify-content: center;
3351
+ left: 0;
3352
+ position: absolute;
3353
+ right: 0;
3354
+ top: 0;
3355
+ }
3356
+
3357
+ .tox .tox-tbtn {
3358
+ align-items: center;
3359
+ background: 0 0;
3360
+ border: 0;
3361
+ border-radius: $default-border-radius;
3362
+ box-shadow: none;
3363
+ color: $icon-color;
3364
+ display: flex;
3365
+ flex: 0 0 auto;
3366
+ font-size: $base-font-size;
3367
+ font-style: normal;
3368
+ font-weight: 400;
3369
+ height: $icon-button-medium-height;
3370
+ justify-content: center;
3371
+ margin: $default-margin 1px;
3372
+ outline: 0;
3373
+ overflow: hidden;
3374
+ padding: 0;
3375
+ text-transform: none;
3376
+ width: $icon-button-medium-width;
3377
+ }
3378
+
3379
+ .tox .tox-tbtn svg {
3380
+ display: block;
3381
+ fill: $icon-color;
3382
+ }
3383
+
3384
+ .tox .tox-tbtn.tox-tbtn-more {
3385
+ padding-left: 5px;
3386
+ padding-right: 5px;
3387
+ width: inherit;
3388
+ }
3389
+
3390
+ .tox .tox-tbtn:focus {
3391
+ background: rgba(175, 175, 175, 0.25);
3392
+ border: 0;
3393
+ box-shadow: none;
3394
+ }
3395
+
3396
+ .tox .tox-tbtn:hover {
3397
+ background: rgba(175, 175, 175, 0.25);
3398
+ border: 0;
3399
+ box-shadow: none;
3400
+ color: rgba(51, 59, 81, 0.8);
3401
+ }
3402
+
3403
+ .tox .tox-tbtn:hover svg {
3404
+ fill: rgba(51, 59, 81, 0.8);
3405
+ }
3406
+
3407
+ .tox .tox-tbtn:active {
3408
+ background: rgba(175, 175, 175, 0.5);
3409
+ border: 0;
3410
+ box-shadow: none;
3411
+ color: rgba(51, 59, 81, 0.8);
3412
+ }
3413
+
3414
+ .tox .tox-tbtn:active svg {
3415
+ fill: rgba(51, 59, 81, 0.8);
3416
+ }
3417
+
3418
+ .tox .tox-tbtn--disabled,
3419
+ .tox .tox-tbtn--disabled:hover,
3420
+ .tox .tox-tbtn:disabled,
3421
+ .tox .tox-tbtn:disabled:hover {
3422
+ background: 0 0;
3423
+ border: 0;
3424
+ box-shadow: none;
3425
+ color: rgba(51, 59, 81, 0.5);
3426
+ cursor: not-allowed;
3427
+ }
3428
+
3429
+ .tox .tox-tbtn--disabled svg,
3430
+ .tox .tox-tbtn--disabled:hover svg,
3431
+ .tox .tox-tbtn:disabled svg,
3432
+ .tox .tox-tbtn:disabled:hover svg {
3433
+ fill: rgba(51, 59, 81, 0.5);
3434
+ }
3435
+
3436
+ .tox .tox-tbtn--enabled,
3437
+ .tox .tox-tbtn--enabled:hover {
3438
+ background: rgba(175, 175, 175, 0.5);
3439
+ border: 0;
3440
+ box-shadow: none;
3441
+ color: rgba(51, 59, 81, 0.8);
3442
+ }
3443
+
3444
+ .tox .tox-tbtn--enabled:hover > *,
3445
+ .tox .tox-tbtn--enabled > * {
3446
+ transform: none;
3447
+ }
3448
+
3449
+ .tox .tox-tbtn--enabled svg,
3450
+ .tox .tox-tbtn--enabled:hover svg {
3451
+ fill: rgba(51, 59, 81, 0.8);
3452
+ }
3453
+
3454
+ .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
3455
+ color: rgba(51, 59, 81, 0.8);
3456
+ }
3457
+
3458
+ .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
3459
+ fill: rgba(51, 59, 81, 0.8);
3460
+ }
3461
+
3462
+ .tox .tox-tbtn:active > * {
3463
+ transform: none;
3464
+ }
3465
+
3466
+ .tox .tox-tbtn--md {
3467
+ height: 51px;
3468
+ width: 51px;
3469
+ }
3470
+
3471
+ .tox .tox-tbtn--lg {
3472
+ flex-direction: column;
3473
+ height: 68px;
3474
+ width: 68px;
3475
+ }
3476
+
3477
+ .tox .tox-tbtn--return {
3478
+ -ms-grid-row-align: stretch;
3479
+ align-self: stretch;
3480
+ height: unset;
3481
+ width: 16px;
3482
+ }
3483
+
3484
+ .tox .tox-tbtn--labeled {
3485
+ padding: 0 4px;
3486
+ width: unset;
3487
+ }
3488
+
3489
+ .tox .tox-tbtn__vlabel {
3490
+ display: block;
3491
+ font-size: 10px;
3492
+ font-weight: 400;
3493
+ letter-spacing: -0.025em;
3494
+ margin-bottom: 3.25px;
3495
+ white-space: nowrap;
3496
+ }
3497
+
3498
+ .tox .tox-tbtn--select {
3499
+ margin: 2px 0 3px 0;
3500
+ padding: 0 4px;
3501
+ width: auto;
3502
+ }
3503
+
3504
+ .tox .tox-tbtn__select-label {
3505
+ cursor: default;
3506
+ font-weight: 400;
3507
+ margin: 0 4px;
3508
+ }
3509
+
3510
+ .tox .tox-tbtn__select-chevron {
3511
+ align-items: center;
3512
+ display: flex;
3513
+ justify-content: center;
3514
+ width: 13px;
3515
+ }
3516
+
3517
+ .tox .tox-tbtn__select-chevron svg {
3518
+ fill: rgba(51, 59, 81, 0.5);
3519
+ }
3520
+
3521
+ .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
3522
+ overflow: hidden;
3523
+ text-overflow: ellipsis;
3524
+ white-space: nowrap;
3525
+ width: 6em;
3526
+ }
3527
+
3528
+ .tox .tox-split-button {
3529
+ border: 0;
3530
+ border-radius: $default-border-radius;
3531
+ box-sizing: border-box;
3532
+ display: flex;
3533
+ margin: 2px 0 3px 0;
3534
+ overflow: hidden;
3535
+ }
3536
+
3537
+ .tox .tox-split-button:hover {
3538
+ box-shadow: 0 0 0 1px rgba(175, 175, 175, 0.25) inset;
3539
+ }
3540
+
3541
+ .tox .tox-split-button:focus {
3542
+ background: rgba(175, 175, 175, 0.25);
3543
+ box-shadow: none;
3544
+ color: rgba(51, 59, 81, 0.8);
3545
+ }
3546
+
3547
+ .tox .tox-split-button > * {
3548
+ border-radius: 0;
3549
+ }
3550
+
3551
+ .tox .tox-split-button__chevron {
3552
+ width: 13px;
3553
+ }
3554
+
3555
+ .tox .tox-split-button__chevron svg {
3556
+ fill: rgba(51, 59, 81, 0.5);
3557
+ }
3558
+
3559
+ .tox .tox-split-button .tox-tbtn {
3560
+ margin: 0;
3561
+ }
3562
+
3563
+ .tox.tox-platform-touch .tox-split-button .tox-tbtn:first-child {
3564
+ width: 30px;
3565
+ }
3566
+
3567
+ .tox.tox-platform-touch .tox-split-button__chevron {
3568
+ width: 17px;
3569
+ }
3570
+
3571
+ .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,
3572
+ .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
3573
+ .tox .tox-split-button.tox-tbtn--disabled:focus,
3574
+ .tox .tox-split-button.tox-tbtn--disabled:hover {
3575
+ background: 0 0;
3576
+ box-shadow: none;
3577
+ color: rgba(51, 59, 81, 0.5);
3578
+ }
3579
+
3580
+ .tox .tox-toolbar-overlord {
3581
+ background-color: $light-gray;
3582
+ }
3583
+
3584
+ .tox .tox-toolbar,
3585
+ .tox .tox-toolbar__overflow,
3586
+ .tox .tox-toolbar__primary {
3587
+ background: url("data:image/svg+xml;charset=utf8,%3Csvg height='34px' viewBox='0 0 40 39px' width='34px' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='33px' width='100' height='1' fill='rgba%28175,%20175,%20175,%200.5%29'/%3E%3C/svg%3E")
3588
+ left 0 top 0 $light-gray;
3589
+ display: flex;
3590
+ flex: 0 0 auto;
3591
+ flex-shrink: 0;
3592
+ flex-wrap: wrap;
3593
+ padding: 0 0;
3594
+ }
3595
+
3596
+ .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
3597
+ height: 0;
3598
+ opacity: 0;
3599
+ padding-bottom: 0;
3600
+ padding-top: 0;
3601
+ visibility: hidden;
3602
+ }
3603
+
3604
+ .tox .tox-toolbar__overflow--growing {
3605
+ transition:
3606
+ height 0.3s ease,
3607
+ opacity 0.2s linear 0.1s;
3608
+ }
3609
+
3610
+ .tox .tox-toolbar__overflow--shrinking {
3611
+ transition:
3612
+ opacity 0.3s ease,
3613
+ height 0.2s linear 0.1s,
3614
+ visibility 0s linear 0.3s;
3615
+ }
3616
+
3617
+ .tox .tox-menubar + .tox-toolbar,
3618
+ .tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
3619
+ border-top: $default-border;
3620
+ margin-top: -1px;
3621
+ }
3622
+
3623
+ .tox .tox-toolbar--scrolling {
3624
+ flex-wrap: nowrap;
3625
+ overflow-x: auto;
3626
+ }
3627
+
3628
+ .tox .tox-pop .tox-toolbar {
3629
+ border-width: 0;
3630
+ }
3631
+
3632
+ .tox .tox-toolbar--no-divider {
3633
+ background-image: none;
3634
+ }
3635
+
3636
+ .tox-tinymce:not(.tox-tinymce-inline)
3637
+ .tox-editor-header:not(:first-child)
3638
+ .tox-toolbar-overlord:first-child
3639
+ .tox-toolbar__primary,
3640
+ .tox-tinymce:not(.tox-tinymce-inline)
3641
+ .tox-editor-header:not(:first-child)
3642
+ .tox-toolbar:first-child {
3643
+ border-top: $default-border;
3644
+ }
3645
+
3646
+ .tox.tox-tinymce-aux .tox-toolbar__overflow {
3647
+ background-color: #fff;
3648
+ border: $default-border;
3649
+ border-radius: $default-border-radius;
3650
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
3651
+ }
3652
+
3653
+ .tox .tox-toolbar__group {
3654
+ align-items: center;
3655
+ display: flex;
3656
+ flex-wrap: wrap;
3657
+ margin: 0 0;
3658
+ padding: 0 3px 0 3px;
3659
+ }
3660
+
3661
+ .tox .tox-toolbar__group--pull-right {
3662
+ margin-left: auto;
3663
+ }
3664
+
3665
+ .tox .tox-toolbar--scrolling .tox-toolbar__group {
3666
+ flex-shrink: 0;
3667
+ flex-wrap: nowrap;
3668
+ }
3669
+
3670
+ .tox:not([dir="rtl"]) .tox-toolbar__group:not(:last-of-type) {
3671
+ border-right: $default-border;
3672
+ }
3673
+
3674
+ .tox[dir="rtl"] .tox-toolbar__group:not(:last-of-type) {
3675
+ border-left: $default-border;
3676
+ }
3677
+
3678
+ .tox .tox-tooltip {
3679
+ display: inline-block;
3680
+ padding: 6.5px;
3681
+ position: relative;
3682
+ }
3683
+
3684
+ .tox .tox-tooltip__body {
3685
+ background-color: #000;
3686
+ border-radius: $default-border-radius;
3687
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
3688
+ color: rgba(255, 255, 255, 0.75);
3689
+ font-size: $base-font-size;
3690
+ font-style: normal;
3691
+ font-weight: 400;
3692
+ padding: 3.25px 6.5px;
3693
+ text-transform: none;
3694
+ }
3695
+
3696
+ .tox .tox-tooltip__arrow {
3697
+ position: absolute;
3698
+ }
3699
+
3700
+ .tox .tox-tooltip--down .tox-tooltip__arrow {
3701
+ border-left: 6.5px solid transparent;
3702
+ border-right: 6.5px solid transparent;
3703
+ border-top: 6.5px solid #000;
3704
+ bottom: 0;
3705
+ left: 50%;
3706
+ position: absolute;
3707
+ transform: translateX(-50%);
3708
+ }
3709
+
3710
+ .tox .tox-tooltip--up .tox-tooltip__arrow {
3711
+ border-bottom: 6.5px solid #000;
3712
+ border-left: 6.5px solid transparent;
3713
+ border-right: 6.5px solid transparent;
3714
+ left: 50%;
3715
+ position: absolute;
3716
+ top: 0;
3717
+ transform: translateX(-50%);
3718
+ }
3719
+
3720
+ .tox .tox-tooltip--right .tox-tooltip__arrow {
3721
+ border-bottom: 6.5px solid transparent;
3722
+ border-left: 6.5px solid #000;
3723
+ border-top: 6.5px solid transparent;
3724
+ position: absolute;
3725
+ right: 0;
3726
+ top: 50%;
3727
+ transform: translateY(-50%);
3728
+ }
3729
+
3730
+ .tox .tox-tooltip--left .tox-tooltip__arrow {
3731
+ border-bottom: 6.5px solid transparent;
3732
+ border-right: 6.5px solid #000;
3733
+ border-top: 6.5px solid transparent;
3734
+ left: 0;
3735
+ position: absolute;
3736
+ top: 50%;
3737
+ transform: translateY(-50%);
3738
+ }
3739
+
3740
+ .tox .tox-well {
3741
+ border: $default-border;
3742
+ border-radius: $default-border-radius;
3743
+ padding: 6.5px;
3744
+ width: 100%;
3745
+ }
3746
+
3747
+ .tox .tox-well > :first-child {
3748
+ margin-top: 0;
3749
+ }
3750
+
3751
+ .tox .tox-well > :last-child {
3752
+ margin-bottom: 0;
3753
+ }
3754
+
3755
+ .tox .tox-well > :only-child {
3756
+ margin: 0;
3757
+ }
3758
+
3759
+ .tox .tox-custom-editor {
3760
+ border: $default-border;
3761
+ border-radius: $default-border-radius;
3762
+ display: flex;
3763
+ flex: 1;
3764
+ position: relative;
3765
+ }
3766
+
3767
+ .tox .tox-dialog-loading::before {
3768
+ background-color: rgba(0, 0, 0, 0.5);
3769
+ content: "";
3770
+ height: 100%;
3771
+ position: absolute;
3772
+ width: 100%;
3773
+ z-index: 1000;
3774
+ }
3775
+
3776
+ .tox .tox-tab {
3777
+ cursor: pointer;
3778
+ }
3779
+
3780
+ .tox .tox-dialog__content-js {
3781
+ display: flex;
3782
+ flex: 1;
3783
+ -ms-flex-preferred-size: auto;
3784
+ }
3785
+
3786
+ .tox .tox-dialog__body-content .tox-collection {
3787
+ display: flex;
3788
+ flex: 1;
3789
+ -ms-flex-preferred-size: auto;
3790
+ }
3791
+
3792
+ .tox .tox-image-tools-edit-panel {
3793
+ height: 60px;
3794
+ }
3795
+
3796
+ .tox .tox-image-tools__sidebar {
3797
+ height: 60px;
3798
+ }