@standardnotes/community-cdn 0.9.3 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (266) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/entries/com.sncommunity.advanced-checklist.json +4 -2
  3. package/dist/entries/com.sncommunity.bold-editor.json +4 -2
  4. package/dist/entries/com.sncommunity.dracula-theme.json +3 -2
  5. package/dist/entries/com.sncommunity.markdown-basic.json +5 -3
  6. package/dist/entries/com.sncommunity.markdown-math.json +4 -2
  7. package/dist/entries/com.sncommunity.markdown-visual.json +5 -3
  8. package/dist/entries/com.sncommunity.minimal-markdown.json +5 -3
  9. package/dist/entries/org.standardnotes.advanced-markdown-editor.json +19 -0
  10. package/dist/entries/org.standardnotes.code-editor.json +19 -0
  11. package/dist/entries/org.standardnotes.legacy.file-safe.json +4 -3
  12. package/dist/entries/org.standardnotes.plus-editor.json +19 -0
  13. package/dist/entries/org.standardnotes.simple-task-editor.json +19 -0
  14. package/dist/packages.json +110 -20
  15. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css +2341 -0
  16. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css.map +1 -0
  17. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js +3 -0
  18. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.LICENSE.txt +1 -0
  19. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.map +1 -0
  20. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.eot +0 -0
  21. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.svg +2671 -0
  22. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.ttf +0 -0
  23. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff +0 -0
  24. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff2 +0 -0
  25. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/index.html +1 -0
  26. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/lib/component-relay.js +1 -0
  27. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/stylekit.css +3347 -0
  28. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js +2 -0
  29. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js.LICENSE.txt +6 -0
  30. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymde.css +7 -0
  31. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js +2 -0
  32. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js.LICENSE.txt +1 -0
  33. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/comment.js +1 -0
  34. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/continuecomment.js +1 -0
  35. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.css +32 -0
  36. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.js +1 -0
  37. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/autorefresh.js +1 -0
  38. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.css +6 -0
  39. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.js +1 -0
  40. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/panel.js +1 -0
  41. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/placeholder.js +1 -0
  42. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/rulers.js +1 -0
  43. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closebrackets.js +1 -0
  44. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closetag.js +1 -0
  45. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/continuelist.js +1 -0
  46. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchbrackets.js +1 -0
  47. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchtags.js +1 -0
  48. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/trailingspace.js +1 -0
  49. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/brace-fold.js +1 -0
  50. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/comment-fold.js +1 -0
  51. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldcode.js +1 -0
  52. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.css +20 -0
  53. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.js +1 -0
  54. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/indent-fold.js +1 -0
  55. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/markdown-fold.js +1 -0
  56. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/xml-fold.js +1 -0
  57. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/anyword-hint.js +1 -0
  58. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/css-hint.js +1 -0
  59. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/html-hint.js +1 -0
  60. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/javascript-hint.js +1 -0
  61. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.css +36 -0
  62. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.js +1 -0
  63. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/sql-hint.js +1 -0
  64. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/xml-hint.js +1 -0
  65. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/coffeescript-lint.js +1 -0
  66. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/css-lint.js +1 -0
  67. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/html-lint.js +1 -0
  68. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/javascript-lint.js +1 -0
  69. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/json-lint.js +1 -0
  70. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.css +79 -0
  71. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.js +1 -0
  72. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/yaml-lint.js +1 -0
  73. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.css +119 -0
  74. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.js +1 -0
  75. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/loadmode.js +1 -0
  76. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex.js +1 -0
  77. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex_test.js +1 -0
  78. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/overlay.js +1 -0
  79. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/simple.js +1 -0
  80. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/colorize.js +1 -0
  81. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode-standalone.js +1 -0
  82. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.js +1 -0
  83. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.node.js +1 -0
  84. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/annotatescrollbar.js +1 -0
  85. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/scrollpastend.js +1 -0
  86. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.css +66 -0
  87. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.js +1 -0
  88. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/jump-to-line.js +1 -0
  89. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/match-highlighter.js +1 -0
  90. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.css +8 -0
  91. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.js +1 -0
  92. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/search.js +1 -0
  93. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/searchcursor.js +1 -0
  94. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/active-line.js +1 -0
  95. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/mark-selection.js +1 -0
  96. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/selection-pointer.js +1 -0
  97. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.css +87 -0
  98. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.js +1 -0
  99. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/worker.js +1 -0
  100. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/wrap/hardwrap.js +1 -0
  101. package/dist/static/org.standardnotes.code-editor/dist/codemirror/keymap/vim.js +1 -0
  102. package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.css +344 -0
  103. package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.js +1 -0
  104. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/apl/apl.js +1 -0
  105. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asciiarmor/asciiarmor.js +1 -0
  106. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asn.1/asn.1.js +1 -0
  107. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asterisk/asterisk.js +1 -0
  108. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/brainfuck/brainfuck.js +1 -0
  109. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clike/clike.js +1 -0
  110. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clojure/clojure.js +1 -0
  111. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cmake/cmake.js +1 -0
  112. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cobol/cobol.js +1 -0
  113. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/coffeescript/coffeescript.js +1 -0
  114. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/commonlisp/commonlisp.js +1 -0
  115. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/crystal/crystal.js +1 -0
  116. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/css/css.js +1 -0
  117. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cypher/cypher.js +1 -0
  118. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/d/d.js +1 -0
  119. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dart/dart.js +1 -0
  120. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/diff/diff.js +1 -0
  121. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/django/django.js +1 -0
  122. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dockerfile/dockerfile.js +1 -0
  123. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dtd/dtd.js +1 -0
  124. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dylan/dylan.js +1 -0
  125. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ebnf/ebnf.js +1 -0
  126. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ecl/ecl.js +1 -0
  127. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/eiffel/eiffel.js +1 -0
  128. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/elm/elm.js +1 -0
  129. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/erlang/erlang.js +1 -0
  130. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/factor/factor.js +1 -0
  131. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fcl/fcl.js +1 -0
  132. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/forth/forth.js +1 -0
  133. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fortran/fortran.js +1 -0
  134. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gas/gas.js +1 -0
  135. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gfm/gfm.js +1 -0
  136. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gherkin/gherkin.js +1 -0
  137. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/go/go.js +1 -0
  138. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/groovy/groovy.js +1 -0
  139. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haml/haml.js +1 -0
  140. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/handlebars/handlebars.js +1 -0
  141. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell/haskell.js +1 -0
  142. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell-literate/haskell-literate.js +1 -0
  143. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haxe/haxe.js +1 -0
  144. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  145. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  146. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/http/http.js +1 -0
  147. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/idl/idl.js +1 -0
  148. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/javascript/javascript.js +1 -0
  149. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jinja2/jinja2.js +1 -0
  150. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jsx/jsx.js +1 -0
  151. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/julia/julia.js +1 -0
  152. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/livescript/livescript.js +1 -0
  153. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/lua/lua.js +1 -0
  154. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/markdown/markdown.js +1 -0
  155. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mathematica/mathematica.js +1 -0
  156. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mbox/mbox.js +1 -0
  157. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/meta.js +1 -0
  158. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mirc/mirc.js +1 -0
  159. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mllike/mllike.js +1 -0
  160. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/modelica/modelica.js +1 -0
  161. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mscgen/mscgen.js +1 -0
  162. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mumps/mumps.js +1 -0
  163. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nginx/nginx.js +1 -0
  164. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nsis/nsis.js +1 -0
  165. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ntriples/ntriples.js +1 -0
  166. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/octave/octave.js +1 -0
  167. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/oz/oz.js +1 -0
  168. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pascal/pascal.js +1 -0
  169. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pegjs/pegjs.js +1 -0
  170. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/perl/perl.js +1 -0
  171. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/php/php.js +1 -0
  172. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pig/pig.js +1 -0
  173. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/powershell/powershell.js +1 -0
  174. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/properties/properties.js +1 -0
  175. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/protobuf/protobuf.js +1 -0
  176. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pug/pug.js +1 -0
  177. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/puppet/puppet.js +1 -0
  178. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/python/python.js +1 -0
  179. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/q/q.js +1 -0
  180. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/r/r.js +1 -0
  181. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/changes/index.html +66 -0
  182. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/rpm.js +1 -0
  183. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rst/rst.js +1 -0
  184. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ruby/ruby.js +1 -0
  185. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rust/rust.js +1 -0
  186. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sas/sas.js +1 -0
  187. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sass/sass.js +1 -0
  188. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/scheme/scheme.js +1 -0
  189. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/shell/shell.js +1 -0
  190. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sieve/sieve.js +1 -0
  191. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/slim/slim.js +1 -0
  192. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smalltalk/smalltalk.js +1 -0
  193. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smarty/smarty.js +1 -0
  194. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/solr/solr.js +1 -0
  195. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/soy/soy.js +1 -0
  196. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sparql/sparql.js +1 -0
  197. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/spreadsheet/spreadsheet.js +1 -0
  198. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sql/sql.js +1 -0
  199. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stex/stex.js +1 -0
  200. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stylus/stylus.js +1 -0
  201. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/swift/swift.js +1 -0
  202. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tcl/tcl.js +1 -0
  203. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/textile/textile.js +1 -0
  204. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  205. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.js +1 -0
  206. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.css +26 -0
  207. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.js +1 -0
  208. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/toml/toml.js +1 -0
  209. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tornado/tornado.js +1 -0
  210. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/troff/troff.js +1 -0
  211. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn/ttcn.js +1 -0
  212. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn-cfg/ttcn-cfg.js +1 -0
  213. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/turtle/turtle.js +1 -0
  214. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/twig/twig.js +1 -0
  215. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vb/vb.js +1 -0
  216. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vbscript/vbscript.js +1 -0
  217. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/velocity/velocity.js +1 -0
  218. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/verilog/verilog.js +1 -0
  219. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vhdl/vhdl.js +1 -0
  220. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vue/vue.js +1 -0
  221. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/wast/wast.js +1 -0
  222. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/webidl/webidl.js +1 -0
  223. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xml/xml.js +1 -0
  224. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xquery/xquery.js +1 -0
  225. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yacas/yacas.js +1 -0
  226. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml/yaml.js +1 -0
  227. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +1 -0
  228. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/z80/z80.js +1 -0
  229. package/dist/static/org.standardnotes.code-editor/dist/lib/component-relay.js +1 -0
  230. package/dist/static/org.standardnotes.code-editor/dist/main.css +3 -0
  231. package/dist/static/org.standardnotes.code-editor/dist/main.css.map +1 -0
  232. package/dist/static/org.standardnotes.code-editor/dist/main.js +2 -0
  233. package/dist/static/org.standardnotes.code-editor/dist/main.js.map +1 -0
  234. package/dist/static/org.standardnotes.code-editor/dist/stylekit.css +3242 -0
  235. package/dist/static/org.standardnotes.code-editor/index.html +62 -0
  236. package/dist/static/org.standardnotes.plus-editor/dist/dist.css +3246 -0
  237. package/dist/static/org.standardnotes.plus-editor/dist/dist.css.map +1 -0
  238. package/dist/static/org.standardnotes.plus-editor/dist/dist.js +2 -0
  239. package/dist/static/org.standardnotes.plus-editor/dist/dist.js.map +1 -0
  240. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.eot +0 -0
  241. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.ttf +0 -0
  242. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff +0 -0
  243. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff2 +0 -0
  244. package/dist/static/org.standardnotes.plus-editor/dist/index.html +1 -0
  245. package/dist/static/org.standardnotes.plus-editor/dist/vendor.css +3249 -0
  246. package/dist/static/org.standardnotes.plus-editor/dist/vendor.js +2 -0
  247. package/dist/static/org.standardnotes.plus-editor/dist/vendor.js.LICENSE.txt +7 -0
  248. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.css +1 -0
  249. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js +2 -0
  250. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js.LICENSE.txt +39 -0
  251. package/dist/static/org.standardnotes.simple-task-editor/dist/index.html +1 -0
  252. package/dist/zips/com.sncommunity.advanced-checklist.zip +0 -0
  253. package/dist/zips/com.sncommunity.bold-editor.zip +0 -0
  254. package/dist/zips/com.sncommunity.dracula-theme.zip +0 -0
  255. package/dist/zips/com.sncommunity.markdown-basic.zip +0 -0
  256. package/dist/zips/com.sncommunity.markdown-math.zip +0 -0
  257. package/dist/zips/com.sncommunity.markdown-visual.zip +0 -0
  258. package/dist/zips/com.sncommunity.minimal-markdown.zip +0 -0
  259. package/dist/zips/org.standardnotes.advanced-markdown-editor.zip +0 -0
  260. package/dist/zips/org.standardnotes.code-editor.zip +0 -0
  261. package/dist/zips/org.standardnotes.legacy.file-safe.zip +0 -0
  262. package/dist/zips/org.standardnotes.plus-editor.zip +0 -0
  263. package/dist/zips/org.standardnotes.simple-task-editor.zip +0 -0
  264. package/package.json +2 -2
  265. package/plugins.json +16 -0
  266. package/scripts/Package.mjs +1 -0
@@ -0,0 +1,3347 @@
1
+ @charset "UTF-8";
2
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
3
+ /* Document
4
+ ========================================================================== */
5
+ /**
6
+ * 1. Correct the line height in all browsers.
7
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
8
+ */
9
+ html {
10
+ line-height: 1.15;
11
+ /* 1 */
12
+ -webkit-text-size-adjust: 100%;
13
+ /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+ /**
19
+ * Remove the margin in all browsers.
20
+ */
21
+ body {
22
+ margin: 0;
23
+ }
24
+
25
+ /**
26
+ * Render the `main` element consistently in IE.
27
+ */
28
+ main {
29
+ display: block;
30
+ }
31
+
32
+ /**
33
+ * Correct the font size and margin on `h1` elements within `section` and
34
+ * `article` contexts in Chrome, Firefox, and Safari.
35
+ */
36
+ h1 {
37
+ font-size: 2em;
38
+ margin: 0.67em 0;
39
+ }
40
+
41
+ /* Grouping content
42
+ ========================================================================== */
43
+ /**
44
+ * 1. Add the correct box sizing in Firefox.
45
+ * 2. Show the overflow in Edge and IE.
46
+ */
47
+ hr {
48
+ box-sizing: content-box;
49
+ /* 1 */
50
+ height: 0;
51
+ /* 1 */
52
+ overflow: visible;
53
+ /* 2 */
54
+ }
55
+
56
+ /**
57
+ * 1. Correct the inheritance and scaling of font size in all browsers.
58
+ * 2. Correct the odd `em` font sizing in all browsers.
59
+ */
60
+ pre {
61
+ font-family: monospace, monospace;
62
+ /* 1 */
63
+ font-size: 1em;
64
+ /* 2 */
65
+ }
66
+
67
+ /* Text-level semantics
68
+ ========================================================================== */
69
+ /**
70
+ * Remove the gray background on active links in IE 10.
71
+ */
72
+ a {
73
+ background-color: transparent;
74
+ }
75
+
76
+ /**
77
+ * 1. Remove the bottom border in Chrome 57-
78
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
79
+ */
80
+ abbr[title] {
81
+ border-bottom: none;
82
+ /* 1 */
83
+ text-decoration: underline;
84
+ /* 2 */
85
+ text-decoration: underline dotted;
86
+ /* 2 */
87
+ }
88
+
89
+ /**
90
+ * Add the correct font weight in Chrome, Edge, and Safari.
91
+ */
92
+ b,
93
+ strong {
94
+ font-weight: bolder;
95
+ }
96
+
97
+ /**
98
+ * 1. Correct the inheritance and scaling of font size in all browsers.
99
+ * 2. Correct the odd `em` font sizing in all browsers.
100
+ */
101
+ code,
102
+ kbd,
103
+ samp {
104
+ font-family: monospace, monospace;
105
+ /* 1 */
106
+ font-size: 1em;
107
+ /* 2 */
108
+ }
109
+
110
+ /**
111
+ * Add the correct font size in all browsers.
112
+ */
113
+ small {
114
+ font-size: 80%;
115
+ }
116
+
117
+ /**
118
+ * Prevent `sub` and `sup` elements from affecting the line height in
119
+ * all browsers.
120
+ */
121
+ sub,
122
+ sup {
123
+ font-size: 75%;
124
+ line-height: 0;
125
+ position: relative;
126
+ vertical-align: baseline;
127
+ }
128
+
129
+ sub {
130
+ bottom: -0.25em;
131
+ }
132
+
133
+ sup {
134
+ top: -0.5em;
135
+ }
136
+
137
+ /* Embedded content
138
+ ========================================================================== */
139
+ /**
140
+ * Remove the border on images inside links in IE 10.
141
+ */
142
+ img {
143
+ border-style: none;
144
+ }
145
+
146
+ /* Forms
147
+ ========================================================================== */
148
+ /**
149
+ * 1. Change the font styles in all browsers.
150
+ * 2. Remove the margin in Firefox and Safari.
151
+ */
152
+ button,
153
+ input,
154
+ optgroup,
155
+ select,
156
+ textarea {
157
+ font-family: inherit;
158
+ /* 1 */
159
+ font-size: 100%;
160
+ /* 1 */
161
+ line-height: 1.15;
162
+ /* 1 */
163
+ margin: 0;
164
+ /* 2 */
165
+ }
166
+
167
+ /**
168
+ * Show the overflow in IE.
169
+ * 1. Show the overflow in Edge.
170
+ */
171
+ button,
172
+ input {
173
+ /* 1 */
174
+ overflow: visible;
175
+ }
176
+
177
+ /**
178
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
179
+ * 1. Remove the inheritance of text transform in Firefox.
180
+ */
181
+ button,
182
+ select {
183
+ /* 1 */
184
+ text-transform: none;
185
+ }
186
+
187
+ /**
188
+ * Correct the inability to style clickable types in iOS and Safari.
189
+ */
190
+ button,
191
+ [type="button"],
192
+ [type="reset"],
193
+ [type="submit"] {
194
+ -webkit-appearance: button;
195
+ }
196
+
197
+ /**
198
+ * Remove the inner border and padding in Firefox.
199
+ */
200
+ button::-moz-focus-inner,
201
+ [type="button"]::-moz-focus-inner,
202
+ [type="reset"]::-moz-focus-inner,
203
+ [type="submit"]::-moz-focus-inner {
204
+ border-style: none;
205
+ padding: 0;
206
+ }
207
+
208
+ /**
209
+ * Restore the focus styles unset by the previous rule.
210
+ */
211
+ button:-moz-focusring,
212
+ [type="button"]:-moz-focusring,
213
+ [type="reset"]:-moz-focusring,
214
+ [type="submit"]:-moz-focusring {
215
+ outline: 1px dotted ButtonText;
216
+ }
217
+
218
+ /**
219
+ * Correct the padding in Firefox.
220
+ */
221
+ fieldset {
222
+ padding: 0.35em 0.75em 0.625em;
223
+ }
224
+
225
+ /**
226
+ * 1. Correct the text wrapping in Edge and IE.
227
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
228
+ * 3. Remove the padding so developers are not caught out when they zero out
229
+ * `fieldset` elements in all browsers.
230
+ */
231
+ legend {
232
+ box-sizing: border-box;
233
+ /* 1 */
234
+ color: inherit;
235
+ /* 2 */
236
+ display: table;
237
+ /* 1 */
238
+ max-width: 100%;
239
+ /* 1 */
240
+ padding: 0;
241
+ /* 3 */
242
+ white-space: normal;
243
+ /* 1 */
244
+ }
245
+
246
+ /**
247
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
248
+ */
249
+ progress {
250
+ vertical-align: baseline;
251
+ }
252
+
253
+ /**
254
+ * Remove the default vertical scrollbar in IE 10+.
255
+ */
256
+ textarea {
257
+ overflow: auto;
258
+ }
259
+
260
+ /**
261
+ * 1. Add the correct box sizing in IE 10.
262
+ * 2. Remove the padding in IE 10.
263
+ */
264
+ [type="checkbox"],
265
+ [type="radio"] {
266
+ box-sizing: border-box;
267
+ /* 1 */
268
+ padding: 0;
269
+ /* 2 */
270
+ }
271
+
272
+ /**
273
+ * Correct the cursor style of increment and decrement buttons in Chrome.
274
+ */
275
+ [type="number"]::-webkit-inner-spin-button,
276
+ [type="number"]::-webkit-outer-spin-button {
277
+ height: auto;
278
+ }
279
+
280
+ /**
281
+ * 1. Correct the odd appearance in Chrome and Safari.
282
+ * 2. Correct the outline style in Safari.
283
+ */
284
+ [type="search"] {
285
+ -webkit-appearance: textfield;
286
+ /* 1 */
287
+ outline-offset: -2px;
288
+ /* 2 */
289
+ }
290
+
291
+ /**
292
+ * Remove the inner padding in Chrome and Safari on macOS.
293
+ */
294
+ [type="search"]::-webkit-search-decoration {
295
+ -webkit-appearance: none;
296
+ }
297
+
298
+ /**
299
+ * 1. Correct the inability to style clickable types in iOS and Safari.
300
+ * 2. Change font properties to `inherit` in Safari.
301
+ */
302
+ ::-webkit-file-upload-button {
303
+ -webkit-appearance: button;
304
+ /* 1 */
305
+ font: inherit;
306
+ /* 2 */
307
+ }
308
+
309
+ /* Interactive
310
+ ========================================================================== */
311
+ /*
312
+ * Add the correct display in Edge, IE 10+, and Firefox.
313
+ */
314
+ details {
315
+ display: block;
316
+ }
317
+
318
+ /*
319
+ * Add the correct display in all browsers.
320
+ */
321
+ summary {
322
+ display: list-item;
323
+ }
324
+
325
+ /* Misc
326
+ ========================================================================== */
327
+ /**
328
+ * Add the correct display in IE 10+.
329
+ */
330
+ template {
331
+ display: none;
332
+ }
333
+
334
+ /**
335
+ * Add the correct display in IE 10.
336
+ */
337
+ [hidden] {
338
+ display: none;
339
+ }
340
+
341
+ :root {
342
+ --sn-stylekit-base-font-size: 13px;
343
+ --sn-stylekit-font-size-p: 1rem;
344
+ --sn-stylekit-font-size-editor: 1.21rem;
345
+ --sn-stylekit-font-size-h6: 0.8rem;
346
+ --sn-stylekit-font-size-h5: 0.9rem;
347
+ --sn-stylekit-font-size-h4: 1rem;
348
+ --sn-stylekit-font-size-h3: 1.1rem;
349
+ --sn-stylekit-font-size-h2: 1.2rem;
350
+ --sn-stylekit-font-size-h1: 1.3rem;
351
+ --sn-stylekit-neutral-color: #989898;
352
+ --sn-stylekit-neutral-contrast-color: #ffffff;
353
+ --sn-stylekit-info-color: #086dd6;
354
+ --sn-stylekit-info-color-darkened: #065cb5;
355
+ --sn-stylekit-info-contrast-color: #ffffff;
356
+ --sn-stylekit-success-color: #2b9612;
357
+ --sn-stylekit-success-contrast-color: #ffffff;
358
+ --sn-stylekit-warning-color: #f6a200;
359
+ --sn-stylekit-warning-contrast-color: #ffffff;
360
+ --sn-stylekit-danger-color: #f80324;
361
+ --sn-stylekit-danger-contrast-color: #ffffff;
362
+ --sn-stylekit-shadow-color: #c8c8c8;
363
+ --sn-stylekit-background-color: #ffffff;
364
+ --sn-stylekit-border-color: #dfe1e4;
365
+ --sn-stylekit-foreground-color: #000000;
366
+ --sn-stylekit-contrast-background-color: #f6f6f6;
367
+ --sn-stylekit-contrast-foreground-color: #2e2e2e;
368
+ --sn-stylekit-contrast-border-color: #e3e3e3;
369
+ --sn-stylekit-secondary-background-color: #f6f6f6;
370
+ --sn-stylekit-secondary-foreground-color: #2e2e2e;
371
+ --sn-stylekit-secondary-border-color: #e3e3e3;
372
+ --sn-stylekit-secondary-contrast-background-color: #e3e3e3;
373
+ --sn-stylekit-secondary-contrast-foreground-color: #2e2e2e;
374
+ --sn-stylekit-secondary-contrast-border-color: #a2a2a2;
375
+ --sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
376
+ --sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
377
+ --sn-stylekit-paragraph-text-color: #454545;
378
+ --sn-stylekit-input-placeholder-color: #a8a8a8;
379
+ --sn-stylekit-input-border-color: #e3e3e3;
380
+ --sn-stylekit-scrollbar-thumb-color: #dfdfdf;
381
+ --sn-stylekit-scrollbar-track-border-color: #e7e7e7;
382
+ --sn-stylekit-general-border-radius: 2px;
383
+ --sn-stylekit-list-item-highlight-color: #f4f5f7;
384
+ --sn-stylekit-simplified-chinese-font: 'Microsoft Yahei', '微软雅黑体';
385
+ --sn-stylekit-monospace-font: 'SFMono-Regular', Consolas, 'Liberation Mono',
386
+ Menlo, 'Ubuntu Mono', 'Courier New', monospace;
387
+ --sn-stylekit-sans-serif-font: -apple-system, BlinkMacSystemFont, 'Segoe UI',
388
+ 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
389
+ 'Helvetica Neue', var(--sn-stylekit-simplified-chinese-font), sans-serif;
390
+ --sn-stylekit-editor-font-family: var(--sn-stylekit-sans-serif-font);
391
+ --sn-stylekit-theme-type: light;
392
+ --sn-stylekit-theme-name: sn-light;
393
+ }
394
+
395
+ .sn-component {
396
+ /**
397
+ * Do not use these rules without explicitly handling focus in a different
398
+ * way, otherwise keyboard focus will break.
399
+ */
400
+ font-family: var(--sn-stylekit-sans-serif-font);
401
+ -webkit-font-smoothing: antialiased;
402
+ color: var(--sn-stylekit-foreground-color);
403
+ }
404
+
405
+ .sn-component .sk-panel {
406
+ box-shadow: 0px 2px 5px var(--sn-stylekit-shadow-color);
407
+ background-color: var(--sn-stylekit-background-color);
408
+ border: 1px solid var(--sn-stylekit-border-color);
409
+ border-radius: var(--sn-stylekit-general-border-radius);
410
+ display: flex;
411
+ flex-direction: column;
412
+ overflow: auto;
413
+ flex-grow: 1;
414
+ }
415
+
416
+ .sn-component .sk-panel a:hover {
417
+ text-decoration: underline;
418
+ }
419
+
420
+ .sn-component .sk-panel.static {
421
+ box-shadow: none;
422
+ border: none;
423
+ border-radius: 0;
424
+ }
425
+
426
+ .sn-component .sk-panel .sk-panel-header {
427
+ flex-shrink: 0;
428
+ /* Don't allow to condense in height */
429
+ display: flex;
430
+ justify-content: space-between;
431
+ padding: 1.1rem 2rem;
432
+ border-bottom: 1px solid var(--sn-stylekit-contrast-border-color);
433
+ background-color: var(--sn-stylekit-contrast-background-color);
434
+ color: var(--sn-stylekit-contrast-foreground-color);
435
+ align-items: center;
436
+ }
437
+
438
+ .sn-component .sk-panel .sk-panel-header .sk-panel-header-title {
439
+ font-size: var(--sn-stylekit-font-size-h1);
440
+ font-weight: 500;
441
+ }
442
+
443
+ .sn-component .sk-panel .sk-panel-header .close-button {
444
+ font-weight: bold;
445
+ }
446
+
447
+ .sn-component .sk-panel .sk-footer,
448
+ .sn-component .sk-panel .sk-panel-footer {
449
+ padding: 1rem 2rem;
450
+ border-top: 1px solid var(--sn-stylekit-border-color);
451
+ box-sizing: border-box;
452
+ }
453
+
454
+ .sn-component .sk-panel .sk-footer.extra-padding,
455
+ .sn-component .sk-panel .sk-panel-footer.extra-padding {
456
+ padding: 2rem 2rem;
457
+ }
458
+
459
+ .sn-component .sk-panel .sk-footer .left,
460
+ .sn-component .sk-panel .sk-panel-footer .left {
461
+ text-align: left;
462
+ display: block;
463
+ }
464
+
465
+ .sn-component .sk-panel .sk-footer .right,
466
+ .sn-component .sk-panel .sk-panel-footer .right {
467
+ text-align: right;
468
+ display: block;
469
+ }
470
+
471
+ .sn-component .sk-panel .sk-panel-content {
472
+ padding: 1.6rem 2rem;
473
+ padding-bottom: 0;
474
+ flex-grow: 1;
475
+ overflow: scroll;
476
+ height: 100%;
477
+ overflow-y: auto !important;
478
+ overflow-x: auto !important;
479
+ }
480
+
481
+ .sn-component .sk-panel .sk-panel-content .sk-p,
482
+ .sn-component .sk-panel .sk-panel-content .sk-li {
483
+ color: var(--sn-stylekit-paragraph-text-color);
484
+ line-height: 1.3;
485
+ }
486
+
487
+ .sn-component .sk-panel-section {
488
+ padding-bottom: 1.6rem;
489
+ display: flex;
490
+ flex-direction: column;
491
+ }
492
+
493
+ .sn-component .sk-panel-section.sk-panel-hero {
494
+ text-align: center;
495
+ }
496
+
497
+ .sn-component .sk-panel-section .sk-p:last-child {
498
+ margin-bottom: 0;
499
+ }
500
+
501
+ .sn-component .sk-panel-section:not(:last-child) {
502
+ margin-bottom: 1.5rem;
503
+ border-bottom: 1px solid var(--sn-stylekit-border-color);
504
+ }
505
+
506
+ .sn-component .sk-panel-section:not(:last-child).no-border, .sn-component .sk-panel-section.sn-button:not(:last-child), .sn-component .sk-panel-section.sn-dropdown-menu:not(:last-child), .sn-component .sk-panel-section.sn-select:not(:last-child), .sn-component .sk-panel-section.sn-select-button:not(:last-child), .sn-component .sk-panel-section.sn-select-popover:not(:last-child) {
507
+ border-bottom: none;
508
+ }
509
+
510
+ .sn-component .sk-panel-section:last-child {
511
+ margin-bottom: 0.5rem;
512
+ }
513
+
514
+ .sn-component .sk-panel-section.no-bottom-pad {
515
+ padding-bottom: 0;
516
+ margin-bottom: 0;
517
+ }
518
+
519
+ .sn-component .sk-panel-section .sk-panel-section-title {
520
+ margin-bottom: 0.5rem;
521
+ font-weight: bold;
522
+ font-size: var(--sn-stylekit-font-size-h3);
523
+ }
524
+
525
+ .sn-component .sk-panel-section .sk-panel-section-outer-title {
526
+ border-bottom: 1px solid var(--sn-stylekit-border-color);
527
+ padding-bottom: 0.9rem;
528
+ margin-top: 2.1rem;
529
+ margin-bottom: 15px;
530
+ font-size: var(--sn-stylekit-font-size-h3);
531
+ }
532
+
533
+ .sn-component .sk-panel-section .sk-panel-section-subtitle {
534
+ font-size: var(--sn-stylekit-font-size-h5);
535
+ margin-bottom: 2px;
536
+ }
537
+
538
+ .sn-component .sk-panel-section .sk-panel-section-subtitle.subtle {
539
+ font-weight: normal;
540
+ opacity: 0.6;
541
+ }
542
+
543
+ .sn-component .sk-panel-section .text-content .sk-p {
544
+ margin-bottom: 1rem;
545
+ }
546
+
547
+ .sn-component .sk-panel-section .text-content p:first-child {
548
+ margin-top: 0.3rem;
549
+ }
550
+
551
+ .sn-component .sk-panel-row {
552
+ display: flex;
553
+ justify-content: space-between;
554
+ align-items: center;
555
+ padding-top: 0.4rem;
556
+ }
557
+
558
+ .sn-component .sk-panel-row.centered {
559
+ justify-content: center;
560
+ }
561
+
562
+ .sn-component .sk-panel-row.justify-right {
563
+ justify-content: flex-end;
564
+ }
565
+
566
+ .sn-component .sk-panel-row.justify-left {
567
+ justify-content: flex-start;
568
+ }
569
+
570
+ .sn-component .sk-panel-row.align-top {
571
+ align-items: flex-start;
572
+ }
573
+
574
+ .sn-component .sk-panel-row .sk-panel-column.stretch {
575
+ width: 100%;
576
+ }
577
+
578
+ .sn-component .sk-panel-row.default-padding, .sn-component .sk-panel-row:not(:last-child) {
579
+ padding-bottom: 0.4rem;
580
+ }
581
+
582
+ .sn-component .sk-panel-row.condensed {
583
+ padding-top: 0.2rem;
584
+ padding-bottom: 0.2rem;
585
+ }
586
+
587
+ .sn-component .sk-panel-row .sk-p {
588
+ margin: 0;
589
+ padding: 0;
590
+ }
591
+
592
+ .sn-component .vertical-rule {
593
+ background-color: var(--sn-stylekit-border-color);
594
+ height: 1.5rem;
595
+ width: 1px;
596
+ }
597
+
598
+ .sn-component .sk-panel-form {
599
+ width: 100%;
600
+ }
601
+
602
+ .sn-component .sk-panel-form.half {
603
+ width: 50%;
604
+ }
605
+
606
+ .sn-component .sk-panel-form .form-submit {
607
+ margin-top: 0.15rem;
608
+ }
609
+
610
+ .sn-component .right-aligned {
611
+ justify-content: flex-end;
612
+ text-align: right;
613
+ }
614
+
615
+ .sn-component .sk-menu-panel {
616
+ background-color: var(--sn-stylekit-background-color);
617
+ border: 1px solid var(--sn-stylekit-contrast-border-color);
618
+ border-radius: var(--sn-stylekit-general-border-radius);
619
+ overflow: scroll;
620
+ user-select: none;
621
+ overflow-y: auto !important;
622
+ overflow-x: auto !important;
623
+ }
624
+
625
+ .sn-component .sk-menu-panel .sk-menu-panel-header {
626
+ padding: 0.8rem 1rem;
627
+ border-bottom: 1px solid var(--sn-stylekit-contrast-border-color);
628
+ background-color: var(--sn-stylekit-contrast-background-color);
629
+ color: var(--sn-stylekit-contrast-foreground-color);
630
+ display: flex;
631
+ justify-content: space-between;
632
+ align-items: center;
633
+ }
634
+
635
+ .sn-component .sk-menu-panel .sk-menu-panel-header-title {
636
+ font-weight: bold;
637
+ font-size: var(--sn-stylekit-font-size-h4);
638
+ }
639
+
640
+ .sn-component .sk-menu-panel .sk-menu-panel-header-subtitle {
641
+ margin-top: 0.2rem;
642
+ opacity: 0.6;
643
+ }
644
+
645
+ .sn-component .sk-menu-panel .sk-menu-panel-row {
646
+ padding: 1rem 1rem;
647
+ cursor: pointer;
648
+ display: flex;
649
+ flex-direction: row;
650
+ justify-content: space-between;
651
+ border-bottom: 1px solid var(--sn-stylekit-border-color);
652
+ }
653
+
654
+ .sn-component .sk-menu-panel .sk-menu-panel-row:hover {
655
+ background-color: var(--sn-stylekit-contrast-background-color);
656
+ color: var(--sn-stylekit-contrast-foreground-color);
657
+ border-color: var(--sn-stylekit-contrast-border-color);
658
+ }
659
+
660
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column {
661
+ display: flex;
662
+ justify-content: center;
663
+ flex-direction: column;
664
+ /* Nested row */
665
+ }
666
+
667
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column:not(:first-child) {
668
+ padding-left: 1rem;
669
+ padding-right: 0.15rem;
670
+ }
671
+
672
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column.stretch {
673
+ width: 100%;
674
+ }
675
+
676
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrows {
677
+ margin-top: 1rem;
678
+ }
679
+
680
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-row,
681
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrow {
682
+ border: 1px solid var(--sn-stylekit-contrast-border-color);
683
+ margin-top: -1px;
684
+ }
685
+
686
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-row:hover,
687
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrow:hover {
688
+ background-color: var(--sn-stylekit-background-color);
689
+ }
690
+
691
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .left {
692
+ display: flex;
693
+ }
694
+
695
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-button .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-box .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-button .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-button .sk-panel-section-subtitle, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-box .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-box .sk-panel-section-subtitle {
696
+ font-size: var(--sn-stylekit-font-size-h6);
697
+ font-weight: normal;
698
+ }
699
+
700
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-panel-section-subtitle {
701
+ font-size: var(--sn-stylekit-font-size-p);
702
+ font-weight: bold;
703
+ }
704
+
705
+ .sn-component .sk-menu-panel .sk-menu-panel-row .sk-sublabel {
706
+ font-size: var(--sn-stylekit-font-size-h5);
707
+ margin-top: 0.2rem;
708
+ opacity: 0.6;
709
+ }
710
+
711
+ .sn-component .red {
712
+ color: var(--sn-stylekit-danger-color);
713
+ }
714
+
715
+ .sn-component .tinted {
716
+ color: var(--sn-stylekit-info-color);
717
+ }
718
+
719
+ .sn-component .selectable {
720
+ user-select: text !important;
721
+ -ms-user-select: text !important;
722
+ -moz-user-select: text !important;
723
+ -webkit-user-select: text !important;
724
+ }
725
+
726
+ .sn-component .sk-h1,
727
+ .sn-component .sk-h2,
728
+ .sn-component .sk-h3,
729
+ .sn-component .sk-h4,
730
+ .sn-component .sk-h5 {
731
+ margin: 0;
732
+ padding: 0;
733
+ font-weight: normal;
734
+ }
735
+
736
+ .sn-component .sk-h1 {
737
+ font-weight: 500;
738
+ font-size: var(--sn-stylekit-font-size-h1);
739
+ line-height: 1.9rem;
740
+ }
741
+
742
+ .sn-component .sk-h2 {
743
+ font-size: var(--sn-stylekit-font-size-h2);
744
+ line-height: 1.8rem;
745
+ }
746
+
747
+ .sn-component .sk-h3 {
748
+ font-size: var(--sn-stylekit-font-size-h3);
749
+ line-height: 1.7rem;
750
+ }
751
+
752
+ .sn-component .sk-h4 {
753
+ font-size: var(--sn-stylekit-font-size-p);
754
+ line-height: 1.4rem;
755
+ }
756
+
757
+ .sn-component .sk-h5 {
758
+ font-size: var(--sn-stylekit-font-size-h5);
759
+ }
760
+
761
+ .sn-component .sk-bold {
762
+ font-weight: bold;
763
+ }
764
+
765
+ .sn-component .sk-font-small {
766
+ font-size: var(--sn-stylekit-font-size-h5);
767
+ }
768
+
769
+ .sn-component .sk-font-normal {
770
+ font-size: var(--sn-stylekit-font-size-p);
771
+ }
772
+
773
+ .sn-component .sk-font-large {
774
+ font-size: var(--sn-stylekit-font-size-h3);
775
+ }
776
+
777
+ .sn-component a.sk-a {
778
+ cursor: pointer;
779
+ user-select: none;
780
+ }
781
+
782
+ .sn-component a.sk-a.disabled {
783
+ color: var(--sn-stylekit-neutral-color);
784
+ opacity: 0.6;
785
+ }
786
+
787
+ .sn-component a.sk-a.boxed {
788
+ border-radius: var(--sn-stylekit-general-border-radius);
789
+ padding: 0.3rem 0.4rem;
790
+ }
791
+
792
+ .sn-component a.sk-a.boxed:hover {
793
+ text-decoration: none;
794
+ }
795
+
796
+ .sn-component a.sk-a.boxed.neutral {
797
+ background-color: var(--sn-stylekit-neutral-color);
798
+ color: var(--sn-stylekit-neutral-contrast-color);
799
+ }
800
+
801
+ .sn-component a.sk-a.boxed.info {
802
+ background-color: var(--sn-stylekit-info-color);
803
+ color: var(--sn-stylekit-info-contrast-color);
804
+ }
805
+
806
+ .sn-component a.sk-a.boxed.warning {
807
+ background-color: var(--sn-stylekit-warning-color);
808
+ color: var(--sn-stylekit-warning-contrast-color);
809
+ }
810
+
811
+ .sn-component a.sk-a.boxed.danger {
812
+ background-color: var(--sn-stylekit-danger-color);
813
+ color: var(--sn-stylekit-danger-contrast-color);
814
+ }
815
+
816
+ .sn-component a.sk-a.boxed.success {
817
+ background-color: var(--sn-stylekit-success-color);
818
+ color: var(--sn-stylekit-success-contrast-color);
819
+ }
820
+
821
+ .sn-component .wrap {
822
+ word-wrap: break-word;
823
+ }
824
+
825
+ .sn-component *.sk-base {
826
+ color: var(--sn-stylekit-foreground-color);
827
+ }
828
+
829
+ .sn-component *.contrast {
830
+ color: var(--sn-stylekit-contrast-foreground-color);
831
+ }
832
+
833
+ .sn-component *.neutral {
834
+ color: var(--sn-stylekit-neutral-color);
835
+ }
836
+
837
+ .sn-component *.info {
838
+ color: var(--sn-stylekit-info-color);
839
+ }
840
+
841
+ .sn-component *.info-contrast {
842
+ color: var(--sn-stylekit-info-contrast-color);
843
+ }
844
+
845
+ .sn-component *.warning {
846
+ color: var(--sn-stylekit-warning-color);
847
+ }
848
+
849
+ .sn-component *.danger {
850
+ color: var(--sn-stylekit-danger-color);
851
+ }
852
+
853
+ .sn-component *.success {
854
+ color: var(--sn-stylekit-success-color);
855
+ }
856
+
857
+ .sn-component *.info-i {
858
+ color: var(--sn-stylekit-info-color) !important;
859
+ }
860
+
861
+ .sn-component *.warning-i {
862
+ color: var(--sn-stylekit-warning-color) !important;
863
+ }
864
+
865
+ .sn-component *.danger-i {
866
+ color: var(--sn-stylekit-danger-color) !important;
867
+ }
868
+
869
+ .sn-component *.success-i {
870
+ color: var(--sn-stylekit-success-color) !important;
871
+ }
872
+
873
+ .sn-component *.clear {
874
+ background-color: transparent;
875
+ border: none;
876
+ }
877
+
878
+ .sn-component .center-text {
879
+ text-align: center !important;
880
+ justify-content: center !important;
881
+ }
882
+
883
+ .sn-component p.sk-p {
884
+ margin: 0.5rem 0;
885
+ }
886
+
887
+ .sn-component input.sk-input {
888
+ box-sizing: border-box;
889
+ padding: 0.7rem 0.8rem;
890
+ margin: 0.3rem 0;
891
+ border: none;
892
+ font-size: var(--sn-stylekit-font-size-h3);
893
+ width: 100%;
894
+ outline: 0;
895
+ resize: none;
896
+ }
897
+
898
+ .sn-component input.sk-input.clear {
899
+ color: var(--sn-stylekit-foreground-color);
900
+ background-color: transparent;
901
+ border: none;
902
+ }
903
+
904
+ .sn-component input.sk-input.no-border, .sn-component input.sk-input.sn-button, .sn-component input.sk-input.sn-dropdown-menu, .sn-component input.sk-input.sn-select, .sn-component input.sk-input.sn-select-button, .sn-component input.sk-input.sn-select-popover {
905
+ border: none;
906
+ }
907
+
908
+ .sn-component .sk-label, .sn-component .sk-panel-section .sk-panel-section-subtitle {
909
+ font-weight: bold;
910
+ }
911
+
912
+ .sn-component .sk-label.no-bold, .sn-component .sk-panel-section .no-bold.sk-panel-section-subtitle {
913
+ font-weight: normal;
914
+ }
915
+
916
+ .sn-component label.sk-label, .sn-component .sk-panel-section label.sk-panel-section-subtitle {
917
+ margin: 0.7rem 0;
918
+ display: block;
919
+ }
920
+
921
+ .sn-component label.sk-label input[type='checkbox'], .sn-component .sk-panel-section label.sk-panel-section-subtitle input[type='checkbox'],
922
+ .sn-component input[type='radio'] {
923
+ width: auto;
924
+ margin-right: 0.45rem;
925
+ /* Space after checkbox */
926
+ vertical-align: middle;
927
+ }
928
+
929
+ .sn-component .sk-horizontal-group > *, .sn-component .sk-input-group > * {
930
+ display: inline-block;
931
+ vertical-align: middle;
932
+ }
933
+
934
+ .sn-component .sk-horizontal-group > *:not(:first-child), .sn-component .sk-input-group > *:not(:first-child) {
935
+ margin-left: 0.9rem;
936
+ }
937
+
938
+ .sn-component .sk-border-bottom {
939
+ border-bottom: 1px solid var(--sn-stylekit-border-color);
940
+ }
941
+
942
+ .sn-component .sk-checkbox-group {
943
+ padding-top: 0.5rem;
944
+ padding-bottom: 0.3rem;
945
+ }
946
+
947
+ .sn-component ::placeholder {
948
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
949
+ color: var(--sn-stylekit-input-placeholder-color);
950
+ }
951
+
952
+ .sn-component :-ms-input-placeholder {
953
+ /* Internet Explorer 10-11 */
954
+ color: var(--sn-stylekit-input-placeholder-color);
955
+ }
956
+
957
+ .sn-component ::-ms-input-placeholder {
958
+ /* Microsoft Edge */
959
+ color: var(--sn-stylekit-input-placeholder-color);
960
+ }
961
+
962
+ .sn-component .sk-button-group.stretch {
963
+ display: flex;
964
+ width: 100%;
965
+ }
966
+
967
+ .sn-component .sk-button-group.stretch .sk-button, .sn-component .sk-button-group.stretch .sk-box {
968
+ display: block;
969
+ flex-grow: 1;
970
+ text-align: center;
971
+ }
972
+
973
+ .sn-component .sk-button-group .sk-button, .sn-component .sk-button-group .sk-box {
974
+ display: inline-block;
975
+ vertical-align: middle;
976
+ }
977
+
978
+ .sn-component .sk-button-group .sk-button:not(:last-child), .sn-component .sk-button-group .sk-box:not(:last-child) {
979
+ margin-right: 5px;
980
+ }
981
+
982
+ .sn-component .sk-button-group .sk-button:not(:last-child).featured, .sn-component .sk-button-group .sk-box:not(:last-child).featured {
983
+ margin-right: 8px;
984
+ }
985
+
986
+ .sn-component .sk-segmented-buttons {
987
+ display: flex;
988
+ flex-direction: row;
989
+ }
990
+
991
+ .sn-component .sk-segmented-buttons .sk-button, .sn-component .sk-segmented-buttons .sk-box {
992
+ border-radius: 0;
993
+ white-space: nowrap;
994
+ margin: 0;
995
+ margin-left: 0 !important;
996
+ margin-right: 0 !important;
997
+ }
998
+
999
+ .sn-component .sk-segmented-buttons .sk-button:not(:last-child), .sn-component .sk-segmented-buttons .sk-box:not(:last-child) {
1000
+ border-right: none;
1001
+ border-radius: 0;
1002
+ }
1003
+
1004
+ .sn-component .sk-segmented-buttons .sk-button:first-child, .sn-component .sk-segmented-buttons .sk-box:first-child {
1005
+ border-top-left-radius: var(--sn-stylekit-general-border-radius);
1006
+ border-bottom-left-radius: var(--sn-stylekit-general-border-radius);
1007
+ border-right: none;
1008
+ border-top-right-radius: 0;
1009
+ border-bottom-right-radius: 0;
1010
+ }
1011
+
1012
+ .sn-component .sk-segmented-buttons .sk-button:last-child, .sn-component .sk-segmented-buttons .sk-box:last-child {
1013
+ border-top-right-radius: var(--sn-stylekit-general-border-radius);
1014
+ border-bottom-right-radius: var(--sn-stylekit-general-border-radius);
1015
+ border-left: none;
1016
+ border-top-left-radius: 0;
1017
+ border-bottom-left-radius: 0;
1018
+ }
1019
+
1020
+ .sn-component .sk-box-group .sk-box {
1021
+ display: inline-block;
1022
+ }
1023
+
1024
+ .sn-component .sk-box-group .sk-box:not(:last-child) {
1025
+ margin-right: 5px;
1026
+ }
1027
+
1028
+ .sn-component .sk-a.button {
1029
+ text-decoration: none;
1030
+ }
1031
+
1032
+ .sn-component .sk-button, .sn-component .sk-box {
1033
+ display: table;
1034
+ padding: 0.5rem 0.7rem;
1035
+ font-size: var(--sn-stylekit-font-size-h5);
1036
+ cursor: pointer;
1037
+ text-align: center;
1038
+ user-select: none;
1039
+ }
1040
+
1041
+ .sn-component .sk-button.no-hover-border:after, .sn-component .no-hover-border.sk-box:after {
1042
+ color: transparent !important;
1043
+ }
1044
+
1045
+ .sn-component .sk-button.wide, .sn-component .wide.sk-box {
1046
+ padding: 0.3rem 1.7rem;
1047
+ }
1048
+
1049
+ .sn-component .sk-button > .sk-label, .sn-component .sk-box > .sk-label, .sn-component .sk-panel-section .sk-button > .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-box > .sk-panel-section-subtitle {
1050
+ font-weight: bold;
1051
+ display: block;
1052
+ text-align: center;
1053
+ }
1054
+
1055
+ .sn-component .sk-button.big, .sn-component .big.sk-box {
1056
+ font-size: var(--sn-stylekit-font-size-h3);
1057
+ padding: 0.7rem 2.5rem;
1058
+ }
1059
+
1060
+ .sn-component .sk-box {
1061
+ padding: 2.5rem 1.5rem;
1062
+ }
1063
+
1064
+ .sn-component .sk-button.sk-base, .sn-component .sk-base.sk-box,
1065
+ .sn-component .sk-box.sk-base,
1066
+ .sn-component .sk-circle.sk-base {
1067
+ /*
1068
+ If $border-color is supplied, we use traditional borders for rect.
1069
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1070
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1071
+ */
1072
+ color: var(--sn-stylekit-foreground-color);
1073
+ position: relative;
1074
+ background-color: var(--sn-stylekit-background-color);
1075
+ overflow: hidden;
1076
+ border-radius: var(--sn-stylekit-general-border-radius);
1077
+ /*
1078
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1079
+ We keep border-color as well incase the individual elements want a border in some cases.
1080
+ */
1081
+ border-color: var(--sn-stylekit-background-color);
1082
+ }
1083
+
1084
+ .sn-component .sk-button.sk-base *, .sn-component .sk-base.sk-box *,
1085
+ .sn-component .sk-box.sk-base *,
1086
+ .sn-component .sk-circle.sk-base * {
1087
+ position: relative;
1088
+ }
1089
+
1090
+ .sn-component .sk-button.sk-base:before, .sn-component .sk-base.sk-box:before,
1091
+ .sn-component .sk-box.sk-base:before,
1092
+ .sn-component .sk-circle.sk-base:before {
1093
+ content: '';
1094
+ position: absolute;
1095
+ top: 0;
1096
+ left: 0;
1097
+ width: 100%;
1098
+ height: 100%;
1099
+ background-color: var(--sn-stylekit-background-color);
1100
+ opacity: 1;
1101
+ border-radius: var(--sn-stylekit-general-border-radius);
1102
+ }
1103
+
1104
+ .sn-component .sk-button.sk-base:after, .sn-component .sk-base.sk-box:after,
1105
+ .sn-component .sk-box.sk-base:after,
1106
+ .sn-component .sk-circle.sk-base:after {
1107
+ content: '';
1108
+ display: block;
1109
+ height: 100%;
1110
+ position: absolute;
1111
+ top: 0;
1112
+ left: 0;
1113
+ width: 100%;
1114
+ border-radius: var(--sn-stylekit-general-border-radius);
1115
+ pointer-events: none;
1116
+ box-shadow: inset 0 0 0 1px;
1117
+ color: var(--sn-stylekit-background-color);
1118
+ }
1119
+
1120
+ .sn-component .sk-button.sk-base:hover:before, .sn-component .sk-base.sk-box:hover:before,
1121
+ .sn-component .sk-box.sk-base:hover:before,
1122
+ .sn-component .sk-circle.sk-base:hover:before {
1123
+ filter: brightness(130%);
1124
+ }
1125
+
1126
+ .sn-component .sk-button.sk-base.no-bg, .sn-component .sk-base.no-bg.sk-box,
1127
+ .sn-component .sk-box.sk-base.no-bg,
1128
+ .sn-component .sk-circle.sk-base.no-bg {
1129
+ background-color: transparent;
1130
+ }
1131
+
1132
+ .sn-component .sk-button.sk-base.no-bg:before, .sn-component .sk-base.no-bg.sk-box:before,
1133
+ .sn-component .sk-box.sk-base.no-bg:before,
1134
+ .sn-component .sk-circle.sk-base.no-bg:before {
1135
+ content: none;
1136
+ }
1137
+
1138
+ .sn-component .sk-button.sk-base.featured, .sn-component .sk-base.featured.sk-box,
1139
+ .sn-component .sk-box.sk-base.featured,
1140
+ .sn-component .sk-circle.sk-base.featured {
1141
+ border: none;
1142
+ padding: 0.75rem 1.25rem;
1143
+ font-size: var(--sn-stylekit-font-size-h3);
1144
+ }
1145
+
1146
+ .sn-component .sk-button.sk-base.featured:before, .sn-component .sk-base.featured.sk-box:before,
1147
+ .sn-component .sk-box.sk-base.featured:before,
1148
+ .sn-component .sk-circle.sk-base.featured:before {
1149
+ opacity: 1;
1150
+ }
1151
+
1152
+ .sn-component .sk-button.contrast, .sn-component .contrast.sk-box,
1153
+ .sn-component .sk-box.contrast,
1154
+ .sn-component .sk-circle.contrast {
1155
+ /*
1156
+ If $border-color is supplied, we use traditional borders for rect.
1157
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1158
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1159
+ */
1160
+ color: var(--sn-stylekit-contrast-foreground-color);
1161
+ position: relative;
1162
+ background-color: var(--sn-stylekit-contrast-background-color);
1163
+ overflow: hidden;
1164
+ border-radius: var(--sn-stylekit-general-border-radius);
1165
+ /*
1166
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1167
+ We keep border-color as well incase the individual elements want a border in some cases.
1168
+ */
1169
+ border-color: var(--sn-stylekit-contrast-background-color);
1170
+ }
1171
+
1172
+ .sn-component .sk-button.contrast *, .sn-component .contrast.sk-box *,
1173
+ .sn-component .sk-box.contrast *,
1174
+ .sn-component .sk-circle.contrast * {
1175
+ position: relative;
1176
+ }
1177
+
1178
+ .sn-component .sk-button.contrast:before, .sn-component .contrast.sk-box:before,
1179
+ .sn-component .sk-box.contrast:before,
1180
+ .sn-component .sk-circle.contrast:before {
1181
+ content: '';
1182
+ position: absolute;
1183
+ top: 0;
1184
+ left: 0;
1185
+ width: 100%;
1186
+ height: 100%;
1187
+ background-color: var(--sn-stylekit-contrast-background-color);
1188
+ opacity: 1;
1189
+ border-radius: var(--sn-stylekit-general-border-radius);
1190
+ }
1191
+
1192
+ .sn-component .sk-button.contrast:after, .sn-component .contrast.sk-box:after,
1193
+ .sn-component .sk-box.contrast:after,
1194
+ .sn-component .sk-circle.contrast:after {
1195
+ content: '';
1196
+ display: block;
1197
+ height: 100%;
1198
+ position: absolute;
1199
+ top: 0;
1200
+ left: 0;
1201
+ width: 100%;
1202
+ border-radius: var(--sn-stylekit-general-border-radius);
1203
+ pointer-events: none;
1204
+ box-shadow: inset 0 0 0 1px;
1205
+ color: var(--sn-stylekit-contrast-background-color);
1206
+ }
1207
+
1208
+ .sn-component .sk-button.contrast:hover:before, .sn-component .contrast.sk-box:hover:before,
1209
+ .sn-component .sk-box.contrast:hover:before,
1210
+ .sn-component .sk-circle.contrast:hover:before {
1211
+ filter: brightness(130%);
1212
+ }
1213
+
1214
+ .sn-component .sk-button.contrast.no-bg, .sn-component .contrast.no-bg.sk-box,
1215
+ .sn-component .sk-box.contrast.no-bg,
1216
+ .sn-component .sk-circle.contrast.no-bg {
1217
+ background-color: transparent;
1218
+ }
1219
+
1220
+ .sn-component .sk-button.contrast.no-bg:before, .sn-component .contrast.no-bg.sk-box:before,
1221
+ .sn-component .sk-box.contrast.no-bg:before,
1222
+ .sn-component .sk-circle.contrast.no-bg:before {
1223
+ content: none;
1224
+ }
1225
+
1226
+ .sn-component .sk-button.contrast.featured, .sn-component .contrast.featured.sk-box,
1227
+ .sn-component .sk-box.contrast.featured,
1228
+ .sn-component .sk-circle.contrast.featured {
1229
+ border: none;
1230
+ padding: 0.75rem 1.25rem;
1231
+ font-size: var(--sn-stylekit-font-size-h3);
1232
+ }
1233
+
1234
+ .sn-component .sk-button.contrast.featured:before, .sn-component .contrast.featured.sk-box:before,
1235
+ .sn-component .sk-box.contrast.featured:before,
1236
+ .sn-component .sk-circle.contrast.featured:before {
1237
+ opacity: 1;
1238
+ }
1239
+
1240
+ .sn-component .sk-button.sk-secondary, .sn-component .sk-secondary.sk-box,
1241
+ .sn-component .sk-box.sk-secondary,
1242
+ .sn-component .sk-circle.sk-secondary {
1243
+ /*
1244
+ If $border-color is supplied, we use traditional borders for rect.
1245
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1246
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1247
+ */
1248
+ color: var(--sn-stylekit-secondary-foreground-color);
1249
+ position: relative;
1250
+ background-color: var(--sn-stylekit-secondary-background-color);
1251
+ overflow: hidden;
1252
+ border-radius: var(--sn-stylekit-general-border-radius);
1253
+ /*
1254
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1255
+ We keep border-color as well incase the individual elements want a border in some cases.
1256
+ */
1257
+ border-color: var(--sn-stylekit-secondary-background-color);
1258
+ }
1259
+
1260
+ .sn-component .sk-button.sk-secondary *, .sn-component .sk-secondary.sk-box *,
1261
+ .sn-component .sk-box.sk-secondary *,
1262
+ .sn-component .sk-circle.sk-secondary * {
1263
+ position: relative;
1264
+ }
1265
+
1266
+ .sn-component .sk-button.sk-secondary:before, .sn-component .sk-secondary.sk-box:before,
1267
+ .sn-component .sk-box.sk-secondary:before,
1268
+ .sn-component .sk-circle.sk-secondary:before {
1269
+ content: '';
1270
+ position: absolute;
1271
+ top: 0;
1272
+ left: 0;
1273
+ width: 100%;
1274
+ height: 100%;
1275
+ background-color: var(--sn-stylekit-secondary-background-color);
1276
+ opacity: 1;
1277
+ border-radius: var(--sn-stylekit-general-border-radius);
1278
+ }
1279
+
1280
+ .sn-component .sk-button.sk-secondary:after, .sn-component .sk-secondary.sk-box:after,
1281
+ .sn-component .sk-box.sk-secondary:after,
1282
+ .sn-component .sk-circle.sk-secondary:after {
1283
+ content: '';
1284
+ display: block;
1285
+ height: 100%;
1286
+ position: absolute;
1287
+ top: 0;
1288
+ left: 0;
1289
+ width: 100%;
1290
+ border-radius: var(--sn-stylekit-general-border-radius);
1291
+ pointer-events: none;
1292
+ box-shadow: inset 0 0 0 1px;
1293
+ color: var(--sn-stylekit-secondary-background-color);
1294
+ }
1295
+
1296
+ .sn-component .sk-button.sk-secondary:hover:before, .sn-component .sk-secondary.sk-box:hover:before,
1297
+ .sn-component .sk-box.sk-secondary:hover:before,
1298
+ .sn-component .sk-circle.sk-secondary:hover:before {
1299
+ filter: brightness(130%);
1300
+ }
1301
+
1302
+ .sn-component .sk-button.sk-secondary.no-bg, .sn-component .sk-secondary.no-bg.sk-box,
1303
+ .sn-component .sk-box.sk-secondary.no-bg,
1304
+ .sn-component .sk-circle.sk-secondary.no-bg {
1305
+ background-color: transparent;
1306
+ }
1307
+
1308
+ .sn-component .sk-button.sk-secondary.no-bg:before, .sn-component .sk-secondary.no-bg.sk-box:before,
1309
+ .sn-component .sk-box.sk-secondary.no-bg:before,
1310
+ .sn-component .sk-circle.sk-secondary.no-bg:before {
1311
+ content: none;
1312
+ }
1313
+
1314
+ .sn-component .sk-button.sk-secondary.featured, .sn-component .sk-secondary.featured.sk-box,
1315
+ .sn-component .sk-box.sk-secondary.featured,
1316
+ .sn-component .sk-circle.sk-secondary.featured {
1317
+ border: none;
1318
+ padding: 0.75rem 1.25rem;
1319
+ font-size: var(--sn-stylekit-font-size-h3);
1320
+ }
1321
+
1322
+ .sn-component .sk-button.sk-secondary.featured:before, .sn-component .sk-secondary.featured.sk-box:before,
1323
+ .sn-component .sk-box.sk-secondary.featured:before,
1324
+ .sn-component .sk-circle.sk-secondary.featured:before {
1325
+ opacity: 1;
1326
+ }
1327
+
1328
+ .sn-component .sk-button.sk-secondary-contrast, .sn-component .sk-secondary-contrast.sk-box,
1329
+ .sn-component .sk-box.sk-secondary-contrast,
1330
+ .sn-component .sk-circle.sk-secondary-contrast {
1331
+ /*
1332
+ If $border-color is supplied, we use traditional borders for rect.
1333
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1334
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1335
+ */
1336
+ color: var(--sn-stylekit-secondary-contrast-foreground-color);
1337
+ position: relative;
1338
+ background-color: var(--sn-stylekit-secondary-contrast-background-color);
1339
+ overflow: hidden;
1340
+ border-radius: var(--sn-stylekit-general-border-radius);
1341
+ /*
1342
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1343
+ We keep border-color as well incase the individual elements want a border in some cases.
1344
+ */
1345
+ border-color: var(--sn-stylekit-secondary-contrast-background-color);
1346
+ }
1347
+
1348
+ .sn-component .sk-button.sk-secondary-contrast *, .sn-component .sk-secondary-contrast.sk-box *,
1349
+ .sn-component .sk-box.sk-secondary-contrast *,
1350
+ .sn-component .sk-circle.sk-secondary-contrast * {
1351
+ position: relative;
1352
+ }
1353
+
1354
+ .sn-component .sk-button.sk-secondary-contrast:before, .sn-component .sk-secondary-contrast.sk-box:before,
1355
+ .sn-component .sk-box.sk-secondary-contrast:before,
1356
+ .sn-component .sk-circle.sk-secondary-contrast:before {
1357
+ content: '';
1358
+ position: absolute;
1359
+ top: 0;
1360
+ left: 0;
1361
+ width: 100%;
1362
+ height: 100%;
1363
+ background-color: var(--sn-stylekit-secondary-contrast-background-color);
1364
+ opacity: 1;
1365
+ border-radius: var(--sn-stylekit-general-border-radius);
1366
+ }
1367
+
1368
+ .sn-component .sk-button.sk-secondary-contrast:after, .sn-component .sk-secondary-contrast.sk-box:after,
1369
+ .sn-component .sk-box.sk-secondary-contrast:after,
1370
+ .sn-component .sk-circle.sk-secondary-contrast:after {
1371
+ content: '';
1372
+ display: block;
1373
+ height: 100%;
1374
+ position: absolute;
1375
+ top: 0;
1376
+ left: 0;
1377
+ width: 100%;
1378
+ border-radius: var(--sn-stylekit-general-border-radius);
1379
+ pointer-events: none;
1380
+ box-shadow: inset 0 0 0 1px;
1381
+ color: var(--sn-stylekit-secondary-contrast-background-color);
1382
+ }
1383
+
1384
+ .sn-component .sk-button.sk-secondary-contrast:hover:before, .sn-component .sk-secondary-contrast.sk-box:hover:before,
1385
+ .sn-component .sk-box.sk-secondary-contrast:hover:before,
1386
+ .sn-component .sk-circle.sk-secondary-contrast:hover:before {
1387
+ filter: brightness(130%);
1388
+ }
1389
+
1390
+ .sn-component .sk-button.sk-secondary-contrast.no-bg, .sn-component .sk-secondary-contrast.no-bg.sk-box,
1391
+ .sn-component .sk-box.sk-secondary-contrast.no-bg,
1392
+ .sn-component .sk-circle.sk-secondary-contrast.no-bg {
1393
+ background-color: transparent;
1394
+ }
1395
+
1396
+ .sn-component .sk-button.sk-secondary-contrast.no-bg:before, .sn-component .sk-secondary-contrast.no-bg.sk-box:before,
1397
+ .sn-component .sk-box.sk-secondary-contrast.no-bg:before,
1398
+ .sn-component .sk-circle.sk-secondary-contrast.no-bg:before {
1399
+ content: none;
1400
+ }
1401
+
1402
+ .sn-component .sk-button.sk-secondary-contrast.featured, .sn-component .sk-secondary-contrast.featured.sk-box,
1403
+ .sn-component .sk-box.sk-secondary-contrast.featured,
1404
+ .sn-component .sk-circle.sk-secondary-contrast.featured {
1405
+ border: none;
1406
+ padding: 0.75rem 1.25rem;
1407
+ font-size: var(--sn-stylekit-font-size-h3);
1408
+ }
1409
+
1410
+ .sn-component .sk-button.sk-secondary-contrast.featured:before, .sn-component .sk-secondary-contrast.featured.sk-box:before,
1411
+ .sn-component .sk-box.sk-secondary-contrast.featured:before,
1412
+ .sn-component .sk-circle.sk-secondary-contrast.featured:before {
1413
+ opacity: 1;
1414
+ }
1415
+
1416
+ .sn-component .sk-button.neutral, .sn-component .neutral.sk-box,
1417
+ .sn-component .sk-box.neutral,
1418
+ .sn-component .sk-circle.neutral {
1419
+ /*
1420
+ If $border-color is supplied, we use traditional borders for rect.
1421
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1422
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1423
+ */
1424
+ color: var(--sn-stylekit-neutral-contrast-color);
1425
+ position: relative;
1426
+ background-color: var(--sn-stylekit-neutral-color);
1427
+ overflow: hidden;
1428
+ border-radius: var(--sn-stylekit-general-border-radius);
1429
+ /*
1430
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1431
+ We keep border-color as well incase the individual elements want a border in some cases.
1432
+ */
1433
+ border-color: var(--sn-stylekit-neutral-color);
1434
+ }
1435
+
1436
+ .sn-component .sk-button.neutral *, .sn-component .neutral.sk-box *,
1437
+ .sn-component .sk-box.neutral *,
1438
+ .sn-component .sk-circle.neutral * {
1439
+ position: relative;
1440
+ }
1441
+
1442
+ .sn-component .sk-button.neutral:before, .sn-component .neutral.sk-box:before,
1443
+ .sn-component .sk-box.neutral:before,
1444
+ .sn-component .sk-circle.neutral:before {
1445
+ content: '';
1446
+ position: absolute;
1447
+ top: 0;
1448
+ left: 0;
1449
+ width: 100%;
1450
+ height: 100%;
1451
+ background-color: var(--sn-stylekit-neutral-color);
1452
+ opacity: 1;
1453
+ border-radius: var(--sn-stylekit-general-border-radius);
1454
+ }
1455
+
1456
+ .sn-component .sk-button.neutral:after, .sn-component .neutral.sk-box:after,
1457
+ .sn-component .sk-box.neutral:after,
1458
+ .sn-component .sk-circle.neutral:after {
1459
+ content: '';
1460
+ display: block;
1461
+ height: 100%;
1462
+ position: absolute;
1463
+ top: 0;
1464
+ left: 0;
1465
+ width: 100%;
1466
+ border-radius: var(--sn-stylekit-general-border-radius);
1467
+ pointer-events: none;
1468
+ box-shadow: inset 0 0 0 1px;
1469
+ color: var(--sn-stylekit-neutral-color);
1470
+ }
1471
+
1472
+ .sn-component .sk-button.neutral:hover:before, .sn-component .neutral.sk-box:hover:before,
1473
+ .sn-component .sk-box.neutral:hover:before,
1474
+ .sn-component .sk-circle.neutral:hover:before {
1475
+ filter: brightness(130%);
1476
+ }
1477
+
1478
+ .sn-component .sk-button.neutral.no-bg, .sn-component .neutral.no-bg.sk-box,
1479
+ .sn-component .sk-box.neutral.no-bg,
1480
+ .sn-component .sk-circle.neutral.no-bg {
1481
+ background-color: transparent;
1482
+ }
1483
+
1484
+ .sn-component .sk-button.neutral.no-bg:before, .sn-component .neutral.no-bg.sk-box:before,
1485
+ .sn-component .sk-box.neutral.no-bg:before,
1486
+ .sn-component .sk-circle.neutral.no-bg:before {
1487
+ content: none;
1488
+ }
1489
+
1490
+ .sn-component .sk-button.neutral.featured, .sn-component .neutral.featured.sk-box,
1491
+ .sn-component .sk-box.neutral.featured,
1492
+ .sn-component .sk-circle.neutral.featured {
1493
+ border: none;
1494
+ padding: 0.75rem 1.25rem;
1495
+ font-size: var(--sn-stylekit-font-size-h3);
1496
+ }
1497
+
1498
+ .sn-component .sk-button.neutral.featured:before, .sn-component .neutral.featured.sk-box:before,
1499
+ .sn-component .sk-box.neutral.featured:before,
1500
+ .sn-component .sk-circle.neutral.featured:before {
1501
+ opacity: 1;
1502
+ }
1503
+
1504
+ .sn-component .sk-button.info, .sn-component .info.sk-box,
1505
+ .sn-component .sk-box.info,
1506
+ .sn-component .sk-circle.info {
1507
+ /*
1508
+ If $border-color is supplied, we use traditional borders for rect.
1509
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1510
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1511
+ */
1512
+ color: var(--sn-stylekit-info-contrast-color);
1513
+ position: relative;
1514
+ background-color: var(--sn-stylekit-info-color);
1515
+ overflow: hidden;
1516
+ border-radius: var(--sn-stylekit-general-border-radius);
1517
+ /*
1518
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1519
+ We keep border-color as well incase the individual elements want a border in some cases.
1520
+ */
1521
+ border-color: var(--sn-stylekit-info-color);
1522
+ }
1523
+
1524
+ .sn-component .sk-button.info *, .sn-component .info.sk-box *,
1525
+ .sn-component .sk-box.info *,
1526
+ .sn-component .sk-circle.info * {
1527
+ position: relative;
1528
+ }
1529
+
1530
+ .sn-component .sk-button.info:before, .sn-component .info.sk-box:before,
1531
+ .sn-component .sk-box.info:before,
1532
+ .sn-component .sk-circle.info:before {
1533
+ content: '';
1534
+ position: absolute;
1535
+ top: 0;
1536
+ left: 0;
1537
+ width: 100%;
1538
+ height: 100%;
1539
+ background-color: var(--sn-stylekit-info-color);
1540
+ opacity: 1;
1541
+ border-radius: var(--sn-stylekit-general-border-radius);
1542
+ }
1543
+
1544
+ .sn-component .sk-button.info:after, .sn-component .info.sk-box:after,
1545
+ .sn-component .sk-box.info:after,
1546
+ .sn-component .sk-circle.info:after {
1547
+ content: '';
1548
+ display: block;
1549
+ height: 100%;
1550
+ position: absolute;
1551
+ top: 0;
1552
+ left: 0;
1553
+ width: 100%;
1554
+ border-radius: var(--sn-stylekit-general-border-radius);
1555
+ pointer-events: none;
1556
+ box-shadow: inset 0 0 0 1px;
1557
+ color: var(--sn-stylekit-info-color);
1558
+ }
1559
+
1560
+ .sn-component .sk-button.info:hover:before, .sn-component .info.sk-box:hover:before,
1561
+ .sn-component .sk-box.info:hover:before,
1562
+ .sn-component .sk-circle.info:hover:before {
1563
+ filter: brightness(130%);
1564
+ }
1565
+
1566
+ .sn-component .sk-button.info.no-bg, .sn-component .info.no-bg.sk-box,
1567
+ .sn-component .sk-box.info.no-bg,
1568
+ .sn-component .sk-circle.info.no-bg {
1569
+ background-color: transparent;
1570
+ }
1571
+
1572
+ .sn-component .sk-button.info.no-bg:before, .sn-component .info.no-bg.sk-box:before,
1573
+ .sn-component .sk-box.info.no-bg:before,
1574
+ .sn-component .sk-circle.info.no-bg:before {
1575
+ content: none;
1576
+ }
1577
+
1578
+ .sn-component .sk-button.info.featured, .sn-component .info.featured.sk-box,
1579
+ .sn-component .sk-box.info.featured,
1580
+ .sn-component .sk-circle.info.featured {
1581
+ border: none;
1582
+ padding: 0.75rem 1.25rem;
1583
+ font-size: var(--sn-stylekit-font-size-h3);
1584
+ }
1585
+
1586
+ .sn-component .sk-button.info.featured:before, .sn-component .info.featured.sk-box:before,
1587
+ .sn-component .sk-box.info.featured:before,
1588
+ .sn-component .sk-circle.info.featured:before {
1589
+ opacity: 1;
1590
+ }
1591
+
1592
+ .sn-component .sk-button.warning, .sn-component .warning.sk-box,
1593
+ .sn-component .sk-box.warning,
1594
+ .sn-component .sk-circle.warning {
1595
+ /*
1596
+ If $border-color is supplied, we use traditional borders for rect.
1597
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1598
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1599
+ */
1600
+ color: var(--sn-stylekit-warning-contrast-color);
1601
+ position: relative;
1602
+ background-color: var(--sn-stylekit-warning-color);
1603
+ overflow: hidden;
1604
+ border-radius: var(--sn-stylekit-general-border-radius);
1605
+ /*
1606
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1607
+ We keep border-color as well incase the individual elements want a border in some cases.
1608
+ */
1609
+ border-color: var(--sn-stylekit-warning-color);
1610
+ }
1611
+
1612
+ .sn-component .sk-button.warning *, .sn-component .warning.sk-box *,
1613
+ .sn-component .sk-box.warning *,
1614
+ .sn-component .sk-circle.warning * {
1615
+ position: relative;
1616
+ }
1617
+
1618
+ .sn-component .sk-button.warning:before, .sn-component .warning.sk-box:before,
1619
+ .sn-component .sk-box.warning:before,
1620
+ .sn-component .sk-circle.warning:before {
1621
+ content: '';
1622
+ position: absolute;
1623
+ top: 0;
1624
+ left: 0;
1625
+ width: 100%;
1626
+ height: 100%;
1627
+ background-color: var(--sn-stylekit-warning-color);
1628
+ opacity: 1;
1629
+ border-radius: var(--sn-stylekit-general-border-radius);
1630
+ }
1631
+
1632
+ .sn-component .sk-button.warning:after, .sn-component .warning.sk-box:after,
1633
+ .sn-component .sk-box.warning:after,
1634
+ .sn-component .sk-circle.warning:after {
1635
+ content: '';
1636
+ display: block;
1637
+ height: 100%;
1638
+ position: absolute;
1639
+ top: 0;
1640
+ left: 0;
1641
+ width: 100%;
1642
+ border-radius: var(--sn-stylekit-general-border-radius);
1643
+ pointer-events: none;
1644
+ box-shadow: inset 0 0 0 1px;
1645
+ color: var(--sn-stylekit-warning-color);
1646
+ }
1647
+
1648
+ .sn-component .sk-button.warning:hover:before, .sn-component .warning.sk-box:hover:before,
1649
+ .sn-component .sk-box.warning:hover:before,
1650
+ .sn-component .sk-circle.warning:hover:before {
1651
+ filter: brightness(130%);
1652
+ }
1653
+
1654
+ .sn-component .sk-button.warning.no-bg, .sn-component .warning.no-bg.sk-box,
1655
+ .sn-component .sk-box.warning.no-bg,
1656
+ .sn-component .sk-circle.warning.no-bg {
1657
+ background-color: transparent;
1658
+ }
1659
+
1660
+ .sn-component .sk-button.warning.no-bg:before, .sn-component .warning.no-bg.sk-box:before,
1661
+ .sn-component .sk-box.warning.no-bg:before,
1662
+ .sn-component .sk-circle.warning.no-bg:before {
1663
+ content: none;
1664
+ }
1665
+
1666
+ .sn-component .sk-button.warning.featured, .sn-component .warning.featured.sk-box,
1667
+ .sn-component .sk-box.warning.featured,
1668
+ .sn-component .sk-circle.warning.featured {
1669
+ border: none;
1670
+ padding: 0.75rem 1.25rem;
1671
+ font-size: var(--sn-stylekit-font-size-h3);
1672
+ }
1673
+
1674
+ .sn-component .sk-button.warning.featured:before, .sn-component .warning.featured.sk-box:before,
1675
+ .sn-component .sk-box.warning.featured:before,
1676
+ .sn-component .sk-circle.warning.featured:before {
1677
+ opacity: 1;
1678
+ }
1679
+
1680
+ .sn-component .sk-button.danger, .sn-component .danger.sk-box,
1681
+ .sn-component .sk-box.danger,
1682
+ .sn-component .sk-circle.danger {
1683
+ /*
1684
+ If $border-color is supplied, we use traditional borders for rect.
1685
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1686
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1687
+ */
1688
+ color: var(--sn-stylekit-danger-contrast-color);
1689
+ position: relative;
1690
+ background-color: var(--sn-stylekit-danger-color);
1691
+ overflow: hidden;
1692
+ border-radius: var(--sn-stylekit-general-border-radius);
1693
+ /*
1694
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1695
+ We keep border-color as well incase the individual elements want a border in some cases.
1696
+ */
1697
+ border-color: var(--sn-stylekit-danger-color);
1698
+ }
1699
+
1700
+ .sn-component .sk-button.danger *, .sn-component .danger.sk-box *,
1701
+ .sn-component .sk-box.danger *,
1702
+ .sn-component .sk-circle.danger * {
1703
+ position: relative;
1704
+ }
1705
+
1706
+ .sn-component .sk-button.danger:before, .sn-component .danger.sk-box:before,
1707
+ .sn-component .sk-box.danger:before,
1708
+ .sn-component .sk-circle.danger:before {
1709
+ content: '';
1710
+ position: absolute;
1711
+ top: 0;
1712
+ left: 0;
1713
+ width: 100%;
1714
+ height: 100%;
1715
+ background-color: var(--sn-stylekit-danger-color);
1716
+ opacity: 1;
1717
+ border-radius: var(--sn-stylekit-general-border-radius);
1718
+ }
1719
+
1720
+ .sn-component .sk-button.danger:after, .sn-component .danger.sk-box:after,
1721
+ .sn-component .sk-box.danger:after,
1722
+ .sn-component .sk-circle.danger:after {
1723
+ content: '';
1724
+ display: block;
1725
+ height: 100%;
1726
+ position: absolute;
1727
+ top: 0;
1728
+ left: 0;
1729
+ width: 100%;
1730
+ border-radius: var(--sn-stylekit-general-border-radius);
1731
+ pointer-events: none;
1732
+ box-shadow: inset 0 0 0 1px;
1733
+ color: var(--sn-stylekit-danger-color);
1734
+ }
1735
+
1736
+ .sn-component .sk-button.danger:hover:before, .sn-component .danger.sk-box:hover:before,
1737
+ .sn-component .sk-box.danger:hover:before,
1738
+ .sn-component .sk-circle.danger:hover:before {
1739
+ filter: brightness(130%);
1740
+ }
1741
+
1742
+ .sn-component .sk-button.danger.no-bg, .sn-component .danger.no-bg.sk-box,
1743
+ .sn-component .sk-box.danger.no-bg,
1744
+ .sn-component .sk-circle.danger.no-bg {
1745
+ background-color: transparent;
1746
+ }
1747
+
1748
+ .sn-component .sk-button.danger.no-bg:before, .sn-component .danger.no-bg.sk-box:before,
1749
+ .sn-component .sk-box.danger.no-bg:before,
1750
+ .sn-component .sk-circle.danger.no-bg:before {
1751
+ content: none;
1752
+ }
1753
+
1754
+ .sn-component .sk-button.danger.featured, .sn-component .danger.featured.sk-box,
1755
+ .sn-component .sk-box.danger.featured,
1756
+ .sn-component .sk-circle.danger.featured {
1757
+ border: none;
1758
+ padding: 0.75rem 1.25rem;
1759
+ font-size: var(--sn-stylekit-font-size-h3);
1760
+ }
1761
+
1762
+ .sn-component .sk-button.danger.featured:before, .sn-component .danger.featured.sk-box:before,
1763
+ .sn-component .sk-box.danger.featured:before,
1764
+ .sn-component .sk-circle.danger.featured:before {
1765
+ opacity: 1;
1766
+ }
1767
+
1768
+ .sn-component .sk-button.success, .sn-component .success.sk-box,
1769
+ .sn-component .sk-box.success,
1770
+ .sn-component .sk-circle.success {
1771
+ /*
1772
+ If $border-color is supplied, we use traditional borders for rect.
1773
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1774
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1775
+ */
1776
+ color: var(--sn-stylekit-success-contrast-color);
1777
+ position: relative;
1778
+ background-color: var(--sn-stylekit-success-color);
1779
+ overflow: hidden;
1780
+ border-radius: var(--sn-stylekit-general-border-radius);
1781
+ /*
1782
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1783
+ We keep border-color as well incase the individual elements want a border in some cases.
1784
+ */
1785
+ border-color: var(--sn-stylekit-success-color);
1786
+ }
1787
+
1788
+ .sn-component .sk-button.success *, .sn-component .success.sk-box *,
1789
+ .sn-component .sk-box.success *,
1790
+ .sn-component .sk-circle.success * {
1791
+ position: relative;
1792
+ }
1793
+
1794
+ .sn-component .sk-button.success:before, .sn-component .success.sk-box:before,
1795
+ .sn-component .sk-box.success:before,
1796
+ .sn-component .sk-circle.success:before {
1797
+ content: '';
1798
+ position: absolute;
1799
+ top: 0;
1800
+ left: 0;
1801
+ width: 100%;
1802
+ height: 100%;
1803
+ background-color: var(--sn-stylekit-success-color);
1804
+ opacity: 1;
1805
+ border-radius: var(--sn-stylekit-general-border-radius);
1806
+ }
1807
+
1808
+ .sn-component .sk-button.success:after, .sn-component .success.sk-box:after,
1809
+ .sn-component .sk-box.success:after,
1810
+ .sn-component .sk-circle.success:after {
1811
+ content: '';
1812
+ display: block;
1813
+ height: 100%;
1814
+ position: absolute;
1815
+ top: 0;
1816
+ left: 0;
1817
+ width: 100%;
1818
+ border-radius: var(--sn-stylekit-general-border-radius);
1819
+ pointer-events: none;
1820
+ box-shadow: inset 0 0 0 1px;
1821
+ color: var(--sn-stylekit-success-color);
1822
+ }
1823
+
1824
+ .sn-component .sk-button.success:hover:before, .sn-component .success.sk-box:hover:before,
1825
+ .sn-component .sk-box.success:hover:before,
1826
+ .sn-component .sk-circle.success:hover:before {
1827
+ filter: brightness(130%);
1828
+ }
1829
+
1830
+ .sn-component .sk-button.success.no-bg, .sn-component .success.no-bg.sk-box,
1831
+ .sn-component .sk-box.success.no-bg,
1832
+ .sn-component .sk-circle.success.no-bg {
1833
+ background-color: transparent;
1834
+ }
1835
+
1836
+ .sn-component .sk-button.success.no-bg:before, .sn-component .success.no-bg.sk-box:before,
1837
+ .sn-component .sk-box.success.no-bg:before,
1838
+ .sn-component .sk-circle.success.no-bg:before {
1839
+ content: none;
1840
+ }
1841
+
1842
+ .sn-component .sk-button.success.featured, .sn-component .success.featured.sk-box,
1843
+ .sn-component .sk-box.success.featured,
1844
+ .sn-component .sk-circle.success.featured {
1845
+ border: none;
1846
+ padding: 0.75rem 1.25rem;
1847
+ font-size: var(--sn-stylekit-font-size-h3);
1848
+ }
1849
+
1850
+ .sn-component .sk-button.success.featured:before, .sn-component .success.featured.sk-box:before,
1851
+ .sn-component .sk-box.success.featured:before,
1852
+ .sn-component .sk-circle.success.featured:before {
1853
+ opacity: 1;
1854
+ }
1855
+
1856
+ .sn-component .sk-notification.contrast,
1857
+ .sn-component .sk-input.contrast {
1858
+ /*
1859
+ If $border-color is supplied, we use traditional borders for rect.
1860
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1861
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1862
+ */
1863
+ color: var(--sn-stylekit-contrast-foreground-color);
1864
+ position: relative;
1865
+ background-color: var(--sn-stylekit-contrast-background-color);
1866
+ overflow: hidden;
1867
+ border-radius: var(--sn-stylekit-general-border-radius);
1868
+ /*
1869
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1870
+ We keep border-color as well incase the individual elements want a border in some cases.
1871
+ */
1872
+ border-color: var(--sn-stylekit-contrast-border-color);
1873
+ border: 1px solid var(--sn-stylekit-contrast-border-color);
1874
+ }
1875
+
1876
+ .sn-component .sk-notification.contrast *,
1877
+ .sn-component .sk-input.contrast * {
1878
+ position: relative;
1879
+ }
1880
+
1881
+ .sn-component .sk-notification.contrast:before,
1882
+ .sn-component .sk-input.contrast:before {
1883
+ content: '';
1884
+ position: absolute;
1885
+ top: 0;
1886
+ left: 0;
1887
+ width: 100%;
1888
+ height: 100%;
1889
+ background-color: var(--sn-stylekit-contrast-background-color);
1890
+ opacity: 1;
1891
+ border-radius: var(--sn-stylekit-general-border-radius);
1892
+ }
1893
+
1894
+ .sn-component .sk-notification.contrast:after,
1895
+ .sn-component .sk-input.contrast:after {
1896
+ content: '';
1897
+ display: block;
1898
+ height: 100%;
1899
+ position: absolute;
1900
+ top: 0;
1901
+ left: 0;
1902
+ width: 100%;
1903
+ border-radius: var(--sn-stylekit-general-border-radius);
1904
+ pointer-events: none;
1905
+ color: var(--sn-stylekit-contrast-border-color);
1906
+ border-color: var(--sn-stylekit-contrast-border-color);
1907
+ }
1908
+
1909
+ .sn-component .sk-notification.contrast.no-bg,
1910
+ .sn-component .sk-input.contrast.no-bg {
1911
+ background-color: transparent;
1912
+ }
1913
+
1914
+ .sn-component .sk-notification.contrast.no-bg:before,
1915
+ .sn-component .sk-input.contrast.no-bg:before {
1916
+ content: none;
1917
+ }
1918
+
1919
+ .sn-component .sk-notification.contrast.featured,
1920
+ .sn-component .sk-input.contrast.featured {
1921
+ border: none;
1922
+ padding: 0.75rem 1.25rem;
1923
+ font-size: var(--sn-stylekit-font-size-h3);
1924
+ }
1925
+
1926
+ .sn-component .sk-notification.contrast.featured:before,
1927
+ .sn-component .sk-input.contrast.featured:before {
1928
+ opacity: 1;
1929
+ }
1930
+
1931
+ .sn-component .sk-notification.sk-secondary,
1932
+ .sn-component .sk-input.sk-secondary {
1933
+ /*
1934
+ If $border-color is supplied, we use traditional borders for rect.
1935
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
1936
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
1937
+ */
1938
+ color: var(--sn-stylekit-secondary-foreground-color);
1939
+ position: relative;
1940
+ background-color: var(--sn-stylekit-secondary-background-color);
1941
+ overflow: hidden;
1942
+ border-radius: var(--sn-stylekit-general-border-radius);
1943
+ /*
1944
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
1945
+ We keep border-color as well incase the individual elements want a border in some cases.
1946
+ */
1947
+ border-color: var(--sn-stylekit-secondary-border-color);
1948
+ border: 1px solid var(--sn-stylekit-secondary-border-color);
1949
+ }
1950
+
1951
+ .sn-component .sk-notification.sk-secondary *,
1952
+ .sn-component .sk-input.sk-secondary * {
1953
+ position: relative;
1954
+ }
1955
+
1956
+ .sn-component .sk-notification.sk-secondary:before,
1957
+ .sn-component .sk-input.sk-secondary:before {
1958
+ content: '';
1959
+ position: absolute;
1960
+ top: 0;
1961
+ left: 0;
1962
+ width: 100%;
1963
+ height: 100%;
1964
+ background-color: var(--sn-stylekit-secondary-background-color);
1965
+ opacity: 1;
1966
+ border-radius: var(--sn-stylekit-general-border-radius);
1967
+ }
1968
+
1969
+ .sn-component .sk-notification.sk-secondary:after,
1970
+ .sn-component .sk-input.sk-secondary:after {
1971
+ content: '';
1972
+ display: block;
1973
+ height: 100%;
1974
+ position: absolute;
1975
+ top: 0;
1976
+ left: 0;
1977
+ width: 100%;
1978
+ border-radius: var(--sn-stylekit-general-border-radius);
1979
+ pointer-events: none;
1980
+ color: var(--sn-stylekit-secondary-border-color);
1981
+ border-color: var(--sn-stylekit-secondary-border-color);
1982
+ }
1983
+
1984
+ .sn-component .sk-notification.sk-secondary.no-bg,
1985
+ .sn-component .sk-input.sk-secondary.no-bg {
1986
+ background-color: transparent;
1987
+ }
1988
+
1989
+ .sn-component .sk-notification.sk-secondary.no-bg:before,
1990
+ .sn-component .sk-input.sk-secondary.no-bg:before {
1991
+ content: none;
1992
+ }
1993
+
1994
+ .sn-component .sk-notification.sk-secondary.featured,
1995
+ .sn-component .sk-input.sk-secondary.featured {
1996
+ border: none;
1997
+ padding: 0.75rem 1.25rem;
1998
+ font-size: var(--sn-stylekit-font-size-h3);
1999
+ }
2000
+
2001
+ .sn-component .sk-notification.sk-secondary.featured:before,
2002
+ .sn-component .sk-input.sk-secondary.featured:before {
2003
+ opacity: 1;
2004
+ }
2005
+
2006
+ .sn-component .sk-notification.sk-secondary-contrast,
2007
+ .sn-component .sk-input.sk-secondary-contrast {
2008
+ /*
2009
+ If $border-color is supplied, we use traditional borders for rect.
2010
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2011
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2012
+ */
2013
+ color: var(--sn-stylekit-secondary-contrast-foreground-color);
2014
+ position: relative;
2015
+ background-color: var(--sn-stylekit-secondary-contrast-background-color);
2016
+ overflow: hidden;
2017
+ border-radius: var(--sn-stylekit-general-border-radius);
2018
+ /*
2019
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2020
+ We keep border-color as well incase the individual elements want a border in some cases.
2021
+ */
2022
+ border-color: var(--sn-stylekit-secondary-contrast-border-color);
2023
+ border: 1px solid var(--sn-stylekit-secondary-contrast-border-color);
2024
+ }
2025
+
2026
+ .sn-component .sk-notification.sk-secondary-contrast *,
2027
+ .sn-component .sk-input.sk-secondary-contrast * {
2028
+ position: relative;
2029
+ }
2030
+
2031
+ .sn-component .sk-notification.sk-secondary-contrast:before,
2032
+ .sn-component .sk-input.sk-secondary-contrast:before {
2033
+ content: '';
2034
+ position: absolute;
2035
+ top: 0;
2036
+ left: 0;
2037
+ width: 100%;
2038
+ height: 100%;
2039
+ background-color: var(--sn-stylekit-secondary-contrast-background-color);
2040
+ opacity: 1;
2041
+ border-radius: var(--sn-stylekit-general-border-radius);
2042
+ }
2043
+
2044
+ .sn-component .sk-notification.sk-secondary-contrast:after,
2045
+ .sn-component .sk-input.sk-secondary-contrast:after {
2046
+ content: '';
2047
+ display: block;
2048
+ height: 100%;
2049
+ position: absolute;
2050
+ top: 0;
2051
+ left: 0;
2052
+ width: 100%;
2053
+ border-radius: var(--sn-stylekit-general-border-radius);
2054
+ pointer-events: none;
2055
+ color: var(--sn-stylekit-secondary-contrast-border-color);
2056
+ border-color: var(--sn-stylekit-secondary-contrast-border-color);
2057
+ }
2058
+
2059
+ .sn-component .sk-notification.sk-secondary-contrast.no-bg,
2060
+ .sn-component .sk-input.sk-secondary-contrast.no-bg {
2061
+ background-color: transparent;
2062
+ }
2063
+
2064
+ .sn-component .sk-notification.sk-secondary-contrast.no-bg:before,
2065
+ .sn-component .sk-input.sk-secondary-contrast.no-bg:before {
2066
+ content: none;
2067
+ }
2068
+
2069
+ .sn-component .sk-notification.sk-secondary-contrast.featured,
2070
+ .sn-component .sk-input.sk-secondary-contrast.featured {
2071
+ border: none;
2072
+ padding: 0.75rem 1.25rem;
2073
+ font-size: var(--sn-stylekit-font-size-h3);
2074
+ }
2075
+
2076
+ .sn-component .sk-notification.sk-secondary-contrast.featured:before,
2077
+ .sn-component .sk-input.sk-secondary-contrast.featured:before {
2078
+ opacity: 1;
2079
+ }
2080
+
2081
+ .sn-component .sk-notification.sk-base,
2082
+ .sn-component .sk-input.sk-base {
2083
+ /*
2084
+ If $border-color is supplied, we use traditional borders for rect.
2085
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2086
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2087
+ */
2088
+ color: var(--sn-stylekit-foreground-color);
2089
+ position: relative;
2090
+ background-color: var(--sn-stylekit-background-color);
2091
+ overflow: hidden;
2092
+ border-radius: var(--sn-stylekit-general-border-radius);
2093
+ /*
2094
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2095
+ We keep border-color as well incase the individual elements want a border in some cases.
2096
+ */
2097
+ border-color: var(--sn-stylekit-border-color);
2098
+ border: 1px solid var(--sn-stylekit-border-color);
2099
+ }
2100
+
2101
+ .sn-component .sk-notification.sk-base *,
2102
+ .sn-component .sk-input.sk-base * {
2103
+ position: relative;
2104
+ }
2105
+
2106
+ .sn-component .sk-notification.sk-base:before,
2107
+ .sn-component .sk-input.sk-base:before {
2108
+ content: '';
2109
+ position: absolute;
2110
+ top: 0;
2111
+ left: 0;
2112
+ width: 100%;
2113
+ height: 100%;
2114
+ background-color: var(--sn-stylekit-background-color);
2115
+ opacity: 1;
2116
+ border-radius: var(--sn-stylekit-general-border-radius);
2117
+ }
2118
+
2119
+ .sn-component .sk-notification.sk-base:after,
2120
+ .sn-component .sk-input.sk-base:after {
2121
+ content: '';
2122
+ display: block;
2123
+ height: 100%;
2124
+ position: absolute;
2125
+ top: 0;
2126
+ left: 0;
2127
+ width: 100%;
2128
+ border-radius: var(--sn-stylekit-general-border-radius);
2129
+ pointer-events: none;
2130
+ color: var(--sn-stylekit-border-color);
2131
+ border-color: var(--sn-stylekit-border-color);
2132
+ }
2133
+
2134
+ .sn-component .sk-notification.sk-base.no-bg,
2135
+ .sn-component .sk-input.sk-base.no-bg {
2136
+ background-color: transparent;
2137
+ }
2138
+
2139
+ .sn-component .sk-notification.sk-base.no-bg:before,
2140
+ .sn-component .sk-input.sk-base.no-bg:before {
2141
+ content: none;
2142
+ }
2143
+
2144
+ .sn-component .sk-notification.sk-base.featured,
2145
+ .sn-component .sk-input.sk-base.featured {
2146
+ border: none;
2147
+ padding: 0.75rem 1.25rem;
2148
+ font-size: var(--sn-stylekit-font-size-h3);
2149
+ }
2150
+
2151
+ .sn-component .sk-notification.sk-base.featured:before,
2152
+ .sn-component .sk-input.sk-base.featured:before {
2153
+ opacity: 1;
2154
+ }
2155
+
2156
+ .sn-component .sk-notification.neutral,
2157
+ .sn-component .sk-input.neutral {
2158
+ /*
2159
+ If $border-color is supplied, we use traditional borders for rect.
2160
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2161
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2162
+ */
2163
+ color: var(--sn-stylekit-neutral-contrast-color);
2164
+ position: relative;
2165
+ background-color: var(--sn-stylekit-neutral-color);
2166
+ overflow: hidden;
2167
+ border-radius: var(--sn-stylekit-general-border-radius);
2168
+ /*
2169
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2170
+ We keep border-color as well incase the individual elements want a border in some cases.
2171
+ */
2172
+ border-color: var(--sn-stylekit-neutral-color);
2173
+ }
2174
+
2175
+ .sn-component .sk-notification.neutral *,
2176
+ .sn-component .sk-input.neutral * {
2177
+ position: relative;
2178
+ }
2179
+
2180
+ .sn-component .sk-notification.neutral:before,
2181
+ .sn-component .sk-input.neutral:before {
2182
+ content: '';
2183
+ position: absolute;
2184
+ top: 0;
2185
+ left: 0;
2186
+ width: 100%;
2187
+ height: 100%;
2188
+ background-color: var(--sn-stylekit-neutral-color);
2189
+ opacity: 1;
2190
+ border-radius: var(--sn-stylekit-general-border-radius);
2191
+ }
2192
+
2193
+ .sn-component .sk-notification.neutral:after,
2194
+ .sn-component .sk-input.neutral:after {
2195
+ content: '';
2196
+ display: block;
2197
+ height: 100%;
2198
+ position: absolute;
2199
+ top: 0;
2200
+ left: 0;
2201
+ width: 100%;
2202
+ border-radius: var(--sn-stylekit-general-border-radius);
2203
+ pointer-events: none;
2204
+ box-shadow: inset 0 0 0 1px;
2205
+ color: var(--sn-stylekit-neutral-color);
2206
+ }
2207
+
2208
+ .sn-component .sk-notification.neutral.no-bg,
2209
+ .sn-component .sk-input.neutral.no-bg {
2210
+ background-color: transparent;
2211
+ }
2212
+
2213
+ .sn-component .sk-notification.neutral.no-bg:before,
2214
+ .sn-component .sk-input.neutral.no-bg:before {
2215
+ content: none;
2216
+ }
2217
+
2218
+ .sn-component .sk-notification.neutral.featured,
2219
+ .sn-component .sk-input.neutral.featured {
2220
+ border: none;
2221
+ padding: 0.75rem 1.25rem;
2222
+ font-size: var(--sn-stylekit-font-size-h3);
2223
+ }
2224
+
2225
+ .sn-component .sk-notification.neutral.featured:before,
2226
+ .sn-component .sk-input.neutral.featured:before {
2227
+ opacity: 1;
2228
+ }
2229
+
2230
+ .sn-component .sk-notification.info,
2231
+ .sn-component .sk-input.info {
2232
+ /*
2233
+ If $border-color is supplied, we use traditional borders for rect.
2234
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2235
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2236
+ */
2237
+ color: var(--sn-stylekit-info-contrast-color);
2238
+ position: relative;
2239
+ background-color: var(--sn-stylekit-info-color);
2240
+ overflow: hidden;
2241
+ border-radius: var(--sn-stylekit-general-border-radius);
2242
+ /*
2243
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2244
+ We keep border-color as well incase the individual elements want a border in some cases.
2245
+ */
2246
+ border-color: var(--sn-stylekit-info-color);
2247
+ }
2248
+
2249
+ .sn-component .sk-notification.info *,
2250
+ .sn-component .sk-input.info * {
2251
+ position: relative;
2252
+ }
2253
+
2254
+ .sn-component .sk-notification.info:before,
2255
+ .sn-component .sk-input.info:before {
2256
+ content: '';
2257
+ position: absolute;
2258
+ top: 0;
2259
+ left: 0;
2260
+ width: 100%;
2261
+ height: 100%;
2262
+ background-color: var(--sn-stylekit-info-color);
2263
+ opacity: 1;
2264
+ border-radius: var(--sn-stylekit-general-border-radius);
2265
+ }
2266
+
2267
+ .sn-component .sk-notification.info:after,
2268
+ .sn-component .sk-input.info:after {
2269
+ content: '';
2270
+ display: block;
2271
+ height: 100%;
2272
+ position: absolute;
2273
+ top: 0;
2274
+ left: 0;
2275
+ width: 100%;
2276
+ border-radius: var(--sn-stylekit-general-border-radius);
2277
+ pointer-events: none;
2278
+ box-shadow: inset 0 0 0 1px;
2279
+ color: var(--sn-stylekit-info-color);
2280
+ }
2281
+
2282
+ .sn-component .sk-notification.info.no-bg,
2283
+ .sn-component .sk-input.info.no-bg {
2284
+ background-color: transparent;
2285
+ }
2286
+
2287
+ .sn-component .sk-notification.info.no-bg:before,
2288
+ .sn-component .sk-input.info.no-bg:before {
2289
+ content: none;
2290
+ }
2291
+
2292
+ .sn-component .sk-notification.info.featured,
2293
+ .sn-component .sk-input.info.featured {
2294
+ border: none;
2295
+ padding: 0.75rem 1.25rem;
2296
+ font-size: var(--sn-stylekit-font-size-h3);
2297
+ }
2298
+
2299
+ .sn-component .sk-notification.info.featured:before,
2300
+ .sn-component .sk-input.info.featured:before {
2301
+ opacity: 1;
2302
+ }
2303
+
2304
+ .sn-component .sk-notification.warning,
2305
+ .sn-component .sk-input.warning {
2306
+ /*
2307
+ If $border-color is supplied, we use traditional borders for rect.
2308
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2309
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2310
+ */
2311
+ color: var(--sn-stylekit-warning-contrast-color);
2312
+ position: relative;
2313
+ background-color: var(--sn-stylekit-warning-color);
2314
+ overflow: hidden;
2315
+ border-radius: var(--sn-stylekit-general-border-radius);
2316
+ /*
2317
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2318
+ We keep border-color as well incase the individual elements want a border in some cases.
2319
+ */
2320
+ border-color: var(--sn-stylekit-warning-color);
2321
+ }
2322
+
2323
+ .sn-component .sk-notification.warning *,
2324
+ .sn-component .sk-input.warning * {
2325
+ position: relative;
2326
+ }
2327
+
2328
+ .sn-component .sk-notification.warning:before,
2329
+ .sn-component .sk-input.warning:before {
2330
+ content: '';
2331
+ position: absolute;
2332
+ top: 0;
2333
+ left: 0;
2334
+ width: 100%;
2335
+ height: 100%;
2336
+ background-color: var(--sn-stylekit-warning-color);
2337
+ opacity: 1;
2338
+ border-radius: var(--sn-stylekit-general-border-radius);
2339
+ }
2340
+
2341
+ .sn-component .sk-notification.warning:after,
2342
+ .sn-component .sk-input.warning:after {
2343
+ content: '';
2344
+ display: block;
2345
+ height: 100%;
2346
+ position: absolute;
2347
+ top: 0;
2348
+ left: 0;
2349
+ width: 100%;
2350
+ border-radius: var(--sn-stylekit-general-border-radius);
2351
+ pointer-events: none;
2352
+ box-shadow: inset 0 0 0 1px;
2353
+ color: var(--sn-stylekit-warning-color);
2354
+ }
2355
+
2356
+ .sn-component .sk-notification.warning.no-bg,
2357
+ .sn-component .sk-input.warning.no-bg {
2358
+ background-color: transparent;
2359
+ }
2360
+
2361
+ .sn-component .sk-notification.warning.no-bg:before,
2362
+ .sn-component .sk-input.warning.no-bg:before {
2363
+ content: none;
2364
+ }
2365
+
2366
+ .sn-component .sk-notification.warning.featured,
2367
+ .sn-component .sk-input.warning.featured {
2368
+ border: none;
2369
+ padding: 0.75rem 1.25rem;
2370
+ font-size: var(--sn-stylekit-font-size-h3);
2371
+ }
2372
+
2373
+ .sn-component .sk-notification.warning.featured:before,
2374
+ .sn-component .sk-input.warning.featured:before {
2375
+ opacity: 1;
2376
+ }
2377
+
2378
+ .sn-component .sk-notification.danger,
2379
+ .sn-component .sk-input.danger {
2380
+ /*
2381
+ If $border-color is supplied, we use traditional borders for rect.
2382
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2383
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2384
+ */
2385
+ color: var(--sn-stylekit-danger-contrast-color);
2386
+ position: relative;
2387
+ background-color: var(--sn-stylekit-danger-color);
2388
+ overflow: hidden;
2389
+ border-radius: var(--sn-stylekit-general-border-radius);
2390
+ /*
2391
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2392
+ We keep border-color as well incase the individual elements want a border in some cases.
2393
+ */
2394
+ border-color: var(--sn-stylekit-danger-color);
2395
+ }
2396
+
2397
+ .sn-component .sk-notification.danger *,
2398
+ .sn-component .sk-input.danger * {
2399
+ position: relative;
2400
+ }
2401
+
2402
+ .sn-component .sk-notification.danger:before,
2403
+ .sn-component .sk-input.danger:before {
2404
+ content: '';
2405
+ position: absolute;
2406
+ top: 0;
2407
+ left: 0;
2408
+ width: 100%;
2409
+ height: 100%;
2410
+ background-color: var(--sn-stylekit-danger-color);
2411
+ opacity: 1;
2412
+ border-radius: var(--sn-stylekit-general-border-radius);
2413
+ }
2414
+
2415
+ .sn-component .sk-notification.danger:after,
2416
+ .sn-component .sk-input.danger:after {
2417
+ content: '';
2418
+ display: block;
2419
+ height: 100%;
2420
+ position: absolute;
2421
+ top: 0;
2422
+ left: 0;
2423
+ width: 100%;
2424
+ border-radius: var(--sn-stylekit-general-border-radius);
2425
+ pointer-events: none;
2426
+ box-shadow: inset 0 0 0 1px;
2427
+ color: var(--sn-stylekit-danger-color);
2428
+ }
2429
+
2430
+ .sn-component .sk-notification.danger.no-bg,
2431
+ .sn-component .sk-input.danger.no-bg {
2432
+ background-color: transparent;
2433
+ }
2434
+
2435
+ .sn-component .sk-notification.danger.no-bg:before,
2436
+ .sn-component .sk-input.danger.no-bg:before {
2437
+ content: none;
2438
+ }
2439
+
2440
+ .sn-component .sk-notification.danger.featured,
2441
+ .sn-component .sk-input.danger.featured {
2442
+ border: none;
2443
+ padding: 0.75rem 1.25rem;
2444
+ font-size: var(--sn-stylekit-font-size-h3);
2445
+ }
2446
+
2447
+ .sn-component .sk-notification.danger.featured:before,
2448
+ .sn-component .sk-input.danger.featured:before {
2449
+ opacity: 1;
2450
+ }
2451
+
2452
+ .sn-component .sk-notification.success,
2453
+ .sn-component .sk-input.success {
2454
+ /*
2455
+ If $border-color is supplied, we use traditional borders for rect.
2456
+ Only sk-notification and sk-input will supply their own border color because inputs don't seem to support inset shadow borders.
2457
+ If not, and we're inerferring border from other colors, we use box-shadow, so that we get rounded borders
2458
+ */
2459
+ color: var(--sn-stylekit-success-contrast-color);
2460
+ position: relative;
2461
+ background-color: var(--sn-stylekit-success-color);
2462
+ overflow: hidden;
2463
+ border-radius: var(--sn-stylekit-general-border-radius);
2464
+ /*
2465
+ We use box-shadow instead of border so that the borders are rounded properly around the rect.
2466
+ We keep border-color as well incase the individual elements want a border in some cases.
2467
+ */
2468
+ border-color: var(--sn-stylekit-success-color);
2469
+ }
2470
+
2471
+ .sn-component .sk-notification.success *,
2472
+ .sn-component .sk-input.success * {
2473
+ position: relative;
2474
+ }
2475
+
2476
+ .sn-component .sk-notification.success:before,
2477
+ .sn-component .sk-input.success:before {
2478
+ content: '';
2479
+ position: absolute;
2480
+ top: 0;
2481
+ left: 0;
2482
+ width: 100%;
2483
+ height: 100%;
2484
+ background-color: var(--sn-stylekit-success-color);
2485
+ opacity: 1;
2486
+ border-radius: var(--sn-stylekit-general-border-radius);
2487
+ }
2488
+
2489
+ .sn-component .sk-notification.success:after,
2490
+ .sn-component .sk-input.success:after {
2491
+ content: '';
2492
+ display: block;
2493
+ height: 100%;
2494
+ position: absolute;
2495
+ top: 0;
2496
+ left: 0;
2497
+ width: 100%;
2498
+ border-radius: var(--sn-stylekit-general-border-radius);
2499
+ pointer-events: none;
2500
+ box-shadow: inset 0 0 0 1px;
2501
+ color: var(--sn-stylekit-success-color);
2502
+ }
2503
+
2504
+ .sn-component .sk-notification.success.no-bg,
2505
+ .sn-component .sk-input.success.no-bg {
2506
+ background-color: transparent;
2507
+ }
2508
+
2509
+ .sn-component .sk-notification.success.no-bg:before,
2510
+ .sn-component .sk-input.success.no-bg:before {
2511
+ content: none;
2512
+ }
2513
+
2514
+ .sn-component .sk-notification.success.featured,
2515
+ .sn-component .sk-input.success.featured {
2516
+ border: none;
2517
+ padding: 0.75rem 1.25rem;
2518
+ font-size: var(--sn-stylekit-font-size-h3);
2519
+ }
2520
+
2521
+ .sn-component .sk-notification.success.featured:before,
2522
+ .sn-component .sk-input.success.featured:before {
2523
+ opacity: 1;
2524
+ }
2525
+
2526
+ .sn-component .sk-notification {
2527
+ padding: 1.1rem 1rem;
2528
+ margin: 1.4rem 0;
2529
+ text-align: left;
2530
+ cursor: default;
2531
+ }
2532
+
2533
+ .sn-component .sk-notification.one-line {
2534
+ padding: 0rem 0.4rem;
2535
+ }
2536
+
2537
+ .sn-component .sk-notification.stretch {
2538
+ width: 100%;
2539
+ }
2540
+
2541
+ .sn-component .sk-notification.dashed {
2542
+ border-style: dashed;
2543
+ border-width: 2px;
2544
+ }
2545
+
2546
+ .sn-component .sk-notification.dashed:after {
2547
+ box-shadow: none;
2548
+ }
2549
+
2550
+ .sn-component .sk-notification .sk-notification-title {
2551
+ font-size: var(--sn-stylekit-font-size-h1);
2552
+ font-weight: bold;
2553
+ line-height: 1.9rem;
2554
+ }
2555
+
2556
+ .sn-component .sk-notification .sk-notification-text {
2557
+ line-height: 1.5rem;
2558
+ font-size: var(--sn-stylekit-font-size-p);
2559
+ text-align: left;
2560
+ font-weight: normal;
2561
+ }
2562
+
2563
+ .sn-component .sk-circle {
2564
+ border: 1px solid;
2565
+ cursor: pointer;
2566
+ border-color: var(--sn-stylekit-contrast-foreground-color);
2567
+ background-color: var(--sn-stylekit-contrast-background-color);
2568
+ padding: 0;
2569
+ border-radius: 50% !important;
2570
+ flex-shrink: 0;
2571
+ }
2572
+
2573
+ .sn-component .sk-circle:before {
2574
+ border-radius: 50% !important;
2575
+ }
2576
+
2577
+ .sn-component .sk-circle:after {
2578
+ border-radius: 50% !important;
2579
+ }
2580
+
2581
+ .sn-component .sk-circle.small {
2582
+ width: 11px;
2583
+ height: 11px;
2584
+ }
2585
+
2586
+ .sn-component .sk-spinner {
2587
+ border: 1px solid var(--sn-stylekit-neutral-color);
2588
+ border-radius: 50%;
2589
+ animation: rotate 0.8s infinite linear;
2590
+ border-right-color: transparent;
2591
+ }
2592
+
2593
+ .sn-component .sk-spinner.small {
2594
+ width: 12px;
2595
+ height: 12px;
2596
+ }
2597
+
2598
+ .sn-component .sk-spinner.info-contrast {
2599
+ border-color: var(--sn-stylekit-info-contrast-color);
2600
+ border-right-color: transparent;
2601
+ }
2602
+
2603
+ .sn-component .sk-spinner.info {
2604
+ border-color: var(--sn-stylekit-info-color);
2605
+ border-right-color: transparent;
2606
+ }
2607
+
2608
+ .sn-component .sk-spinner.warning {
2609
+ border-color: var(--sn-stylekit-warning-color);
2610
+ border-right-color: transparent;
2611
+ }
2612
+
2613
+ .sn-component .sk-spinner.danger {
2614
+ border-color: var(--sn-stylekit-danger-color);
2615
+ border-right-color: transparent;
2616
+ }
2617
+
2618
+ .sn-component .sk-spinner.success {
2619
+ border-color: var(--sn-stylekit-success-color);
2620
+ border-right-color: transparent;
2621
+ }
2622
+
2623
+ @keyframes rotate {
2624
+ 0% {
2625
+ transform: rotate(0deg);
2626
+ }
2627
+ 100% {
2628
+ transform: rotate(360deg);
2629
+ }
2630
+ }
2631
+
2632
+ .sn-component .sk-app-bar {
2633
+ display: flex;
2634
+ width: 100%;
2635
+ height: 2rem;
2636
+ padding: 0rem 0.8rem;
2637
+ background-color: var(--sn-stylekit-contrast-background-color);
2638
+ color: var(--sn-stylekit-contrast-foreground-color);
2639
+ justify-content: space-between;
2640
+ align-items: center;
2641
+ border: 1px solid var(--sn-stylekit-contrast-border-color);
2642
+ user-select: none;
2643
+ }
2644
+
2645
+ .sn-component .sk-app-bar.no-edges {
2646
+ border-left: 0;
2647
+ border-right: 0;
2648
+ }
2649
+
2650
+ .sn-component .sk-app-bar.no-bottom-edge {
2651
+ border-bottom: 0;
2652
+ }
2653
+
2654
+ .sn-component .sk-app-bar .left,
2655
+ .sn-component .sk-app-bar .right {
2656
+ display: flex;
2657
+ height: 100%;
2658
+ }
2659
+
2660
+ .sn-component .sk-app-bar .sk-app-bar-item {
2661
+ flex-grow: 1;
2662
+ cursor: pointer;
2663
+ display: flex;
2664
+ align-items: center;
2665
+ justify-content: center;
2666
+ }
2667
+
2668
+ .sn-component .sk-app-bar .sk-app-bar-item:not(:first-child) {
2669
+ margin-left: 1rem;
2670
+ }
2671
+
2672
+ .sn-component .sk-app-bar .sk-app-bar-item.border, .sn-component .sk-app-bar .sk-app-bar-item.sn-button.outlined, .sn-component .sk-app-bar .sk-app-bar-item.sn-dropdown-menu, .sn-component .sk-app-bar .sk-app-bar-item.sn-select {
2673
+ border-left: 1px solid var(--sn-stylekit-contrast-border-color);
2674
+ }
2675
+
2676
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column {
2677
+ height: 100%;
2678
+ display: flex;
2679
+ align-items: center;
2680
+ }
2681
+
2682
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column:not(:first-child) {
2683
+ margin-left: 0.5rem;
2684
+ }
2685
+
2686
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column.underline {
2687
+ border-bottom: 2px solid var(--sn-stylekit-info-color);
2688
+ }
2689
+
2690
+ .sn-component .sk-app-bar .sk-app-bar-item.no-pointer {
2691
+ cursor: default;
2692
+ }
2693
+
2694
+ .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-label:not(.subtle), .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item:hover > .sk-panel-section-subtitle:not(.subtle), .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item:hover > .sk-panel-section-subtitle:not(.subtle),
2695
+ .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-sublabel:not(.subtle),
2696
+ .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-label:not(.subtle),
2697
+ .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-panel-section-subtitle:not(.subtle),
2698
+ .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-panel-section-subtitle:not(.subtle),
2699
+ .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-sublabel:not(.subtle) {
2700
+ color: var(--sn-stylekit-info-color);
2701
+ }
2702
+
2703
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-label, .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item > .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item > .sk-panel-section-subtitle,
2704
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-label,
2705
+ .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item > .sk-app-bar-item-column > .sk-panel-section-subtitle,
2706
+ .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-panel-section-subtitle {
2707
+ font-weight: bold;
2708
+ font-size: var(--sn-stylekit-font-size-h5);
2709
+ white-space: nowrap;
2710
+ }
2711
+
2712
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-sublabel,
2713
+ .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-sublabel {
2714
+ font-size: var(--sn-stylekit-font-size-h5);
2715
+ font-weight: normal;
2716
+ white-space: nowrap;
2717
+ }
2718
+
2719
+ .sn-component .sk-app-bar .sk-app-bar-item .subtle {
2720
+ font-weight: normal;
2721
+ opacity: 0.6;
2722
+ }
2723
+
2724
+ .sn-component .sk-panel-table {
2725
+ display: flex;
2726
+ flex-wrap: wrap;
2727
+ padding-left: 1px;
2728
+ padding-top: 1px;
2729
+ }
2730
+
2731
+ .sn-component .sk-panel-table .sk-panel-table-item {
2732
+ flex: 45%;
2733
+ flex-flow: wrap;
2734
+ border: 1px solid var(--sn-stylekit-border-color);
2735
+ padding: 1rem;
2736
+ margin-left: -1px;
2737
+ margin-top: -1px;
2738
+ display: flex;
2739
+ flex-direction: column;
2740
+ justify-content: space-between;
2741
+ }
2742
+
2743
+ .sn-component .sk-panel-table .sk-panel-table-item img {
2744
+ max-width: 100%;
2745
+ margin-bottom: 1rem;
2746
+ }
2747
+
2748
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-content {
2749
+ display: flex;
2750
+ flex-direction: row;
2751
+ }
2752
+
2753
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column {
2754
+ align-items: center;
2755
+ }
2756
+
2757
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.stretch {
2758
+ width: 100%;
2759
+ }
2760
+
2761
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column:not(:first-child) {
2762
+ padding-left: 0.75rem;
2763
+ }
2764
+
2765
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.quarter {
2766
+ flex-basis: 25%;
2767
+ }
2768
+
2769
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.three-quarters {
2770
+ flex-basis: 75%;
2771
+ }
2772
+
2773
+ .sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-footer {
2774
+ margin-top: 1.25rem;
2775
+ }
2776
+
2777
+ .sn-component .sk-panel-table .sk-panel-table-item.no-border, .sn-component .sk-panel-table .sk-panel-table-item.sn-button, .sn-component .sk-panel-table .sk-panel-table-item.sn-dropdown-menu, .sn-component .sk-panel-table .sk-panel-table-item.sn-select, .sn-component .sk-panel-table .sk-panel-table-item.sn-select-button, .sn-component .sk-panel-table .sk-panel-table-item.sn-select-popover {
2778
+ border: none;
2779
+ }
2780
+
2781
+ .sn-component .sk-modal {
2782
+ position: fixed;
2783
+ margin-left: auto;
2784
+ margin-right: auto;
2785
+ left: 0;
2786
+ right: 0;
2787
+ top: 0;
2788
+ bottom: 0;
2789
+ z-index: 10000;
2790
+ width: 100vw;
2791
+ height: 100vh;
2792
+ background-color: transparent;
2793
+ color: var(--sn-stylekit-contrast-foreground-color);
2794
+ display: flex;
2795
+ align-items: center;
2796
+ justify-content: center;
2797
+ }
2798
+
2799
+ .sn-component .sk-modal .sn-component {
2800
+ height: 100%;
2801
+ }
2802
+
2803
+ .sn-component .sk-modal .sn-component .sk-panel {
2804
+ height: 100%;
2805
+ }
2806
+
2807
+ .sn-component .sk-modal.auto-height > .sk-modal-content {
2808
+ height: auto !important;
2809
+ }
2810
+
2811
+ .sn-component .sk-modal.large > .sk-modal-content {
2812
+ width: 900px;
2813
+ height: 600px;
2814
+ }
2815
+
2816
+ .sn-component .sk-modal.medium > .sk-modal-content {
2817
+ width: 700px;
2818
+ height: 500px;
2819
+ }
2820
+
2821
+ .sn-component .sk-modal.small > .sk-modal-content {
2822
+ width: 700px;
2823
+ height: 344px;
2824
+ }
2825
+
2826
+ .sn-component .sk-modal .sk-modal-background {
2827
+ position: absolute;
2828
+ z-index: -1;
2829
+ width: 100%;
2830
+ height: 100%;
2831
+ background-color: var(--sn-stylekit-contrast-background-color);
2832
+ opacity: 0.7;
2833
+ }
2834
+
2835
+ .sn-component .sk-modal > .sk-modal-content {
2836
+ overflow-y: auto;
2837
+ width: auto;
2838
+ padding: 0;
2839
+ padding-bottom: 0;
2840
+ min-width: 300px;
2841
+ -webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
2842
+ -moz-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
2843
+ box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
2844
+ }
2845
+
2846
+ @keyframes slide-down {
2847
+ 0% {
2848
+ opacity: 0;
2849
+ transform: translateY(-10px);
2850
+ }
2851
+ 100% {
2852
+ opacity: 1;
2853
+ transform: translateY(0);
2854
+ }
2855
+ }
2856
+
2857
+ .sn-component .slide-down-animation, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select-popover {
2858
+ animation: slide-down 0.2s ease;
2859
+ }
2860
+
2861
+ .sn-component .no-border, .sn-component .sn-button, .sn-component .sn-dropdown-menu, .sn-component .sn-select, .sn-component .sn-select-button, .sn-component .sn-select-popover {
2862
+ border-width: 0px;
2863
+ }
2864
+
2865
+ .sn-component .border-rounded, .sn-component .sn-button {
2866
+ border-radius: 0.25rem;
2867
+ }
2868
+
2869
+ .sn-component .border-rounded-md {
2870
+ border-radius: 0.375rem;
2871
+ }
2872
+
2873
+ .sn-component .border, .sn-component .sn-button.outlined, .sn-component .sn-dropdown-menu, .sn-component .sn-select {
2874
+ border-width: 1px;
2875
+ }
2876
+
2877
+ .sn-component .border-gray-300, .sn-component .sn-button.outlined, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select, .sn-component .sn-select-list, .sn-component .sn-select-popover {
2878
+ border-color: var(--sn-stylekit-border-color);
2879
+ }
2880
+
2881
+ .sn-component .border-rounded-sm, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select, .sn-component .sn-select-list, .sn-component .sn-select-popover {
2882
+ border-radius: 0.25rem;
2883
+ }
2884
+
2885
+ .sn-component .border-solid, .sn-component .sn-button, .sn-component .sn-dropdown-menu, .sn-component .sn-select {
2886
+ border-style: solid;
2887
+ }
2888
+
2889
+ .sn-component .border-box, .sn-component .sn-select {
2890
+ box-sizing: border-box;
2891
+ }
2892
+
2893
+ .sn-component .bg-default, .sn-component .sn-button.outlined, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select, .sn-component .sn-select-list {
2894
+ background-color: var(--sn-stylekit-background-color);
2895
+ }
2896
+
2897
+ .sn-component .bg-info, .sn-component .sn-button.info {
2898
+ background-color: var(--sn-stylekit-info-color);
2899
+ }
2900
+
2901
+ .sn-component .bg-info-dark, .sn-component .hover\:bg-info-dark:hover, .sn-component .sn-button.info:hover, .sn-component .focus\:bg-info-dark:focus, .sn-component .sn-button.info:focus {
2902
+ background-color: var(--sn-stylekit-info-color-darkened);
2903
+ }
2904
+
2905
+ .sn-component .color-text, .sn-component .sn-button.outlined, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select, .sn-component .sn-select-list {
2906
+ color: var(--sn-stylekit-contrast-foreground-color);
2907
+ }
2908
+
2909
+ .sn-component .color-info-contrast, .sn-component .sn-button.info {
2910
+ color: var(--sn-stylekit-info-contrast-color);
2911
+ }
2912
+
2913
+ .sn-component .selected\:bg-color[data-selected], .sn-component .sn-dropdown-menu-list-item[data-selected], .sn-component .sn-select-list-option[data-selected],
2914
+ .sn-component .selected\:bg-color[aria-selected="true"],
2915
+ .sn-component .sn-dropdown-menu-list-item[aria-selected="true"],
2916
+ .sn-component .sn-select-list-option[aria-selected="true"] {
2917
+ background-color: var(--sn-stylekit-list-item-highlight-color);
2918
+ }
2919
+
2920
+ .sn-component .selected\:fg-color[data-selected], .sn-component .sn-dropdown-menu-list-item[data-selected], .sn-component .sn-select-list-option[data-selected],
2921
+ .sn-component .selected\:fg-color[aria-selected="true"],
2922
+ .sn-component .sn-dropdown-menu-list-item[aria-selected="true"],
2923
+ .sn-component .sn-select-list-option[aria-selected="true"] {
2924
+ color: var(--sn-stylekit-contrast-foreground-color);
2925
+ }
2926
+
2927
+ .sn-component .inline-flex, .sn-component .sn-dropdown-menu, .sn-component .sn-select, .sn-component .sn-select-button {
2928
+ display: inline-flex;
2929
+ }
2930
+
2931
+ .sn-component .block {
2932
+ display: block;
2933
+ }
2934
+
2935
+ .sn-component .flex, .sn-component .sn-dropdown-menu-list-item {
2936
+ display: flex;
2937
+ }
2938
+
2939
+ .sn-component .flex-col {
2940
+ flex-direction: column;
2941
+ }
2942
+
2943
+ .sn-component .flex-grow {
2944
+ flex-grow: 1;
2945
+ }
2946
+
2947
+ .sn-component .items-center, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list-item, .sn-component .sn-select, .sn-component .sn-select-button {
2948
+ align-items: center;
2949
+ }
2950
+
2951
+ .sn-component .justify-center, .sn-component .sn-dropdown-menu, .sn-component .sn-select, .sn-component .sn-select-button {
2952
+ justify-content: center;
2953
+ }
2954
+
2955
+ .sn-component .gap-2 {
2956
+ grid-gap: 0.5rem;
2957
+ gap: 0.5rem;
2958
+ }
2959
+
2960
+ .sn-component .gap-3 {
2961
+ grid-gap: 0.75rem;
2962
+ gap: 0.75rem;
2963
+ }
2964
+
2965
+ .sn-component .absolute, .sn-component .sn-dropdown-menu-list {
2966
+ position: absolute;
2967
+ }
2968
+
2969
+ .sn-component .cursor-pointer, .sn-component .sn-button, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list-item, .sn-component .sn-select, .sn-component .sn-select-button, .sn-component .sn-select-list-option {
2970
+ cursor: pointer;
2971
+ }
2972
+
2973
+ .sn-component .origin-top-right, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select-list {
2974
+ transform-origin: top right;
2975
+ }
2976
+
2977
+ .sn-component .hover\:brightness-130:hover, .sn-component .sn-button.contrast:hover, .sn-component .sn-button.neutral:hover, .sn-component .sn-button.warning:hover, .sn-component .sn-button.danger:hover, .sn-component .sn-button.success:hover {
2978
+ filter: brightness(130%);
2979
+ }
2980
+
2981
+ .sn-component .hover\:bg-highlight:hover, .sn-component .sn-button.outlined:hover, .sn-component .sn-dropdown-menu:hover, .sn-component .sn-dropdown-menu-list-item:hover, .sn-component .sn-select:hover {
2982
+ background-color: var(--sn-stylekit-list-item-highlight-color);
2983
+ }
2984
+
2985
+ .sn-component .focus\:bg-highlight:focus, .sn-component .sn-button.outlined:focus {
2986
+ background-color: var(--sn-stylekit-list-item-highlight-color);
2987
+ }
2988
+
2989
+ .sn-component .focus\:shadow-none:focus, .sn-component .sn-button.outlined:focus, .sn-component .sn-button.info:focus, .sn-component .sn-dropdown-menu:focus, .sn-component .sn-dropdown-menu-list-item:focus, .sn-component .sn-select:focus, .sn-component .sn-select-button:focus, .sn-component .sn-select-list:focus, .sn-component .sn-select-popover:focus {
2990
+ box-shadow: none;
2991
+ }
2992
+
2993
+ .sn-component .focus\:outline-none:focus, .sn-component .sn-button.outlined:focus, .sn-component .sn-button.info:focus, .sn-component .sn-dropdown-menu:focus, .sn-component .sn-dropdown-menu-list:focus, .sn-component .sn-dropdown-menu-list-item:focus, .sn-component .sn-select:focus, .sn-component .sn-select-button:focus, .sn-component .sn-select-list:focus, .sn-component .sn-select-popover:focus {
2994
+ outline: none;
2995
+ }
2996
+
2997
+ .sn-component .box-shadow, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select-popover, .sn-component .box-shadow:focus, .sn-component .sn-dropdown-menu-list:focus, .sn-component .sn-select-popover:focus, .sn-component .box-shadow:focus-within, .sn-component .sn-dropdown-menu-list:focus-within, .sn-component .sn-select-popover:focus-within {
2998
+ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12), 0px 2px 8px rgba(0, 0, 0, 0.04);
2999
+ }
3000
+
3001
+ .sn-component .capitalize, .sn-component .sn-button {
3002
+ text-transform: capitalize;
3003
+ }
3004
+
3005
+ .sn-component .font-normal, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select, .sn-component .sn-select-list-option {
3006
+ font-weight: 300;
3007
+ }
3008
+
3009
+ .sn-component .font-bold, .sn-component .sn-button {
3010
+ font-weight: 700;
3011
+ }
3012
+
3013
+ .sn-component .text-center {
3014
+ text-align: center;
3015
+ }
3016
+
3017
+ .sn-component .text-xs, .sn-component .sn-button.small {
3018
+ font-size: 0.75rem;
3019
+ line-height: 1rem;
3020
+ }
3021
+
3022
+ .sn-component .text-sm, .sn-component .sn-button, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list-item, .sn-component .sn-select, .sn-component .sn-select-list, .sn-component .sn-select-list-option {
3023
+ font-size: 0.875rem;
3024
+ line-height: 1.25rem;
3025
+ }
3026
+
3027
+ .sn-component .text-base {
3028
+ font-size: 1rem;
3029
+ }
3030
+
3031
+ .sn-component .text-lg {
3032
+ font-size: 1.125rem;
3033
+ line-height: 1.75rem;
3034
+ }
3035
+
3036
+ .sn-component .text-2xl {
3037
+ font-size: 1.5rem;
3038
+ line-height: 2rem;
3039
+ }
3040
+
3041
+ .sn-component .font-medium {
3042
+ font-weight: 500;
3043
+ }
3044
+
3045
+ .sn-component .h-full {
3046
+ height: 100%;
3047
+ }
3048
+
3049
+ .sn-component .m-h-32, .sn-component .sn-button, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list-item, .sn-component .sn-select {
3050
+ min-height: 2rem;
3051
+ }
3052
+
3053
+ .sn-component .leading-4, .sn-component .sn-dropdown-menu, .sn-component .sn-select {
3054
+ line-height: 1rem;
3055
+ }
3056
+
3057
+ .sn-component .my-1 {
3058
+ margin-top: 0.25rem;
3059
+ margin-bottom: 0.25rem;
3060
+ }
3061
+
3062
+ .sn-component .mr-2, .sn-component .sn-dropdown-menu > .sn-icon:first-child, .sn-component .sn-dropdown-menu-list-item > .sn-icon {
3063
+ margin-right: 0.5rem;
3064
+ }
3065
+
3066
+ .sn-component .ml-1\.5 {
3067
+ margin-left: 0.375rem;
3068
+ }
3069
+
3070
+ .sn-component .ml-2, .sn-component .sn-dropdown-menu > .sn-icon:last-child, .sn-component .sn-select-button > .sn-icon:last-child {
3071
+ margin-left: 0.5rem;
3072
+ }
3073
+
3074
+ .sn-component .ml-6 {
3075
+ margin-left: 1.5rem;
3076
+ }
3077
+
3078
+ .sn-component .mr-1\.5 {
3079
+ margin-right: 0.375rem;
3080
+ }
3081
+
3082
+ .sn-component .mt-1 {
3083
+ margin-top: 0.25rem;
3084
+ }
3085
+
3086
+ .sn-component .mt-2, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select-popover {
3087
+ margin-top: 0.5rem;
3088
+ }
3089
+
3090
+ .sn-component .mt-4 {
3091
+ margin-top: 1rem;
3092
+ }
3093
+
3094
+ .sn-component .py-1, .sn-component .sn-dropdown-menu, .sn-component .sn-select-button {
3095
+ padding-top: 0.25rem;
3096
+ padding-bottom: 0.25rem;
3097
+ }
3098
+
3099
+ .sn-component .py-2, .sn-component .sn-button, .sn-component .sn-dropdown-menu-list, .sn-component .sn-select-list-option {
3100
+ padding-top: 0.5rem;
3101
+ padding-bottom: 0.5rem;
3102
+ }
3103
+
3104
+ .sn-component .py-3 {
3105
+ padding-top: 0.75rem;
3106
+ padding-bottom: 0.75rem;
3107
+ }
3108
+
3109
+ .sn-component .px-3, .sn-component .sn-button {
3110
+ padding-left: 0.75rem;
3111
+ padding-right: 0.75rem;
3112
+ }
3113
+
3114
+ .sn-component .px-2, .sn-component .sn-dropdown-menu, .sn-component .sn-dropdown-menu-list-item {
3115
+ padding-left: 0.5rem;
3116
+ padding-right: 0.5rem;
3117
+ }
3118
+
3119
+ .sn-component .px-4 {
3120
+ padding-left: 1rem;
3121
+ padding-right: 1rem;
3122
+ }
3123
+
3124
+ .sn-component .px-1 {
3125
+ padding-left: 0.25rem;
3126
+ padding-right: 0.25rem;
3127
+ }
3128
+
3129
+ .sn-component .py-1, .sn-component .sn-dropdown-menu, .sn-component .sn-select-button {
3130
+ padding-top: 0.25rem;
3131
+ padding-bottom: 0.25rem;
3132
+ }
3133
+
3134
+ .sn-component .no-padding {
3135
+ padding-top: 0;
3136
+ padding-bottom: 0;
3137
+ }
3138
+
3139
+ .sn-component .w-auto, .sn-component .sn-dropdown-menu, .sn-component .sn-select {
3140
+ width: auto;
3141
+ }
3142
+
3143
+ .sn-component .w-full {
3144
+ width: 100%;
3145
+ }
3146
+
3147
+ .sn-component .w-56, .sn-component .sn-dropdown-menu-list {
3148
+ width: 14rem;
3149
+ }
3150
+
3151
+ .sn-component .min-w-265, .sn-component .sn-dropdown-menu-list {
3152
+ min-width: 265px;
3153
+ }
3154
+
3155
+ .sn-component .max-w-md {
3156
+ max-width: 28rem;
3157
+ }
3158
+
3159
+ .sn-component .sn-button.contrast {
3160
+ background-color: var(--sn-stylekit-contrast-foreground-color);
3161
+ color: var(--sn-stylekit-contrast-background-color);
3162
+ }
3163
+
3164
+ .sn-component .sn-button.neutral {
3165
+ background-color: var(--sn-stylekit-neutral-color);
3166
+ color: var(--sn-stylekit-neutral-contrast-color);
3167
+ }
3168
+
3169
+ .sn-component .sn-button.warning {
3170
+ background-color: var(--sn-stylekit-warning-color);
3171
+ color: var(--sn-stylekit-warning-contrast-color);
3172
+ }
3173
+
3174
+ .sn-component .sn-button.danger {
3175
+ background-color: var(--sn-stylekit-danger-color);
3176
+ color: var(--sn-stylekit-danger-contrast-color);
3177
+ }
3178
+
3179
+ .sn-component .sn-button.success {
3180
+ background-color: var(--sn-stylekit-success-color);
3181
+ color: var(--sn-stylekit-success-contrast-color);
3182
+ }
3183
+
3184
+ .sn-component.no-select {
3185
+ user-select: none;
3186
+ }
3187
+
3188
+ /* Goes outside of .sn-component declaration, as following properties are global */
3189
+ input,
3190
+ textarea,
3191
+ [contenteditable] {
3192
+ caret-color: var(--sn-stylekit-editor-foreground-color);
3193
+ }
3194
+
3195
+ .windows-web,
3196
+ .windows-desktop,
3197
+ .linux-web,
3198
+ .linux-desktop {
3199
+ scrollbar-width: thin;
3200
+ }
3201
+
3202
+ .windows-web ::-webkit-scrollbar,
3203
+ .windows-desktop ::-webkit-scrollbar,
3204
+ .linux-web ::-webkit-scrollbar,
3205
+ .linux-desktop ::-webkit-scrollbar {
3206
+ width: 17px;
3207
+ height: 18px;
3208
+ border-left: none;
3209
+ }
3210
+
3211
+ .windows-web ::-webkit-scrollbar-thumb,
3212
+ .windows-desktop ::-webkit-scrollbar-thumb,
3213
+ .linux-web ::-webkit-scrollbar-thumb,
3214
+ .linux-desktop ::-webkit-scrollbar-thumb {
3215
+ border: 4px solid rgba(0, 0, 0, 0);
3216
+ background-clip: padding-box;
3217
+ -webkit-border-radius: 10px;
3218
+ background-color: var(--sn-stylekit-scrollbar-thumb-color);
3219
+ -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
3220
+ }
3221
+
3222
+ .windows-web ::-webkit-scrollbar-button,
3223
+ .windows-desktop ::-webkit-scrollbar-button,
3224
+ .linux-web ::-webkit-scrollbar-button,
3225
+ .linux-desktop ::-webkit-scrollbar-button {
3226
+ width: 0;
3227
+ height: 0;
3228
+ display: none;
3229
+ }
3230
+
3231
+ .windows-web ::-webkit-scrollbar-corner,
3232
+ .windows-desktop ::-webkit-scrollbar-corner,
3233
+ .linux-web ::-webkit-scrollbar-corner,
3234
+ .linux-desktop ::-webkit-scrollbar-corner {
3235
+ background-color: transparent;
3236
+ }
3237
+
3238
+ :root {
3239
+ --reach-listbox: 1;
3240
+ }
3241
+
3242
+ [data-reach-listbox-popover] {
3243
+ display: block;
3244
+ position: absolute;
3245
+ min-width: -moz-fit-content;
3246
+ min-width: -webkit-min-content;
3247
+ min-width: min-content;
3248
+ padding: 0.25rem 0;
3249
+ background: white;
3250
+ outline: none;
3251
+ border: solid 1px rgba(0, 0, 0, 0.25);
3252
+ }
3253
+
3254
+ [data-reach-listbox-popover]:focus-within {
3255
+ box-shadow: 0 0 4px Highlight;
3256
+ outline: -webkit-focus-ring-color auto 4px;
3257
+ }
3258
+
3259
+ [data-reach-listbox-popover][hidden] {
3260
+ display: none;
3261
+ }
3262
+
3263
+ [data-reach-listbox-list] {
3264
+ margin: 0;
3265
+ padding: 0;
3266
+ list-style: none;
3267
+ }
3268
+
3269
+ [data-reach-listbox-list]:focus {
3270
+ box-shadow: none;
3271
+ outline: none;
3272
+ }
3273
+
3274
+ [data-reach-listbox-option] {
3275
+ display: block;
3276
+ margin: 0;
3277
+ padding: 0.25rem 0.5rem;
3278
+ white-space: nowrap;
3279
+ user-select: none;
3280
+ }
3281
+
3282
+ [data-reach-listbox-option][aria-selected="true"] {
3283
+ background: #1672d4;
3284
+ color: white;
3285
+ }
3286
+
3287
+ [data-reach-listbox-option][data-current] {
3288
+ font-weight: bolder;
3289
+ }
3290
+
3291
+ [data-reach-listbox-option][data-current][data-confirming] {
3292
+ animation: flash 100ms;
3293
+ animation-iteration-count: 1;
3294
+ }
3295
+
3296
+ [data-reach-listbox-option][aria-disabled="true"] {
3297
+ opacity: 0.5;
3298
+ }
3299
+
3300
+ [data-reach-listbox-button] {
3301
+ display: inline-flex;
3302
+ align-items: center;
3303
+ justify-content: space-between;
3304
+ padding: 1px 10px 2px;
3305
+ border: 1px solid;
3306
+ border-color: #d8d8d8 #d1d1d1 #bababa;
3307
+ cursor: default;
3308
+ user-select: none;
3309
+ }
3310
+
3311
+ [data-reach-listbox-button][aria-disabled="true"] {
3312
+ opacity: 0.5;
3313
+ }
3314
+
3315
+ [data-reach-listbox-arrow] {
3316
+ margin-left: 0.5rem;
3317
+ display: block;
3318
+ font-size: 0.5em;
3319
+ }
3320
+
3321
+ [data-reach-listbox-group-label] {
3322
+ display: block;
3323
+ margin: 0;
3324
+ padding: 0.25rem 0.5rem;
3325
+ white-space: nowrap;
3326
+ user-select: none;
3327
+ font-weight: bolder;
3328
+ }
3329
+
3330
+ @keyframes flash {
3331
+ 0% {
3332
+ background: #1159a6;
3333
+ color: white;
3334
+ opacity: 1;
3335
+ }
3336
+ 50% {
3337
+ opacity: 0.5;
3338
+ background: inherit;
3339
+ color: inherit;
3340
+ }
3341
+ 100% {
3342
+ background: #1159a6;
3343
+ color: white;
3344
+ opacity: 1;
3345
+ }
3346
+ }
3347
+