vapid 0.1.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 (433) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +6 -0
  4. data/.rspec +2 -0
  5. data/.rubocop.yml +133 -0
  6. data/.travis.yml +5 -0
  7. data/Gemfile +10 -0
  8. data/README.md +37 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/exe/vapid +7 -0
  13. data/lib/vapid.rb +24 -0
  14. data/lib/vapid/assets/javascripts/vapid/admin.coffee +2 -0
  15. data/lib/vapid/assets/stylesheets/vapid/admin.scss +72 -0
  16. data/lib/vapid/builder.rb +70 -0
  17. data/lib/vapid/cli.rb +96 -0
  18. data/lib/vapid/controllers/admin_controller.rb +282 -0
  19. data/lib/vapid/controllers/project_controller.rb +41 -0
  20. data/lib/vapid/db/migrate/20170202182310_create_groups.rb +12 -0
  21. data/lib/vapid/db/migrate/20170202183017_create_records.rb +11 -0
  22. data/lib/vapid/db/migrate/20170202185150_create_users.rb +11 -0
  23. data/lib/vapid/directive.rb +168 -0
  24. data/lib/vapid/directives.rb +30 -0
  25. data/lib/vapid/directives/audio.rb +27 -0
  26. data/lib/vapid/directives/group.rb +71 -0
  27. data/lib/vapid/directives/hide.rb +11 -0
  28. data/lib/vapid/directives/href.rb +11 -0
  29. data/lib/vapid/directives/image.rb +14 -0
  30. data/lib/vapid/directives/richtext.rb +15 -0
  31. data/lib/vapid/directives/show.rb +11 -0
  32. data/lib/vapid/directives/text.rb +24 -0
  33. data/lib/vapid/directives/video.rb +28 -0
  34. data/lib/vapid/generator_template/.gitignore +21 -0
  35. data/lib/vapid/generator_template/Gemfile.tt +13 -0
  36. data/lib/vapid/generator_template/README.md +0 -0
  37. data/lib/vapid/generator_template/assets/favicon.ico +0 -0
  38. data/lib/vapid/generator_template/assets/images/.keep +0 -0
  39. data/lib/vapid/generator_template/assets/javascripts/.keep +0 -0
  40. data/lib/vapid/generator_template/assets/stylesheets/.keep +0 -0
  41. data/lib/vapid/generator_template/assets/stylesheets/application.css +120 -0
  42. data/lib/vapid/generator_template/config.ru +3 -0
  43. data/lib/vapid/generator_template/config/database.yml +12 -0
  44. data/lib/vapid/generator_template/config/settings.yml.tt +11 -0
  45. data/lib/vapid/generator_template/templates/index.html.erb +25 -0
  46. data/lib/vapid/generator_template/templates/layouts/default.html.erb +22 -0
  47. data/lib/vapid/models.rb +18 -0
  48. data/lib/vapid/models/group.rb +36 -0
  49. data/lib/vapid/models/record.rb +30 -0
  50. data/lib/vapid/models/user.rb +16 -0
  51. data/lib/vapid/server.rb +93 -0
  52. data/lib/vapid/settings.rb +13 -0
  53. data/lib/vapid/template.rb +79 -0
  54. data/lib/vapid/template/node.rb +91 -0
  55. data/lib/vapid/template/parser.rb +50 -0
  56. data/lib/vapid/vendor/semantic-ui/.versions +4 -0
  57. data/lib/vapid/vendor/semantic-ui/LICENSE +22 -0
  58. data/lib/vapid/vendor/semantic-ui/README.md +7 -0
  59. data/lib/vapid/vendor/semantic-ui/components/accordion.css +252 -0
  60. data/lib/vapid/vendor/semantic-ui/components/accordion.js +610 -0
  61. data/lib/vapid/vendor/semantic-ui/components/accordion.min.css +9 -0
  62. data/lib/vapid/vendor/semantic-ui/components/accordion.min.js +10 -0
  63. data/lib/vapid/vendor/semantic-ui/components/ad.css +275 -0
  64. data/lib/vapid/vendor/semantic-ui/components/ad.min.css +10 -0
  65. data/lib/vapid/vendor/semantic-ui/components/api.js +1167 -0
  66. data/lib/vapid/vendor/semantic-ui/components/api.min.js +10 -0
  67. data/lib/vapid/vendor/semantic-ui/components/breadcrumb.css +124 -0
  68. data/lib/vapid/vendor/semantic-ui/components/breadcrumb.min.css +9 -0
  69. data/lib/vapid/vendor/semantic-ui/components/button.css +3450 -0
  70. data/lib/vapid/vendor/semantic-ui/components/button.min.css +9 -0
  71. data/lib/vapid/vendor/semantic-ui/components/card.css +964 -0
  72. data/lib/vapid/vendor/semantic-ui/components/card.min.css +9 -0
  73. data/lib/vapid/vendor/semantic-ui/components/checkbox.css +625 -0
  74. data/lib/vapid/vendor/semantic-ui/components/checkbox.js +831 -0
  75. data/lib/vapid/vendor/semantic-ui/components/checkbox.min.css +9 -0
  76. data/lib/vapid/vendor/semantic-ui/components/checkbox.min.js +10 -0
  77. data/lib/vapid/vendor/semantic-ui/components/colorize.js +274 -0
  78. data/lib/vapid/vendor/semantic-ui/components/colorize.min.js +11 -0
  79. data/lib/vapid/vendor/semantic-ui/components/comment.css +270 -0
  80. data/lib/vapid/vendor/semantic-ui/components/comment.min.css +9 -0
  81. data/lib/vapid/vendor/semantic-ui/components/container.css +147 -0
  82. data/lib/vapid/vendor/semantic-ui/components/container.min.css +9 -0
  83. data/lib/vapid/vendor/semantic-ui/components/dimmer.css +200 -0
  84. data/lib/vapid/vendor/semantic-ui/components/dimmer.js +708 -0
  85. data/lib/vapid/vendor/semantic-ui/components/dimmer.min.css +9 -0
  86. data/lib/vapid/vendor/semantic-ui/components/dimmer.min.js +10 -0
  87. data/lib/vapid/vendor/semantic-ui/components/divider.css +260 -0
  88. data/lib/vapid/vendor/semantic-ui/components/divider.min.css +9 -0
  89. data/lib/vapid/vendor/semantic-ui/components/dropdown.css +1442 -0
  90. data/lib/vapid/vendor/semantic-ui/components/dropdown.js +3767 -0
  91. data/lib/vapid/vendor/semantic-ui/components/dropdown.min.css +9 -0
  92. data/lib/vapid/vendor/semantic-ui/components/dropdown.min.js +11 -0
  93. data/lib/vapid/vendor/semantic-ui/components/embed.css +166 -0
  94. data/lib/vapid/vendor/semantic-ui/components/embed.js +696 -0
  95. data/lib/vapid/vendor/semantic-ui/components/embed.min.css +9 -0
  96. data/lib/vapid/vendor/semantic-ui/components/embed.min.js +10 -0
  97. data/lib/vapid/vendor/semantic-ui/components/feed.css +296 -0
  98. data/lib/vapid/vendor/semantic-ui/components/feed.min.css +9 -0
  99. data/lib/vapid/vendor/semantic-ui/components/flag.css +1031 -0
  100. data/lib/vapid/vendor/semantic-ui/components/flag.min.css +9 -0
  101. data/lib/vapid/vendor/semantic-ui/components/form.css +1067 -0
  102. data/lib/vapid/vendor/semantic-ui/components/form.js +1603 -0
  103. data/lib/vapid/vendor/semantic-ui/components/form.min.css +9 -0
  104. data/lib/vapid/vendor/semantic-ui/components/form.min.js +10 -0
  105. data/lib/vapid/vendor/semantic-ui/components/grid.css +2002 -0
  106. data/lib/vapid/vendor/semantic-ui/components/grid.min.css +9 -0
  107. data/lib/vapid/vendor/semantic-ui/components/header.css +721 -0
  108. data/lib/vapid/vendor/semantic-ui/components/header.min.css +9 -0
  109. data/lib/vapid/vendor/semantic-ui/components/icon.css +3292 -0
  110. data/lib/vapid/vendor/semantic-ui/components/icon.min.css +9 -0
  111. data/lib/vapid/vendor/semantic-ui/components/image.css +306 -0
  112. data/lib/vapid/vendor/semantic-ui/components/image.min.css +9 -0
  113. data/lib/vapid/vendor/semantic-ui/components/input.css +510 -0
  114. data/lib/vapid/vendor/semantic-ui/components/input.min.css +9 -0
  115. data/lib/vapid/vendor/semantic-ui/components/item.css +486 -0
  116. data/lib/vapid/vendor/semantic-ui/components/item.min.css +9 -0
  117. data/lib/vapid/vendor/semantic-ui/components/label.css +1307 -0
  118. data/lib/vapid/vendor/semantic-ui/components/label.min.css +9 -0
  119. data/lib/vapid/vendor/semantic-ui/components/list.css +951 -0
  120. data/lib/vapid/vendor/semantic-ui/components/list.min.css +9 -0
  121. data/lib/vapid/vendor/semantic-ui/components/loader.css +347 -0
  122. data/lib/vapid/vendor/semantic-ui/components/loader.min.css +9 -0
  123. data/lib/vapid/vendor/semantic-ui/components/menu.css +2002 -0
  124. data/lib/vapid/vendor/semantic-ui/components/menu.min.css +1 -0
  125. data/lib/vapid/vendor/semantic-ui/components/message.css +477 -0
  126. data/lib/vapid/vendor/semantic-ui/components/message.min.css +9 -0
  127. data/lib/vapid/vendor/semantic-ui/components/modal.css +502 -0
  128. data/lib/vapid/vendor/semantic-ui/components/modal.js +913 -0
  129. data/lib/vapid/vendor/semantic-ui/components/modal.min.css +9 -0
  130. data/lib/vapid/vendor/semantic-ui/components/modal.min.js +10 -0
  131. data/lib/vapid/vendor/semantic-ui/components/nag.css +147 -0
  132. data/lib/vapid/vendor/semantic-ui/components/nag.js +507 -0
  133. data/lib/vapid/vendor/semantic-ui/components/nag.min.css +9 -0
  134. data/lib/vapid/vendor/semantic-ui/components/nag.min.js +10 -0
  135. data/lib/vapid/vendor/semantic-ui/components/popup.css +733 -0
  136. data/lib/vapid/vendor/semantic-ui/components/popup.js +1475 -0
  137. data/lib/vapid/vendor/semantic-ui/components/popup.min.css +9 -0
  138. data/lib/vapid/vendor/semantic-ui/components/popup.min.js +10 -0
  139. data/lib/vapid/vendor/semantic-ui/components/progress.css +516 -0
  140. data/lib/vapid/vendor/semantic-ui/components/progress.js +931 -0
  141. data/lib/vapid/vendor/semantic-ui/components/progress.min.css +9 -0
  142. data/lib/vapid/vendor/semantic-ui/components/progress.min.js +10 -0
  143. data/lib/vapid/vendor/semantic-ui/components/rail.css +152 -0
  144. data/lib/vapid/vendor/semantic-ui/components/rail.min.css +9 -0
  145. data/lib/vapid/vendor/semantic-ui/components/rating.css +263 -0
  146. data/lib/vapid/vendor/semantic-ui/components/rating.js +508 -0
  147. data/lib/vapid/vendor/semantic-ui/components/rating.min.css +9 -0
  148. data/lib/vapid/vendor/semantic-ui/components/rating.min.js +10 -0
  149. data/lib/vapid/vendor/semantic-ui/components/reset.css +424 -0
  150. data/lib/vapid/vendor/semantic-ui/components/reset.min.css +9 -0
  151. data/lib/vapid/vendor/semantic-ui/components/reveal.css +284 -0
  152. data/lib/vapid/vendor/semantic-ui/components/reveal.min.css +9 -0
  153. data/lib/vapid/vendor/semantic-ui/components/search.css +408 -0
  154. data/lib/vapid/vendor/semantic-ui/components/search.js +1442 -0
  155. data/lib/vapid/vendor/semantic-ui/components/search.min.css +9 -0
  156. data/lib/vapid/vendor/semantic-ui/components/search.min.js +10 -0
  157. data/lib/vapid/vendor/semantic-ui/components/segment.css +798 -0
  158. data/lib/vapid/vendor/semantic-ui/components/segment.min.css +9 -0
  159. data/lib/vapid/vendor/semantic-ui/components/shape.css +157 -0
  160. data/lib/vapid/vendor/semantic-ui/components/shape.js +921 -0
  161. data/lib/vapid/vendor/semantic-ui/components/shape.min.css +9 -0
  162. data/lib/vapid/vendor/semantic-ui/components/shape.min.js +10 -0
  163. data/lib/vapid/vendor/semantic-ui/components/sidebar.css +634 -0
  164. data/lib/vapid/vendor/semantic-ui/components/sidebar.js +1036 -0
  165. data/lib/vapid/vendor/semantic-ui/components/sidebar.min.css +9 -0
  166. data/lib/vapid/vendor/semantic-ui/components/sidebar.min.js +10 -0
  167. data/lib/vapid/vendor/semantic-ui/components/site.css +160 -0
  168. data/lib/vapid/vendor/semantic-ui/components/site.js +487 -0
  169. data/lib/vapid/vendor/semantic-ui/components/site.min.css +9 -0
  170. data/lib/vapid/vendor/semantic-ui/components/site.min.js +10 -0
  171. data/lib/vapid/vendor/semantic-ui/components/state.js +708 -0
  172. data/lib/vapid/vendor/semantic-ui/components/state.min.js +10 -0
  173. data/lib/vapid/vendor/semantic-ui/components/statistic.css +569 -0
  174. data/lib/vapid/vendor/semantic-ui/components/statistic.min.css +9 -0
  175. data/lib/vapid/vendor/semantic-ui/components/step.css +623 -0
  176. data/lib/vapid/vendor/semantic-ui/components/step.min.css +9 -0
  177. data/lib/vapid/vendor/semantic-ui/components/sticky.css +78 -0
  178. data/lib/vapid/vendor/semantic-ui/components/sticky.js +942 -0
  179. data/lib/vapid/vendor/semantic-ui/components/sticky.min.css +9 -0
  180. data/lib/vapid/vendor/semantic-ui/components/sticky.min.js +10 -0
  181. data/lib/vapid/vendor/semantic-ui/components/tab.css +91 -0
  182. data/lib/vapid/vendor/semantic-ui/components/tab.js +952 -0
  183. data/lib/vapid/vendor/semantic-ui/components/tab.min.css +9 -0
  184. data/lib/vapid/vendor/semantic-ui/components/tab.min.js +10 -0
  185. data/lib/vapid/vendor/semantic-ui/components/table.css +1108 -0
  186. data/lib/vapid/vendor/semantic-ui/components/table.min.css +9 -0
  187. data/lib/vapid/vendor/semantic-ui/components/transition.css +1964 -0
  188. data/lib/vapid/vendor/semantic-ui/components/transition.js +1095 -0
  189. data/lib/vapid/vendor/semantic-ui/components/transition.min.css +9 -0
  190. data/lib/vapid/vendor/semantic-ui/components/transition.min.js +10 -0
  191. data/lib/vapid/vendor/semantic-ui/components/video.css +125 -0
  192. data/lib/vapid/vendor/semantic-ui/components/video.js +532 -0
  193. data/lib/vapid/vendor/semantic-ui/components/video.min.css +10 -0
  194. data/lib/vapid/vendor/semantic-ui/components/video.min.js +11 -0
  195. data/lib/vapid/vendor/semantic-ui/components/visibility.js +1288 -0
  196. data/lib/vapid/vendor/semantic-ui/components/visibility.min.js +10 -0
  197. data/lib/vapid/vendor/semantic-ui/components/visit.js +517 -0
  198. data/lib/vapid/vendor/semantic-ui/components/visit.min.js +11 -0
  199. data/lib/vapid/vendor/semantic-ui/package.js +34 -0
  200. data/lib/vapid/vendor/semantic-ui/package.json +20 -0
  201. data/lib/vapid/vendor/semantic-ui/semantic.css +36844 -0
  202. data/lib/vapid/vendor/semantic-ui/semantic.js +22617 -0
  203. data/lib/vapid/vendor/semantic-ui/semantic.min.css +364 -0
  204. data/lib/vapid/vendor/semantic-ui/semantic.min.js +19 -0
  205. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.eot +0 -0
  206. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.otf +0 -0
  207. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.svg +2671 -0
  208. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.ttf +0 -0
  209. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.woff +0 -0
  210. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.woff2 +0 -0
  211. data/lib/vapid/vendor/semantic-ui/themes/default/assets/images/flags.png +0 -0
  212. data/lib/vapid/vendor/trix/.blade.yml +45 -0
  213. data/lib/vapid/vendor/trix/.github/ISSUE_TEMPLATE.md +13 -0
  214. data/lib/vapid/vendor/trix/.gitignore +3 -0
  215. data/lib/vapid/vendor/trix/.ruby-version +1 -0
  216. data/lib/vapid/vendor/trix/.travis.yml +6 -0
  217. data/lib/vapid/vendor/trix/CONDUCT.md +79 -0
  218. data/lib/vapid/vendor/trix/Gemfile +17 -0
  219. data/lib/vapid/vendor/trix/Gemfile.lock +152 -0
  220. data/lib/vapid/vendor/trix/LICENSE +20 -0
  221. data/lib/vapid/vendor/trix/README.md +382 -0
  222. data/lib/vapid/vendor/trix/assets/index.html +55 -0
  223. data/lib/vapid/vendor/trix/assets/trix-core.coffee +2 -0
  224. data/lib/vapid/vendor/trix/assets/trix.coffee +3 -0
  225. data/lib/vapid/vendor/trix/assets/trix.scss +5 -0
  226. data/lib/vapid/vendor/trix/assets/trix/banner/index.coffee.erb +3 -0
  227. data/lib/vapid/vendor/trix/assets/trix/banner/index.scss.erb +3 -0
  228. data/lib/vapid/vendor/trix/assets/trix/banner/index.txt.erb +3 -0
  229. data/lib/vapid/vendor/trix/assets/trix/images/README.md +6 -0
  230. data/lib/vapid/vendor/trix/assets/trix/images/attach.svg +5 -0
  231. data/lib/vapid/vendor/trix/assets/trix/images/bold.svg +5 -0
  232. data/lib/vapid/vendor/trix/assets/trix/images/bullets.svg +5 -0
  233. data/lib/vapid/vendor/trix/assets/trix/images/code.svg +5 -0
  234. data/lib/vapid/vendor/trix/assets/trix/images/heading_1.svg +5 -0
  235. data/lib/vapid/vendor/trix/assets/trix/images/italic.svg +5 -0
  236. data/lib/vapid/vendor/trix/assets/trix/images/link.svg +6 -0
  237. data/lib/vapid/vendor/trix/assets/trix/images/nesting_level_decrease.svg +5 -0
  238. data/lib/vapid/vendor/trix/assets/trix/images/nesting_level_increase.svg +5 -0
  239. data/lib/vapid/vendor/trix/assets/trix/images/numbers.svg +5 -0
  240. data/lib/vapid/vendor/trix/assets/trix/images/quote.svg +5 -0
  241. data/lib/vapid/vendor/trix/assets/trix/images/redo.svg +5 -0
  242. data/lib/vapid/vendor/trix/assets/trix/images/remove.svg +4 -0
  243. data/lib/vapid/vendor/trix/assets/trix/images/strike.svg +6 -0
  244. data/lib/vapid/vendor/trix/assets/trix/images/trash.svg +5 -0
  245. data/lib/vapid/vendor/trix/assets/trix/images/undo.svg +5 -0
  246. data/lib/vapid/vendor/trix/assets/trix/stylesheets/attachments.scss +112 -0
  247. data/lib/vapid/vendor/trix/assets/trix/stylesheets/content.scss +88 -0
  248. data/lib/vapid/vendor/trix/assets/trix/stylesheets/editor.scss +8 -0
  249. data/lib/vapid/vendor/trix/assets/trix/stylesheets/icons.scss +14 -0
  250. data/lib/vapid/vendor/trix/assets/trix/stylesheets/media-queries.scss +7 -0
  251. data/lib/vapid/vendor/trix/assets/trix/stylesheets/toolbar.scss +194 -0
  252. data/lib/vapid/vendor/trix/bin/blade +16 -0
  253. data/lib/vapid/vendor/trix/bin/ci +21 -0
  254. data/lib/vapid/vendor/trix/bin/rackup +16 -0
  255. data/lib/vapid/vendor/trix/bin/rake +16 -0
  256. data/lib/vapid/vendor/trix/bin/release +139 -0
  257. data/lib/vapid/vendor/trix/bin/setup +69 -0
  258. data/lib/vapid/vendor/trix/bin/update-status-image +100 -0
  259. data/lib/vapid/vendor/trix/bower.json +34 -0
  260. data/lib/vapid/vendor/trix/config.ru +32 -0
  261. data/lib/vapid/vendor/trix/dist/trix-core.js +11 -0
  262. data/lib/vapid/vendor/trix/dist/trix.css +286 -0
  263. data/lib/vapid/vendor/trix/dist/trix.js +20 -0
  264. data/lib/vapid/vendor/trix/package.json +29 -0
  265. data/lib/vapid/vendor/trix/polyfills/polyfills.coffee +3 -0
  266. data/lib/vapid/vendor/trix/polyfills/set.coffee +24 -0
  267. data/lib/vapid/vendor/trix/polyfills/vendor/CustomElements.js +1029 -0
  268. data/lib/vapid/vendor/trix/polyfills/vendor/README.md +2 -0
  269. data/lib/vapid/vendor/trix/polyfills/vendor/promise.js +228 -0
  270. data/lib/vapid/vendor/trix/src/trix/VERSION +1 -0
  271. data/lib/vapid/vendor/trix/src/trix/config/block_attributes.coffee +37 -0
  272. data/lib/vapid/vendor/trix/src/trix/config/css.coffee +12 -0
  273. data/lib/vapid/vendor/trix/src/trix/config/file_size_formatting.coffee +22 -0
  274. data/lib/vapid/vendor/trix/src/trix/config/index.coffee +9 -0
  275. data/lib/vapid/vendor/trix/src/trix/config/lang.coffee +26 -0
  276. data/lib/vapid/vendor/trix/src/trix/config/selection_elements.coffee +26 -0
  277. data/lib/vapid/vendor/trix/src/trix/config/serialization.coffee +63 -0
  278. data/lib/vapid/vendor/trix/src/trix/config/text_attributes.coffee +25 -0
  279. data/lib/vapid/vendor/trix/src/trix/config/toolbar.coffee +41 -0
  280. data/lib/vapid/vendor/trix/src/trix/config/undo_interval.coffee +7 -0
  281. data/lib/vapid/vendor/trix/src/trix/controllers/attachment_editor_controller.coffee +104 -0
  282. data/lib/vapid/vendor/trix/src/trix/controllers/composition_controller.coffee +117 -0
  283. data/lib/vapid/vendor/trix/src/trix/controllers/controller.coffee +3 -0
  284. data/lib/vapid/vendor/trix/src/trix/controllers/editor_controller.coffee +369 -0
  285. data/lib/vapid/vendor/trix/src/trix/controllers/input/composition_input.coffee +57 -0
  286. data/lib/vapid/vendor/trix/src/trix/controllers/input_controller.coffee +473 -0
  287. data/lib/vapid/vendor/trix/src/trix/controllers/toolbar_controller.coffee +173 -0
  288. data/lib/vapid/vendor/trix/src/trix/core/basic_object.coffee +44 -0
  289. data/lib/vapid/vendor/trix/src/trix/core/collections/element_store.coffee +21 -0
  290. data/lib/vapid/vendor/trix/src/trix/core/collections/hash.coffee +98 -0
  291. data/lib/vapid/vendor/trix/src/trix/core/collections/index.coffee +4 -0
  292. data/lib/vapid/vendor/trix/src/trix/core/collections/object_group.coffee +37 -0
  293. data/lib/vapid/vendor/trix/src/trix/core/collections/object_map.coffee +10 -0
  294. data/lib/vapid/vendor/trix/src/trix/core/helpers/arrays.coffee +34 -0
  295. data/lib/vapid/vendor/trix/src/trix/core/helpers/config.coffee +23 -0
  296. data/lib/vapid/vendor/trix/src/trix/core/helpers/custom_elements.coffee +45 -0
  297. data/lib/vapid/vendor/trix/src/trix/core/helpers/dom.coffee +185 -0
  298. data/lib/vapid/vendor/trix/src/trix/core/helpers/extend.coffee +4 -0
  299. data/lib/vapid/vendor/trix/src/trix/core/helpers/functions.coffee +3 -0
  300. data/lib/vapid/vendor/trix/src/trix/core/helpers/global.coffee +23 -0
  301. data/lib/vapid/vendor/trix/src/trix/core/helpers/index.coffee +10 -0
  302. data/lib/vapid/vendor/trix/src/trix/core/helpers/objects.coffee +11 -0
  303. data/lib/vapid/vendor/trix/src/trix/core/helpers/ranges.coffee +33 -0
  304. data/lib/vapid/vendor/trix/src/trix/core/helpers/selection.coffee +25 -0
  305. data/lib/vapid/vendor/trix/src/trix/core/helpers/strings.coffee +46 -0
  306. data/lib/vapid/vendor/trix/src/trix/core/index.coffee +4 -0
  307. data/lib/vapid/vendor/trix/src/trix/core/object.coffee +33 -0
  308. data/lib/vapid/vendor/trix/src/trix/core/utilities/index.coffee +2 -0
  309. data/lib/vapid/vendor/trix/src/trix/core/utilities/operation.coffee +37 -0
  310. data/lib/vapid/vendor/trix/src/trix/core/utilities/utf16_string.coffee +93 -0
  311. data/lib/vapid/vendor/trix/src/trix/elements/trix_editor_element.coffee +166 -0
  312. data/lib/vapid/vendor/trix/src/trix/elements/trix_toolbar_element.coffee +28 -0
  313. data/lib/vapid/vendor/trix/src/trix/index.coffee.erb +14 -0
  314. data/lib/vapid/vendor/trix/src/trix/inspector/control_element.coffee +60 -0
  315. data/lib/vapid/vendor/trix/src/trix/inspector/debugger.coffee +104 -0
  316. data/lib/vapid/vendor/trix/src/trix/inspector/element.coffee +86 -0
  317. data/lib/vapid/vendor/trix/src/trix/inspector/index.coffee +17 -0
  318. data/lib/vapid/vendor/trix/src/trix/inspector/polyfills/vendor/details-element-polyfill.js +5 -0
  319. data/lib/vapid/vendor/trix/src/trix/inspector/templates/debug.jst.eco +17 -0
  320. data/lib/vapid/vendor/trix/src/trix/inspector/templates/document.jst.eco +33 -0
  321. data/lib/vapid/vendor/trix/src/trix/inspector/templates/performance.jst.eco +10 -0
  322. data/lib/vapid/vendor/trix/src/trix/inspector/templates/render.jst.eco +1 -0
  323. data/lib/vapid/vendor/trix/src/trix/inspector/templates/selection.jst.eco +5 -0
  324. data/lib/vapid/vendor/trix/src/trix/inspector/templates/undo.jst.eco +13 -0
  325. data/lib/vapid/vendor/trix/src/trix/inspector/view.coffee +58 -0
  326. data/lib/vapid/vendor/trix/src/trix/inspector/views/debug_view.coffee +33 -0
  327. data/lib/vapid/vendor/trix/src/trix/inspector/views/document_view.coffee +12 -0
  328. data/lib/vapid/vendor/trix/src/trix/inspector/views/performance_view.coffee +51 -0
  329. data/lib/vapid/vendor/trix/src/trix/inspector/views/render_view.coffee +21 -0
  330. data/lib/vapid/vendor/trix/src/trix/inspector/views/selection_view.coffee +33 -0
  331. data/lib/vapid/vendor/trix/src/trix/inspector/views/undo_view.coffee +12 -0
  332. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/deserializer.coffee +55 -0
  333. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/index.coffee +5 -0
  334. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player.coffee +60 -0
  335. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_controller.coffee +43 -0
  336. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_element.coffee +32 -0
  337. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_view.coffee +133 -0
  338. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/recorder.coffee +82 -0
  339. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/recording.coffee +54 -0
  340. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/serializer.coffee +61 -0
  341. data/lib/vapid/vendor/trix/src/trix/models/attachment.coffee +157 -0
  342. data/lib/vapid/vendor/trix/src/trix/models/attachment_manager.coffee +24 -0
  343. data/lib/vapid/vendor/trix/src/trix/models/attachment_piece.coffee +47 -0
  344. data/lib/vapid/vendor/trix/src/trix/models/block.coffee +230 -0
  345. data/lib/vapid/vendor/trix/src/trix/models/composition.coffee +521 -0
  346. data/lib/vapid/vendor/trix/src/trix/models/document.coffee +538 -0
  347. data/lib/vapid/vendor/trix/src/trix/models/editor.coffee +141 -0
  348. data/lib/vapid/vendor/trix/src/trix/models/html_parser.coffee +335 -0
  349. data/lib/vapid/vendor/trix/src/trix/models/line_break_insertion.coffee +31 -0
  350. data/lib/vapid/vendor/trix/src/trix/models/location_mapper.coffee +156 -0
  351. data/lib/vapid/vendor/trix/src/trix/models/managed_attachment.coffee +28 -0
  352. data/lib/vapid/vendor/trix/src/trix/models/piece.coffee +95 -0
  353. data/lib/vapid/vendor/trix/src/trix/models/point_mapper.coffee +28 -0
  354. data/lib/vapid/vendor/trix/src/trix/models/selection_manager.coffee +129 -0
  355. data/lib/vapid/vendor/trix/src/trix/models/splittable_list.coffee +168 -0
  356. data/lib/vapid/vendor/trix/src/trix/models/string_piece.coffee +49 -0
  357. data/lib/vapid/vendor/trix/src/trix/models/text.coffee +168 -0
  358. data/lib/vapid/vendor/trix/src/trix/models/undo_manager.coffee +40 -0
  359. data/lib/vapid/vendor/trix/src/trix/observers/mutation_observer.coffee +131 -0
  360. data/lib/vapid/vendor/trix/src/trix/observers/selection_change_observer.coffee +56 -0
  361. data/lib/vapid/vendor/trix/src/trix/operations/file_verification_operation.coffee +15 -0
  362. data/lib/vapid/vendor/trix/src/trix/operations/image_preload_operation.coffee +15 -0
  363. data/lib/vapid/vendor/trix/src/trix/views/attachment_view.coffee +99 -0
  364. data/lib/vapid/vendor/trix/src/trix/views/block_view.coffee +37 -0
  365. data/lib/vapid/vendor/trix/src/trix/views/document_view.coffee +68 -0
  366. data/lib/vapid/vendor/trix/src/trix/views/object_group_view.coffee +23 -0
  367. data/lib/vapid/vendor/trix/src/trix/views/object_view.coffee +86 -0
  368. data/lib/vapid/vendor/trix/src/trix/views/piece_view.coffee +97 -0
  369. data/lib/vapid/vendor/trix/src/trix/views/previewable_attachment_view.coffee +49 -0
  370. data/lib/vapid/vendor/trix/src/trix/views/text_view.coffee +30 -0
  371. data/lib/vapid/vendor/trix/test/.gitignore +1 -0
  372. data/lib/vapid/vendor/trix/test/src/system/attachment_test.coffee +70 -0
  373. data/lib/vapid/vendor/trix/test/src/system/basic_input_test.coffee +68 -0
  374. data/lib/vapid/vendor/trix/test/src/system/block_formatting_test.coffee +602 -0
  375. data/lib/vapid/vendor/trix/test/src/system/caching_test.coffee +21 -0
  376. data/lib/vapid/vendor/trix/test/src/system/composition_input_test.coffee +138 -0
  377. data/lib/vapid/vendor/trix/test/src/system/cursor_movement_test.coffee +54 -0
  378. data/lib/vapid/vendor/trix/test/src/system/custom_element_test.coffee +314 -0
  379. data/lib/vapid/vendor/trix/test/src/system/html_loading_test.coffee +62 -0
  380. data/lib/vapid/vendor/trix/test/src/system/html_replacement_test.coffee +101 -0
  381. data/lib/vapid/vendor/trix/test/src/system/installation_process_test.coffee +59 -0
  382. data/lib/vapid/vendor/trix/test/src/system/list_formatting_test.coffee +70 -0
  383. data/lib/vapid/vendor/trix/test/src/system/mutation_input_test.coffee +73 -0
  384. data/lib/vapid/vendor/trix/test/src/system/pasting_test.coffee +215 -0
  385. data/lib/vapid/vendor/trix/test/src/system/text_formatting_test.coffee +151 -0
  386. data/lib/vapid/vendor/trix/test/src/system/undo_test.coffee +48 -0
  387. data/lib/vapid/vendor/trix/test/src/test.coffee +16 -0
  388. data/lib/vapid/vendor/trix/test/src/test_helpers/assertions.coffee +38 -0
  389. data/lib/vapid/vendor/trix/test/src/test_helpers/editor_helpers.coffee +37 -0
  390. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_empty.jst.eco +1 -0
  391. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_html.jst.eco +2 -0
  392. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_in_table.jst.eco +7 -0
  393. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_block_styles.jst.eco +6 -0
  394. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_bold_styles.jst.eco +7 -0
  395. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_image.jst.eco +2 -0
  396. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_styled_content.jst.eco +7 -0
  397. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_toolbar_and_input.jst.eco +5 -0
  398. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/fixtures.coffee +536 -0
  399. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/logo.png +0 -0
  400. data/lib/vapid/vendor/trix/test/src/test_helpers/index.coffee +18 -0
  401. data/lib/vapid/vendor/trix/test/src/test_helpers/input_helpers.coffee +183 -0
  402. data/lib/vapid/vendor/trix/test/src/test_helpers/selection_helpers.coffee +91 -0
  403. data/lib/vapid/vendor/trix/test/src/test_helpers/test_helpers.coffee +72 -0
  404. data/lib/vapid/vendor/trix/test/src/test_helpers/test_stubs.coffee +31 -0
  405. data/lib/vapid/vendor/trix/test/src/test_helpers/toolbar_helpers.coffee +45 -0
  406. data/lib/vapid/vendor/trix/test/src/unit/attachment_test.coffee +23 -0
  407. data/lib/vapid/vendor/trix/test/src/unit/block_test.coffee +22 -0
  408. data/lib/vapid/vendor/trix/test/src/unit/composition_test.coffee +13 -0
  409. data/lib/vapid/vendor/trix/test/src/unit/document_test.coffee +11 -0
  410. data/lib/vapid/vendor/trix/test/src/unit/document_view_test.coffee +6 -0
  411. data/lib/vapid/vendor/trix/test/src/unit/html_parser_test.coffee +162 -0
  412. data/lib/vapid/vendor/trix/test/src/unit/location_mapper_test.coffee +185 -0
  413. data/lib/vapid/vendor/trix/test/src/unit/mutation_observer_test.coffee +84 -0
  414. data/lib/vapid/vendor/trix/test/src/unit/serialization_test.coffee +7 -0
  415. data/lib/vapid/vendor/trix/test/src/unit/string_change_summary_test.coffee +57 -0
  416. data/lib/vapid/vendor/trix/test/src/unit/text_test.coffee +19 -0
  417. data/lib/vapid/vendor/trix/test/vendor/rangy-core.js +3845 -0
  418. data/lib/vapid/vendor/trix/test/vendor/rangy-textrange.js +1930 -0
  419. data/lib/vapid/version.rb +4 -0
  420. data/lib/vapid/views/admin/install.html.erb +19 -0
  421. data/lib/vapid/views/admin/login.html.erb +11 -0
  422. data/lib/vapid/views/admin/overview/index.html.erb +1 -0
  423. data/lib/vapid/views/admin/records/_form.erb +9 -0
  424. data/lib/vapid/views/admin/records/edit.html.erb +5 -0
  425. data/lib/vapid/views/admin/records/index.html.erb +38 -0
  426. data/lib/vapid/views/admin/records/new.html.erb +3 -0
  427. data/lib/vapid/views/errors/404.html.erb +1 -0
  428. data/lib/vapid/views/errors/500.html.erb +1 -0
  429. data/lib/vapid/views/layouts/admin.html.erb +41 -0
  430. data/lib/vapid/views/layouts/admin_form.html.erb +22 -0
  431. data/lib/vapid/views/layouts/error.html.erb +11 -0
  432. data/vapid.gemspec +48 -0
  433. metadata +811 -0
@@ -0,0 +1,10 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - API
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+ !function(e,t,r,n){"use strict";var t="undefined"!=typeof t&&t.Math==Math?t:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();e.api=e.fn.api=function(r){var o,s=e(e.isFunction(this)?t:this),i=s.selector||"",a=(new Date).getTime(),u=[],c=arguments[0],d="string"==typeof c,l=[].slice.call(arguments,1);return s.each(function(){var s,g,f,p,m,b,v=e.isPlainObject(r)?e.extend(!0,{},e.fn.api.settings,r):e.extend({},e.fn.api.settings),h=v.namespace,y=v.metadata,q=v.selector,R=v.error,x=v.className,S="."+h,A="module-"+h,k=e(this),T=k.closest(q.form),P=v.stateContext?e(v.stateContext):k,j=this,O=P[0],w=k.data(A);b={initialize:function(){d||b.bind.events(),b.instantiate()},instantiate:function(){b.verbose("Storing instance of module",b),w=b,k.data(A,w)},destroy:function(){b.verbose("Destroying previous module for",j),k.removeData(A).off(S)},bind:{events:function(){var e=b.get.event();e?(b.verbose("Attaching API events to element",e),k.on(e+S,b.event.trigger)):"now"==v.on&&(b.debug("Querying API endpoint immediately"),b.query())}},decode:{json:function(e){if(e!==n&&"string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}},read:{cachedResponse:function(e){var r;return t.Storage===n?void b.error(R.noStorage):(r=sessionStorage.getItem(e),b.debug("Using cached response",e,r),r=b.decode.json(r))}},write:{cachedResponse:function(r,o){return o&&""===o?void b.debug("Response empty, not caching",o):t.Storage===n?void b.error(R.noStorage):(e.isPlainObject(o)&&(o=JSON.stringify(o)),sessionStorage.setItem(r,o),void b.verbose("Storing cached response for url",r,o))}},query:function(){if(b.is.disabled())return void b.debug("Element is disabled API request aborted");if(b.is.loading()){if(!v.interruptRequests)return void b.debug("Cancelling request, previous request is still pending");b.debug("Interrupting previous request"),b.abort()}return v.defaultData&&e.extend(!0,v.urlData,b.get.defaultData()),v.serializeForm&&(v.data=b.add.formData(v.data)),g=b.get.settings(),g===!1?(b.cancelled=!0,void b.error(R.beforeSend)):(b.cancelled=!1,f=b.get.templatedURL(),f||b.is.mocked()?(f=b.add.urlData(f),f||b.is.mocked()?(g.url=v.base+f,s=e.extend(!0,{},v,{type:v.method||v.type,data:p,url:v.base+f,beforeSend:v.beforeXHR,success:function(){},failure:function(){},complete:function(){}}),b.debug("Querying URL",s.url),b.verbose("Using AJAX settings",s),"local"===v.cache&&b.read.cachedResponse(f)?(b.debug("Response returned from local cache"),b.request=b.create.request(),void b.request.resolveWith(O,[b.read.cachedResponse(f)])):void(v.throttle?v.throttleFirstRequest||b.timer?(b.debug("Throttling request",v.throttle),clearTimeout(b.timer),b.timer=setTimeout(function(){b.timer&&delete b.timer,b.debug("Sending throttled request",p,s.method),b.send.request()},v.throttle)):(b.debug("Sending request",p,s.method),b.send.request(),b.timer=setTimeout(function(){},v.throttle)):(b.debug("Sending request",p,s.method),b.send.request()))):void 0):void b.error(R.missingURL))},should:{removeError:function(){return v.hideError===!0||"auto"===v.hideError&&!b.is.form()}},is:{disabled:function(){return k.filter(q.disabled).length>0},expectingJSON:function(){return"json"===v.dataType||"jsonp"===v.dataType},form:function(){return k.is("form")||P.is("form")},mocked:function(){return v.mockResponse||v.mockResponseAsync||v.response||v.responseAsync},input:function(){return k.is("input")},loading:function(){return!!b.request&&"pending"==b.request.state()},abortedRequest:function(e){return e&&e.readyState!==n&&0===e.readyState?(b.verbose("XHR request determined to be aborted"),!0):(b.verbose("XHR request was not aborted"),!1)},validResponse:function(t){return b.is.expectingJSON()&&e.isFunction(v.successTest)?(b.debug("Checking JSON returned success",v.successTest,t),v.successTest(t)?(b.debug("Response passed success test",t),!0):(b.debug("Response failed success test",t),!1)):(b.verbose("Response is not JSON, skipping validation",v.successTest,t),!0)}},was:{cancelled:function(){return b.cancelled||!1},succesful:function(){return b.request&&"resolved"==b.request.state()},failure:function(){return b.request&&"rejected"==b.request.state()},complete:function(){return b.request&&("resolved"==b.request.state()||"rejected"==b.request.state())}},add:{urlData:function(t,r){var o,s;return t&&(o=t.match(v.regExp.required),s=t.match(v.regExp.optional),r=r||v.urlData,o&&(b.debug("Looking for required URL variables",o),e.each(o,function(o,s){var i=s.indexOf("$")!==-1?s.substr(2,s.length-3):s.substr(1,s.length-2),a=e.isPlainObject(r)&&r[i]!==n?r[i]:k.data(i)!==n?k.data(i):P.data(i)!==n?P.data(i):r[i];return a===n?(b.error(R.requiredParameter,i,t),t=!1,!1):(b.verbose("Found required variable",i,a),a=v.encodeParameters?b.get.urlEncodedValue(a):a,t=t.replace(s,a),void 0)})),s&&(b.debug("Looking for optional URL variables",o),e.each(s,function(o,s){var i=s.indexOf("$")!==-1?s.substr(3,s.length-4):s.substr(2,s.length-3),a=e.isPlainObject(r)&&r[i]!==n?r[i]:k.data(i)!==n?k.data(i):P.data(i)!==n?P.data(i):r[i];a!==n?(b.verbose("Optional variable Found",i,a),t=t.replace(s,a)):(b.verbose("Optional variable not found",i),t=t.indexOf("/"+s)!==-1?t.replace("/"+s,""):t.replace(s,""))}))),t},formData:function(t){var r,o=e.fn.serializeObject!==n,s=o?T.serializeObject():T.serialize();return t=t||v.data,r=e.isPlainObject(t),r?o?(b.debug("Extending existing data with form data",t,s),t=e.extend(!0,{},t,s)):(b.error(R.missingSerialize),b.debug("Cant extend data. Replacing data with form data",t,s),t=s):(b.debug("Adding form data",s),t=s),t}},send:{request:function(){b.set.loading(),b.request=b.create.request(),b.is.mocked()?b.mockedXHR=b.create.mockedXHR():b.xhr=b.create.xhr(),v.onRequest.call(O,b.request,b.xhr)}},event:{trigger:function(e){b.query(),"submit"!=e.type&&"click"!=e.type||e.preventDefault()},xhr:{always:function(){},done:function(t,r,n){var o=this,s=(new Date).getTime()-m,i=v.loadingDuration-s,a=!!e.isFunction(v.onResponse)&&(b.is.expectingJSON()?v.onResponse.call(o,e.extend(!0,{},t)):v.onResponse.call(o,t));i=i>0?i:0,a&&(b.debug("Modified API response in onResponse callback",v.onResponse,a,t),t=a),i>0&&b.debug("Response completed early delaying state change by",i),setTimeout(function(){b.is.validResponse(t)?b.request.resolveWith(o,[t,n]):b.request.rejectWith(o,[n,"invalid"])},i)},fail:function(e,t,r){var n=this,o=(new Date).getTime()-m,s=v.loadingDuration-o;s=s>0?s:0,s>0&&b.debug("Response completed early delaying state change by",s),setTimeout(function(){b.is.abortedRequest(e)?b.request.rejectWith(n,[e,"aborted",r]):b.request.rejectWith(n,[e,"error",t,r])},s)}},request:{done:function(e,t){b.debug("Successful API Response",e),"local"===v.cache&&f&&(b.write.cachedResponse(f,e),b.debug("Saving server response locally",b.cache)),v.onSuccess.call(O,e,k,t)},complete:function(e,t){var r,n;b.was.succesful()?(n=e,r=t):(r=e,n=b.get.responseFromXHR(r)),b.remove.loading(),v.onComplete.call(O,n,k,r)},fail:function(e,t,r){var o=b.get.responseFromXHR(e),i=b.get.errorFromRequest(o,t,r);return"aborted"==t?(b.debug("XHR Aborted (Most likely caused by page navigation or CORS Policy)",t,r),v.onAbort.call(O,t,k,e),!0):("invalid"==t?b.debug("JSON did not pass success test. A server-side error has most likely occurred",o):"error"==t&&e!==n&&(b.debug("XHR produced a server error",t,r),200!=e.status&&r!==n&&""!==r&&b.error(R.statusMessage+r,s.url),v.onError.call(O,i,k,e)),v.errorDuration&&"aborted"!==t&&(b.debug("Adding error state"),b.set.error(),b.should.removeError()&&setTimeout(b.remove.error,v.errorDuration)),b.debug("API Request failed",i,e),void v.onFailure.call(O,o,k,e))}}},create:{request:function(){return e.Deferred().always(b.event.request.complete).done(b.event.request.done).fail(b.event.request.fail)},mockedXHR:function(){var t,r,n,o=!1,s=!1,i=!1,a=v.mockResponse||v.response,u=v.mockResponseAsync||v.responseAsync;return n=e.Deferred().always(b.event.xhr.complete).done(b.event.xhr.done).fail(b.event.xhr.fail),a?(e.isFunction(a)?(b.debug("Using specified synchronous callback",a),r=a.call(O,g)):(b.debug("Using settings specified response",a),r=a),n.resolveWith(O,[r,o,{responseText:r}])):e.isFunction(u)&&(t=function(e){b.debug("Async callback returned response",e),e?n.resolveWith(O,[e,o,{responseText:e}]):n.rejectWith(O,[{responseText:e},s,i])},b.debug("Using specified async response callback",u),u.call(O,g,t)),n},xhr:function(){var t;return t=e.ajax(s).always(b.event.xhr.always).done(b.event.xhr.done).fail(b.event.xhr.fail),b.verbose("Created server request",t,s),t}},set:{error:function(){b.verbose("Adding error state to element",P),P.addClass(x.error)},loading:function(){b.verbose("Adding loading state to element",P),P.addClass(x.loading),m=(new Date).getTime()}},remove:{error:function(){b.verbose("Removing error state from element",P),P.removeClass(x.error)},loading:function(){b.verbose("Removing loading state from element",P),P.removeClass(x.loading)}},get:{responseFromXHR:function(t){return!!e.isPlainObject(t)&&(b.is.expectingJSON()?b.decode.json(t.responseText):t.responseText)},errorFromRequest:function(t,r,o){return e.isPlainObject(t)&&t.error!==n?t.error:v.error[r]!==n?v.error[r]:o},request:function(){return b.request||!1},xhr:function(){return b.xhr||!1},settings:function(){var t;return t=v.beforeSend.call(O,v),t&&(t.success!==n&&(b.debug("Legacy success callback detected",t),b.error(R.legacyParameters,t.success),t.onSuccess=t.success),t.failure!==n&&(b.debug("Legacy failure callback detected",t),b.error(R.legacyParameters,t.failure),t.onFailure=t.failure),t.complete!==n&&(b.debug("Legacy complete callback detected",t),b.error(R.legacyParameters,t.complete),t.onComplete=t.complete)),t===n&&b.error(R.noReturnedValue),t===!1?t:t!==n?e.extend(!0,{},t):e.extend(!0,{},v)},urlEncodedValue:function(e){var r=t.decodeURIComponent(e),n=t.encodeURIComponent(e),o=r!==e;return o?(b.debug("URL value is already encoded, avoiding double encoding",e),e):(b.verbose("Encoding value using encodeURIComponent",e,n),n)},defaultData:function(){var t={};return e.isWindow(j)||(b.is.input()?t.value=k.val():b.is.form()||(t.text=k.text())),t},event:function(){return e.isWindow(j)||"now"==v.on?(b.debug("API called without element, no events attached"),!1):"auto"==v.on?k.is("input")?j.oninput!==n?"input":j.onpropertychange!==n?"propertychange":"keyup":k.is("form")?"submit":"click":v.on},templatedURL:function(e){if(e=e||k.data(y.action)||v.action||!1,f=k.data(y.url)||v.url||!1)return b.debug("Using specified url",f),f;if(e){if(b.debug("Looking up url for action",e,v.api),v.api[e]===n&&!b.is.mocked())return void b.error(R.missingAction,v.action,v.api);f=v.api[e]}else b.is.form()&&(f=k.attr("action")||P.attr("action")||!1,b.debug("No url or action specified, defaulting to form action",f));return f}},abort:function(){var e=b.get.xhr();e&&"resolved"!==e.state()&&(b.debug("Cancelling API request"),e.abort())},reset:function(){b.remove.error(),b.remove.loading()},setting:function(t,r){if(b.debug("Changing setting",t,r),e.isPlainObject(t))e.extend(!0,v,t);else{if(r===n)return v[t];e.isPlainObject(v[t])?e.extend(!0,v[t],r):v[t]=r}},internal:function(t,r){if(e.isPlainObject(t))e.extend(!0,b,t);else{if(r===n)return b[t];b[t]=r}},debug:function(){!v.silent&&v.debug&&(v.performance?b.performance.log(arguments):(b.debug=Function.prototype.bind.call(console.info,console,v.name+":"),b.debug.apply(console,arguments)))},verbose:function(){!v.silent&&v.verbose&&v.debug&&(v.performance?b.performance.log(arguments):(b.verbose=Function.prototype.bind.call(console.info,console,v.name+":"),b.verbose.apply(console,arguments)))},error:function(){v.silent||(b.error=Function.prototype.bind.call(console.error,console,v.name+":"),b.error.apply(console,arguments))},performance:{log:function(e){var t,r,n;v.performance&&(t=(new Date).getTime(),n=a||t,r=t-n,a=t,u.push({Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":r})),clearTimeout(b.performance.timer),b.performance.timer=setTimeout(b.performance.display,500)},display:function(){var t=v.name+":",r=0;a=!1,clearTimeout(b.performance.timer),e.each(u,function(e,t){r+=t["Execution Time"]}),t+=" "+r+"ms",i&&(t+=" '"+i+"'"),(console.group!==n||console.table!==n)&&u.length>0&&(console.groupCollapsed(t),console.table?console.table(u):e.each(u,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),u=[]}},invoke:function(t,r,s){var i,a,u,c=w;return r=r||l,s=j||s,"string"==typeof t&&c!==n&&(t=t.split(/[\. ]/),i=t.length-1,e.each(t,function(r,o){var s=r!=i?o+t[r+1].charAt(0).toUpperCase()+t[r+1].slice(1):t;if(e.isPlainObject(c[s])&&r!=i)c=c[s];else{if(c[s]!==n)return a=c[s],!1;if(!e.isPlainObject(c[o])||r==i)return c[o]!==n?(a=c[o],!1):(b.error(R.method,t),!1);c=c[o]}})),e.isFunction(a)?u=a.apply(s,r):a!==n&&(u=a),e.isArray(o)?o.push(u):o!==n?o=[o,u]:u!==n&&(o=u),a}},d?(w===n&&b.initialize(),b.invoke(c)):(w!==n&&w.invoke("destroy"),b.initialize())}),o!==n?o:this},e.api.settings={name:"API",namespace:"api",debug:!1,verbose:!1,performance:!0,api:{},cache:!0,interruptRequests:!0,on:"auto",stateContext:!1,loadingDuration:0,hideError:"auto",errorDuration:2e3,encodeParameters:!0,action:!1,url:!1,base:"",urlData:{},defaultData:!0,serializeForm:!1,throttle:0,throttleFirstRequest:!0,method:"get",data:{},dataType:"json",mockResponse:!1,mockResponseAsync:!1,response:!1,responseAsync:!1,beforeSend:function(e){return e},beforeXHR:function(e){},onRequest:function(e,t){},onResponse:!1,onSuccess:function(e,t){},onComplete:function(e,t){},onFailure:function(e,t){},onError:function(e,t){},onAbort:function(e,t){},successTest:!1,error:{beforeSend:"The before send function has aborted the request",error:"There was an error with your request",exitConditions:"API Request Aborted. Exit conditions met",JSONParse:"JSON could not be parsed during error handling",legacyParameters:"You are using legacy API success callback names",method:"The method you called is not defined",missingAction:"API action used but no url was defined",missingSerialize:"jquery-serialize-object is required to add form data to an existing data object",missingURL:"No URL specified for api event",noReturnedValue:"The beforeSend callback must return a settings object, beforeSend ignored.",noStorage:"Caching responses locally requires session storage",parseError:"There was an error parsing your request",requiredParameter:"Missing a required URL parameter: ",statusMessage:"Server gave an error: ",timeout:"Your request timed out"},regExp:{required:/\{\$*[A-z0-9]+\}/g,optional:/\{\/\$*[A-z0-9]+\}/g},className:{loading:"loading",error:"error"},selector:{disabled:".disabled",form:"form"},metadata:{action:"action",url:"url"}}}(jQuery,window,document);
@@ -0,0 +1,124 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Breadcrumb
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Breadcrumb
14
+ *******************************/
15
+
16
+ .ui.breadcrumb {
17
+ line-height: 1;
18
+ display: inline-block;
19
+ margin: 0em 0em;
20
+ vertical-align: middle;
21
+ }
22
+ .ui.breadcrumb:first-child {
23
+ margin-top: 0em;
24
+ }
25
+ .ui.breadcrumb:last-child {
26
+ margin-bottom: 0em;
27
+ }
28
+
29
+
30
+ /*******************************
31
+ Content
32
+ *******************************/
33
+
34
+
35
+ /* Divider */
36
+ .ui.breadcrumb .divider {
37
+ display: inline-block;
38
+ opacity: 0.7;
39
+ margin: 0em 0.21428571rem 0em;
40
+ font-size: 0.92857143em;
41
+ color: rgba(0, 0, 0, 0.4);
42
+ vertical-align: baseline;
43
+ }
44
+
45
+ /* Link */
46
+ .ui.breadcrumb a {
47
+ color: #4183C4;
48
+ }
49
+ .ui.breadcrumb a:hover {
50
+ color: #1e70bf;
51
+ }
52
+
53
+ /* Icon Divider */
54
+ .ui.breadcrumb .icon.divider {
55
+ font-size: 0.85714286em;
56
+ vertical-align: baseline;
57
+ }
58
+
59
+ /* Section */
60
+ .ui.breadcrumb a.section {
61
+ cursor: pointer;
62
+ }
63
+ .ui.breadcrumb .section {
64
+ display: inline-block;
65
+ margin: 0em;
66
+ padding: 0em;
67
+ }
68
+
69
+ /* Loose Coupling */
70
+ .ui.breadcrumb.segment {
71
+ display: inline-block;
72
+ padding: 0.78571429em 1em;
73
+ }
74
+
75
+
76
+ /*******************************
77
+ States
78
+ *******************************/
79
+
80
+ .ui.breadcrumb .active.section {
81
+ font-weight: bold;
82
+ }
83
+
84
+
85
+ /*******************************
86
+ Variations
87
+ *******************************/
88
+
89
+ .ui.mini.breadcrumb {
90
+ font-size: 0.78571429rem;
91
+ }
92
+ .ui.tiny.breadcrumb {
93
+ font-size: 0.85714286rem;
94
+ }
95
+ .ui.small.breadcrumb {
96
+ font-size: 0.92857143rem;
97
+ }
98
+ .ui.breadcrumb {
99
+ font-size: 1rem;
100
+ }
101
+ .ui.large.breadcrumb {
102
+ font-size: 1.14285714rem;
103
+ }
104
+ .ui.big.breadcrumb {
105
+ font-size: 1.28571429rem;
106
+ }
107
+ .ui.huge.breadcrumb {
108
+ font-size: 1.42857143rem;
109
+ }
110
+ .ui.massive.breadcrumb {
111
+ font-size: 1.71428571rem;
112
+ }
113
+
114
+
115
+ /*******************************
116
+ Theme Overrides
117
+ *******************************/
118
+
119
+
120
+
121
+ /*******************************
122
+ Site Overrides
123
+ *******************************/
124
+
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Breadcrumb
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */.ui.breadcrumb{line-height:1;display:inline-block;margin:0 0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.7;margin:0 .21428571rem 0;font-size:.92857143em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#4183c4}.ui.breadcrumb a:hover{color:#1e70bf}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.78571429em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.78571429rem}.ui.tiny.breadcrumb{font-size:.85714286rem}.ui.small.breadcrumb{font-size:.92857143rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.14285714rem}.ui.big.breadcrumb{font-size:1.28571429rem}.ui.huge.breadcrumb{font-size:1.42857143rem}.ui.massive.breadcrumb{font-size:1.71428571rem}
@@ -0,0 +1,3450 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Button
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Button
14
+ *******************************/
15
+
16
+ .ui.button {
17
+ cursor: pointer;
18
+ display: inline-block;
19
+ min-height: 1em;
20
+ outline: none;
21
+ border: none;
22
+ vertical-align: baseline;
23
+ background: #E0E1E2 none;
24
+ color: rgba(0, 0, 0, 0.6);
25
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
26
+ margin: 0em 0.25em 0em 0em;
27
+ padding: 0.78571429em 1.5em 0.78571429em;
28
+ text-transform: none;
29
+ text-shadow: none;
30
+ font-weight: bold;
31
+ line-height: 1em;
32
+ font-style: normal;
33
+ text-align: center;
34
+ text-decoration: none;
35
+ border-radius: 0.28571429rem;
36
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
37
+ -webkit-user-select: none;
38
+ -moz-user-select: none;
39
+ -ms-user-select: none;
40
+ user-select: none;
41
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
42
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
43
+ will-change: '';
44
+ -webkit-tap-highlight-color: transparent;
45
+ }
46
+
47
+
48
+ /*******************************
49
+ States
50
+ *******************************/
51
+
52
+
53
+ /*--------------
54
+ Hover
55
+ ---------------*/
56
+
57
+ .ui.button:hover {
58
+ background-color: #CACBCD;
59
+ background-image: none;
60
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
61
+ color: rgba(0, 0, 0, 0.8);
62
+ }
63
+ .ui.button:hover .icon {
64
+ opacity: 0.85;
65
+ }
66
+
67
+ /*--------------
68
+ Focus
69
+ ---------------*/
70
+
71
+ .ui.button:focus {
72
+ background-color: #CACBCD;
73
+ color: rgba(0, 0, 0, 0.8);
74
+ background-image: '' !important;
75
+ box-shadow: '' !important;
76
+ }
77
+ .ui.button:focus .icon {
78
+ opacity: 0.85;
79
+ }
80
+
81
+ /*--------------
82
+ Down
83
+ ---------------*/
84
+
85
+ .ui.button:active,
86
+ .ui.active.button:active {
87
+ background-color: #BABBBC;
88
+ background-image: '';
89
+ color: rgba(0, 0, 0, 0.9);
90
+ box-shadow: 0px 0px 0px 1px transparent inset, none;
91
+ }
92
+
93
+ /*--------------
94
+ Active
95
+ ---------------*/
96
+
97
+ .ui.active.button {
98
+ background-color: #C0C1C2;
99
+ background-image: none;
100
+ box-shadow: 0px 0px 0px 1px transparent inset;
101
+ color: rgba(0, 0, 0, 0.95);
102
+ }
103
+ .ui.active.button:hover {
104
+ background-color: #C0C1C2;
105
+ background-image: none;
106
+ color: rgba(0, 0, 0, 0.95);
107
+ }
108
+ .ui.active.button:active {
109
+ background-color: #C0C1C2;
110
+ background-image: none;
111
+ }
112
+
113
+ /*--------------
114
+ Loading
115
+ ---------------*/
116
+
117
+
118
+ /* Specificity hack */
119
+ .ui.loading.loading.loading.loading.loading.loading.button {
120
+ position: relative;
121
+ cursor: default;
122
+ text-shadow: none !important;
123
+ color: transparent !important;
124
+ opacity: 1;
125
+ pointer-events: auto;
126
+ -webkit-transition: all 0s linear, opacity 0.1s ease;
127
+ transition: all 0s linear, opacity 0.1s ease;
128
+ }
129
+ .ui.loading.button:before {
130
+ position: absolute;
131
+ content: '';
132
+ top: 50%;
133
+ left: 50%;
134
+ margin: -0.64285714em 0em 0em -0.64285714em;
135
+ width: 1.28571429em;
136
+ height: 1.28571429em;
137
+ border-radius: 500rem;
138
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
139
+ }
140
+ .ui.loading.button:after {
141
+ position: absolute;
142
+ content: '';
143
+ top: 50%;
144
+ left: 50%;
145
+ margin: -0.64285714em 0em 0em -0.64285714em;
146
+ width: 1.28571429em;
147
+ height: 1.28571429em;
148
+ -webkit-animation: button-spin 0.6s linear;
149
+ animation: button-spin 0.6s linear;
150
+ -webkit-animation-iteration-count: infinite;
151
+ animation-iteration-count: infinite;
152
+ border-radius: 500rem;
153
+ border-color: #FFFFFF transparent transparent;
154
+ border-style: solid;
155
+ border-width: 0.2em;
156
+ box-shadow: 0px 0px 0px 1px transparent;
157
+ }
158
+ .ui.labeled.icon.loading.button .icon {
159
+ background-color: transparent;
160
+ box-shadow: none;
161
+ }
162
+ @-webkit-keyframes button-spin {
163
+ from {
164
+ -webkit-transform: rotate(0deg);
165
+ transform: rotate(0deg);
166
+ }
167
+ to {
168
+ -webkit-transform: rotate(360deg);
169
+ transform: rotate(360deg);
170
+ }
171
+ }
172
+ @keyframes button-spin {
173
+ from {
174
+ -webkit-transform: rotate(0deg);
175
+ transform: rotate(0deg);
176
+ }
177
+ to {
178
+ -webkit-transform: rotate(360deg);
179
+ transform: rotate(360deg);
180
+ }
181
+ }
182
+ .ui.basic.loading.button:not(.inverted):before {
183
+ border-color: rgba(0, 0, 0, 0.1);
184
+ }
185
+ .ui.basic.loading.button:not(.inverted):after {
186
+ border-top-color: #767676;
187
+ }
188
+
189
+ /*-------------------
190
+ Disabled
191
+ --------------------*/
192
+
193
+ .ui.buttons .disabled.button,
194
+ .ui.disabled.button,
195
+ .ui.button:disabled,
196
+ .ui.disabled.button:hover,
197
+ .ui.disabled.active.button {
198
+ cursor: default;
199
+ opacity: 0.45 !important;
200
+ background-image: none !important;
201
+ box-shadow: none !important;
202
+ pointer-events: none !important;
203
+ }
204
+
205
+ /* Basic Group With Disabled */
206
+ .ui.basic.buttons .ui.disabled.button {
207
+ border-color: rgba(34, 36, 38, 0.5);
208
+ }
209
+
210
+
211
+ /*******************************
212
+ Types
213
+ *******************************/
214
+
215
+
216
+ /*-------------------
217
+ Animated
218
+ --------------------*/
219
+
220
+ .ui.animated.button {
221
+ position: relative;
222
+ overflow: hidden;
223
+ padding-right: 0em !important;
224
+ vertical-align: middle;
225
+ z-index: 1;
226
+ }
227
+ .ui.animated.button .content {
228
+ will-change: transform, opacity;
229
+ }
230
+ .ui.animated.button .visible.content {
231
+ position: relative;
232
+ margin-right: 1.5em;
233
+ }
234
+ .ui.animated.button .hidden.content {
235
+ position: absolute;
236
+ width: 100%;
237
+ }
238
+
239
+ /* Horizontal */
240
+ .ui.animated.button .visible.content,
241
+ .ui.animated.button .hidden.content {
242
+ -webkit-transition: right 0.3s ease 0s;
243
+ transition: right 0.3s ease 0s;
244
+ }
245
+ .ui.animated.button .visible.content {
246
+ left: auto;
247
+ right: 0%;
248
+ }
249
+ .ui.animated.button .hidden.content {
250
+ top: 50%;
251
+ left: auto;
252
+ right: -100%;
253
+ margin-top: -0.5em;
254
+ }
255
+ .ui.animated.button:focus .visible.content,
256
+ .ui.animated.button:hover .visible.content {
257
+ left: auto;
258
+ right: 200%;
259
+ }
260
+ .ui.animated.button:focus .hidden.content,
261
+ .ui.animated.button:hover .hidden.content {
262
+ left: auto;
263
+ right: 0%;
264
+ }
265
+
266
+ /* Vertical */
267
+ .ui.vertical.animated.button .visible.content,
268
+ .ui.vertical.animated.button .hidden.content {
269
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
270
+ transition: top 0.3s ease, -webkit-transform 0.3s ease;
271
+ transition: top 0.3s ease, transform 0.3s ease;
272
+ transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
273
+ }
274
+ .ui.vertical.animated.button .visible.content {
275
+ -webkit-transform: translateY(0%);
276
+ transform: translateY(0%);
277
+ right: auto;
278
+ }
279
+ .ui.vertical.animated.button .hidden.content {
280
+ top: -50%;
281
+ left: 0%;
282
+ right: auto;
283
+ }
284
+ .ui.vertical.animated.button:focus .visible.content,
285
+ .ui.vertical.animated.button:hover .visible.content {
286
+ -webkit-transform: translateY(200%);
287
+ transform: translateY(200%);
288
+ right: auto;
289
+ }
290
+ .ui.vertical.animated.button:focus .hidden.content,
291
+ .ui.vertical.animated.button:hover .hidden.content {
292
+ top: 50%;
293
+ right: auto;
294
+ }
295
+
296
+ /* Fade */
297
+ .ui.fade.animated.button .visible.content,
298
+ .ui.fade.animated.button .hidden.content {
299
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
300
+ transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
301
+ transition: opacity 0.3s ease, transform 0.3s ease;
302
+ transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
303
+ }
304
+ .ui.fade.animated.button .visible.content {
305
+ left: auto;
306
+ right: auto;
307
+ opacity: 1;
308
+ -webkit-transform: scale(1);
309
+ transform: scale(1);
310
+ }
311
+ .ui.fade.animated.button .hidden.content {
312
+ opacity: 0;
313
+ left: 0%;
314
+ right: auto;
315
+ -webkit-transform: scale(1.5);
316
+ transform: scale(1.5);
317
+ }
318
+ .ui.fade.animated.button:focus .visible.content,
319
+ .ui.fade.animated.button:hover .visible.content {
320
+ left: auto;
321
+ right: auto;
322
+ opacity: 0;
323
+ -webkit-transform: scale(0.75);
324
+ transform: scale(0.75);
325
+ }
326
+ .ui.fade.animated.button:focus .hidden.content,
327
+ .ui.fade.animated.button:hover .hidden.content {
328
+ left: 0%;
329
+ right: auto;
330
+ opacity: 1;
331
+ -webkit-transform: scale(1);
332
+ transform: scale(1);
333
+ }
334
+
335
+ /*-------------------
336
+ Inverted
337
+ --------------------*/
338
+
339
+ .ui.inverted.button {
340
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
341
+ background: transparent none;
342
+ color: #FFFFFF;
343
+ text-shadow: none !important;
344
+ }
345
+
346
+ /* Group */
347
+ .ui.inverted.buttons .button {
348
+ margin: 0px 0px 0px -2px;
349
+ }
350
+ .ui.inverted.buttons .button:first-child {
351
+ margin-left: 0em;
352
+ }
353
+ .ui.inverted.vertical.buttons .button {
354
+ margin: 0px 0px -2px 0px;
355
+ }
356
+ .ui.inverted.vertical.buttons .button:first-child {
357
+ margin-top: 0em;
358
+ }
359
+
360
+ /* States */
361
+
362
+ /* Hover */
363
+ .ui.inverted.button:hover {
364
+ background: #FFFFFF;
365
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
366
+ color: rgba(0, 0, 0, 0.8);
367
+ }
368
+
369
+ /* Active / Focus */
370
+ .ui.inverted.button:focus,
371
+ .ui.inverted.button.active {
372
+ background: #FFFFFF;
373
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
374
+ color: rgba(0, 0, 0, 0.8);
375
+ }
376
+
377
+ /* Active Focus */
378
+ .ui.inverted.button.active:focus {
379
+ background: #DCDDDE;
380
+ box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
381
+ color: rgba(0, 0, 0, 0.8);
382
+ }
383
+
384
+ /*-------------------
385
+ Labeled Button
386
+ --------------------*/
387
+
388
+ .ui.labeled.button:not(.icon) {
389
+ display: -webkit-inline-box;
390
+ display: -ms-inline-flexbox;
391
+ display: inline-flex;
392
+ -webkit-box-orient: horizontal;
393
+ -webkit-box-direction: normal;
394
+ -ms-flex-direction: row;
395
+ flex-direction: row;
396
+ background: none !important;
397
+ padding: 0px !important;
398
+ border: none !important;
399
+ box-shadow: none !important;
400
+ }
401
+ .ui.labeled.button > .button {
402
+ margin: 0px;
403
+ }
404
+ .ui.labeled.button > .label {
405
+ display: -webkit-box;
406
+ display: -ms-flexbox;
407
+ display: flex;
408
+ -webkit-box-align: center;
409
+ -ms-flex-align: center;
410
+ align-items: center;
411
+ margin: 0px 0px 0px -1px !important;
412
+ padding: '';
413
+ font-size: 1em;
414
+ border-color: rgba(34, 36, 38, 0.15);
415
+ }
416
+
417
+ /* Tag */
418
+ .ui.labeled.button > .tag.label:before {
419
+ width: 1.85em;
420
+ height: 1.85em;
421
+ }
422
+
423
+ /* Right */
424
+ .ui.labeled.button:not([class*="left labeled"]) > .button {
425
+ border-top-right-radius: 0px;
426
+ border-bottom-right-radius: 0px;
427
+ }
428
+ .ui.labeled.button:not([class*="left labeled"]) > .label {
429
+ border-top-left-radius: 0px;
430
+ border-bottom-left-radius: 0px;
431
+ }
432
+
433
+ /* Left Side */
434
+ .ui[class*="left labeled"].button > .button {
435
+ border-top-left-radius: 0px;
436
+ border-bottom-left-radius: 0px;
437
+ }
438
+ .ui[class*="left labeled"].button > .label {
439
+ border-top-right-radius: 0px;
440
+ border-bottom-right-radius: 0px;
441
+ }
442
+
443
+ /*-------------------
444
+ Social
445
+ --------------------*/
446
+
447
+
448
+ /* Facebook */
449
+ .ui.facebook.button {
450
+ background-color: #3B5998;
451
+ color: #FFFFFF;
452
+ text-shadow: none;
453
+ background-image: none;
454
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
455
+ }
456
+ .ui.facebook.button:hover {
457
+ background-color: #304d8a;
458
+ color: #FFFFFF;
459
+ text-shadow: none;
460
+ }
461
+ .ui.facebook.button:active {
462
+ background-color: #2d4373;
463
+ color: #FFFFFF;
464
+ text-shadow: none;
465
+ }
466
+
467
+ /* Twitter */
468
+ .ui.twitter.button {
469
+ background-color: #55ACEE;
470
+ color: #FFFFFF;
471
+ text-shadow: none;
472
+ background-image: none;
473
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
474
+ }
475
+ .ui.twitter.button:hover {
476
+ background-color: #35a2f4;
477
+ color: #FFFFFF;
478
+ text-shadow: none;
479
+ }
480
+ .ui.twitter.button:active {
481
+ background-color: #2795e9;
482
+ color: #FFFFFF;
483
+ text-shadow: none;
484
+ }
485
+
486
+ /* Google Plus */
487
+ .ui.google.plus.button {
488
+ background-color: #DD4B39;
489
+ color: #FFFFFF;
490
+ text-shadow: none;
491
+ background-image: none;
492
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
493
+ }
494
+ .ui.google.plus.button:hover {
495
+ background-color: #e0321c;
496
+ color: #FFFFFF;
497
+ text-shadow: none;
498
+ }
499
+ .ui.google.plus.button:active {
500
+ background-color: #c23321;
501
+ color: #FFFFFF;
502
+ text-shadow: none;
503
+ }
504
+
505
+ /* Linked In */
506
+ .ui.linkedin.button {
507
+ background-color: #1F88BE;
508
+ color: #FFFFFF;
509
+ text-shadow: none;
510
+ }
511
+ .ui.linkedin.button:hover {
512
+ background-color: #147baf;
513
+ color: #FFFFFF;
514
+ text-shadow: none;
515
+ }
516
+ .ui.linkedin.button:active {
517
+ background-color: #186992;
518
+ color: #FFFFFF;
519
+ text-shadow: none;
520
+ }
521
+
522
+ /* YouTube */
523
+ .ui.youtube.button {
524
+ background-color: #CC181E;
525
+ color: #FFFFFF;
526
+ text-shadow: none;
527
+ background-image: none;
528
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
529
+ }
530
+ .ui.youtube.button:hover {
531
+ background-color: #bd0d13;
532
+ color: #FFFFFF;
533
+ text-shadow: none;
534
+ }
535
+ .ui.youtube.button:active {
536
+ background-color: #9e1317;
537
+ color: #FFFFFF;
538
+ text-shadow: none;
539
+ }
540
+
541
+ /* Instagram */
542
+ .ui.instagram.button {
543
+ background-color: #49769C;
544
+ color: #FFFFFF;
545
+ text-shadow: none;
546
+ background-image: none;
547
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
548
+ }
549
+ .ui.instagram.button:hover {
550
+ background-color: #3d698e;
551
+ color: #FFFFFF;
552
+ text-shadow: none;
553
+ }
554
+ .ui.instagram.button:active {
555
+ background-color: #395c79;
556
+ color: #FFFFFF;
557
+ text-shadow: none;
558
+ }
559
+
560
+ /* Pinterest */
561
+ .ui.pinterest.button {
562
+ background-color: #BD081C;
563
+ color: #FFFFFF;
564
+ text-shadow: none;
565
+ background-image: none;
566
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
567
+ }
568
+ .ui.pinterest.button:hover {
569
+ background-color: #ac0013;
570
+ color: #FFFFFF;
571
+ text-shadow: none;
572
+ }
573
+ .ui.pinterest.button:active {
574
+ background-color: #8c0615;
575
+ color: #FFFFFF;
576
+ text-shadow: none;
577
+ }
578
+
579
+ /* VK */
580
+ .ui.vk.button {
581
+ background-color: #4D7198;
582
+ color: #FFFFFF;
583
+ background-image: none;
584
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
585
+ }
586
+ .ui.vk.button:hover {
587
+ background-color: #41648a;
588
+ color: #FFFFFF;
589
+ }
590
+ .ui.vk.button:active {
591
+ background-color: #3c5876;
592
+ color: #FFFFFF;
593
+ }
594
+
595
+ /*--------------
596
+ Icon
597
+ ---------------*/
598
+
599
+ .ui.button > .icon:not(.button) {
600
+ height: 0.85714286em;
601
+ opacity: 0.8;
602
+ margin: 0em 0.42857143em 0em -0.21428571em;
603
+ -webkit-transition: opacity 0.1s ease;
604
+ transition: opacity 0.1s ease;
605
+ vertical-align: '';
606
+ color: '';
607
+ }
608
+ .ui.button:not(.icon) > .icon:not(.button):not(.dropdown) {
609
+ margin: 0em 0.42857143em 0em -0.21428571em;
610
+ }
611
+ .ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
612
+ margin: 0em -0.21428571em 0em 0.42857143em;
613
+ }
614
+
615
+
616
+ /*******************************
617
+ Variations
618
+ *******************************/
619
+
620
+
621
+ /*-------------------
622
+ Floated
623
+ --------------------*/
624
+
625
+ .ui[class*="left floated"].buttons,
626
+ .ui[class*="left floated"].button {
627
+ float: left;
628
+ margin-left: 0em;
629
+ margin-right: 0.25em;
630
+ }
631
+ .ui[class*="right floated"].buttons,
632
+ .ui[class*="right floated"].button {
633
+ float: right;
634
+ margin-right: 0em;
635
+ margin-left: 0.25em;
636
+ }
637
+
638
+ /*-------------------
639
+ Compact
640
+ --------------------*/
641
+
642
+ .ui.compact.buttons .button,
643
+ .ui.compact.button {
644
+ padding: 0.58928571em 1.125em 0.58928571em;
645
+ }
646
+ .ui.compact.icon.buttons .button,
647
+ .ui.compact.icon.button {
648
+ padding: 0.58928571em 0.58928571em 0.58928571em;
649
+ }
650
+ .ui.compact.labeled.icon.buttons .button,
651
+ .ui.compact.labeled.icon.button {
652
+ padding: 0.58928571em 3.69642857em 0.58928571em;
653
+ }
654
+
655
+ /*-------------------
656
+ Sizes
657
+ --------------------*/
658
+
659
+ .ui.mini.buttons .button,
660
+ .ui.mini.buttons .or,
661
+ .ui.mini.button {
662
+ font-size: 0.78571429rem;
663
+ }
664
+ .ui.tiny.buttons .button,
665
+ .ui.tiny.buttons .or,
666
+ .ui.tiny.button {
667
+ font-size: 0.85714286rem;
668
+ }
669
+ .ui.small.buttons .button,
670
+ .ui.small.buttons .or,
671
+ .ui.small.button {
672
+ font-size: 0.92857143rem;
673
+ }
674
+ .ui.buttons .button,
675
+ .ui.buttons .or,
676
+ .ui.button {
677
+ font-size: 1rem;
678
+ }
679
+ .ui.large.buttons .button,
680
+ .ui.large.buttons .or,
681
+ .ui.large.button {
682
+ font-size: 1.14285714rem;
683
+ }
684
+ .ui.big.buttons .button,
685
+ .ui.big.buttons .or,
686
+ .ui.big.button {
687
+ font-size: 1.28571429rem;
688
+ }
689
+ .ui.huge.buttons .button,
690
+ .ui.huge.buttons .or,
691
+ .ui.huge.button {
692
+ font-size: 1.42857143rem;
693
+ }
694
+ .ui.massive.buttons .button,
695
+ .ui.massive.buttons .or,
696
+ .ui.massive.button {
697
+ font-size: 1.71428571rem;
698
+ }
699
+
700
+ /*--------------
701
+ Icon Only
702
+ ---------------*/
703
+
704
+ .ui.icon.buttons .button,
705
+ .ui.icon.button {
706
+ padding: 0.78571429em 0.78571429em 0.78571429em;
707
+ }
708
+ .ui.icon.buttons .button > .icon,
709
+ .ui.icon.button > .icon {
710
+ opacity: 0.9;
711
+ margin: 0em !important;
712
+ vertical-align: top;
713
+ }
714
+
715
+ /*-------------------
716
+ Basic
717
+ --------------------*/
718
+
719
+ .ui.basic.buttons .button,
720
+ .ui.basic.button {
721
+ background: transparent none !important;
722
+ color: rgba(0, 0, 0, 0.6) !important;
723
+ font-weight: normal;
724
+ border-radius: 0.28571429rem;
725
+ text-transform: none;
726
+ text-shadow: none !important;
727
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
728
+ }
729
+ .ui.basic.buttons {
730
+ box-shadow: none;
731
+ border: 1px solid rgba(34, 36, 38, 0.15);
732
+ border-radius: 0.28571429rem;
733
+ }
734
+ .ui.basic.buttons .button {
735
+ border-radius: 0em;
736
+ }
737
+ .ui.basic.buttons .button:hover,
738
+ .ui.basic.button:hover {
739
+ background: #FFFFFF !important;
740
+ color: rgba(0, 0, 0, 0.8) !important;
741
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
742
+ }
743
+ .ui.basic.buttons .button:focus,
744
+ .ui.basic.button:focus {
745
+ background: #FFFFFF !important;
746
+ color: rgba(0, 0, 0, 0.8) !important;
747
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
748
+ }
749
+ .ui.basic.buttons .button:active,
750
+ .ui.basic.button:active {
751
+ background: #F8F8F8 !important;
752
+ color: rgba(0, 0, 0, 0.9) !important;
753
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
754
+ }
755
+ .ui.basic.buttons .active.button,
756
+ .ui.basic.active.button {
757
+ background: rgba(0, 0, 0, 0.05) !important;
758
+ box-shadow: '' !important;
759
+ color: rgba(0, 0, 0, 0.95);
760
+ box-shadow: rgba(34, 36, 38, 0.35);
761
+ }
762
+ .ui.basic.buttons .active.button:hover,
763
+ .ui.basic.active.button:hover {
764
+ background-color: rgba(0, 0, 0, 0.05);
765
+ }
766
+
767
+ /* Vertical */
768
+ .ui.basic.buttons .button:hover {
769
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset;
770
+ }
771
+ .ui.basic.buttons .button:active {
772
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset;
773
+ }
774
+ .ui.basic.buttons .active.button {
775
+ box-shadow: rgba(34, 36, 38, 0.35) inset;
776
+ }
777
+
778
+ /* Standard Basic Inverted */
779
+ .ui.basic.inverted.buttons .button,
780
+ .ui.basic.inverted.button {
781
+ background-color: transparent !important;
782
+ color: #F9FAFB !important;
783
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
784
+ }
785
+ .ui.basic.inverted.buttons .button:hover,
786
+ .ui.basic.inverted.button:hover {
787
+ color: #FFFFFF !important;
788
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
789
+ }
790
+ .ui.basic.inverted.buttons .button:focus,
791
+ .ui.basic.inverted.button:focus {
792
+ color: #FFFFFF !important;
793
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
794
+ }
795
+ .ui.basic.inverted.buttons .button:active,
796
+ .ui.basic.inverted.button:active {
797
+ background-color: rgba(255, 255, 255, 0.08) !important;
798
+ color: #FFFFFF !important;
799
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
800
+ }
801
+ .ui.basic.inverted.buttons .active.button,
802
+ .ui.basic.inverted.active.button {
803
+ background-color: rgba(255, 255, 255, 0.08);
804
+ color: #FFFFFF;
805
+ text-shadow: none;
806
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
807
+ }
808
+ .ui.basic.inverted.buttons .active.button:hover,
809
+ .ui.basic.inverted.active.button:hover {
810
+ background-color: rgba(255, 255, 255, 0.15);
811
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
812
+ }
813
+
814
+ /* Basic Group */
815
+ .ui.basic.buttons .button {
816
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
817
+ box-shadow: none;
818
+ }
819
+ .ui.basic.vertical.buttons .button {
820
+ border-left: none;
821
+ }
822
+ .ui.basic.vertical.buttons .button {
823
+ border-left-width: 0px;
824
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
825
+ }
826
+ .ui.basic.vertical.buttons .button:first-child {
827
+ border-top-width: 0px;
828
+ }
829
+
830
+ /*--------------
831
+ Labeled Icon
832
+ ---------------*/
833
+
834
+ .ui.labeled.icon.buttons .button,
835
+ .ui.labeled.icon.button {
836
+ position: relative;
837
+ padding-left: 4.07142857em !important;
838
+ padding-right: 1.5em !important;
839
+ }
840
+
841
+ /* Left Labeled */
842
+ .ui.labeled.icon.buttons > .button > .icon,
843
+ .ui.labeled.icon.button > .icon {
844
+ position: absolute;
845
+ height: 100%;
846
+ line-height: 1;
847
+ border-radius: 0px;
848
+ border-top-left-radius: inherit;
849
+ border-bottom-left-radius: inherit;
850
+ text-align: center;
851
+ margin: 0em;
852
+ width: 2.57142857em;
853
+ background-color: rgba(0, 0, 0, 0.05);
854
+ color: '';
855
+ box-shadow: -1px 0px 0px 0px transparent inset;
856
+ }
857
+
858
+ /* Left Labeled */
859
+ .ui.labeled.icon.buttons > .button > .icon,
860
+ .ui.labeled.icon.button > .icon {
861
+ top: 0em;
862
+ left: 0em;
863
+ }
864
+
865
+ /* Right Labeled */
866
+ .ui[class*="right labeled"].icon.button {
867
+ padding-right: 4.07142857em !important;
868
+ padding-left: 1.5em !important;
869
+ }
870
+ .ui[class*="right labeled"].icon.button > .icon {
871
+ left: auto;
872
+ right: 0em;
873
+ border-radius: 0px;
874
+ border-top-right-radius: inherit;
875
+ border-bottom-right-radius: inherit;
876
+ box-shadow: 1px 0px 0px 0px transparent inset;
877
+ }
878
+ .ui.labeled.icon.buttons > .button > .icon:before,
879
+ .ui.labeled.icon.button > .icon:before,
880
+ .ui.labeled.icon.buttons > .button > .icon:after,
881
+ .ui.labeled.icon.button > .icon:after {
882
+ display: block;
883
+ position: absolute;
884
+ width: 100%;
885
+ top: 50%;
886
+ text-align: center;
887
+ -webkit-transform: translateY(-50%);
888
+ transform: translateY(-50%);
889
+ }
890
+ .ui.labeled.icon.buttons .button > .icon {
891
+ border-radius: 0em;
892
+ }
893
+ .ui.labeled.icon.buttons .button:first-child > .icon {
894
+ border-top-left-radius: 0.28571429rem;
895
+ border-bottom-left-radius: 0.28571429rem;
896
+ }
897
+ .ui.labeled.icon.buttons .button:last-child > .icon {
898
+ border-top-right-radius: 0.28571429rem;
899
+ border-bottom-right-radius: 0.28571429rem;
900
+ }
901
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
902
+ border-radius: 0em;
903
+ border-top-left-radius: 0.28571429rem;
904
+ }
905
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
906
+ border-radius: 0em;
907
+ border-bottom-left-radius: 0.28571429rem;
908
+ }
909
+
910
+ /* Fluid Labeled */
911
+ .ui.fluid[class*="left labeled"].icon.button,
912
+ .ui.fluid[class*="right labeled"].icon.button {
913
+ padding-left: 1.5em !important;
914
+ padding-right: 1.5em !important;
915
+ }
916
+
917
+ /*--------------
918
+ Toggle
919
+ ---------------*/
920
+
921
+
922
+ /* Toggle (Modifies active state to give affordances) */
923
+ .ui.toggle.buttons .active.button,
924
+ .ui.buttons .button.toggle.active,
925
+ .ui.button.toggle.active {
926
+ background-color: #21BA45 !important;
927
+ box-shadow: none !important;
928
+ text-shadow: none;
929
+ color: #FFFFFF !important;
930
+ }
931
+ .ui.button.toggle.active:hover {
932
+ background-color: #16ab39 !important;
933
+ text-shadow: none;
934
+ color: #FFFFFF !important;
935
+ }
936
+
937
+ /*--------------
938
+ Circular
939
+ ---------------*/
940
+
941
+ .ui.circular.button {
942
+ border-radius: 10em;
943
+ }
944
+ .ui.circular.button > .icon {
945
+ width: 1em;
946
+ vertical-align: baseline;
947
+ }
948
+
949
+ /*-------------------
950
+ Or Buttons
951
+ --------------------*/
952
+
953
+ .ui.buttons .or {
954
+ position: relative;
955
+ width: 0.3em;
956
+ height: 2.57142857em;
957
+ z-index: 3;
958
+ }
959
+ .ui.buttons .or:before {
960
+ position: absolute;
961
+ text-align: center;
962
+ border-radius: 500rem;
963
+ content: 'or';
964
+ top: 50%;
965
+ left: 50%;
966
+ background-color: #FFFFFF;
967
+ text-shadow: none;
968
+ margin-top: -0.89285714em;
969
+ margin-left: -0.89285714em;
970
+ width: 1.78571429em;
971
+ height: 1.78571429em;
972
+ line-height: 1.78571429em;
973
+ color: rgba(0, 0, 0, 0.4);
974
+ font-style: normal;
975
+ font-weight: bold;
976
+ box-shadow: 0px 0px 0px 1px transparent inset;
977
+ }
978
+ .ui.buttons .or[data-text]:before {
979
+ content: attr(data-text);
980
+ }
981
+
982
+ /* Fluid Or */
983
+ .ui.fluid.buttons .or {
984
+ width: 0em !important;
985
+ }
986
+ .ui.fluid.buttons .or:after {
987
+ display: none;
988
+ }
989
+
990
+ /*-------------------
991
+ Attached
992
+ --------------------*/
993
+
994
+
995
+ /* Singular */
996
+ .ui.attached.button {
997
+ position: relative;
998
+ display: block;
999
+ margin: 0em;
1000
+ border-radius: 0em;
1001
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
1002
+ }
1003
+
1004
+ /* Top / Bottom */
1005
+ .ui.attached.top.button {
1006
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1007
+ }
1008
+ .ui.attached.bottom.button {
1009
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1010
+ }
1011
+
1012
+ /* Left / Right */
1013
+ .ui.left.attached.button {
1014
+ display: inline-block;
1015
+ border-left: none;
1016
+ text-align: right;
1017
+ padding-right: 0.75em;
1018
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1019
+ }
1020
+ .ui.right.attached.button {
1021
+ display: inline-block;
1022
+ text-align: left;
1023
+ padding-left: 0.75em;
1024
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1025
+ }
1026
+
1027
+ /* Plural */
1028
+ .ui.attached.buttons {
1029
+ position: relative;
1030
+ display: -webkit-box;
1031
+ display: -ms-flexbox;
1032
+ display: flex;
1033
+ border-radius: 0em;
1034
+ width: auto !important;
1035
+ z-index: 2;
1036
+ margin-left: -1px;
1037
+ margin-right: -1px;
1038
+ }
1039
+ .ui.attached.buttons .button {
1040
+ margin: 0em;
1041
+ }
1042
+ .ui.attached.buttons .button:first-child {
1043
+ border-radius: 0em;
1044
+ }
1045
+ .ui.attached.buttons .button:last-child {
1046
+ border-radius: 0em;
1047
+ }
1048
+
1049
+ /* Top / Bottom */
1050
+ .ui[class*="top attached"].buttons {
1051
+ margin-bottom: -1px;
1052
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1053
+ }
1054
+ .ui[class*="top attached"].buttons .button:first-child {
1055
+ border-radius: 0.28571429rem 0em 0em 0em;
1056
+ }
1057
+ .ui[class*="top attached"].buttons .button:last-child {
1058
+ border-radius: 0em 0.28571429rem 0em 0em;
1059
+ }
1060
+ .ui[class*="bottom attached"].buttons {
1061
+ margin-top: -1px;
1062
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1063
+ }
1064
+ .ui[class*="bottom attached"].buttons .button:first-child {
1065
+ border-radius: 0em 0em 0em 0.28571429rem;
1066
+ }
1067
+ .ui[class*="bottom attached"].buttons .button:last-child {
1068
+ border-radius: 0em 0em 0.28571429rem 0em;
1069
+ }
1070
+
1071
+ /* Left / Right */
1072
+ .ui[class*="left attached"].buttons {
1073
+ display: -webkit-inline-box;
1074
+ display: -ms-inline-flexbox;
1075
+ display: inline-flex;
1076
+ margin-right: 0em;
1077
+ margin-left: -1px;
1078
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1079
+ }
1080
+ .ui[class*="left attached"].buttons .button:first-child {
1081
+ margin-left: -1px;
1082
+ border-radius: 0em 0.28571429rem 0em 0em;
1083
+ }
1084
+ .ui[class*="left attached"].buttons .button:last-child {
1085
+ margin-left: -1px;
1086
+ border-radius: 0em 0em 0.28571429rem 0em;
1087
+ }
1088
+ .ui[class*="right attached"].buttons {
1089
+ display: -webkit-inline-box;
1090
+ display: -ms-inline-flexbox;
1091
+ display: inline-flex;
1092
+ margin-left: 0em;
1093
+ margin-right: -1px;
1094
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1095
+ }
1096
+ .ui[class*="right attached"].buttons .button:first-child {
1097
+ margin-left: -1px;
1098
+ border-radius: 0.28571429rem 0em 0em 0em;
1099
+ }
1100
+ .ui[class*="right attached"].buttons .button:last-child {
1101
+ margin-left: -1px;
1102
+ border-radius: 0em 0em 0em 0.28571429rem;
1103
+ }
1104
+
1105
+ /*-------------------
1106
+ Fluid
1107
+ --------------------*/
1108
+
1109
+ .ui.fluid.buttons,
1110
+ .ui.fluid.button {
1111
+ width: 100%;
1112
+ }
1113
+ .ui.fluid.button {
1114
+ display: block;
1115
+ }
1116
+ .ui.two.buttons {
1117
+ width: 100%;
1118
+ }
1119
+ .ui.two.buttons > .button {
1120
+ width: 50%;
1121
+ }
1122
+ .ui.three.buttons {
1123
+ width: 100%;
1124
+ }
1125
+ .ui.three.buttons > .button {
1126
+ width: 33.333%;
1127
+ }
1128
+ .ui.four.buttons {
1129
+ width: 100%;
1130
+ }
1131
+ .ui.four.buttons > .button {
1132
+ width: 25%;
1133
+ }
1134
+ .ui.five.buttons {
1135
+ width: 100%;
1136
+ }
1137
+ .ui.five.buttons > .button {
1138
+ width: 20%;
1139
+ }
1140
+ .ui.six.buttons {
1141
+ width: 100%;
1142
+ }
1143
+ .ui.six.buttons > .button {
1144
+ width: 16.666%;
1145
+ }
1146
+ .ui.seven.buttons {
1147
+ width: 100%;
1148
+ }
1149
+ .ui.seven.buttons > .button {
1150
+ width: 14.285%;
1151
+ }
1152
+ .ui.eight.buttons {
1153
+ width: 100%;
1154
+ }
1155
+ .ui.eight.buttons > .button {
1156
+ width: 12.500%;
1157
+ }
1158
+ .ui.nine.buttons {
1159
+ width: 100%;
1160
+ }
1161
+ .ui.nine.buttons > .button {
1162
+ width: 11.11%;
1163
+ }
1164
+ .ui.ten.buttons {
1165
+ width: 100%;
1166
+ }
1167
+ .ui.ten.buttons > .button {
1168
+ width: 10%;
1169
+ }
1170
+ .ui.eleven.buttons {
1171
+ width: 100%;
1172
+ }
1173
+ .ui.eleven.buttons > .button {
1174
+ width: 9.09%;
1175
+ }
1176
+ .ui.twelve.buttons {
1177
+ width: 100%;
1178
+ }
1179
+ .ui.twelve.buttons > .button {
1180
+ width: 8.3333%;
1181
+ }
1182
+
1183
+ /* Fluid Vertical Buttons */
1184
+ .ui.fluid.vertical.buttons,
1185
+ .ui.fluid.vertical.buttons > .button {
1186
+ display: -webkit-box;
1187
+ display: -ms-flexbox;
1188
+ display: flex;
1189
+ width: auto;
1190
+ }
1191
+ .ui.two.vertical.buttons > .button {
1192
+ height: 50%;
1193
+ }
1194
+ .ui.three.vertical.buttons > .button {
1195
+ height: 33.333%;
1196
+ }
1197
+ .ui.four.vertical.buttons > .button {
1198
+ height: 25%;
1199
+ }
1200
+ .ui.five.vertical.buttons > .button {
1201
+ height: 20%;
1202
+ }
1203
+ .ui.six.vertical.buttons > .button {
1204
+ height: 16.666%;
1205
+ }
1206
+ .ui.seven.vertical.buttons > .button {
1207
+ height: 14.285%;
1208
+ }
1209
+ .ui.eight.vertical.buttons > .button {
1210
+ height: 12.500%;
1211
+ }
1212
+ .ui.nine.vertical.buttons > .button {
1213
+ height: 11.11%;
1214
+ }
1215
+ .ui.ten.vertical.buttons > .button {
1216
+ height: 10%;
1217
+ }
1218
+ .ui.eleven.vertical.buttons > .button {
1219
+ height: 9.09%;
1220
+ }
1221
+ .ui.twelve.vertical.buttons > .button {
1222
+ height: 8.3333%;
1223
+ }
1224
+
1225
+ /*-------------------
1226
+ Colors
1227
+ --------------------*/
1228
+
1229
+
1230
+ /*--- Black ---*/
1231
+
1232
+ .ui.black.buttons .button,
1233
+ .ui.black.button {
1234
+ background-color: #1B1C1D;
1235
+ color: #FFFFFF;
1236
+ text-shadow: none;
1237
+ background-image: none;
1238
+ }
1239
+ .ui.black.button {
1240
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1241
+ }
1242
+ .ui.black.buttons .button:hover,
1243
+ .ui.black.button:hover {
1244
+ background-color: #27292a;
1245
+ color: #FFFFFF;
1246
+ text-shadow: none;
1247
+ }
1248
+ .ui.black.buttons .button:focus,
1249
+ .ui.black.button:focus {
1250
+ background-color: #2f3032;
1251
+ color: #FFFFFF;
1252
+ text-shadow: none;
1253
+ }
1254
+ .ui.black.buttons .button:active,
1255
+ .ui.black.button:active {
1256
+ background-color: #343637;
1257
+ color: #FFFFFF;
1258
+ text-shadow: none;
1259
+ }
1260
+ .ui.black.buttons .active.button,
1261
+ .ui.black.buttons .active.button:active,
1262
+ .ui.black.active.button,
1263
+ .ui.black.button .active.button:active {
1264
+ background-color: #0f0f10;
1265
+ color: #FFFFFF;
1266
+ text-shadow: none;
1267
+ }
1268
+
1269
+ /* Basic */
1270
+ .ui.basic.black.buttons .button,
1271
+ .ui.basic.black.button {
1272
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
1273
+ color: #1B1C1D !important;
1274
+ }
1275
+ .ui.basic.black.buttons .button:hover,
1276
+ .ui.basic.black.button:hover {
1277
+ background: transparent !important;
1278
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
1279
+ color: #27292a !important;
1280
+ }
1281
+ .ui.basic.black.buttons .button:focus,
1282
+ .ui.basic.black.button:focus {
1283
+ background: transparent !important;
1284
+ box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
1285
+ color: #27292a !important;
1286
+ }
1287
+ .ui.basic.black.buttons .active.button,
1288
+ .ui.basic.black.active.button {
1289
+ background: transparent !important;
1290
+ box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
1291
+ color: #343637 !important;
1292
+ }
1293
+ .ui.basic.black.buttons .button:active,
1294
+ .ui.basic.black.button:active {
1295
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
1296
+ color: #343637 !important;
1297
+ }
1298
+ .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
1299
+ margin-left: -1px;
1300
+ }
1301
+
1302
+ /* Inverted */
1303
+ .ui.inverted.black.buttons .button,
1304
+ .ui.inverted.black.button {
1305
+ background-color: transparent;
1306
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1307
+ color: #FFFFFF;
1308
+ }
1309
+ .ui.inverted.black.buttons .button:hover,
1310
+ .ui.inverted.black.button:hover,
1311
+ .ui.inverted.black.buttons .button:focus,
1312
+ .ui.inverted.black.button:focus,
1313
+ .ui.inverted.black.buttons .button.active,
1314
+ .ui.inverted.black.button.active,
1315
+ .ui.inverted.black.buttons .button:active,
1316
+ .ui.inverted.black.button:active {
1317
+ box-shadow: none !important;
1318
+ color: #FFFFFF;
1319
+ }
1320
+ .ui.inverted.black.buttons .button:hover,
1321
+ .ui.inverted.black.button:hover {
1322
+ background-color: #000000;
1323
+ }
1324
+ .ui.inverted.black.buttons .button:focus,
1325
+ .ui.inverted.black.button:focus {
1326
+ background-color: #000000;
1327
+ }
1328
+ .ui.inverted.black.buttons .active.button,
1329
+ .ui.inverted.black.active.button {
1330
+ background-color: #000000;
1331
+ }
1332
+ .ui.inverted.black.buttons .button:active,
1333
+ .ui.inverted.black.button:active {
1334
+ background-color: #000000;
1335
+ }
1336
+
1337
+ /* Inverted Basic */
1338
+ .ui.inverted.black.basic.buttons .button,
1339
+ .ui.inverted.black.buttons .basic.button,
1340
+ .ui.inverted.black.basic.button {
1341
+ background-color: transparent;
1342
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1343
+ color: #FFFFFF !important;
1344
+ }
1345
+ .ui.inverted.black.basic.buttons .button:hover,
1346
+ .ui.inverted.black.buttons .basic.button:hover,
1347
+ .ui.inverted.black.basic.button:hover {
1348
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1349
+ color: #FFFFFF !important;
1350
+ }
1351
+ .ui.inverted.black.basic.buttons .button:focus,
1352
+ .ui.inverted.black.basic.buttons .button:focus,
1353
+ .ui.inverted.black.basic.button:focus {
1354
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1355
+ color: #545454 !important;
1356
+ }
1357
+ .ui.inverted.black.basic.buttons .active.button,
1358
+ .ui.inverted.black.buttons .basic.active.button,
1359
+ .ui.inverted.black.basic.active.button {
1360
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1361
+ color: #FFFFFF !important;
1362
+ }
1363
+ .ui.inverted.black.basic.buttons .button:active,
1364
+ .ui.inverted.black.buttons .basic.button:active,
1365
+ .ui.inverted.black.basic.button:active {
1366
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1367
+ color: #FFFFFF !important;
1368
+ }
1369
+
1370
+ /*--- Grey ---*/
1371
+
1372
+ .ui.grey.buttons .button,
1373
+ .ui.grey.button {
1374
+ background-color: #767676;
1375
+ color: #FFFFFF;
1376
+ text-shadow: none;
1377
+ background-image: none;
1378
+ }
1379
+ .ui.grey.button {
1380
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1381
+ }
1382
+ .ui.grey.buttons .button:hover,
1383
+ .ui.grey.button:hover {
1384
+ background-color: #838383;
1385
+ color: #FFFFFF;
1386
+ text-shadow: none;
1387
+ }
1388
+ .ui.grey.buttons .button:focus,
1389
+ .ui.grey.button:focus {
1390
+ background-color: #8a8a8a;
1391
+ color: #FFFFFF;
1392
+ text-shadow: none;
1393
+ }
1394
+ .ui.grey.buttons .button:active,
1395
+ .ui.grey.button:active {
1396
+ background-color: #909090;
1397
+ color: #FFFFFF;
1398
+ text-shadow: none;
1399
+ }
1400
+ .ui.grey.buttons .active.button,
1401
+ .ui.grey.buttons .active.button:active,
1402
+ .ui.grey.active.button,
1403
+ .ui.grey.button .active.button:active {
1404
+ background-color: #696969;
1405
+ color: #FFFFFF;
1406
+ text-shadow: none;
1407
+ }
1408
+
1409
+ /* Basic */
1410
+ .ui.basic.grey.buttons .button,
1411
+ .ui.basic.grey.button {
1412
+ box-shadow: 0px 0px 0px 1px #767676 inset !important;
1413
+ color: #767676 !important;
1414
+ }
1415
+ .ui.basic.grey.buttons .button:hover,
1416
+ .ui.basic.grey.button:hover {
1417
+ background: transparent !important;
1418
+ box-shadow: 0px 0px 0px 1px #838383 inset !important;
1419
+ color: #838383 !important;
1420
+ }
1421
+ .ui.basic.grey.buttons .button:focus,
1422
+ .ui.basic.grey.button:focus {
1423
+ background: transparent !important;
1424
+ box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
1425
+ color: #838383 !important;
1426
+ }
1427
+ .ui.basic.grey.buttons .active.button,
1428
+ .ui.basic.grey.active.button {
1429
+ background: transparent !important;
1430
+ box-shadow: 0px 0px 0px 1px #696969 inset !important;
1431
+ color: #909090 !important;
1432
+ }
1433
+ .ui.basic.grey.buttons .button:active,
1434
+ .ui.basic.grey.button:active {
1435
+ box-shadow: 0px 0px 0px 1px #909090 inset !important;
1436
+ color: #909090 !important;
1437
+ }
1438
+ .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
1439
+ margin-left: -1px;
1440
+ }
1441
+
1442
+ /* Inverted */
1443
+ .ui.inverted.grey.buttons .button,
1444
+ .ui.inverted.grey.button {
1445
+ background-color: transparent;
1446
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1447
+ color: #FFFFFF;
1448
+ }
1449
+ .ui.inverted.grey.buttons .button:hover,
1450
+ .ui.inverted.grey.button:hover,
1451
+ .ui.inverted.grey.buttons .button:focus,
1452
+ .ui.inverted.grey.button:focus,
1453
+ .ui.inverted.grey.buttons .button.active,
1454
+ .ui.inverted.grey.button.active,
1455
+ .ui.inverted.grey.buttons .button:active,
1456
+ .ui.inverted.grey.button:active {
1457
+ box-shadow: none !important;
1458
+ color: rgba(0, 0, 0, 0.6);
1459
+ }
1460
+ .ui.inverted.grey.buttons .button:hover,
1461
+ .ui.inverted.grey.button:hover {
1462
+ background-color: #cfd0d2;
1463
+ }
1464
+ .ui.inverted.grey.buttons .button:focus,
1465
+ .ui.inverted.grey.button:focus {
1466
+ background-color: #c7c9cb;
1467
+ }
1468
+ .ui.inverted.grey.buttons .active.button,
1469
+ .ui.inverted.grey.active.button {
1470
+ background-color: #cfd0d2;
1471
+ }
1472
+ .ui.inverted.grey.buttons .button:active,
1473
+ .ui.inverted.grey.button:active {
1474
+ background-color: #c2c4c5;
1475
+ }
1476
+
1477
+ /* Inverted Basic */
1478
+ .ui.inverted.grey.basic.buttons .button,
1479
+ .ui.inverted.grey.buttons .basic.button,
1480
+ .ui.inverted.grey.basic.button {
1481
+ background-color: transparent;
1482
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1483
+ color: #FFFFFF !important;
1484
+ }
1485
+ .ui.inverted.grey.basic.buttons .button:hover,
1486
+ .ui.inverted.grey.buttons .basic.button:hover,
1487
+ .ui.inverted.grey.basic.button:hover {
1488
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1489
+ color: #FFFFFF !important;
1490
+ }
1491
+ .ui.inverted.grey.basic.buttons .button:focus,
1492
+ .ui.inverted.grey.basic.buttons .button:focus,
1493
+ .ui.inverted.grey.basic.button:focus {
1494
+ box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
1495
+ color: #DCDDDE !important;
1496
+ }
1497
+ .ui.inverted.grey.basic.buttons .active.button,
1498
+ .ui.inverted.grey.buttons .basic.active.button,
1499
+ .ui.inverted.grey.basic.active.button {
1500
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1501
+ color: #FFFFFF !important;
1502
+ }
1503
+ .ui.inverted.grey.basic.buttons .button:active,
1504
+ .ui.inverted.grey.buttons .basic.button:active,
1505
+ .ui.inverted.grey.basic.button:active {
1506
+ box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
1507
+ color: #FFFFFF !important;
1508
+ }
1509
+
1510
+ /*--- Brown ---*/
1511
+
1512
+ .ui.brown.buttons .button,
1513
+ .ui.brown.button {
1514
+ background-color: #A5673F;
1515
+ color: #FFFFFF;
1516
+ text-shadow: none;
1517
+ background-image: none;
1518
+ }
1519
+ .ui.brown.button {
1520
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1521
+ }
1522
+ .ui.brown.buttons .button:hover,
1523
+ .ui.brown.button:hover {
1524
+ background-color: #975b33;
1525
+ color: #FFFFFF;
1526
+ text-shadow: none;
1527
+ }
1528
+ .ui.brown.buttons .button:focus,
1529
+ .ui.brown.button:focus {
1530
+ background-color: #90532b;
1531
+ color: #FFFFFF;
1532
+ text-shadow: none;
1533
+ }
1534
+ .ui.brown.buttons .button:active,
1535
+ .ui.brown.button:active {
1536
+ background-color: #805031;
1537
+ color: #FFFFFF;
1538
+ text-shadow: none;
1539
+ }
1540
+ .ui.brown.buttons .active.button,
1541
+ .ui.brown.buttons .active.button:active,
1542
+ .ui.brown.active.button,
1543
+ .ui.brown.button .active.button:active {
1544
+ background-color: #995a31;
1545
+ color: #FFFFFF;
1546
+ text-shadow: none;
1547
+ }
1548
+
1549
+ /* Basic */
1550
+ .ui.basic.brown.buttons .button,
1551
+ .ui.basic.brown.button {
1552
+ box-shadow: 0px 0px 0px 1px #A5673F inset !important;
1553
+ color: #A5673F !important;
1554
+ }
1555
+ .ui.basic.brown.buttons .button:hover,
1556
+ .ui.basic.brown.button:hover {
1557
+ background: transparent !important;
1558
+ box-shadow: 0px 0px 0px 1px #975b33 inset !important;
1559
+ color: #975b33 !important;
1560
+ }
1561
+ .ui.basic.brown.buttons .button:focus,
1562
+ .ui.basic.brown.button:focus {
1563
+ background: transparent !important;
1564
+ box-shadow: 0px 0px 0px 1px #90532b inset !important;
1565
+ color: #975b33 !important;
1566
+ }
1567
+ .ui.basic.brown.buttons .active.button,
1568
+ .ui.basic.brown.active.button {
1569
+ background: transparent !important;
1570
+ box-shadow: 0px 0px 0px 1px #995a31 inset !important;
1571
+ color: #805031 !important;
1572
+ }
1573
+ .ui.basic.brown.buttons .button:active,
1574
+ .ui.basic.brown.button:active {
1575
+ box-shadow: 0px 0px 0px 1px #805031 inset !important;
1576
+ color: #805031 !important;
1577
+ }
1578
+ .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
1579
+ margin-left: -1px;
1580
+ }
1581
+
1582
+ /* Inverted */
1583
+ .ui.inverted.brown.buttons .button,
1584
+ .ui.inverted.brown.button {
1585
+ background-color: transparent;
1586
+ box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
1587
+ color: #D67C1C;
1588
+ }
1589
+ .ui.inverted.brown.buttons .button:hover,
1590
+ .ui.inverted.brown.button:hover,
1591
+ .ui.inverted.brown.buttons .button:focus,
1592
+ .ui.inverted.brown.button:focus,
1593
+ .ui.inverted.brown.buttons .button.active,
1594
+ .ui.inverted.brown.button.active,
1595
+ .ui.inverted.brown.buttons .button:active,
1596
+ .ui.inverted.brown.button:active {
1597
+ box-shadow: none !important;
1598
+ color: #FFFFFF;
1599
+ }
1600
+ .ui.inverted.brown.buttons .button:hover,
1601
+ .ui.inverted.brown.button:hover {
1602
+ background-color: #c86f11;
1603
+ }
1604
+ .ui.inverted.brown.buttons .button:focus,
1605
+ .ui.inverted.brown.button:focus {
1606
+ background-color: #c16808;
1607
+ }
1608
+ .ui.inverted.brown.buttons .active.button,
1609
+ .ui.inverted.brown.active.button {
1610
+ background-color: #cc6f0d;
1611
+ }
1612
+ .ui.inverted.brown.buttons .button:active,
1613
+ .ui.inverted.brown.button:active {
1614
+ background-color: #a96216;
1615
+ }
1616
+
1617
+ /* Inverted Basic */
1618
+ .ui.inverted.brown.basic.buttons .button,
1619
+ .ui.inverted.brown.buttons .basic.button,
1620
+ .ui.inverted.brown.basic.button {
1621
+ background-color: transparent;
1622
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1623
+ color: #FFFFFF !important;
1624
+ }
1625
+ .ui.inverted.brown.basic.buttons .button:hover,
1626
+ .ui.inverted.brown.buttons .basic.button:hover,
1627
+ .ui.inverted.brown.basic.button:hover {
1628
+ box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
1629
+ color: #D67C1C !important;
1630
+ }
1631
+ .ui.inverted.brown.basic.buttons .button:focus,
1632
+ .ui.inverted.brown.basic.buttons .button:focus,
1633
+ .ui.inverted.brown.basic.button:focus {
1634
+ box-shadow: 0px 0px 0px 2px #c16808 inset !important;
1635
+ color: #D67C1C !important;
1636
+ }
1637
+ .ui.inverted.brown.basic.buttons .active.button,
1638
+ .ui.inverted.brown.buttons .basic.active.button,
1639
+ .ui.inverted.brown.basic.active.button {
1640
+ box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
1641
+ color: #D67C1C !important;
1642
+ }
1643
+ .ui.inverted.brown.basic.buttons .button:active,
1644
+ .ui.inverted.brown.buttons .basic.button:active,
1645
+ .ui.inverted.brown.basic.button:active {
1646
+ box-shadow: 0px 0px 0px 2px #a96216 inset !important;
1647
+ color: #D67C1C !important;
1648
+ }
1649
+
1650
+ /*--- Blue ---*/
1651
+
1652
+ .ui.blue.buttons .button,
1653
+ .ui.blue.button {
1654
+ background-color: #2185D0;
1655
+ color: #FFFFFF;
1656
+ text-shadow: none;
1657
+ background-image: none;
1658
+ }
1659
+ .ui.blue.button {
1660
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1661
+ }
1662
+ .ui.blue.buttons .button:hover,
1663
+ .ui.blue.button:hover {
1664
+ background-color: #1678c2;
1665
+ color: #FFFFFF;
1666
+ text-shadow: none;
1667
+ }
1668
+ .ui.blue.buttons .button:focus,
1669
+ .ui.blue.button:focus {
1670
+ background-color: #0d71bb;
1671
+ color: #FFFFFF;
1672
+ text-shadow: none;
1673
+ }
1674
+ .ui.blue.buttons .button:active,
1675
+ .ui.blue.button:active {
1676
+ background-color: #1a69a4;
1677
+ color: #FFFFFF;
1678
+ text-shadow: none;
1679
+ }
1680
+ .ui.blue.buttons .active.button,
1681
+ .ui.blue.buttons .active.button:active,
1682
+ .ui.blue.active.button,
1683
+ .ui.blue.button .active.button:active {
1684
+ background-color: #1279c6;
1685
+ color: #FFFFFF;
1686
+ text-shadow: none;
1687
+ }
1688
+
1689
+ /* Basic */
1690
+ .ui.basic.blue.buttons .button,
1691
+ .ui.basic.blue.button {
1692
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
1693
+ color: #2185D0 !important;
1694
+ }
1695
+ .ui.basic.blue.buttons .button:hover,
1696
+ .ui.basic.blue.button:hover {
1697
+ background: transparent !important;
1698
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
1699
+ color: #1678c2 !important;
1700
+ }
1701
+ .ui.basic.blue.buttons .button:focus,
1702
+ .ui.basic.blue.button:focus {
1703
+ background: transparent !important;
1704
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
1705
+ color: #1678c2 !important;
1706
+ }
1707
+ .ui.basic.blue.buttons .active.button,
1708
+ .ui.basic.blue.active.button {
1709
+ background: transparent !important;
1710
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
1711
+ color: #1a69a4 !important;
1712
+ }
1713
+ .ui.basic.blue.buttons .button:active,
1714
+ .ui.basic.blue.button:active {
1715
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
1716
+ color: #1a69a4 !important;
1717
+ }
1718
+ .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
1719
+ margin-left: -1px;
1720
+ }
1721
+
1722
+ /* Inverted */
1723
+ .ui.inverted.blue.buttons .button,
1724
+ .ui.inverted.blue.button {
1725
+ background-color: transparent;
1726
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
1727
+ color: #54C8FF;
1728
+ }
1729
+ .ui.inverted.blue.buttons .button:hover,
1730
+ .ui.inverted.blue.button:hover,
1731
+ .ui.inverted.blue.buttons .button:focus,
1732
+ .ui.inverted.blue.button:focus,
1733
+ .ui.inverted.blue.buttons .button.active,
1734
+ .ui.inverted.blue.button.active,
1735
+ .ui.inverted.blue.buttons .button:active,
1736
+ .ui.inverted.blue.button:active {
1737
+ box-shadow: none !important;
1738
+ color: #FFFFFF;
1739
+ }
1740
+ .ui.inverted.blue.buttons .button:hover,
1741
+ .ui.inverted.blue.button:hover {
1742
+ background-color: #3ac0ff;
1743
+ }
1744
+ .ui.inverted.blue.buttons .button:focus,
1745
+ .ui.inverted.blue.button:focus {
1746
+ background-color: #2bbbff;
1747
+ }
1748
+ .ui.inverted.blue.buttons .active.button,
1749
+ .ui.inverted.blue.active.button {
1750
+ background-color: #3ac0ff;
1751
+ }
1752
+ .ui.inverted.blue.buttons .button:active,
1753
+ .ui.inverted.blue.button:active {
1754
+ background-color: #21b8ff;
1755
+ }
1756
+
1757
+ /* Inverted Basic */
1758
+ .ui.inverted.blue.basic.buttons .button,
1759
+ .ui.inverted.blue.buttons .basic.button,
1760
+ .ui.inverted.blue.basic.button {
1761
+ background-color: transparent;
1762
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1763
+ color: #FFFFFF !important;
1764
+ }
1765
+ .ui.inverted.blue.basic.buttons .button:hover,
1766
+ .ui.inverted.blue.buttons .basic.button:hover,
1767
+ .ui.inverted.blue.basic.button:hover {
1768
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1769
+ color: #54C8FF !important;
1770
+ }
1771
+ .ui.inverted.blue.basic.buttons .button:focus,
1772
+ .ui.inverted.blue.basic.buttons .button:focus,
1773
+ .ui.inverted.blue.basic.button:focus {
1774
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
1775
+ color: #54C8FF !important;
1776
+ }
1777
+ .ui.inverted.blue.basic.buttons .active.button,
1778
+ .ui.inverted.blue.buttons .basic.active.button,
1779
+ .ui.inverted.blue.basic.active.button {
1780
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1781
+ color: #54C8FF !important;
1782
+ }
1783
+ .ui.inverted.blue.basic.buttons .button:active,
1784
+ .ui.inverted.blue.buttons .basic.button:active,
1785
+ .ui.inverted.blue.basic.button:active {
1786
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
1787
+ color: #54C8FF !important;
1788
+ }
1789
+
1790
+ /*--- Green ---*/
1791
+
1792
+ .ui.green.buttons .button,
1793
+ .ui.green.button {
1794
+ background-color: #21BA45;
1795
+ color: #FFFFFF;
1796
+ text-shadow: none;
1797
+ background-image: none;
1798
+ }
1799
+ .ui.green.button {
1800
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1801
+ }
1802
+ .ui.green.buttons .button:hover,
1803
+ .ui.green.button:hover {
1804
+ background-color: #16ab39;
1805
+ color: #FFFFFF;
1806
+ text-shadow: none;
1807
+ }
1808
+ .ui.green.buttons .button:focus,
1809
+ .ui.green.button:focus {
1810
+ background-color: #0ea432;
1811
+ color: #FFFFFF;
1812
+ text-shadow: none;
1813
+ }
1814
+ .ui.green.buttons .button:active,
1815
+ .ui.green.button:active {
1816
+ background-color: #198f35;
1817
+ color: #FFFFFF;
1818
+ text-shadow: none;
1819
+ }
1820
+ .ui.green.buttons .active.button,
1821
+ .ui.green.buttons .active.button:active,
1822
+ .ui.green.active.button,
1823
+ .ui.green.button .active.button:active {
1824
+ background-color: #13ae38;
1825
+ color: #FFFFFF;
1826
+ text-shadow: none;
1827
+ }
1828
+
1829
+ /* Basic */
1830
+ .ui.basic.green.buttons .button,
1831
+ .ui.basic.green.button {
1832
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
1833
+ color: #21BA45 !important;
1834
+ }
1835
+ .ui.basic.green.buttons .button:hover,
1836
+ .ui.basic.green.button:hover {
1837
+ background: transparent !important;
1838
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
1839
+ color: #16ab39 !important;
1840
+ }
1841
+ .ui.basic.green.buttons .button:focus,
1842
+ .ui.basic.green.button:focus {
1843
+ background: transparent !important;
1844
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
1845
+ color: #16ab39 !important;
1846
+ }
1847
+ .ui.basic.green.buttons .active.button,
1848
+ .ui.basic.green.active.button {
1849
+ background: transparent !important;
1850
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
1851
+ color: #198f35 !important;
1852
+ }
1853
+ .ui.basic.green.buttons .button:active,
1854
+ .ui.basic.green.button:active {
1855
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
1856
+ color: #198f35 !important;
1857
+ }
1858
+ .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
1859
+ margin-left: -1px;
1860
+ }
1861
+
1862
+ /* Inverted */
1863
+ .ui.inverted.green.buttons .button,
1864
+ .ui.inverted.green.button {
1865
+ background-color: transparent;
1866
+ box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
1867
+ color: #2ECC40;
1868
+ }
1869
+ .ui.inverted.green.buttons .button:hover,
1870
+ .ui.inverted.green.button:hover,
1871
+ .ui.inverted.green.buttons .button:focus,
1872
+ .ui.inverted.green.button:focus,
1873
+ .ui.inverted.green.buttons .button.active,
1874
+ .ui.inverted.green.button.active,
1875
+ .ui.inverted.green.buttons .button:active,
1876
+ .ui.inverted.green.button:active {
1877
+ box-shadow: none !important;
1878
+ color: #FFFFFF;
1879
+ }
1880
+ .ui.inverted.green.buttons .button:hover,
1881
+ .ui.inverted.green.button:hover {
1882
+ background-color: #22be34;
1883
+ }
1884
+ .ui.inverted.green.buttons .button:focus,
1885
+ .ui.inverted.green.button:focus {
1886
+ background-color: #19b82b;
1887
+ }
1888
+ .ui.inverted.green.buttons .active.button,
1889
+ .ui.inverted.green.active.button {
1890
+ background-color: #1fc231;
1891
+ }
1892
+ .ui.inverted.green.buttons .button:active,
1893
+ .ui.inverted.green.button:active {
1894
+ background-color: #25a233;
1895
+ }
1896
+
1897
+ /* Inverted Basic */
1898
+ .ui.inverted.green.basic.buttons .button,
1899
+ .ui.inverted.green.buttons .basic.button,
1900
+ .ui.inverted.green.basic.button {
1901
+ background-color: transparent;
1902
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1903
+ color: #FFFFFF !important;
1904
+ }
1905
+ .ui.inverted.green.basic.buttons .button:hover,
1906
+ .ui.inverted.green.buttons .basic.button:hover,
1907
+ .ui.inverted.green.basic.button:hover {
1908
+ box-shadow: 0px 0px 0px 2px #22be34 inset !important;
1909
+ color: #2ECC40 !important;
1910
+ }
1911
+ .ui.inverted.green.basic.buttons .button:focus,
1912
+ .ui.inverted.green.basic.buttons .button:focus,
1913
+ .ui.inverted.green.basic.button:focus {
1914
+ box-shadow: 0px 0px 0px 2px #19b82b inset !important;
1915
+ color: #2ECC40 !important;
1916
+ }
1917
+ .ui.inverted.green.basic.buttons .active.button,
1918
+ .ui.inverted.green.buttons .basic.active.button,
1919
+ .ui.inverted.green.basic.active.button {
1920
+ box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
1921
+ color: #2ECC40 !important;
1922
+ }
1923
+ .ui.inverted.green.basic.buttons .button:active,
1924
+ .ui.inverted.green.buttons .basic.button:active,
1925
+ .ui.inverted.green.basic.button:active {
1926
+ box-shadow: 0px 0px 0px 2px #25a233 inset !important;
1927
+ color: #2ECC40 !important;
1928
+ }
1929
+
1930
+ /*--- Orange ---*/
1931
+
1932
+ .ui.orange.buttons .button,
1933
+ .ui.orange.button {
1934
+ background-color: #F2711C;
1935
+ color: #FFFFFF;
1936
+ text-shadow: none;
1937
+ background-image: none;
1938
+ }
1939
+ .ui.orange.button {
1940
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1941
+ }
1942
+ .ui.orange.buttons .button:hover,
1943
+ .ui.orange.button:hover {
1944
+ background-color: #f26202;
1945
+ color: #FFFFFF;
1946
+ text-shadow: none;
1947
+ }
1948
+ .ui.orange.buttons .button:focus,
1949
+ .ui.orange.button:focus {
1950
+ background-color: #e55b00;
1951
+ color: #FFFFFF;
1952
+ text-shadow: none;
1953
+ }
1954
+ .ui.orange.buttons .button:active,
1955
+ .ui.orange.button:active {
1956
+ background-color: #cf590c;
1957
+ color: #FFFFFF;
1958
+ text-shadow: none;
1959
+ }
1960
+ .ui.orange.buttons .active.button,
1961
+ .ui.orange.buttons .active.button:active,
1962
+ .ui.orange.active.button,
1963
+ .ui.orange.button .active.button:active {
1964
+ background-color: #f56100;
1965
+ color: #FFFFFF;
1966
+ text-shadow: none;
1967
+ }
1968
+
1969
+ /* Basic */
1970
+ .ui.basic.orange.buttons .button,
1971
+ .ui.basic.orange.button {
1972
+ box-shadow: 0px 0px 0px 1px #F2711C inset !important;
1973
+ color: #F2711C !important;
1974
+ }
1975
+ .ui.basic.orange.buttons .button:hover,
1976
+ .ui.basic.orange.button:hover {
1977
+ background: transparent !important;
1978
+ box-shadow: 0px 0px 0px 1px #f26202 inset !important;
1979
+ color: #f26202 !important;
1980
+ }
1981
+ .ui.basic.orange.buttons .button:focus,
1982
+ .ui.basic.orange.button:focus {
1983
+ background: transparent !important;
1984
+ box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
1985
+ color: #f26202 !important;
1986
+ }
1987
+ .ui.basic.orange.buttons .active.button,
1988
+ .ui.basic.orange.active.button {
1989
+ background: transparent !important;
1990
+ box-shadow: 0px 0px 0px 1px #f56100 inset !important;
1991
+ color: #cf590c !important;
1992
+ }
1993
+ .ui.basic.orange.buttons .button:active,
1994
+ .ui.basic.orange.button:active {
1995
+ box-shadow: 0px 0px 0px 1px #cf590c inset !important;
1996
+ color: #cf590c !important;
1997
+ }
1998
+ .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
1999
+ margin-left: -1px;
2000
+ }
2001
+
2002
+ /* Inverted */
2003
+ .ui.inverted.orange.buttons .button,
2004
+ .ui.inverted.orange.button {
2005
+ background-color: transparent;
2006
+ box-shadow: 0px 0px 0px 2px #FF851B inset !important;
2007
+ color: #FF851B;
2008
+ }
2009
+ .ui.inverted.orange.buttons .button:hover,
2010
+ .ui.inverted.orange.button:hover,
2011
+ .ui.inverted.orange.buttons .button:focus,
2012
+ .ui.inverted.orange.button:focus,
2013
+ .ui.inverted.orange.buttons .button.active,
2014
+ .ui.inverted.orange.button.active,
2015
+ .ui.inverted.orange.buttons .button:active,
2016
+ .ui.inverted.orange.button:active {
2017
+ box-shadow: none !important;
2018
+ color: #FFFFFF;
2019
+ }
2020
+ .ui.inverted.orange.buttons .button:hover,
2021
+ .ui.inverted.orange.button:hover {
2022
+ background-color: #ff7701;
2023
+ }
2024
+ .ui.inverted.orange.buttons .button:focus,
2025
+ .ui.inverted.orange.button:focus {
2026
+ background-color: #f17000;
2027
+ }
2028
+ .ui.inverted.orange.buttons .active.button,
2029
+ .ui.inverted.orange.active.button {
2030
+ background-color: #ff7701;
2031
+ }
2032
+ .ui.inverted.orange.buttons .button:active,
2033
+ .ui.inverted.orange.button:active {
2034
+ background-color: #e76b00;
2035
+ }
2036
+
2037
+ /* Inverted Basic */
2038
+ .ui.inverted.orange.basic.buttons .button,
2039
+ .ui.inverted.orange.buttons .basic.button,
2040
+ .ui.inverted.orange.basic.button {
2041
+ background-color: transparent;
2042
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2043
+ color: #FFFFFF !important;
2044
+ }
2045
+ .ui.inverted.orange.basic.buttons .button:hover,
2046
+ .ui.inverted.orange.buttons .basic.button:hover,
2047
+ .ui.inverted.orange.basic.button:hover {
2048
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2049
+ color: #FF851B !important;
2050
+ }
2051
+ .ui.inverted.orange.basic.buttons .button:focus,
2052
+ .ui.inverted.orange.basic.buttons .button:focus,
2053
+ .ui.inverted.orange.basic.button:focus {
2054
+ box-shadow: 0px 0px 0px 2px #f17000 inset !important;
2055
+ color: #FF851B !important;
2056
+ }
2057
+ .ui.inverted.orange.basic.buttons .active.button,
2058
+ .ui.inverted.orange.buttons .basic.active.button,
2059
+ .ui.inverted.orange.basic.active.button {
2060
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2061
+ color: #FF851B !important;
2062
+ }
2063
+ .ui.inverted.orange.basic.buttons .button:active,
2064
+ .ui.inverted.orange.buttons .basic.button:active,
2065
+ .ui.inverted.orange.basic.button:active {
2066
+ box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
2067
+ color: #FF851B !important;
2068
+ }
2069
+
2070
+ /*--- Pink ---*/
2071
+
2072
+ .ui.pink.buttons .button,
2073
+ .ui.pink.button {
2074
+ background-color: #E03997;
2075
+ color: #FFFFFF;
2076
+ text-shadow: none;
2077
+ background-image: none;
2078
+ }
2079
+ .ui.pink.button {
2080
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2081
+ }
2082
+ .ui.pink.buttons .button:hover,
2083
+ .ui.pink.button:hover {
2084
+ background-color: #e61a8d;
2085
+ color: #FFFFFF;
2086
+ text-shadow: none;
2087
+ }
2088
+ .ui.pink.buttons .button:focus,
2089
+ .ui.pink.button:focus {
2090
+ background-color: #e10f85;
2091
+ color: #FFFFFF;
2092
+ text-shadow: none;
2093
+ }
2094
+ .ui.pink.buttons .button:active,
2095
+ .ui.pink.button:active {
2096
+ background-color: #c71f7e;
2097
+ color: #FFFFFF;
2098
+ text-shadow: none;
2099
+ }
2100
+ .ui.pink.buttons .active.button,
2101
+ .ui.pink.buttons .active.button:active,
2102
+ .ui.pink.active.button,
2103
+ .ui.pink.button .active.button:active {
2104
+ background-color: #ea158d;
2105
+ color: #FFFFFF;
2106
+ text-shadow: none;
2107
+ }
2108
+
2109
+ /* Basic */
2110
+ .ui.basic.pink.buttons .button,
2111
+ .ui.basic.pink.button {
2112
+ box-shadow: 0px 0px 0px 1px #E03997 inset !important;
2113
+ color: #E03997 !important;
2114
+ }
2115
+ .ui.basic.pink.buttons .button:hover,
2116
+ .ui.basic.pink.button:hover {
2117
+ background: transparent !important;
2118
+ box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
2119
+ color: #e61a8d !important;
2120
+ }
2121
+ .ui.basic.pink.buttons .button:focus,
2122
+ .ui.basic.pink.button:focus {
2123
+ background: transparent !important;
2124
+ box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
2125
+ color: #e61a8d !important;
2126
+ }
2127
+ .ui.basic.pink.buttons .active.button,
2128
+ .ui.basic.pink.active.button {
2129
+ background: transparent !important;
2130
+ box-shadow: 0px 0px 0px 1px #ea158d inset !important;
2131
+ color: #c71f7e !important;
2132
+ }
2133
+ .ui.basic.pink.buttons .button:active,
2134
+ .ui.basic.pink.button:active {
2135
+ box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
2136
+ color: #c71f7e !important;
2137
+ }
2138
+ .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
2139
+ margin-left: -1px;
2140
+ }
2141
+
2142
+ /* Inverted */
2143
+ .ui.inverted.pink.buttons .button,
2144
+ .ui.inverted.pink.button {
2145
+ background-color: transparent;
2146
+ box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
2147
+ color: #FF8EDF;
2148
+ }
2149
+ .ui.inverted.pink.buttons .button:hover,
2150
+ .ui.inverted.pink.button:hover,
2151
+ .ui.inverted.pink.buttons .button:focus,
2152
+ .ui.inverted.pink.button:focus,
2153
+ .ui.inverted.pink.buttons .button.active,
2154
+ .ui.inverted.pink.button.active,
2155
+ .ui.inverted.pink.buttons .button:active,
2156
+ .ui.inverted.pink.button:active {
2157
+ box-shadow: none !important;
2158
+ color: #FFFFFF;
2159
+ }
2160
+ .ui.inverted.pink.buttons .button:hover,
2161
+ .ui.inverted.pink.button:hover {
2162
+ background-color: #ff74d8;
2163
+ }
2164
+ .ui.inverted.pink.buttons .button:focus,
2165
+ .ui.inverted.pink.button:focus {
2166
+ background-color: #ff65d3;
2167
+ }
2168
+ .ui.inverted.pink.buttons .active.button,
2169
+ .ui.inverted.pink.active.button {
2170
+ background-color: #ff74d8;
2171
+ }
2172
+ .ui.inverted.pink.buttons .button:active,
2173
+ .ui.inverted.pink.button:active {
2174
+ background-color: #ff5bd1;
2175
+ }
2176
+
2177
+ /* Inverted Basic */
2178
+ .ui.inverted.pink.basic.buttons .button,
2179
+ .ui.inverted.pink.buttons .basic.button,
2180
+ .ui.inverted.pink.basic.button {
2181
+ background-color: transparent;
2182
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2183
+ color: #FFFFFF !important;
2184
+ }
2185
+ .ui.inverted.pink.basic.buttons .button:hover,
2186
+ .ui.inverted.pink.buttons .basic.button:hover,
2187
+ .ui.inverted.pink.basic.button:hover {
2188
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2189
+ color: #FF8EDF !important;
2190
+ }
2191
+ .ui.inverted.pink.basic.buttons .button:focus,
2192
+ .ui.inverted.pink.basic.buttons .button:focus,
2193
+ .ui.inverted.pink.basic.button:focus {
2194
+ box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
2195
+ color: #FF8EDF !important;
2196
+ }
2197
+ .ui.inverted.pink.basic.buttons .active.button,
2198
+ .ui.inverted.pink.buttons .basic.active.button,
2199
+ .ui.inverted.pink.basic.active.button {
2200
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2201
+ color: #FF8EDF !important;
2202
+ }
2203
+ .ui.inverted.pink.basic.buttons .button:active,
2204
+ .ui.inverted.pink.buttons .basic.button:active,
2205
+ .ui.inverted.pink.basic.button:active {
2206
+ box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
2207
+ color: #FF8EDF !important;
2208
+ }
2209
+
2210
+ /*--- Violet ---*/
2211
+
2212
+ .ui.violet.buttons .button,
2213
+ .ui.violet.button {
2214
+ background-color: #6435C9;
2215
+ color: #FFFFFF;
2216
+ text-shadow: none;
2217
+ background-image: none;
2218
+ }
2219
+ .ui.violet.button {
2220
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2221
+ }
2222
+ .ui.violet.buttons .button:hover,
2223
+ .ui.violet.button:hover {
2224
+ background-color: #5829bb;
2225
+ color: #FFFFFF;
2226
+ text-shadow: none;
2227
+ }
2228
+ .ui.violet.buttons .button:focus,
2229
+ .ui.violet.button:focus {
2230
+ background-color: #4f20b5;
2231
+ color: #FFFFFF;
2232
+ text-shadow: none;
2233
+ }
2234
+ .ui.violet.buttons .button:active,
2235
+ .ui.violet.button:active {
2236
+ background-color: #502aa1;
2237
+ color: #FFFFFF;
2238
+ text-shadow: none;
2239
+ }
2240
+ .ui.violet.buttons .active.button,
2241
+ .ui.violet.buttons .active.button:active,
2242
+ .ui.violet.active.button,
2243
+ .ui.violet.button .active.button:active {
2244
+ background-color: #5626bf;
2245
+ color: #FFFFFF;
2246
+ text-shadow: none;
2247
+ }
2248
+
2249
+ /* Basic */
2250
+ .ui.basic.violet.buttons .button,
2251
+ .ui.basic.violet.button {
2252
+ box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
2253
+ color: #6435C9 !important;
2254
+ }
2255
+ .ui.basic.violet.buttons .button:hover,
2256
+ .ui.basic.violet.button:hover {
2257
+ background: transparent !important;
2258
+ box-shadow: 0px 0px 0px 1px #5829bb inset !important;
2259
+ color: #5829bb !important;
2260
+ }
2261
+ .ui.basic.violet.buttons .button:focus,
2262
+ .ui.basic.violet.button:focus {
2263
+ background: transparent !important;
2264
+ box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
2265
+ color: #5829bb !important;
2266
+ }
2267
+ .ui.basic.violet.buttons .active.button,
2268
+ .ui.basic.violet.active.button {
2269
+ background: transparent !important;
2270
+ box-shadow: 0px 0px 0px 1px #5626bf inset !important;
2271
+ color: #502aa1 !important;
2272
+ }
2273
+ .ui.basic.violet.buttons .button:active,
2274
+ .ui.basic.violet.button:active {
2275
+ box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
2276
+ color: #502aa1 !important;
2277
+ }
2278
+ .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
2279
+ margin-left: -1px;
2280
+ }
2281
+
2282
+ /* Inverted */
2283
+ .ui.inverted.violet.buttons .button,
2284
+ .ui.inverted.violet.button {
2285
+ background-color: transparent;
2286
+ box-shadow: 0px 0px 0px 2px #A291FB inset !important;
2287
+ color: #A291FB;
2288
+ }
2289
+ .ui.inverted.violet.buttons .button:hover,
2290
+ .ui.inverted.violet.button:hover,
2291
+ .ui.inverted.violet.buttons .button:focus,
2292
+ .ui.inverted.violet.button:focus,
2293
+ .ui.inverted.violet.buttons .button.active,
2294
+ .ui.inverted.violet.button.active,
2295
+ .ui.inverted.violet.buttons .button:active,
2296
+ .ui.inverted.violet.button:active {
2297
+ box-shadow: none !important;
2298
+ color: #FFFFFF;
2299
+ }
2300
+ .ui.inverted.violet.buttons .button:hover,
2301
+ .ui.inverted.violet.button:hover {
2302
+ background-color: #8a73ff;
2303
+ }
2304
+ .ui.inverted.violet.buttons .button:focus,
2305
+ .ui.inverted.violet.button:focus {
2306
+ background-color: #7d64ff;
2307
+ }
2308
+ .ui.inverted.violet.buttons .active.button,
2309
+ .ui.inverted.violet.active.button {
2310
+ background-color: #8a73ff;
2311
+ }
2312
+ .ui.inverted.violet.buttons .button:active,
2313
+ .ui.inverted.violet.button:active {
2314
+ background-color: #7860f9;
2315
+ }
2316
+
2317
+ /* Inverted Basic */
2318
+ .ui.inverted.violet.basic.buttons .button,
2319
+ .ui.inverted.violet.buttons .basic.button,
2320
+ .ui.inverted.violet.basic.button {
2321
+ background-color: transparent;
2322
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2323
+ color: #FFFFFF !important;
2324
+ }
2325
+ .ui.inverted.violet.basic.buttons .button:hover,
2326
+ .ui.inverted.violet.buttons .basic.button:hover,
2327
+ .ui.inverted.violet.basic.button:hover {
2328
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2329
+ color: #A291FB !important;
2330
+ }
2331
+ .ui.inverted.violet.basic.buttons .button:focus,
2332
+ .ui.inverted.violet.basic.buttons .button:focus,
2333
+ .ui.inverted.violet.basic.button:focus {
2334
+ box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
2335
+ color: #A291FB !important;
2336
+ }
2337
+ .ui.inverted.violet.basic.buttons .active.button,
2338
+ .ui.inverted.violet.buttons .basic.active.button,
2339
+ .ui.inverted.violet.basic.active.button {
2340
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2341
+ color: #A291FB !important;
2342
+ }
2343
+ .ui.inverted.violet.basic.buttons .button:active,
2344
+ .ui.inverted.violet.buttons .basic.button:active,
2345
+ .ui.inverted.violet.basic.button:active {
2346
+ box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
2347
+ color: #A291FB !important;
2348
+ }
2349
+
2350
+ /*--- Purple ---*/
2351
+
2352
+ .ui.purple.buttons .button,
2353
+ .ui.purple.button {
2354
+ background-color: #A333C8;
2355
+ color: #FFFFFF;
2356
+ text-shadow: none;
2357
+ background-image: none;
2358
+ }
2359
+ .ui.purple.button {
2360
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2361
+ }
2362
+ .ui.purple.buttons .button:hover,
2363
+ .ui.purple.button:hover {
2364
+ background-color: #9627ba;
2365
+ color: #FFFFFF;
2366
+ text-shadow: none;
2367
+ }
2368
+ .ui.purple.buttons .button:focus,
2369
+ .ui.purple.button:focus {
2370
+ background-color: #8f1eb4;
2371
+ color: #FFFFFF;
2372
+ text-shadow: none;
2373
+ }
2374
+ .ui.purple.buttons .button:active,
2375
+ .ui.purple.button:active {
2376
+ background-color: #82299f;
2377
+ color: #FFFFFF;
2378
+ text-shadow: none;
2379
+ }
2380
+ .ui.purple.buttons .active.button,
2381
+ .ui.purple.buttons .active.button:active,
2382
+ .ui.purple.active.button,
2383
+ .ui.purple.button .active.button:active {
2384
+ background-color: #9724be;
2385
+ color: #FFFFFF;
2386
+ text-shadow: none;
2387
+ }
2388
+
2389
+ /* Basic */
2390
+ .ui.basic.purple.buttons .button,
2391
+ .ui.basic.purple.button {
2392
+ box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
2393
+ color: #A333C8 !important;
2394
+ }
2395
+ .ui.basic.purple.buttons .button:hover,
2396
+ .ui.basic.purple.button:hover {
2397
+ background: transparent !important;
2398
+ box-shadow: 0px 0px 0px 1px #9627ba inset !important;
2399
+ color: #9627ba !important;
2400
+ }
2401
+ .ui.basic.purple.buttons .button:focus,
2402
+ .ui.basic.purple.button:focus {
2403
+ background: transparent !important;
2404
+ box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
2405
+ color: #9627ba !important;
2406
+ }
2407
+ .ui.basic.purple.buttons .active.button,
2408
+ .ui.basic.purple.active.button {
2409
+ background: transparent !important;
2410
+ box-shadow: 0px 0px 0px 1px #9724be inset !important;
2411
+ color: #82299f !important;
2412
+ }
2413
+ .ui.basic.purple.buttons .button:active,
2414
+ .ui.basic.purple.button:active {
2415
+ box-shadow: 0px 0px 0px 1px #82299f inset !important;
2416
+ color: #82299f !important;
2417
+ }
2418
+ .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
2419
+ margin-left: -1px;
2420
+ }
2421
+
2422
+ /* Inverted */
2423
+ .ui.inverted.purple.buttons .button,
2424
+ .ui.inverted.purple.button {
2425
+ background-color: transparent;
2426
+ box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
2427
+ color: #DC73FF;
2428
+ }
2429
+ .ui.inverted.purple.buttons .button:hover,
2430
+ .ui.inverted.purple.button:hover,
2431
+ .ui.inverted.purple.buttons .button:focus,
2432
+ .ui.inverted.purple.button:focus,
2433
+ .ui.inverted.purple.buttons .button.active,
2434
+ .ui.inverted.purple.button.active,
2435
+ .ui.inverted.purple.buttons .button:active,
2436
+ .ui.inverted.purple.button:active {
2437
+ box-shadow: none !important;
2438
+ color: #FFFFFF;
2439
+ }
2440
+ .ui.inverted.purple.buttons .button:hover,
2441
+ .ui.inverted.purple.button:hover {
2442
+ background-color: #d65aff;
2443
+ }
2444
+ .ui.inverted.purple.buttons .button:focus,
2445
+ .ui.inverted.purple.button:focus {
2446
+ background-color: #d24aff;
2447
+ }
2448
+ .ui.inverted.purple.buttons .active.button,
2449
+ .ui.inverted.purple.active.button {
2450
+ background-color: #d65aff;
2451
+ }
2452
+ .ui.inverted.purple.buttons .button:active,
2453
+ .ui.inverted.purple.button:active {
2454
+ background-color: #cf40ff;
2455
+ }
2456
+
2457
+ /* Inverted Basic */
2458
+ .ui.inverted.purple.basic.buttons .button,
2459
+ .ui.inverted.purple.buttons .basic.button,
2460
+ .ui.inverted.purple.basic.button {
2461
+ background-color: transparent;
2462
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2463
+ color: #FFFFFF !important;
2464
+ }
2465
+ .ui.inverted.purple.basic.buttons .button:hover,
2466
+ .ui.inverted.purple.buttons .basic.button:hover,
2467
+ .ui.inverted.purple.basic.button:hover {
2468
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2469
+ color: #DC73FF !important;
2470
+ }
2471
+ .ui.inverted.purple.basic.buttons .button:focus,
2472
+ .ui.inverted.purple.basic.buttons .button:focus,
2473
+ .ui.inverted.purple.basic.button:focus {
2474
+ box-shadow: 0px 0px 0px 2px #d24aff inset !important;
2475
+ color: #DC73FF !important;
2476
+ }
2477
+ .ui.inverted.purple.basic.buttons .active.button,
2478
+ .ui.inverted.purple.buttons .basic.active.button,
2479
+ .ui.inverted.purple.basic.active.button {
2480
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2481
+ color: #DC73FF !important;
2482
+ }
2483
+ .ui.inverted.purple.basic.buttons .button:active,
2484
+ .ui.inverted.purple.buttons .basic.button:active,
2485
+ .ui.inverted.purple.basic.button:active {
2486
+ box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
2487
+ color: #DC73FF !important;
2488
+ }
2489
+
2490
+ /*--- Red ---*/
2491
+
2492
+ .ui.red.buttons .button,
2493
+ .ui.red.button {
2494
+ background-color: #DB2828;
2495
+ color: #FFFFFF;
2496
+ text-shadow: none;
2497
+ background-image: none;
2498
+ }
2499
+ .ui.red.button {
2500
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2501
+ }
2502
+ .ui.red.buttons .button:hover,
2503
+ .ui.red.button:hover {
2504
+ background-color: #d01919;
2505
+ color: #FFFFFF;
2506
+ text-shadow: none;
2507
+ }
2508
+ .ui.red.buttons .button:focus,
2509
+ .ui.red.button:focus {
2510
+ background-color: #ca1010;
2511
+ color: #FFFFFF;
2512
+ text-shadow: none;
2513
+ }
2514
+ .ui.red.buttons .button:active,
2515
+ .ui.red.button:active {
2516
+ background-color: #b21e1e;
2517
+ color: #FFFFFF;
2518
+ text-shadow: none;
2519
+ }
2520
+ .ui.red.buttons .active.button,
2521
+ .ui.red.buttons .active.button:active,
2522
+ .ui.red.active.button,
2523
+ .ui.red.button .active.button:active {
2524
+ background-color: #d41515;
2525
+ color: #FFFFFF;
2526
+ text-shadow: none;
2527
+ }
2528
+
2529
+ /* Basic */
2530
+ .ui.basic.red.buttons .button,
2531
+ .ui.basic.red.button {
2532
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
2533
+ color: #DB2828 !important;
2534
+ }
2535
+ .ui.basic.red.buttons .button:hover,
2536
+ .ui.basic.red.button:hover {
2537
+ background: transparent !important;
2538
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
2539
+ color: #d01919 !important;
2540
+ }
2541
+ .ui.basic.red.buttons .button:focus,
2542
+ .ui.basic.red.button:focus {
2543
+ background: transparent !important;
2544
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
2545
+ color: #d01919 !important;
2546
+ }
2547
+ .ui.basic.red.buttons .active.button,
2548
+ .ui.basic.red.active.button {
2549
+ background: transparent !important;
2550
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
2551
+ color: #b21e1e !important;
2552
+ }
2553
+ .ui.basic.red.buttons .button:active,
2554
+ .ui.basic.red.button:active {
2555
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
2556
+ color: #b21e1e !important;
2557
+ }
2558
+ .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
2559
+ margin-left: -1px;
2560
+ }
2561
+
2562
+ /* Inverted */
2563
+ .ui.inverted.red.buttons .button,
2564
+ .ui.inverted.red.button {
2565
+ background-color: transparent;
2566
+ box-shadow: 0px 0px 0px 2px #FF695E inset !important;
2567
+ color: #FF695E;
2568
+ }
2569
+ .ui.inverted.red.buttons .button:hover,
2570
+ .ui.inverted.red.button:hover,
2571
+ .ui.inverted.red.buttons .button:focus,
2572
+ .ui.inverted.red.button:focus,
2573
+ .ui.inverted.red.buttons .button.active,
2574
+ .ui.inverted.red.button.active,
2575
+ .ui.inverted.red.buttons .button:active,
2576
+ .ui.inverted.red.button:active {
2577
+ box-shadow: none !important;
2578
+ color: #FFFFFF;
2579
+ }
2580
+ .ui.inverted.red.buttons .button:hover,
2581
+ .ui.inverted.red.button:hover {
2582
+ background-color: #ff5144;
2583
+ }
2584
+ .ui.inverted.red.buttons .button:focus,
2585
+ .ui.inverted.red.button:focus {
2586
+ background-color: #ff4335;
2587
+ }
2588
+ .ui.inverted.red.buttons .active.button,
2589
+ .ui.inverted.red.active.button {
2590
+ background-color: #ff5144;
2591
+ }
2592
+ .ui.inverted.red.buttons .button:active,
2593
+ .ui.inverted.red.button:active {
2594
+ background-color: #ff392b;
2595
+ }
2596
+
2597
+ /* Inverted Basic */
2598
+ .ui.inverted.red.basic.buttons .button,
2599
+ .ui.inverted.red.buttons .basic.button,
2600
+ .ui.inverted.red.basic.button {
2601
+ background-color: transparent;
2602
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2603
+ color: #FFFFFF !important;
2604
+ }
2605
+ .ui.inverted.red.basic.buttons .button:hover,
2606
+ .ui.inverted.red.buttons .basic.button:hover,
2607
+ .ui.inverted.red.basic.button:hover {
2608
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2609
+ color: #FF695E !important;
2610
+ }
2611
+ .ui.inverted.red.basic.buttons .button:focus,
2612
+ .ui.inverted.red.basic.buttons .button:focus,
2613
+ .ui.inverted.red.basic.button:focus {
2614
+ box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
2615
+ color: #FF695E !important;
2616
+ }
2617
+ .ui.inverted.red.basic.buttons .active.button,
2618
+ .ui.inverted.red.buttons .basic.active.button,
2619
+ .ui.inverted.red.basic.active.button {
2620
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2621
+ color: #FF695E !important;
2622
+ }
2623
+ .ui.inverted.red.basic.buttons .button:active,
2624
+ .ui.inverted.red.buttons .basic.button:active,
2625
+ .ui.inverted.red.basic.button:active {
2626
+ box-shadow: 0px 0px 0px 2px #ff392b inset !important;
2627
+ color: #FF695E !important;
2628
+ }
2629
+
2630
+ /*--- Teal ---*/
2631
+
2632
+ .ui.teal.buttons .button,
2633
+ .ui.teal.button {
2634
+ background-color: #00B5AD;
2635
+ color: #FFFFFF;
2636
+ text-shadow: none;
2637
+ background-image: none;
2638
+ }
2639
+ .ui.teal.button {
2640
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2641
+ }
2642
+ .ui.teal.buttons .button:hover,
2643
+ .ui.teal.button:hover {
2644
+ background-color: #009c95;
2645
+ color: #FFFFFF;
2646
+ text-shadow: none;
2647
+ }
2648
+ .ui.teal.buttons .button:focus,
2649
+ .ui.teal.button:focus {
2650
+ background-color: #008c86;
2651
+ color: #FFFFFF;
2652
+ text-shadow: none;
2653
+ }
2654
+ .ui.teal.buttons .button:active,
2655
+ .ui.teal.button:active {
2656
+ background-color: #00827c;
2657
+ color: #FFFFFF;
2658
+ text-shadow: none;
2659
+ }
2660
+ .ui.teal.buttons .active.button,
2661
+ .ui.teal.buttons .active.button:active,
2662
+ .ui.teal.active.button,
2663
+ .ui.teal.button .active.button:active {
2664
+ background-color: #009c95;
2665
+ color: #FFFFFF;
2666
+ text-shadow: none;
2667
+ }
2668
+
2669
+ /* Basic */
2670
+ .ui.basic.teal.buttons .button,
2671
+ .ui.basic.teal.button {
2672
+ box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
2673
+ color: #00B5AD !important;
2674
+ }
2675
+ .ui.basic.teal.buttons .button:hover,
2676
+ .ui.basic.teal.button:hover {
2677
+ background: transparent !important;
2678
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2679
+ color: #009c95 !important;
2680
+ }
2681
+ .ui.basic.teal.buttons .button:focus,
2682
+ .ui.basic.teal.button:focus {
2683
+ background: transparent !important;
2684
+ box-shadow: 0px 0px 0px 1px #008c86 inset !important;
2685
+ color: #009c95 !important;
2686
+ }
2687
+ .ui.basic.teal.buttons .active.button,
2688
+ .ui.basic.teal.active.button {
2689
+ background: transparent !important;
2690
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2691
+ color: #00827c !important;
2692
+ }
2693
+ .ui.basic.teal.buttons .button:active,
2694
+ .ui.basic.teal.button:active {
2695
+ box-shadow: 0px 0px 0px 1px #00827c inset !important;
2696
+ color: #00827c !important;
2697
+ }
2698
+ .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
2699
+ margin-left: -1px;
2700
+ }
2701
+
2702
+ /* Inverted */
2703
+ .ui.inverted.teal.buttons .button,
2704
+ .ui.inverted.teal.button {
2705
+ background-color: transparent;
2706
+ box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
2707
+ color: #6DFFFF;
2708
+ }
2709
+ .ui.inverted.teal.buttons .button:hover,
2710
+ .ui.inverted.teal.button:hover,
2711
+ .ui.inverted.teal.buttons .button:focus,
2712
+ .ui.inverted.teal.button:focus,
2713
+ .ui.inverted.teal.buttons .button.active,
2714
+ .ui.inverted.teal.button.active,
2715
+ .ui.inverted.teal.buttons .button:active,
2716
+ .ui.inverted.teal.button:active {
2717
+ box-shadow: none !important;
2718
+ color: rgba(0, 0, 0, 0.6);
2719
+ }
2720
+ .ui.inverted.teal.buttons .button:hover,
2721
+ .ui.inverted.teal.button:hover {
2722
+ background-color: #54ffff;
2723
+ }
2724
+ .ui.inverted.teal.buttons .button:focus,
2725
+ .ui.inverted.teal.button:focus {
2726
+ background-color: #44ffff;
2727
+ }
2728
+ .ui.inverted.teal.buttons .active.button,
2729
+ .ui.inverted.teal.active.button {
2730
+ background-color: #54ffff;
2731
+ }
2732
+ .ui.inverted.teal.buttons .button:active,
2733
+ .ui.inverted.teal.button:active {
2734
+ background-color: #3affff;
2735
+ }
2736
+
2737
+ /* Inverted Basic */
2738
+ .ui.inverted.teal.basic.buttons .button,
2739
+ .ui.inverted.teal.buttons .basic.button,
2740
+ .ui.inverted.teal.basic.button {
2741
+ background-color: transparent;
2742
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2743
+ color: #FFFFFF !important;
2744
+ }
2745
+ .ui.inverted.teal.basic.buttons .button:hover,
2746
+ .ui.inverted.teal.buttons .basic.button:hover,
2747
+ .ui.inverted.teal.basic.button:hover {
2748
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2749
+ color: #6DFFFF !important;
2750
+ }
2751
+ .ui.inverted.teal.basic.buttons .button:focus,
2752
+ .ui.inverted.teal.basic.buttons .button:focus,
2753
+ .ui.inverted.teal.basic.button:focus {
2754
+ box-shadow: 0px 0px 0px 2px #44ffff inset !important;
2755
+ color: #6DFFFF !important;
2756
+ }
2757
+ .ui.inverted.teal.basic.buttons .active.button,
2758
+ .ui.inverted.teal.buttons .basic.active.button,
2759
+ .ui.inverted.teal.basic.active.button {
2760
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2761
+ color: #6DFFFF !important;
2762
+ }
2763
+ .ui.inverted.teal.basic.buttons .button:active,
2764
+ .ui.inverted.teal.buttons .basic.button:active,
2765
+ .ui.inverted.teal.basic.button:active {
2766
+ box-shadow: 0px 0px 0px 2px #3affff inset !important;
2767
+ color: #6DFFFF !important;
2768
+ }
2769
+
2770
+ /*--- Olive ---*/
2771
+
2772
+ .ui.olive.buttons .button,
2773
+ .ui.olive.button {
2774
+ background-color: #B5CC18;
2775
+ color: #FFFFFF;
2776
+ text-shadow: none;
2777
+ background-image: none;
2778
+ }
2779
+ .ui.olive.button {
2780
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2781
+ }
2782
+ .ui.olive.buttons .button:hover,
2783
+ .ui.olive.button:hover {
2784
+ background-color: #a7bd0d;
2785
+ color: #FFFFFF;
2786
+ text-shadow: none;
2787
+ }
2788
+ .ui.olive.buttons .button:focus,
2789
+ .ui.olive.button:focus {
2790
+ background-color: #a0b605;
2791
+ color: #FFFFFF;
2792
+ text-shadow: none;
2793
+ }
2794
+ .ui.olive.buttons .button:active,
2795
+ .ui.olive.button:active {
2796
+ background-color: #8d9e13;
2797
+ color: #FFFFFF;
2798
+ text-shadow: none;
2799
+ }
2800
+ .ui.olive.buttons .active.button,
2801
+ .ui.olive.buttons .active.button:active,
2802
+ .ui.olive.active.button,
2803
+ .ui.olive.button .active.button:active {
2804
+ background-color: #aac109;
2805
+ color: #FFFFFF;
2806
+ text-shadow: none;
2807
+ }
2808
+
2809
+ /* Basic */
2810
+ .ui.basic.olive.buttons .button,
2811
+ .ui.basic.olive.button {
2812
+ box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
2813
+ color: #B5CC18 !important;
2814
+ }
2815
+ .ui.basic.olive.buttons .button:hover,
2816
+ .ui.basic.olive.button:hover {
2817
+ background: transparent !important;
2818
+ box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
2819
+ color: #a7bd0d !important;
2820
+ }
2821
+ .ui.basic.olive.buttons .button:focus,
2822
+ .ui.basic.olive.button:focus {
2823
+ background: transparent !important;
2824
+ box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
2825
+ color: #a7bd0d !important;
2826
+ }
2827
+ .ui.basic.olive.buttons .active.button,
2828
+ .ui.basic.olive.active.button {
2829
+ background: transparent !important;
2830
+ box-shadow: 0px 0px 0px 1px #aac109 inset !important;
2831
+ color: #8d9e13 !important;
2832
+ }
2833
+ .ui.basic.olive.buttons .button:active,
2834
+ .ui.basic.olive.button:active {
2835
+ box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
2836
+ color: #8d9e13 !important;
2837
+ }
2838
+ .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
2839
+ margin-left: -1px;
2840
+ }
2841
+
2842
+ /* Inverted */
2843
+ .ui.inverted.olive.buttons .button,
2844
+ .ui.inverted.olive.button {
2845
+ background-color: transparent;
2846
+ box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
2847
+ color: #D9E778;
2848
+ }
2849
+ .ui.inverted.olive.buttons .button:hover,
2850
+ .ui.inverted.olive.button:hover,
2851
+ .ui.inverted.olive.buttons .button:focus,
2852
+ .ui.inverted.olive.button:focus,
2853
+ .ui.inverted.olive.buttons .button.active,
2854
+ .ui.inverted.olive.button.active,
2855
+ .ui.inverted.olive.buttons .button:active,
2856
+ .ui.inverted.olive.button:active {
2857
+ box-shadow: none !important;
2858
+ color: rgba(0, 0, 0, 0.6);
2859
+ }
2860
+ .ui.inverted.olive.buttons .button:hover,
2861
+ .ui.inverted.olive.button:hover {
2862
+ background-color: #d8ea5c;
2863
+ }
2864
+ .ui.inverted.olive.buttons .button:focus,
2865
+ .ui.inverted.olive.button:focus {
2866
+ background-color: #daef47;
2867
+ }
2868
+ .ui.inverted.olive.buttons .active.button,
2869
+ .ui.inverted.olive.active.button {
2870
+ background-color: #daed59;
2871
+ }
2872
+ .ui.inverted.olive.buttons .button:active,
2873
+ .ui.inverted.olive.button:active {
2874
+ background-color: #cddf4d;
2875
+ }
2876
+
2877
+ /* Inverted Basic */
2878
+ .ui.inverted.olive.basic.buttons .button,
2879
+ .ui.inverted.olive.buttons .basic.button,
2880
+ .ui.inverted.olive.basic.button {
2881
+ background-color: transparent;
2882
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2883
+ color: #FFFFFF !important;
2884
+ }
2885
+ .ui.inverted.olive.basic.buttons .button:hover,
2886
+ .ui.inverted.olive.buttons .basic.button:hover,
2887
+ .ui.inverted.olive.basic.button:hover {
2888
+ box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
2889
+ color: #D9E778 !important;
2890
+ }
2891
+ .ui.inverted.olive.basic.buttons .button:focus,
2892
+ .ui.inverted.olive.basic.buttons .button:focus,
2893
+ .ui.inverted.olive.basic.button:focus {
2894
+ box-shadow: 0px 0px 0px 2px #daef47 inset !important;
2895
+ color: #D9E778 !important;
2896
+ }
2897
+ .ui.inverted.olive.basic.buttons .active.button,
2898
+ .ui.inverted.olive.buttons .basic.active.button,
2899
+ .ui.inverted.olive.basic.active.button {
2900
+ box-shadow: 0px 0px 0px 2px #daed59 inset !important;
2901
+ color: #D9E778 !important;
2902
+ }
2903
+ .ui.inverted.olive.basic.buttons .button:active,
2904
+ .ui.inverted.olive.buttons .basic.button:active,
2905
+ .ui.inverted.olive.basic.button:active {
2906
+ box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
2907
+ color: #D9E778 !important;
2908
+ }
2909
+
2910
+ /*--- Yellow ---*/
2911
+
2912
+ .ui.yellow.buttons .button,
2913
+ .ui.yellow.button {
2914
+ background-color: #FBBD08;
2915
+ color: #FFFFFF;
2916
+ text-shadow: none;
2917
+ background-image: none;
2918
+ }
2919
+ .ui.yellow.button {
2920
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2921
+ }
2922
+ .ui.yellow.buttons .button:hover,
2923
+ .ui.yellow.button:hover {
2924
+ background-color: #eaae00;
2925
+ color: #FFFFFF;
2926
+ text-shadow: none;
2927
+ }
2928
+ .ui.yellow.buttons .button:focus,
2929
+ .ui.yellow.button:focus {
2930
+ background-color: #daa300;
2931
+ color: #FFFFFF;
2932
+ text-shadow: none;
2933
+ }
2934
+ .ui.yellow.buttons .button:active,
2935
+ .ui.yellow.button:active {
2936
+ background-color: #cd9903;
2937
+ color: #FFFFFF;
2938
+ text-shadow: none;
2939
+ }
2940
+ .ui.yellow.buttons .active.button,
2941
+ .ui.yellow.buttons .active.button:active,
2942
+ .ui.yellow.active.button,
2943
+ .ui.yellow.button .active.button:active {
2944
+ background-color: #eaae00;
2945
+ color: #FFFFFF;
2946
+ text-shadow: none;
2947
+ }
2948
+
2949
+ /* Basic */
2950
+ .ui.basic.yellow.buttons .button,
2951
+ .ui.basic.yellow.button {
2952
+ box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
2953
+ color: #FBBD08 !important;
2954
+ }
2955
+ .ui.basic.yellow.buttons .button:hover,
2956
+ .ui.basic.yellow.button:hover {
2957
+ background: transparent !important;
2958
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2959
+ color: #eaae00 !important;
2960
+ }
2961
+ .ui.basic.yellow.buttons .button:focus,
2962
+ .ui.basic.yellow.button:focus {
2963
+ background: transparent !important;
2964
+ box-shadow: 0px 0px 0px 1px #daa300 inset !important;
2965
+ color: #eaae00 !important;
2966
+ }
2967
+ .ui.basic.yellow.buttons .active.button,
2968
+ .ui.basic.yellow.active.button {
2969
+ background: transparent !important;
2970
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2971
+ color: #cd9903 !important;
2972
+ }
2973
+ .ui.basic.yellow.buttons .button:active,
2974
+ .ui.basic.yellow.button:active {
2975
+ box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
2976
+ color: #cd9903 !important;
2977
+ }
2978
+ .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
2979
+ margin-left: -1px;
2980
+ }
2981
+
2982
+ /* Inverted */
2983
+ .ui.inverted.yellow.buttons .button,
2984
+ .ui.inverted.yellow.button {
2985
+ background-color: transparent;
2986
+ box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
2987
+ color: #FFE21F;
2988
+ }
2989
+ .ui.inverted.yellow.buttons .button:hover,
2990
+ .ui.inverted.yellow.button:hover,
2991
+ .ui.inverted.yellow.buttons .button:focus,
2992
+ .ui.inverted.yellow.button:focus,
2993
+ .ui.inverted.yellow.buttons .button.active,
2994
+ .ui.inverted.yellow.button.active,
2995
+ .ui.inverted.yellow.buttons .button:active,
2996
+ .ui.inverted.yellow.button:active {
2997
+ box-shadow: none !important;
2998
+ color: rgba(0, 0, 0, 0.6);
2999
+ }
3000
+ .ui.inverted.yellow.buttons .button:hover,
3001
+ .ui.inverted.yellow.button:hover {
3002
+ background-color: #ffdf05;
3003
+ }
3004
+ .ui.inverted.yellow.buttons .button:focus,
3005
+ .ui.inverted.yellow.button:focus {
3006
+ background-color: #f5d500;
3007
+ }
3008
+ .ui.inverted.yellow.buttons .active.button,
3009
+ .ui.inverted.yellow.active.button {
3010
+ background-color: #ffdf05;
3011
+ }
3012
+ .ui.inverted.yellow.buttons .button:active,
3013
+ .ui.inverted.yellow.button:active {
3014
+ background-color: #ebcd00;
3015
+ }
3016
+
3017
+ /* Inverted Basic */
3018
+ .ui.inverted.yellow.basic.buttons .button,
3019
+ .ui.inverted.yellow.buttons .basic.button,
3020
+ .ui.inverted.yellow.basic.button {
3021
+ background-color: transparent;
3022
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3023
+ color: #FFFFFF !important;
3024
+ }
3025
+ .ui.inverted.yellow.basic.buttons .button:hover,
3026
+ .ui.inverted.yellow.buttons .basic.button:hover,
3027
+ .ui.inverted.yellow.basic.button:hover {
3028
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3029
+ color: #FFE21F !important;
3030
+ }
3031
+ .ui.inverted.yellow.basic.buttons .button:focus,
3032
+ .ui.inverted.yellow.basic.buttons .button:focus,
3033
+ .ui.inverted.yellow.basic.button:focus {
3034
+ box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
3035
+ color: #FFE21F !important;
3036
+ }
3037
+ .ui.inverted.yellow.basic.buttons .active.button,
3038
+ .ui.inverted.yellow.buttons .basic.active.button,
3039
+ .ui.inverted.yellow.basic.active.button {
3040
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3041
+ color: #FFE21F !important;
3042
+ }
3043
+ .ui.inverted.yellow.basic.buttons .button:active,
3044
+ .ui.inverted.yellow.buttons .basic.button:active,
3045
+ .ui.inverted.yellow.basic.button:active {
3046
+ box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
3047
+ color: #FFE21F !important;
3048
+ }
3049
+
3050
+ /*-------------------
3051
+ Primary
3052
+ --------------------*/
3053
+
3054
+
3055
+ /*--- Standard ---*/
3056
+
3057
+ .ui.primary.buttons .button,
3058
+ .ui.primary.button {
3059
+ background-color: #2185D0;
3060
+ color: #FFFFFF;
3061
+ text-shadow: none;
3062
+ background-image: none;
3063
+ }
3064
+ .ui.primary.button {
3065
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3066
+ }
3067
+ .ui.primary.buttons .button:hover,
3068
+ .ui.primary.button:hover {
3069
+ background-color: #1678c2;
3070
+ color: #FFFFFF;
3071
+ text-shadow: none;
3072
+ }
3073
+ .ui.primary.buttons .button:focus,
3074
+ .ui.primary.button:focus {
3075
+ background-color: #0d71bb;
3076
+ color: #FFFFFF;
3077
+ text-shadow: none;
3078
+ }
3079
+ .ui.primary.buttons .button:active,
3080
+ .ui.primary.button:active {
3081
+ background-color: #1a69a4;
3082
+ color: #FFFFFF;
3083
+ text-shadow: none;
3084
+ }
3085
+ .ui.primary.buttons .active.button,
3086
+ .ui.primary.buttons .active.button:active,
3087
+ .ui.primary.active.button,
3088
+ .ui.primary.button .active.button:active {
3089
+ background-color: #1279c6;
3090
+ color: #FFFFFF;
3091
+ text-shadow: none;
3092
+ }
3093
+
3094
+ /* Basic */
3095
+ .ui.basic.primary.buttons .button,
3096
+ .ui.basic.primary.button {
3097
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
3098
+ color: #2185D0 !important;
3099
+ }
3100
+ .ui.basic.primary.buttons .button:hover,
3101
+ .ui.basic.primary.button:hover {
3102
+ background: transparent !important;
3103
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
3104
+ color: #1678c2 !important;
3105
+ }
3106
+ .ui.basic.primary.buttons .button:focus,
3107
+ .ui.basic.primary.button:focus {
3108
+ background: transparent !important;
3109
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
3110
+ color: #1678c2 !important;
3111
+ }
3112
+ .ui.basic.primary.buttons .active.button,
3113
+ .ui.basic.primary.active.button {
3114
+ background: transparent !important;
3115
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
3116
+ color: #1a69a4 !important;
3117
+ }
3118
+ .ui.basic.primary.buttons .button:active,
3119
+ .ui.basic.primary.button:active {
3120
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
3121
+ color: #1a69a4 !important;
3122
+ }
3123
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3124
+ margin-left: -1px;
3125
+ }
3126
+
3127
+ /*-------------------
3128
+ Secondary
3129
+ --------------------*/
3130
+
3131
+
3132
+ /* Standard */
3133
+ .ui.secondary.buttons .button,
3134
+ .ui.secondary.button {
3135
+ background-color: #1B1C1D;
3136
+ color: #FFFFFF;
3137
+ text-shadow: none;
3138
+ background-image: none;
3139
+ }
3140
+ .ui.secondary.button {
3141
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3142
+ }
3143
+ .ui.secondary.buttons .button:hover,
3144
+ .ui.secondary.button:hover {
3145
+ background-color: #27292a;
3146
+ color: #FFFFFF;
3147
+ text-shadow: none;
3148
+ }
3149
+ .ui.secondary.buttons .button:focus,
3150
+ .ui.secondary.button:focus {
3151
+ background-color: #2e3032;
3152
+ color: #FFFFFF;
3153
+ text-shadow: none;
3154
+ }
3155
+ .ui.secondary.buttons .button:active,
3156
+ .ui.secondary.button:active {
3157
+ background-color: #343637;
3158
+ color: #FFFFFF;
3159
+ text-shadow: none;
3160
+ }
3161
+ .ui.secondary.buttons .active.button,
3162
+ .ui.secondary.buttons .active.button:active,
3163
+ .ui.secondary.active.button,
3164
+ .ui.secondary.button .active.button:active {
3165
+ background-color: #27292a;
3166
+ color: #FFFFFF;
3167
+ text-shadow: none;
3168
+ }
3169
+
3170
+ /* Basic */
3171
+ .ui.basic.secondary.buttons .button,
3172
+ .ui.basic.secondary.button {
3173
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
3174
+ color: #1B1C1D !important;
3175
+ }
3176
+ .ui.basic.secondary.buttons .button:hover,
3177
+ .ui.basic.secondary.button:hover {
3178
+ background: transparent !important;
3179
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3180
+ color: #27292a !important;
3181
+ }
3182
+ .ui.basic.secondary.buttons .button:focus,
3183
+ .ui.basic.secondary.button:focus {
3184
+ background: transparent !important;
3185
+ box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
3186
+ color: #27292a !important;
3187
+ }
3188
+ .ui.basic.secondary.buttons .active.button,
3189
+ .ui.basic.secondary.active.button {
3190
+ background: transparent !important;
3191
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3192
+ color: #343637 !important;
3193
+ }
3194
+ .ui.basic.secondary.buttons .button:active,
3195
+ .ui.basic.secondary.button:active {
3196
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
3197
+ color: #343637 !important;
3198
+ }
3199
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3200
+ margin-left: -1px;
3201
+ }
3202
+
3203
+ /*---------------
3204
+ Positive
3205
+ ----------------*/
3206
+
3207
+
3208
+ /* Standard */
3209
+ .ui.positive.buttons .button,
3210
+ .ui.positive.button {
3211
+ background-color: #21BA45;
3212
+ color: #FFFFFF;
3213
+ text-shadow: none;
3214
+ background-image: none;
3215
+ }
3216
+ .ui.positive.button {
3217
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3218
+ }
3219
+ .ui.positive.buttons .button:hover,
3220
+ .ui.positive.button:hover {
3221
+ background-color: #16ab39;
3222
+ color: #FFFFFF;
3223
+ text-shadow: none;
3224
+ }
3225
+ .ui.positive.buttons .button:focus,
3226
+ .ui.positive.button:focus {
3227
+ background-color: #0ea432;
3228
+ color: #FFFFFF;
3229
+ text-shadow: none;
3230
+ }
3231
+ .ui.positive.buttons .button:active,
3232
+ .ui.positive.button:active {
3233
+ background-color: #198f35;
3234
+ color: #FFFFFF;
3235
+ text-shadow: none;
3236
+ }
3237
+ .ui.positive.buttons .active.button,
3238
+ .ui.positive.buttons .active.button:active,
3239
+ .ui.positive.active.button,
3240
+ .ui.positive.button .active.button:active {
3241
+ background-color: #13ae38;
3242
+ color: #FFFFFF;
3243
+ text-shadow: none;
3244
+ }
3245
+
3246
+ /* Basic */
3247
+ .ui.basic.positive.buttons .button,
3248
+ .ui.basic.positive.button {
3249
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
3250
+ color: #21BA45 !important;
3251
+ }
3252
+ .ui.basic.positive.buttons .button:hover,
3253
+ .ui.basic.positive.button:hover {
3254
+ background: transparent !important;
3255
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
3256
+ color: #16ab39 !important;
3257
+ }
3258
+ .ui.basic.positive.buttons .button:focus,
3259
+ .ui.basic.positive.button:focus {
3260
+ background: transparent !important;
3261
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
3262
+ color: #16ab39 !important;
3263
+ }
3264
+ .ui.basic.positive.buttons .active.button,
3265
+ .ui.basic.positive.active.button {
3266
+ background: transparent !important;
3267
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
3268
+ color: #198f35 !important;
3269
+ }
3270
+ .ui.basic.positive.buttons .button:active,
3271
+ .ui.basic.positive.button:active {
3272
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
3273
+ color: #198f35 !important;
3274
+ }
3275
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3276
+ margin-left: -1px;
3277
+ }
3278
+
3279
+ /*---------------
3280
+ Negative
3281
+ ----------------*/
3282
+
3283
+
3284
+ /* Standard */
3285
+ .ui.negative.buttons .button,
3286
+ .ui.negative.button {
3287
+ background-color: #DB2828;
3288
+ color: #FFFFFF;
3289
+ text-shadow: none;
3290
+ background-image: none;
3291
+ }
3292
+ .ui.negative.button {
3293
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3294
+ }
3295
+ .ui.negative.buttons .button:hover,
3296
+ .ui.negative.button:hover {
3297
+ background-color: #d01919;
3298
+ color: #FFFFFF;
3299
+ text-shadow: none;
3300
+ }
3301
+ .ui.negative.buttons .button:focus,
3302
+ .ui.negative.button:focus {
3303
+ background-color: #ca1010;
3304
+ color: #FFFFFF;
3305
+ text-shadow: none;
3306
+ }
3307
+ .ui.negative.buttons .button:active,
3308
+ .ui.negative.button:active {
3309
+ background-color: #b21e1e;
3310
+ color: #FFFFFF;
3311
+ text-shadow: none;
3312
+ }
3313
+ .ui.negative.buttons .active.button,
3314
+ .ui.negative.buttons .active.button:active,
3315
+ .ui.negative.active.button,
3316
+ .ui.negative.button .active.button:active {
3317
+ background-color: #d41515;
3318
+ color: #FFFFFF;
3319
+ text-shadow: none;
3320
+ }
3321
+
3322
+ /* Basic */
3323
+ .ui.basic.negative.buttons .button,
3324
+ .ui.basic.negative.button {
3325
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
3326
+ color: #DB2828 !important;
3327
+ }
3328
+ .ui.basic.negative.buttons .button:hover,
3329
+ .ui.basic.negative.button:hover {
3330
+ background: transparent !important;
3331
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3332
+ color: #d01919 !important;
3333
+ }
3334
+ .ui.basic.negative.buttons .button:focus,
3335
+ .ui.basic.negative.button:focus {
3336
+ background: transparent !important;
3337
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3338
+ color: #d01919 !important;
3339
+ }
3340
+ .ui.basic.negative.buttons .active.button,
3341
+ .ui.basic.negative.active.button {
3342
+ background: transparent !important;
3343
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3344
+ color: #b21e1e !important;
3345
+ }
3346
+ .ui.basic.negative.buttons .button:active,
3347
+ .ui.basic.negative.button:active {
3348
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3349
+ color: #b21e1e !important;
3350
+ }
3351
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3352
+ margin-left: -1px;
3353
+ }
3354
+
3355
+
3356
+ /*******************************
3357
+ Groups
3358
+ *******************************/
3359
+
3360
+ .ui.buttons {
3361
+ display: -webkit-inline-box;
3362
+ display: -ms-inline-flexbox;
3363
+ display: inline-flex;
3364
+ -webkit-box-orient: horizontal;
3365
+ -webkit-box-direction: normal;
3366
+ -ms-flex-direction: row;
3367
+ flex-direction: row;
3368
+ font-size: 0em;
3369
+ vertical-align: baseline;
3370
+ margin: 0em 0.25em 0em 0em;
3371
+ }
3372
+ .ui.buttons:not(.basic):not(.inverted) {
3373
+ box-shadow: none;
3374
+ }
3375
+
3376
+ /* Clearfix */
3377
+ .ui.buttons:after {
3378
+ content: ".";
3379
+ display: block;
3380
+ height: 0;
3381
+ clear: both;
3382
+ visibility: hidden;
3383
+ }
3384
+
3385
+ /* Standard Group */
3386
+ .ui.buttons .button {
3387
+ -webkit-box-flex: 1;
3388
+ -ms-flex: 1 0 auto;
3389
+ flex: 1 0 auto;
3390
+ margin: 0em;
3391
+ border-radius: 0em;
3392
+ margin: 0px 0px 0px 0px;
3393
+ }
3394
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
3395
+ .ui.buttons:not(.basic):not(.inverted) > .button {
3396
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3397
+ }
3398
+ .ui.buttons .button:first-child {
3399
+ border-left: none;
3400
+ margin-left: 0em;
3401
+ border-top-left-radius: 0.28571429rem;
3402
+ border-bottom-left-radius: 0.28571429rem;
3403
+ }
3404
+ .ui.buttons .button:last-child {
3405
+ border-top-right-radius: 0.28571429rem;
3406
+ border-bottom-right-radius: 0.28571429rem;
3407
+ }
3408
+
3409
+ /* Vertical Style */
3410
+ .ui.vertical.buttons {
3411
+ display: -webkit-inline-box;
3412
+ display: -ms-inline-flexbox;
3413
+ display: inline-flex;
3414
+ -webkit-box-orient: vertical;
3415
+ -webkit-box-direction: normal;
3416
+ -ms-flex-direction: column;
3417
+ flex-direction: column;
3418
+ }
3419
+ .ui.vertical.buttons .button {
3420
+ display: block;
3421
+ float: none;
3422
+ width: 100%;
3423
+ margin: 0px 0px 0px 0px;
3424
+ box-shadow: none;
3425
+ border-radius: 0em;
3426
+ }
3427
+ .ui.vertical.buttons .button:first-child {
3428
+ border-top-left-radius: 0.28571429rem;
3429
+ border-top-right-radius: 0.28571429rem;
3430
+ }
3431
+ .ui.vertical.buttons .button:last-child {
3432
+ margin-bottom: 0px;
3433
+ border-bottom-left-radius: 0.28571429rem;
3434
+ border-bottom-right-radius: 0.28571429rem;
3435
+ }
3436
+ .ui.vertical.buttons .button:only-child {
3437
+ border-radius: 0.28571429rem;
3438
+ }
3439
+
3440
+
3441
+ /*******************************
3442
+ Theme Overrides
3443
+ *******************************/
3444
+
3445
+
3446
+
3447
+ /*******************************
3448
+ Site Overrides
3449
+ *******************************/
3450
+