vapid 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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,9 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - List
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.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0 0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{padding:.14285714em 0;line-height:inherit}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.07142857em;padding-right:.28571429em;vertical-align:top;-webkit-transition:color .1s ease;transition:color .1s ease}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;vertical-align:top}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.14285714em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.87)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list .list>.item a,.ui.list>.item a{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#4183c4}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#1e70bf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#4183c4!important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#1e70bf!important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(40,40,40,.3)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(225,225,225,.3)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:rgba(0,0,0,.87)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(255,255,255,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(255,255,255,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#1e70bf}.ui.inverted.list .item a:not(.ui){color:rgba(255,255,255,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#1e70bf!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.1s color ease;transition:.1s color ease}.ui.link.list .item a:not(.ui):hover,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.link.list .item a:not(.ui):active,.ui.link.list a.item:active{color:rgba(0,0,0,.9)}.ui.link.list .active.item,.ui.link.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .item a:not(.ui):hover,.ui.inverted.link.list a.item:hover{color:#fff}.ui.inverted.link.list .item a:not(.ui):active,.ui.inverted.link.list a.item:active{color:#fff}.ui.inverted.link.list .active.item a:not(.ui),.ui.inverted.link.list a.active.item{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em .5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.1s color ease,.1s padding-left ease,.1s background-color ease;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.inverted.selection.list>.item.active{background:rgba(255,255,255,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{-webkit-transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s;transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;font-weight:400;margin-left:-1.25rem;content:'•';opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list>a.item:before,.ui.bulleted.list>a.item:before,ul.ui.list li:before{color:rgba(0,0,0,.87)}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1.25rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.75rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item::before,ul.ui.horizontal.bulleted.list li::before{color:rgba(0,0,0,.87)}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered, ".") " ";text-align:right;color:rgba(0,0,0,.87);vertical-align:middle;opacity:.8}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:rgba(255,255,255,.7)}.ui.ordered.list>.item[data-value],.ui.ordered.list>.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .list>.item{border-top:none}.ui.divided.list .item .list>.item{border-top:none}.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item:not(:first-child){padding-left:.5em}.ui.divided.horizontal.list>.item:not(:last-child){padding-right:.5em}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(255,255,255,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.21428571em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(34,36,38,.15)}.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.1)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item{border-color:1px solid rgba(255,255,255,.1)}.ui.relaxed.list:not(.horizontal)>.item:not(:first-child){padding-top:.42857143em}.ui.relaxed.list:not(.horizontal)>.item:not(:last-child){padding-bottom:.42857143em}.ui.horizontal.relaxed.list .list>.item:not(:first-child),.ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}.ui.horizontal.relaxed.list .list>.item:not(:last-child),.ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:.85714286em}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:.85714286em}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}.ui.mini.list{font-size:.78571429em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.78571429rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}
@@ -0,0 +1,347 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Loader
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
+ Loader
14
+ *******************************/
15
+
16
+
17
+ /* Standard Size */
18
+ .ui.loader {
19
+ display: none;
20
+ position: absolute;
21
+ top: 50%;
22
+ left: 50%;
23
+ margin: 0px;
24
+ text-align: center;
25
+ z-index: 1000;
26
+ -webkit-transform: translateX(-50%) translateY(-50%);
27
+ transform: translateX(-50%) translateY(-50%);
28
+ }
29
+
30
+ /* Static Shape */
31
+ .ui.loader:before {
32
+ position: absolute;
33
+ content: '';
34
+ top: 0%;
35
+ left: 50%;
36
+ width: 100%;
37
+ height: 100%;
38
+ border-radius: 500rem;
39
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
40
+ }
41
+
42
+ /* Active Shape */
43
+ .ui.loader:after {
44
+ position: absolute;
45
+ content: '';
46
+ top: 0%;
47
+ left: 50%;
48
+ width: 100%;
49
+ height: 100%;
50
+ -webkit-animation: loader 0.6s linear;
51
+ animation: loader 0.6s linear;
52
+ -webkit-animation-iteration-count: infinite;
53
+ animation-iteration-count: infinite;
54
+ border-radius: 500rem;
55
+ border-color: #767676 transparent transparent;
56
+ border-style: solid;
57
+ border-width: 0.2em;
58
+ box-shadow: 0px 0px 0px 1px transparent;
59
+ }
60
+
61
+ /* Active Animation */
62
+ @-webkit-keyframes loader {
63
+ from {
64
+ -webkit-transform: rotate(0deg);
65
+ transform: rotate(0deg);
66
+ }
67
+ to {
68
+ -webkit-transform: rotate(360deg);
69
+ transform: rotate(360deg);
70
+ }
71
+ }
72
+ @keyframes loader {
73
+ from {
74
+ -webkit-transform: rotate(0deg);
75
+ transform: rotate(0deg);
76
+ }
77
+ to {
78
+ -webkit-transform: rotate(360deg);
79
+ transform: rotate(360deg);
80
+ }
81
+ }
82
+
83
+ /* Sizes */
84
+ .ui.mini.loader:before,
85
+ .ui.mini.loader:after {
86
+ width: 1rem;
87
+ height: 1rem;
88
+ margin: 0em 0em 0em -0.5rem;
89
+ }
90
+ .ui.tiny.loader:before,
91
+ .ui.tiny.loader:after {
92
+ width: 1.14285714rem;
93
+ height: 1.14285714rem;
94
+ margin: 0em 0em 0em -0.57142857rem;
95
+ }
96
+ .ui.small.loader:before,
97
+ .ui.small.loader:after {
98
+ width: 1.71428571rem;
99
+ height: 1.71428571rem;
100
+ margin: 0em 0em 0em -0.85714286rem;
101
+ }
102
+ .ui.loader:before,
103
+ .ui.loader:after {
104
+ width: 2.28571429rem;
105
+ height: 2.28571429rem;
106
+ margin: 0em 0em 0em -1.14285714rem;
107
+ }
108
+ .ui.large.loader:before,
109
+ .ui.large.loader:after {
110
+ width: 3.42857143rem;
111
+ height: 3.42857143rem;
112
+ margin: 0em 0em 0em -1.71428571rem;
113
+ }
114
+ .ui.big.loader:before,
115
+ .ui.big.loader:after {
116
+ width: 3.71428571rem;
117
+ height: 3.71428571rem;
118
+ margin: 0em 0em 0em -1.85714286rem;
119
+ }
120
+ .ui.huge.loader:before,
121
+ .ui.huge.loader:after {
122
+ width: 4.14285714rem;
123
+ height: 4.14285714rem;
124
+ margin: 0em 0em 0em -2.07142857rem;
125
+ }
126
+ .ui.massive.loader:before,
127
+ .ui.massive.loader:after {
128
+ width: 4.57142857rem;
129
+ height: 4.57142857rem;
130
+ margin: 0em 0em 0em -2.28571429rem;
131
+ }
132
+
133
+ /*-------------------
134
+ Coupling
135
+ --------------------*/
136
+
137
+
138
+ /* Show inside active dimmer */
139
+ .ui.dimmer .loader {
140
+ display: block;
141
+ }
142
+
143
+ /* Black Dimmer */
144
+ .ui.dimmer .ui.loader {
145
+ color: rgba(255, 255, 255, 0.9);
146
+ }
147
+ .ui.dimmer .ui.loader:before {
148
+ border-color: rgba(255, 255, 255, 0.15);
149
+ }
150
+ .ui.dimmer .ui.loader:after {
151
+ border-color: #FFFFFF transparent transparent;
152
+ }
153
+
154
+ /* White Dimmer (Inverted) */
155
+ .ui.inverted.dimmer .ui.loader {
156
+ color: rgba(0, 0, 0, 0.87);
157
+ }
158
+ .ui.inverted.dimmer .ui.loader:before {
159
+ border-color: rgba(0, 0, 0, 0.1);
160
+ }
161
+ .ui.inverted.dimmer .ui.loader:after {
162
+ border-color: #767676 transparent transparent;
163
+ }
164
+
165
+
166
+ /*******************************
167
+ Types
168
+ *******************************/
169
+
170
+
171
+ /*-------------------
172
+ Text
173
+ --------------------*/
174
+
175
+ .ui.text.loader {
176
+ width: auto !important;
177
+ height: auto !important;
178
+ text-align: center;
179
+ font-style: normal;
180
+ }
181
+
182
+
183
+ /*******************************
184
+ States
185
+ *******************************/
186
+
187
+ .ui.indeterminate.loader:after {
188
+ -webkit-animation-direction: reverse;
189
+ animation-direction: reverse;
190
+ -webkit-animation-duration: 1.2s;
191
+ animation-duration: 1.2s;
192
+ }
193
+ .ui.loader.active,
194
+ .ui.loader.visible {
195
+ display: block;
196
+ }
197
+ .ui.loader.disabled,
198
+ .ui.loader.hidden {
199
+ display: none;
200
+ }
201
+
202
+
203
+ /*******************************
204
+ Variations
205
+ *******************************/
206
+
207
+
208
+ /*-------------------
209
+ Sizes
210
+ --------------------*/
211
+
212
+
213
+ /* Loader */
214
+ .ui.inverted.dimmer .ui.mini.loader,
215
+ .ui.mini.loader {
216
+ width: 1rem;
217
+ height: 1rem;
218
+ font-size: 0.78571429em;
219
+ }
220
+ .ui.inverted.dimmer .ui.tiny.loader,
221
+ .ui.tiny.loader {
222
+ width: 1.14285714rem;
223
+ height: 1.14285714rem;
224
+ font-size: 0.85714286em;
225
+ }
226
+ .ui.inverted.dimmer .ui.small.loader,
227
+ .ui.small.loader {
228
+ width: 1.71428571rem;
229
+ height: 1.71428571rem;
230
+ font-size: 0.92857143em;
231
+ }
232
+ .ui.inverted.dimmer .ui.loader,
233
+ .ui.loader {
234
+ width: 2.28571429rem;
235
+ height: 2.28571429rem;
236
+ font-size: 1em;
237
+ }
238
+ .ui.inverted.dimmer .ui.large.loader,
239
+ .ui.large.loader {
240
+ width: 3.42857143rem;
241
+ height: 3.42857143rem;
242
+ font-size: 1.14285714em;
243
+ }
244
+ .ui.inverted.dimmer .ui.big.loader,
245
+ .ui.big.loader {
246
+ width: 3.71428571rem;
247
+ height: 3.71428571rem;
248
+ font-size: 1.28571429em;
249
+ }
250
+ .ui.inverted.dimmer .ui.huge.loader,
251
+ .ui.huge.loader {
252
+ width: 4.14285714rem;
253
+ height: 4.14285714rem;
254
+ font-size: 1.42857143em;
255
+ }
256
+ .ui.inverted.dimmer .ui.massive.loader,
257
+ .ui.massive.loader {
258
+ width: 4.57142857rem;
259
+ height: 4.57142857rem;
260
+ font-size: 1.71428571em;
261
+ }
262
+
263
+ /* Text Loader */
264
+ .ui.mini.text.loader {
265
+ min-width: 1rem;
266
+ padding-top: 1.78571429rem;
267
+ }
268
+ .ui.tiny.text.loader {
269
+ min-width: 1.14285714rem;
270
+ padding-top: 1.92857143rem;
271
+ }
272
+ .ui.small.text.loader {
273
+ min-width: 1.71428571rem;
274
+ padding-top: 2.5rem;
275
+ }
276
+ .ui.text.loader {
277
+ min-width: 2.28571429rem;
278
+ padding-top: 3.07142857rem;
279
+ }
280
+ .ui.large.text.loader {
281
+ min-width: 3.42857143rem;
282
+ padding-top: 4.21428571rem;
283
+ }
284
+ .ui.big.text.loader {
285
+ min-width: 3.71428571rem;
286
+ padding-top: 4.5rem;
287
+ }
288
+ .ui.huge.text.loader {
289
+ min-width: 4.14285714rem;
290
+ padding-top: 4.92857143rem;
291
+ }
292
+ .ui.massive.text.loader {
293
+ min-width: 4.57142857rem;
294
+ padding-top: 5.35714286rem;
295
+ }
296
+
297
+ /*-------------------
298
+ Inverted
299
+ --------------------*/
300
+
301
+ .ui.inverted.loader {
302
+ color: rgba(255, 255, 255, 0.9);
303
+ }
304
+ .ui.inverted.loader:before {
305
+ border-color: rgba(255, 255, 255, 0.15);
306
+ }
307
+ .ui.inverted.loader:after {
308
+ border-top-color: #FFFFFF;
309
+ }
310
+
311
+ /*-------------------
312
+ Inline
313
+ --------------------*/
314
+
315
+ .ui.inline.loader {
316
+ position: relative;
317
+ vertical-align: middle;
318
+ margin: 0em;
319
+ left: 0em;
320
+ top: 0em;
321
+ -webkit-transform: none;
322
+ transform: none;
323
+ }
324
+ .ui.inline.loader.active,
325
+ .ui.inline.loader.visible {
326
+ display: inline-block;
327
+ }
328
+
329
+ /* Centered Inline */
330
+ .ui.centered.inline.loader.active,
331
+ .ui.centered.inline.loader.visible {
332
+ display: block;
333
+ margin-left: auto;
334
+ margin-right: auto;
335
+ }
336
+
337
+
338
+ /*******************************
339
+ Theme Overrides
340
+ *******************************/
341
+
342
+
343
+
344
+ /*******************************
345
+ Site Overrides
346
+ *******************************/
347
+
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Loader
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.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.mini.loader:after,.ui.mini.loader:before{width:1rem;height:1rem;margin:0 0 0 -.5rem}.ui.tiny.loader:after,.ui.tiny.loader:before{width:1.14285714rem;height:1.14285714rem;margin:0 0 0 -.57142857rem}.ui.small.loader:after,.ui.small.loader:before{width:1.71428571rem;height:1.71428571rem;margin:0 0 0 -.85714286rem}.ui.loader:after,.ui.loader:before{width:2.28571429rem;height:2.28571429rem;margin:0 0 0 -1.14285714rem}.ui.large.loader:after,.ui.large.loader:before{width:3.42857143rem;height:3.42857143rem;margin:0 0 0 -1.71428571rem}.ui.big.loader:after,.ui.big.loader:before{width:3.71428571rem;height:3.71428571rem;margin:0 0 0 -1.85714286rem}.ui.huge.loader:after,.ui.huge.loader:before{width:4.14285714rem;height:4.14285714rem;margin:0 0 0 -2.07142857rem}.ui.massive.loader:after,.ui.massive.loader:before{width:4.57142857rem;height:4.57142857rem;margin:0 0 0 -2.28571429rem}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1rem;height:1rem;font-size:.78571429em}.ui.inverted.dimmer .ui.tiny.loader,.ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:.85714286em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}.ui.inverted.dimmer .ui.large.loader,.ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}.ui.big.loader,.ui.inverted.dimmer .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}.ui.huge.loader,.ui.inverted.dimmer .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}.ui.inverted.dimmer .ui.massive.loader,.ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}.ui.mini.text.loader{min-width:1rem;padding-top:1.78571429rem}.ui.tiny.text.loader{min-width:1.14285714rem;padding-top:1.92857143rem}.ui.small.text.loader{min-width:1.71428571rem;padding-top:2.5rem}.ui.text.loader{min-width:2.28571429rem;padding-top:3.07142857rem}.ui.large.text.loader{min-width:3.42857143rem;padding-top:4.21428571rem}.ui.big.text.loader{min-width:3.71428571rem;padding-top:4.5rem}.ui.huge.text.loader{min-width:4.14285714rem;padding-top:4.92857143rem}.ui.massive.text.loader{min-width:4.57142857rem;padding-top:5.35714286rem}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}
@@ -0,0 +1,2002 @@
1
+ /*
2
+ * # Semantic - Menu
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2015 Contributor
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+ /*******************************
14
+ Standard
15
+ *******************************/
16
+
17
+
18
+ /*--------------
19
+ Menu
20
+ ---------------*/
21
+
22
+ .ui.menu {
23
+ display: -webkit-box;
24
+ display: -ms-flexbox;
25
+ display: flex;
26
+ margin: 1rem 0em;
27
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
28
+ background: #FFFFFF;
29
+ font-weight: normal;
30
+ border: 1px solid rgba(34, 36, 38, 0.15);
31
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
32
+ border-radius: 0.28571429rem;
33
+ min-height: 2.85714286em;
34
+ }
35
+ .ui.menu:after {
36
+ content: '';
37
+ display: block;
38
+ height: 0px;
39
+ clear: both;
40
+ visibility: hidden;
41
+ }
42
+ .ui.menu:first-child {
43
+ margin-top: 0rem;
44
+ }
45
+ .ui.menu:last-child {
46
+ margin-bottom: 0rem;
47
+ }
48
+
49
+ /*--------------
50
+ Sub-Menu
51
+ ---------------*/
52
+
53
+ .ui.menu .menu {
54
+ margin: 0em;
55
+ }
56
+ .ui.menu:not(.vertical) > .menu {
57
+ display: -webkit-box;
58
+ display: -ms-flexbox;
59
+ display: flex;
60
+ }
61
+
62
+ /*--------------
63
+ Item
64
+ ---------------*/
65
+
66
+ .ui.menu:not(.vertical) .item {
67
+ display: -webkit-box;
68
+ display: -ms-flexbox;
69
+ display: flex;
70
+ -webkit-box-align: center;
71
+ -ms-flex-align: center;
72
+ align-items: center;
73
+ }
74
+ .ui.menu .item {
75
+ position: relative;
76
+ vertical-align: middle;
77
+ line-height: 1;
78
+ text-decoration: none;
79
+ -webkit-tap-highlight-color: transparent;
80
+ -webkit-box-flex: 0;
81
+ -ms-flex: 0 0 auto;
82
+ flex: 0 0 auto;
83
+ -webkit-user-select: none;
84
+ -moz-user-select: none;
85
+ -ms-user-select: none;
86
+ user-select: none;
87
+ background: none;
88
+ padding: 0.92857143em 1.14285714em;
89
+ text-transform: none;
90
+ color: rgba(0, 0, 0, 0.87);
91
+ font-weight: normal;
92
+ -webkit-transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
93
+ transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
94
+ }
95
+ .ui.menu > .item:first-child {
96
+ border-radius: 0.28571429rem 0px 0px 0.28571429rem;
97
+ }
98
+
99
+ /* Border */
100
+ .ui.menu .item:before {
101
+ position: absolute;
102
+ content: '';
103
+ top: 0%;
104
+ right: 0px;
105
+ height: 100%;
106
+ width: 1px;
107
+ background: rgba(34, 36, 38, 0.1);
108
+ }
109
+
110
+ /*--------------
111
+ Text Content
112
+ ---------------*/
113
+
114
+ .ui.menu .text.item > *,
115
+ .ui.menu .item > a:not(.ui),
116
+ .ui.menu .item > p:only-child {
117
+ -webkit-user-select: text;
118
+ -moz-user-select: text;
119
+ -ms-user-select: text;
120
+ user-select: text;
121
+ line-height: 1.3;
122
+ }
123
+ .ui.menu .item > p:first-child {
124
+ margin-top: 0;
125
+ }
126
+ .ui.menu .item > p:last-child {
127
+ margin-bottom: 0;
128
+ }
129
+
130
+ /*--------------
131
+ Icons
132
+ ---------------*/
133
+
134
+ .ui.menu .item > i.icon {
135
+ opacity: 0.9;
136
+ float: none;
137
+ margin: 0em 0.35714286em 0em 0em;
138
+ }
139
+
140
+ /*--------------
141
+ Button
142
+ ---------------*/
143
+
144
+ .ui.menu:not(.vertical) .item > .button {
145
+ position: relative;
146
+ top: 0em;
147
+ margin: -0.5em 0em;
148
+ padding-bottom: 0.78571429em;
149
+ padding-top: 0.78571429em;
150
+ font-size: 1em;
151
+ }
152
+
153
+ /*----------------
154
+ Grid / Container
155
+ -----------------*/
156
+
157
+ .ui.menu > .grid,
158
+ .ui.menu > .container {
159
+ display: -webkit-box;
160
+ display: -ms-flexbox;
161
+ display: flex;
162
+ -webkit-box-align: inherit;
163
+ -ms-flex-align: inherit;
164
+ align-items: inherit;
165
+ -webkit-box-orient: vertical;
166
+ -webkit-box-direction: normal;
167
+ -ms-flex-direction: inherit;
168
+ flex-direction: inherit;
169
+ }
170
+
171
+ /*--------------
172
+ Inputs
173
+ ---------------*/
174
+
175
+ .ui.menu .item > .input {
176
+ width: 100%;
177
+ }
178
+ .ui.menu:not(.vertical) .item > .input {
179
+ position: relative;
180
+ top: 0em;
181
+ margin: -0.5em 0em;
182
+ }
183
+ .ui.menu .item > .input input {
184
+ font-size: 1em;
185
+ padding-top: 0.57142857em;
186
+ padding-bottom: 0.57142857em;
187
+ }
188
+
189
+ /*--------------
190
+ Header
191
+ ---------------*/
192
+
193
+ .ui.menu .header.item,
194
+ .ui.vertical.menu .header.item {
195
+ margin: 0em;
196
+ background: '';
197
+ text-transform: normal;
198
+ font-weight: bold;
199
+ }
200
+ .ui.vertical.menu .item > .header:not(.ui) {
201
+ margin: 0em 0em 0.5em;
202
+ font-size: 1em;
203
+ font-weight: bold;
204
+ }
205
+
206
+ /*--------------
207
+ Dropdowns
208
+ ---------------*/
209
+
210
+
211
+ /* Dropdown Icon */
212
+ .ui.menu .item > i.dropdown.icon {
213
+ padding: 0em;
214
+ float: right;
215
+ margin: 0em 0em 0em 1em;
216
+ }
217
+
218
+ /* Menu */
219
+ .ui.menu .dropdown.item .menu {
220
+ left: 0px;
221
+ min-width: calc(100% - 1px);
222
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
223
+ background: #FFFFFF;
224
+ margin: 0em 0px 0px;
225
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
226
+ -webkit-box-orient: vertical !important;
227
+ -webkit-box-direction: normal !important;
228
+ -ms-flex-direction: column !important;
229
+ flex-direction: column !important;
230
+ }
231
+
232
+ /* Menu Items */
233
+ .ui.menu .ui.dropdown .menu > .item {
234
+ margin: 0;
235
+ text-align: left;
236
+ font-size: 1em !important;
237
+ padding: 0.78571429em 1.14285714em !important;
238
+ background: transparent !important;
239
+ color: rgba(0, 0, 0, 0.87) !important;
240
+ text-transform: none !important;
241
+ font-weight: normal !important;
242
+ box-shadow: none !important;
243
+ -webkit-transition: none !important;
244
+ transition: none !important;
245
+ }
246
+ .ui.menu .ui.dropdown .menu > .item:hover {
247
+ background: rgba(0, 0, 0, 0.05) !important;
248
+ color: rgba(0, 0, 0, 0.95) !important;
249
+ }
250
+ .ui.menu .ui.dropdown .menu > .selected.item {
251
+ background: rgba(0, 0, 0, 0.05) !important;
252
+ color: rgba(0, 0, 0, 0.95) !important;
253
+ }
254
+ .ui.menu .ui.dropdown .menu > .active.item {
255
+ background: rgba(0, 0, 0, 0.03) !important;
256
+ font-weight: bold !important;
257
+ color: rgba(0, 0, 0, 0.95) !important;
258
+ }
259
+ .ui.menu .ui.dropdown.item .menu .item:not(.filtered) {
260
+ display: block;
261
+ }
262
+ .ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) {
263
+ display: inline-block;
264
+ font-size: 1em !important;
265
+ float: none;
266
+ margin: 0em 0.75em 0em 0em;
267
+ }
268
+
269
+ /* Secondary */
270
+ .ui.secondary.menu .dropdown.item > .menu,
271
+ .ui.text.menu .dropdown.item > .menu {
272
+ border-radius: 0.28571429rem;
273
+ margin-top: 0.35714286em;
274
+ }
275
+
276
+ /* Pointing */
277
+ .ui.menu .pointing.dropdown.item .menu {
278
+ margin-top: 0.75em;
279
+ }
280
+
281
+ /* Inverted */
282
+ .ui.inverted.menu .search.dropdown.item > .search,
283
+ .ui.inverted.menu .search.dropdown.item > .text {
284
+ color: rgba(255, 255, 255, 0.9);
285
+ }
286
+
287
+ /* Vertical */
288
+ .ui.vertical.menu .dropdown.item > .icon {
289
+ float: right;
290
+ content: "\f0da";
291
+ margin-left: 1em;
292
+ }
293
+ .ui.vertical.menu .dropdown.item .menu {
294
+ left: 100%;
295
+ min-width: 0;
296
+ margin: 0em 0em 0em 0em;
297
+ box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
298
+ border-radius: 0em 0.28571429rem 0.28571429rem 0.28571429rem;
299
+ }
300
+ .ui.vertical.menu .dropdown.item.upward .menu {
301
+ bottom: 0;
302
+ }
303
+ .ui.vertical.menu .dropdown.item:not(.upward) .menu {
304
+ top: 0;
305
+ }
306
+ .ui.vertical.menu .active.dropdown.item {
307
+ border-top-right-radius: 0em;
308
+ border-bottom-right-radius: 0em;
309
+ }
310
+ .ui.vertical.menu .dropdown.active.item {
311
+ box-shadow: none;
312
+ }
313
+
314
+ /* Evenly Divided */
315
+ .ui.item.menu .dropdown .menu .item {
316
+ width: 100%;
317
+ }
318
+
319
+ /*--------------
320
+ Labels
321
+ ---------------*/
322
+
323
+ .ui.menu .item > .label {
324
+ background: #999999;
325
+ color: #FFFFFF;
326
+ margin-left: 1em;
327
+ padding: 0.3em 0.78571429em;
328
+ }
329
+ .ui.vertical.menu .item > .label {
330
+ background: #999999;
331
+ color: #FFFFFF;
332
+ margin-top: -0.15em;
333
+ margin-bottom: -0.15em;
334
+ padding: 0.3em 0.78571429em;
335
+ }
336
+ .ui.menu .item > .floating.label {
337
+ padding: 0.3em 0.78571429em;
338
+ }
339
+
340
+ /*--------------
341
+ Images
342
+ ---------------*/
343
+
344
+ .ui.menu .item > img:not(.ui) {
345
+ display: inline-block;
346
+ vertical-align: middle;
347
+ margin: -0.3em 0em;
348
+ width: 2.5em;
349
+ }
350
+ .ui.vertical.menu .item > img:not(.ui):only-child {
351
+ display: block;
352
+ max-width: 100%;
353
+ width: auto;
354
+ }
355
+
356
+
357
+ /*******************************
358
+ Coupling
359
+ *******************************/
360
+
361
+
362
+ /*--------------
363
+ Sidebar
364
+ ---------------*/
365
+
366
+
367
+ /* Show vertical dividers below last */
368
+ .ui.vertical.sidebar.menu > .item:first-child:before {
369
+ display: block !important;
370
+ }
371
+ .ui.vertical.sidebar.menu > .item::before {
372
+ top: auto;
373
+ bottom: 0px;
374
+ }
375
+
376
+ /*--------------
377
+ Container
378
+ ---------------*/
379
+
380
+ @media only screen and (max-width: 767px) {
381
+ .ui.menu > .ui.container {
382
+ width: 100% !important;
383
+ margin-left: 0em !important;
384
+ margin-right: 0em !important;
385
+ }
386
+ }
387
+ @media only screen and (min-width: 768px) {
388
+ .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child {
389
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
390
+ }
391
+ }
392
+
393
+
394
+ /*******************************
395
+ States
396
+ *******************************/
397
+
398
+
399
+ /*--------------
400
+ Hover
401
+ ---------------*/
402
+
403
+ .ui.link.menu .item:hover,
404
+ .ui.menu .dropdown.item:hover,
405
+ .ui.menu .link.item:hover,
406
+ .ui.menu a.item:hover {
407
+ cursor: pointer;
408
+ background: rgba(0, 0, 0, 0.03);
409
+ color: rgba(0, 0, 0, 0.95);
410
+ }
411
+
412
+ /*--------------
413
+ Pressed
414
+ ---------------*/
415
+
416
+ .ui.link.menu .item:active,
417
+ .ui.menu .link.item:active,
418
+ .ui.menu a.item:active {
419
+ background: rgba(0, 0, 0, 0.03);
420
+ color: rgba(0, 0, 0, 0.95);
421
+ }
422
+
423
+ /*--------------
424
+ Active
425
+ ---------------*/
426
+
427
+ .ui.menu .active.item {
428
+ background: rgba(0, 0, 0, 0.05);
429
+ color: rgba(0, 0, 0, 0.95);
430
+ font-weight: normal;
431
+ box-shadow: none;
432
+ }
433
+ .ui.menu .active.item > i.icon {
434
+ opacity: 1;
435
+ }
436
+
437
+ /*--------------
438
+ Active Hover
439
+ ---------------*/
440
+
441
+ .ui.menu .active.item:hover,
442
+ .ui.vertical.menu .active.item:hover {
443
+ background-color: rgba(0, 0, 0, 0.05);
444
+ color: rgba(0, 0, 0, 0.95);
445
+ }
446
+
447
+ /*--------------
448
+ Disabled
449
+ ---------------*/
450
+
451
+ .ui.menu .item.disabled,
452
+ .ui.menu .item.disabled:hover {
453
+ cursor: default;
454
+ background-color: transparent !important;
455
+ color: rgba(40, 40, 40, 0.3);
456
+ }
457
+
458
+
459
+ /*******************************
460
+ Types
461
+ *******************************/
462
+
463
+
464
+ /*------------------
465
+ Floated Menu / Item
466
+ -------------------*/
467
+
468
+
469
+ /* Left Floated */
470
+ .ui.menu:not(.vertical) .left.item,
471
+ .ui.menu:not(.vertical) .left.menu {
472
+ display: -webkit-box;
473
+ display: -ms-flexbox;
474
+ display: flex;
475
+ margin-right: auto !important;
476
+ }
477
+
478
+ /* Right Floated */
479
+ .ui.menu:not(.vertical) .right.item,
480
+ .ui.menu:not(.vertical) .right.menu {
481
+ display: -webkit-box;
482
+ display: -ms-flexbox;
483
+ display: flex;
484
+ margin-left: auto !important;
485
+ }
486
+
487
+ /* Swapped Borders */
488
+ .ui.menu .right.item::before,
489
+ .ui.menu .right.menu > .item::before {
490
+ right: auto;
491
+ left: 0;
492
+ }
493
+
494
+ /*--------------
495
+ Vertical
496
+ ---------------*/
497
+
498
+ .ui.vertical.menu {
499
+ display: block;
500
+ -webkit-box-orient: vertical;
501
+ -webkit-box-direction: normal;
502
+ -ms-flex-direction: column;
503
+ flex-direction: column;
504
+ background: #FFFFFF;
505
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
506
+ }
507
+
508
+ /*--- Item ---*/
509
+
510
+ .ui.vertical.menu .item {
511
+ display: block;
512
+ background: none;
513
+ border-top: none;
514
+ border-right: none;
515
+ }
516
+ .ui.vertical.menu > .item:first-child {
517
+ border-radius: 0.28571429rem 0.28571429rem 0px 0px;
518
+ }
519
+ .ui.vertical.menu > .item:last-child {
520
+ border-radius: 0px 0px 0.28571429rem 0.28571429rem;
521
+ }
522
+
523
+ /*--- Label ---*/
524
+
525
+ .ui.vertical.menu .item > .label {
526
+ float: right;
527
+ text-align: center;
528
+ }
529
+
530
+ /*--- Icon ---*/
531
+
532
+ .ui.vertical.menu .item > i.icon {
533
+ width: 1.18em;
534
+ float: right;
535
+ margin: 0em 0em 0em 0.5em;
536
+ }
537
+ .ui.vertical.menu .item > .label + i.icon {
538
+ float: none;
539
+ margin: 0em 0.5em 0em 0em;
540
+ }
541
+
542
+ /*--- Border ---*/
543
+
544
+ .ui.vertical.menu .item:before {
545
+ position: absolute;
546
+ content: '';
547
+ top: 0%;
548
+ left: 0px;
549
+ width: 100%;
550
+ height: 1px;
551
+ background: rgba(34, 36, 38, 0.1);
552
+ }
553
+ .ui.vertical.menu .item:first-child:before {
554
+ display: none !important;
555
+ }
556
+
557
+ /*--- Sub Menu ---*/
558
+
559
+ .ui.vertical.menu .item > .menu {
560
+ margin: 0.5em -1.14285714em 0em;
561
+ }
562
+ .ui.vertical.menu .menu .item {
563
+ background: none;
564
+ padding: 0.5em 1.33333333em;
565
+ font-size: 0.85714286em;
566
+ color: rgba(0, 0, 0, 0.5);
567
+ }
568
+ .ui.vertical.menu .item .menu a.item:hover,
569
+ .ui.vertical.menu .item .menu .link.item:hover {
570
+ color: rgba(0, 0, 0, 0.85);
571
+ }
572
+ .ui.vertical.menu .menu .item:before {
573
+ display: none;
574
+ }
575
+
576
+ /* Vertical Active */
577
+ .ui.vertical.menu .active.item {
578
+ background: rgba(0, 0, 0, 0.05);
579
+ border-radius: 0em;
580
+ box-shadow: none;
581
+ }
582
+ .ui.vertical.menu > .active.item:first-child {
583
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
584
+ }
585
+ .ui.vertical.menu > .active.item:last-child {
586
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
587
+ }
588
+ .ui.vertical.menu > .active.item:only-child {
589
+ border-radius: 0.28571429rem;
590
+ }
591
+ .ui.vertical.menu .active.item .menu .active.item {
592
+ border-left: none;
593
+ }
594
+ .ui.vertical.menu .item .menu .active.item {
595
+ background-color: transparent;
596
+ font-weight: bold;
597
+ color: rgba(0, 0, 0, 0.95);
598
+ }
599
+
600
+ /*--------------
601
+ Tabular
602
+ ---------------*/
603
+
604
+ .ui.tabular.menu {
605
+ border-radius: 0em;
606
+ box-shadow: none !important;
607
+ border: none;
608
+ background: none transparent;
609
+ border-bottom: 1px solid #D4D4D5;
610
+ }
611
+ .ui.tabular.fluid.menu {
612
+ width: calc(100% + 2px ) !important;
613
+ }
614
+ .ui.tabular.menu .item {
615
+ background: transparent;
616
+ border-bottom: none;
617
+ border-left: 1px solid transparent;
618
+ border-right: 1px solid transparent;
619
+ border-top: 2px solid transparent;
620
+ padding: 0.92857143em 1.42857143em;
621
+ color: rgba(0, 0, 0, 0.87);
622
+ }
623
+ .ui.tabular.menu .item:before {
624
+ display: none;
625
+ }
626
+
627
+ /* Hover */
628
+ .ui.tabular.menu .item:hover {
629
+ background-color: transparent;
630
+ color: rgba(0, 0, 0, 0.8);
631
+ }
632
+
633
+ /* Active */
634
+ .ui.tabular.menu .active.item {
635
+ background: none #FFFFFF;
636
+ color: rgba(0, 0, 0, 0.95);
637
+ border-top-width: 1px;
638
+ border-color: #D4D4D5;
639
+ font-weight: bold;
640
+ margin-bottom: -1px;
641
+ box-shadow: none;
642
+ border-radius: 0.28571429rem 0.28571429rem 0px 0px !important;
643
+ }
644
+
645
+ /* Coupling with segment for attachment */
646
+ .ui.tabular.menu + .attached:not(.top).segment,
647
+ .ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment {
648
+ border-top: none;
649
+ margin-left: 0px;
650
+ margin-top: 0px;
651
+ margin-right: 0px;
652
+ width: 100%;
653
+ }
654
+ .top.attached.segment + .ui.bottom.tabular.menu {
655
+ position: relative;
656
+ width: calc(100% + 2px );
657
+ left: -1px;
658
+ }
659
+
660
+ /* Bottom Vertical Tabular */
661
+ .ui.bottom.tabular.menu {
662
+ background: none transparent;
663
+ border-radius: 0em;
664
+ box-shadow: none !important;
665
+ border-bottom: none;
666
+ border-top: 1px solid #D4D4D5;
667
+ }
668
+ .ui.bottom.tabular.menu .item {
669
+ background: none;
670
+ border-left: 1px solid transparent;
671
+ border-right: 1px solid transparent;
672
+ border-bottom: 1px solid transparent;
673
+ border-top: none;
674
+ }
675
+ .ui.bottom.tabular.menu .active.item {
676
+ background: none #FFFFFF;
677
+ color: rgba(0, 0, 0, 0.95);
678
+ border-color: #D4D4D5;
679
+ margin: -1px 0px 0px 0px;
680
+ border-radius: 0px 0px 0.28571429rem 0.28571429rem !important;
681
+ }
682
+
683
+ /* Vertical Tabular (Left) */
684
+ .ui.vertical.tabular.menu {
685
+ background: none transparent;
686
+ border-radius: 0em;
687
+ box-shadow: none !important;
688
+ border-bottom: none;
689
+ border-right: 1px solid #D4D4D5;
690
+ }
691
+ .ui.vertical.tabular.menu .item {
692
+ background: none;
693
+ border-left: 1px solid transparent;
694
+ border-bottom: 1px solid transparent;
695
+ border-top: 1px solid transparent;
696
+ border-right: none;
697
+ }
698
+ .ui.vertical.tabular.menu .active.item {
699
+ background: none #FFFFFF;
700
+ color: rgba(0, 0, 0, 0.95);
701
+ border-color: #D4D4D5;
702
+ margin: 0px -1px 0px 0px;
703
+ border-radius: 0.28571429rem 0px 0px 0.28571429rem !important;
704
+ }
705
+
706
+ /* Vertical Right Tabular */
707
+ .ui.vertical.right.tabular.menu {
708
+ background: none transparent;
709
+ border-radius: 0em;
710
+ box-shadow: none !important;
711
+ border-bottom: none;
712
+ border-right: none;
713
+ border-left: 1px solid #D4D4D5;
714
+ }
715
+ .ui.vertical.right.tabular.menu .item {
716
+ background: none;
717
+ border-right: 1px solid transparent;
718
+ border-bottom: 1px solid transparent;
719
+ border-top: 1px solid transparent;
720
+ border-left: none;
721
+ }
722
+ .ui.vertical.right.tabular.menu .active.item {
723
+ background: none #FFFFFF;
724
+ color: rgba(0, 0, 0, 0.95);
725
+ border-color: #D4D4D5;
726
+ margin: 0px 0px 0px -1px;
727
+ border-radius: 0px 0.28571429rem 0.28571429rem 0px !important;
728
+ }
729
+
730
+ /* Dropdown */
731
+ .ui.tabular.menu .active.dropdown.item {
732
+ margin-bottom: 0px;
733
+ border-left: 1px solid transparent;
734
+ border-right: 1px solid transparent;
735
+ border-top: 2px solid transparent;
736
+ border-bottom: none;
737
+ }
738
+
739
+ /*--------------
740
+ Pagination
741
+ ---------------*/
742
+
743
+ .ui.pagination.menu {
744
+ margin: 0em;
745
+ display: -webkit-inline-box;
746
+ display: -ms-inline-flexbox;
747
+ display: inline-flex;
748
+ vertical-align: middle;
749
+ }
750
+ .ui.pagination.menu .item:last-child {
751
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
752
+ }
753
+ .ui.compact.menu .item:last-child {
754
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
755
+ }
756
+ .ui.pagination.menu .item:last-child:before {
757
+ display: none;
758
+ }
759
+ .ui.pagination.menu .item {
760
+ min-width: 3em;
761
+ text-align: center;
762
+ }
763
+ .ui.pagination.menu .icon.item i.icon {
764
+ vertical-align: top;
765
+ }
766
+
767
+ /* Active */
768
+ .ui.pagination.menu .active.item {
769
+ border-top: none;
770
+ padding-top: 0.92857143em;
771
+ background-color: rgba(0, 0, 0, 0.05);
772
+ color: rgba(0, 0, 0, 0.95);
773
+ box-shadow: none;
774
+ }
775
+
776
+ /*--------------
777
+ Secondary
778
+ ---------------*/
779
+
780
+ .ui.secondary.menu {
781
+ background: none;
782
+ margin-left: -0.35714286em;
783
+ margin-right: -0.35714286em;
784
+ border-radius: 0em;
785
+ border: none;
786
+ box-shadow: none;
787
+ }
788
+
789
+ /* Item */
790
+ .ui.secondary.menu .item {
791
+ -ms-flex-item-align: center;
792
+ -ms-grid-row-align: center;
793
+ align-self: center;
794
+ box-shadow: none;
795
+ border: none;
796
+ padding: 0.78571429em 0.92857143em;
797
+ margin: 0em 0.35714286em;
798
+ background: none;
799
+ -webkit-transition: color 0.1s ease;
800
+ transition: color 0.1s ease;
801
+ border-radius: 0.28571429rem;
802
+ }
803
+
804
+ /* No Divider */
805
+ .ui.secondary.menu .item:before {
806
+ display: none !important;
807
+ }
808
+
809
+ /* Header */
810
+ .ui.secondary.menu .header.item {
811
+ border-radius: 0em;
812
+ border-right: none;
813
+ background: none transparent;
814
+ }
815
+
816
+ /* Image */
817
+ .ui.secondary.menu .item > img:not(.ui) {
818
+ margin: 0em;
819
+ }
820
+
821
+ /* Hover */
822
+ .ui.secondary.menu .dropdown.item:hover,
823
+ .ui.secondary.menu .link.item:hover,
824
+ .ui.secondary.menu a.item:hover {
825
+ background: rgba(0, 0, 0, 0.05);
826
+ color: rgba(0, 0, 0, 0.95);
827
+ }
828
+
829
+ /* Active */
830
+ .ui.secondary.menu .active.item {
831
+ box-shadow: none;
832
+ background: rgba(0, 0, 0, 0.05);
833
+ color: rgba(0, 0, 0, 0.95);
834
+ border-radius: 0.28571429rem;
835
+ }
836
+
837
+ /* Active Hover */
838
+ .ui.secondary.menu .active.item:hover {
839
+ box-shadow: none;
840
+ background: rgba(0, 0, 0, 0.05);
841
+ color: rgba(0, 0, 0, 0.95);
842
+ }
843
+
844
+ /* Inverted */
845
+ .ui.secondary.inverted.menu .link.item,
846
+ .ui.secondary.inverted.menu a.item {
847
+ color: rgba(255, 255, 255, 0.7) !important;
848
+ }
849
+ .ui.secondary.inverted.menu .dropdown.item:hover,
850
+ .ui.secondary.inverted.menu .link.item:hover,
851
+ .ui.secondary.inverted.menu a.item:hover {
852
+ background: rgba(255, 255, 255, 0.08);
853
+ color: #ffffff !important;
854
+ }
855
+ .ui.secondary.inverted.menu .active.item {
856
+ background: rgba(255, 255, 255, 0.15);
857
+ color: #ffffff !important;
858
+ }
859
+
860
+ /* Fix item margins */
861
+ .ui.secondary.item.menu {
862
+ margin-left: 0em;
863
+ margin-right: 0em;
864
+ }
865
+ .ui.secondary.item.menu .item:last-child {
866
+ margin-right: 0em;
867
+ }
868
+ .ui.secondary.attached.menu {
869
+ box-shadow: none;
870
+ }
871
+
872
+ /* Sub Menu */
873
+ .ui.vertical.secondary.menu .item:not(.dropdown) > .menu {
874
+ margin: 0em -0.92857143em;
875
+ }
876
+ .ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item {
877
+ margin: 0em;
878
+ padding: 0.5em 1.33333333em;
879
+ }
880
+
881
+ /*---------------------
882
+ Secondary Vertical
883
+ -----------------------*/
884
+
885
+ .ui.secondary.vertical.menu > .item {
886
+ border: none;
887
+ margin: 0em 0em 0.35714286em;
888
+ border-radius: 0.28571429rem !important;
889
+ }
890
+ .ui.secondary.vertical.menu > .header.item {
891
+ border-radius: 0em;
892
+ }
893
+
894
+ /* Sub Menu */
895
+ .ui.vertical.secondary.menu .item > .menu .item {
896
+ background-color: transparent;
897
+ }
898
+
899
+ /* Inverted */
900
+ .ui.secondary.inverted.menu {
901
+ background-color: transparent;
902
+ }
903
+
904
+ /*---------------------
905
+ Secondary Pointing
906
+ -----------------------*/
907
+
908
+ .ui.secondary.pointing.menu {
909
+ margin-left: 0em;
910
+ margin-right: 0em;
911
+ border-bottom: 2px solid rgba(34, 36, 38, 0.15);
912
+ }
913
+ .ui.secondary.pointing.menu .item {
914
+ border-bottom-color: transparent;
915
+ border-bottom-style: solid;
916
+ border-radius: 0em;
917
+ -ms-flex-item-align: end;
918
+ align-self: flex-end;
919
+ margin: 0em 0em -2px;
920
+ padding: 0.85714286em 1.14285714em;
921
+ border-bottom-width: 2px;
922
+ -webkit-transition: color 0.1s ease;
923
+ transition: color 0.1s ease;
924
+ }
925
+
926
+ /* Item Types */
927
+ .ui.secondary.pointing.menu .header.item {
928
+ color: rgba(0, 0, 0, 0.85) !important;
929
+ }
930
+ .ui.secondary.pointing.menu .text.item {
931
+ box-shadow: none !important;
932
+ }
933
+ .ui.secondary.pointing.menu .item:after {
934
+ display: none;
935
+ }
936
+
937
+ /* Hover */
938
+ .ui.secondary.pointing.menu .dropdown.item:hover,
939
+ .ui.secondary.pointing.menu .link.item:hover,
940
+ .ui.secondary.pointing.menu a.item:hover {
941
+ background-color: transparent;
942
+ color: rgba(0, 0, 0, 0.87);
943
+ }
944
+
945
+ /* Pressed */
946
+ .ui.secondary.pointing.menu .dropdown.item:active,
947
+ .ui.secondary.pointing.menu .link.item:active,
948
+ .ui.secondary.pointing.menu a.item:active {
949
+ background-color: transparent;
950
+ border-color: rgba(34, 36, 38, 0.15);
951
+ }
952
+
953
+ /* Active */
954
+ .ui.secondary.pointing.menu .active.item {
955
+ background-color: transparent;
956
+ box-shadow: none;
957
+ border-color: #1B1C1D;
958
+ font-weight: bold;
959
+ color: rgba(0, 0, 0, 0.95);
960
+ }
961
+
962
+ /* Active Hover */
963
+ .ui.secondary.pointing.menu .active.item:hover {
964
+ border-color: #1B1C1D;
965
+ color: rgba(0, 0, 0, 0.95);
966
+ }
967
+
968
+ /* Active Dropdown */
969
+ .ui.secondary.pointing.menu .active.dropdown.item {
970
+ border-color: transparent;
971
+ }
972
+
973
+ /* Vertical Pointing */
974
+ .ui.secondary.vertical.pointing.menu {
975
+ border-bottom-width: 0px;
976
+ border-right-width: 2px;
977
+ border-right-style: solid;
978
+ border-right-color: rgba(34, 36, 38, 0.15);
979
+ }
980
+ .ui.secondary.vertical.pointing.menu .item {
981
+ border-bottom: none;
982
+ border-right-style: solid;
983
+ border-right-color: transparent;
984
+ border-radius: 0em !important;
985
+ margin: 0em -2px 0em 0em;
986
+ border-right-width: 2px;
987
+ }
988
+
989
+ /* Vertical Active */
990
+ .ui.secondary.vertical.pointing.menu .active.item {
991
+ border-color: #1B1C1D;
992
+ }
993
+
994
+ /* Inverted */
995
+ .ui.secondary.inverted.pointing.menu {
996
+ border-color: rgba(255, 255, 255, 0.1);
997
+ }
998
+ .ui.secondary.inverted.pointing.menu {
999
+ border-width: 2px;
1000
+ border-color: rgba(34, 36, 38, 0.15);
1001
+ }
1002
+ .ui.secondary.inverted.pointing.menu .item {
1003
+ color: rgba(255, 255, 255, 0.9);
1004
+ }
1005
+ .ui.secondary.inverted.pointing.menu .header.item {
1006
+ color: #FFFFFF !important;
1007
+ }
1008
+
1009
+ /* Hover */
1010
+ .ui.secondary.inverted.pointing.menu .link.item:hover,
1011
+ .ui.secondary.inverted.pointing.menu a.item:hover {
1012
+ color: rgba(0, 0, 0, 0.95);
1013
+ }
1014
+
1015
+ /* Active */
1016
+ .ui.secondary.inverted.pointing.menu .active.item {
1017
+ border-color: #FFFFFF;
1018
+ color: #ffffff;
1019
+ }
1020
+
1021
+ /*--------------
1022
+ Text Menu
1023
+ ---------------*/
1024
+
1025
+ .ui.text.menu {
1026
+ background: none transparent;
1027
+ border-radius: 0px;
1028
+ box-shadow: none;
1029
+ border: none;
1030
+ margin: 1em -0.5em;
1031
+ }
1032
+ .ui.text.menu .item {
1033
+ border-radius: 0px;
1034
+ box-shadow: none;
1035
+ -ms-flex-item-align: center;
1036
+ -ms-grid-row-align: center;
1037
+ align-self: center;
1038
+ margin: 0em 0em;
1039
+ padding: 0.35714286em 0.5em;
1040
+ font-weight: normal;
1041
+ color: rgba(0, 0, 0, 0.6);
1042
+ -webkit-transition: opacity 0.1s ease;
1043
+ transition: opacity 0.1s ease;
1044
+ }
1045
+
1046
+ /* Border */
1047
+ .ui.text.menu .item:before,
1048
+ .ui.text.menu .menu .item:before {
1049
+ display: none !important;
1050
+ }
1051
+
1052
+ /* Header */
1053
+ .ui.text.menu .header.item {
1054
+ background-color: transparent;
1055
+ opacity: 1;
1056
+ color: rgba(0, 0, 0, 0.85);
1057
+ font-size: 0.92857143em;
1058
+ text-transform: uppercase;
1059
+ font-weight: bold;
1060
+ }
1061
+
1062
+ /* Image */
1063
+ .ui.text.menu .item > img:not(.ui) {
1064
+ margin: 0em;
1065
+ }
1066
+
1067
+ /*--- fluid text ---*/
1068
+
1069
+ .ui.text.item.menu .item {
1070
+ margin: 0em;
1071
+ }
1072
+
1073
+ /*--- vertical text ---*/
1074
+
1075
+ .ui.vertical.text.menu {
1076
+ margin: 1em 0em;
1077
+ }
1078
+ .ui.vertical.text.menu:first-child {
1079
+ margin-top: 0rem;
1080
+ }
1081
+ .ui.vertical.text.menu:last-child {
1082
+ margin-bottom: 0rem;
1083
+ }
1084
+ .ui.vertical.text.menu .item {
1085
+ margin: 0.57142857em 0em;
1086
+ padding-left: 0em;
1087
+ padding-right: 0em;
1088
+ }
1089
+ .ui.vertical.text.menu .item > i.icon {
1090
+ float: none;
1091
+ margin: 0em 0.35714286em 0em 0em;
1092
+ }
1093
+ .ui.vertical.text.menu .header.item {
1094
+ margin: 0.57142857em 0em 0.71428571em;
1095
+ }
1096
+
1097
+ /* Vertical Sub Menu */
1098
+ .ui.vertical.text.menu .item:not(.dropdown) > .menu {
1099
+ margin: 0em;
1100
+ }
1101
+ .ui.vertical.text.menu .item:not(.dropdown) > .menu > .item {
1102
+ margin: 0em;
1103
+ padding: 0.5em 0em;
1104
+ }
1105
+
1106
+ /*--- hover ---*/
1107
+
1108
+ .ui.text.menu .item:hover {
1109
+ opacity: 1;
1110
+ background-color: transparent;
1111
+ }
1112
+
1113
+ /*--- active ---*/
1114
+
1115
+ .ui.text.menu .active.item {
1116
+ background-color: transparent;
1117
+ border: none;
1118
+ box-shadow: none;
1119
+ font-weight: normal;
1120
+ color: rgba(0, 0, 0, 0.95);
1121
+ }
1122
+
1123
+ /*--- active hover ---*/
1124
+
1125
+ .ui.text.menu .active.item:hover {
1126
+ background-color: transparent;
1127
+ }
1128
+
1129
+ /* Disable Bariations */
1130
+ .ui.text.pointing.menu .active.item:after {
1131
+ box-shadow: none;
1132
+ }
1133
+ .ui.text.attached.menu {
1134
+ box-shadow: none;
1135
+ }
1136
+
1137
+ /* Inverted */
1138
+ .ui.inverted.text.menu,
1139
+ .ui.inverted.text.menu .item,
1140
+ .ui.inverted.text.menu .item:hover,
1141
+ .ui.inverted.text.menu .active.item {
1142
+ background-color: transparent !important;
1143
+ }
1144
+
1145
+ /* Fluid */
1146
+ .ui.fluid.text.menu {
1147
+ margin-left: 0em;
1148
+ margin-right: 0em;
1149
+ }
1150
+
1151
+ /*--------------
1152
+ Icon Only
1153
+ ---------------*/
1154
+
1155
+
1156
+ /* Vertical Menu */
1157
+ .ui.vertical.icon.menu {
1158
+ display: inline-block;
1159
+ width: auto;
1160
+ }
1161
+
1162
+ /* Item */
1163
+ .ui.icon.menu .item {
1164
+ height: auto;
1165
+ text-align: center;
1166
+ color: #1B1C1D;
1167
+ }
1168
+
1169
+ /* Icon */
1170
+ .ui.icon.menu .item > .icon:not(.dropdown) {
1171
+ margin: 0;
1172
+ opacity: 1;
1173
+ }
1174
+
1175
+ /* Icon Gylph */
1176
+ .ui.icon.menu .icon:before {
1177
+ opacity: 1;
1178
+ }
1179
+
1180
+ /* (x) Item Icon */
1181
+ .ui.menu .icon.item > .icon {
1182
+ width: auto;
1183
+ margin: 0em auto;
1184
+ }
1185
+
1186
+ /* Vertical Icon */
1187
+ .ui.vertical.icon.menu .item > .icon:not(.dropdown) {
1188
+ display: block;
1189
+ opacity: 1;
1190
+ margin: 0em auto;
1191
+ float: none;
1192
+ }
1193
+
1194
+ /* Inverted */
1195
+ .ui.inverted.icon.menu .item {
1196
+ color: #FFFFFF;
1197
+ }
1198
+
1199
+ /*--------------
1200
+ Labeled Icon
1201
+ ---------------*/
1202
+
1203
+
1204
+ /* Menu */
1205
+ .ui.labeled.icon.menu {
1206
+ text-align: center;
1207
+ }
1208
+
1209
+ /* Item */
1210
+ .ui.labeled.icon.menu .item {
1211
+ min-width: 6em;
1212
+ -webkit-box-orient: vertical;
1213
+ -webkit-box-direction: normal;
1214
+ -ms-flex-direction: column;
1215
+ flex-direction: column;
1216
+ }
1217
+
1218
+ /* Icon */
1219
+ .ui.labeled.icon.menu .item > .icon:not(.dropdown) {
1220
+ height: 1em;
1221
+ display: block;
1222
+ font-size: 1.71428571em !important;
1223
+ margin: 0em auto 0.5rem !important;
1224
+ }
1225
+
1226
+ /* Fluid */
1227
+ .ui.fluid.labeled.icon.menu > .item {
1228
+ min-width: 0em;
1229
+ }
1230
+
1231
+
1232
+ /*******************************
1233
+ Variations
1234
+ *******************************/
1235
+
1236
+
1237
+ /*--------------
1238
+ Stackable
1239
+ ---------------*/
1240
+
1241
+ @media only screen and (max-width: 767px) {
1242
+ .ui.stackable.menu {
1243
+ -webkit-box-orient: vertical;
1244
+ -webkit-box-direction: normal;
1245
+ -ms-flex-direction: column;
1246
+ flex-direction: column;
1247
+ }
1248
+ .ui.stackable.menu .item {
1249
+ width: 100% !important;
1250
+ }
1251
+ .ui.stackable.menu .item:before {
1252
+ position: absolute;
1253
+ content: '';
1254
+ top: auto;
1255
+ bottom: 0px;
1256
+ left: 0px;
1257
+ width: 100%;
1258
+ height: 1px;
1259
+ background: rgba(34, 36, 38, 0.1);
1260
+ }
1261
+ .ui.stackable.menu .left.menu,
1262
+ .ui.stackable.menu .left.item {
1263
+ margin-right: 0 !important;
1264
+ }
1265
+ .ui.stackable.menu .right.menu,
1266
+ .ui.stackable.menu .right.item {
1267
+ margin-left: 0 !important;
1268
+ }
1269
+ }
1270
+
1271
+ /*--------------
1272
+ Colors
1273
+ ---------------*/
1274
+
1275
+
1276
+ /*--- Standard Colors ---*/
1277
+
1278
+ .ui.menu .red.active.item,
1279
+ .ui.red.menu .active.item {
1280
+ border-color: #DB2828 !important;
1281
+ color: #DB2828 !important;
1282
+ }
1283
+ .ui.menu .orange.active.item,
1284
+ .ui.orange.menu .active.item {
1285
+ border-color: #F2711C !important;
1286
+ color: #F2711C !important;
1287
+ }
1288
+ .ui.menu .yellow.active.item,
1289
+ .ui.yellow.menu .active.item {
1290
+ border-color: #FBBD08 !important;
1291
+ color: #FBBD08 !important;
1292
+ }
1293
+ .ui.menu .olive.active.item,
1294
+ .ui.olive.menu .active.item {
1295
+ border-color: #B5CC18 !important;
1296
+ color: #B5CC18 !important;
1297
+ }
1298
+ .ui.menu .green.active.item,
1299
+ .ui.green.menu .active.item {
1300
+ border-color: #21BA45 !important;
1301
+ color: #21BA45 !important;
1302
+ }
1303
+ .ui.menu .teal.active.item,
1304
+ .ui.teal.menu .active.item {
1305
+ border-color: #00B5AD !important;
1306
+ color: #00B5AD !important;
1307
+ }
1308
+ .ui.menu .blue.active.item,
1309
+ .ui.blue.menu .active.item {
1310
+ border-color: #2185D0 !important;
1311
+ color: #2185D0 !important;
1312
+ }
1313
+ .ui.menu .violet.active.item,
1314
+ .ui.violet.menu .active.item {
1315
+ border-color: #6435C9 !important;
1316
+ color: #6435C9 !important;
1317
+ }
1318
+ .ui.menu .purple.active.item,
1319
+ .ui.purple.menu .active.item {
1320
+ border-color: #A333C8 !important;
1321
+ color: #A333C8 !important;
1322
+ }
1323
+ .ui.menu .pink.active.item,
1324
+ .ui.pink.menu .active.item {
1325
+ border-color: #E03997 !important;
1326
+ color: #E03997 !important;
1327
+ }
1328
+ .ui.menu .brown.active.item,
1329
+ .ui.brown.menu .active.item {
1330
+ border-color: #A5673F !important;
1331
+ color: #A5673F !important;
1332
+ }
1333
+ .ui.menu .grey.active.item,
1334
+ .ui.grey.menu .active.item {
1335
+ border-color: #767676 !important;
1336
+ color: #767676 !important;
1337
+ }
1338
+
1339
+ /*--------------
1340
+ Inverted
1341
+ ---------------*/
1342
+
1343
+ .ui.inverted.menu {
1344
+ border: 0px solid transparent;
1345
+ background: #1B1C1D;
1346
+ box-shadow: none;
1347
+ }
1348
+
1349
+ /* Menu Item */
1350
+ .ui.inverted.menu .item,
1351
+ .ui.inverted.menu .item > a:not(.ui) {
1352
+ background: transparent;
1353
+ color: rgba(255, 255, 255, 0.9);
1354
+ }
1355
+ .ui.inverted.menu .item.menu {
1356
+ background: transparent;
1357
+ }
1358
+
1359
+ /*--- Border ---*/
1360
+
1361
+ .ui.inverted.menu .item:before {
1362
+ background: rgba(255, 255, 255, 0.08);
1363
+ }
1364
+ .ui.vertical.inverted.menu .item:before {
1365
+ background: rgba(255, 255, 255, 0.08);
1366
+ }
1367
+
1368
+ /* Sub Menu */
1369
+ .ui.vertical.inverted.menu .menu .item,
1370
+ .ui.vertical.inverted.menu .menu .item a:not(.ui) {
1371
+ color: rgba(255, 255, 255, 0.5);
1372
+ }
1373
+
1374
+ /* Header */
1375
+ .ui.inverted.menu .header.item {
1376
+ margin: 0em;
1377
+ background: transparent;
1378
+ box-shadow: none;
1379
+ }
1380
+
1381
+ /* Disabled */
1382
+ .ui.inverted.menu .item.disabled,
1383
+ .ui.inverted.menu .item.disabled:hover {
1384
+ color: rgba(225, 225, 225, 0.3);
1385
+ }
1386
+
1387
+ /*--- Hover ---*/
1388
+
1389
+ .ui.link.inverted.menu .item:hover,
1390
+ .ui.inverted.menu .dropdown.item:hover,
1391
+ .ui.inverted.menu .link.item:hover,
1392
+ .ui.inverted.menu a.item:hover {
1393
+ background: rgba(255, 255, 255, 0.08);
1394
+ color: #ffffff;
1395
+ }
1396
+ .ui.vertical.inverted.menu .item .menu a.item:hover,
1397
+ .ui.vertical.inverted.menu .item .menu .link.item:hover {
1398
+ background: transparent;
1399
+ color: #ffffff;
1400
+ }
1401
+
1402
+ /*--- Pressed ---*/
1403
+
1404
+ .ui.inverted.menu a.item:active,
1405
+ .ui.inverted.menu .link.item:active {
1406
+ background: rgba(255, 255, 255, 0.08);
1407
+ color: #ffffff;
1408
+ }
1409
+
1410
+ /*--- Active ---*/
1411
+
1412
+ .ui.inverted.menu .active.item {
1413
+ background: rgba(255, 255, 255, 0.15);
1414
+ color: #ffffff !important;
1415
+ }
1416
+ .ui.inverted.vertical.menu .item .menu .active.item {
1417
+ background: transparent;
1418
+ color: #FFFFFF;
1419
+ }
1420
+ .ui.inverted.pointing.menu .active.item:after {
1421
+ background: #3D3E3F !important;
1422
+ margin: 0em !important;
1423
+ box-shadow: none !important;
1424
+ border: none !important;
1425
+ }
1426
+
1427
+ /*--- Active Hover ---*/
1428
+
1429
+ .ui.inverted.menu .active.item:hover {
1430
+ background: rgba(255, 255, 255, 0.15);
1431
+ color: #FFFFFF !important;
1432
+ }
1433
+ .ui.inverted.pointing.menu .active.item:hover:after {
1434
+ background: #3D3E3F !important;
1435
+ }
1436
+
1437
+ /*--------------
1438
+ Floated
1439
+ ---------------*/
1440
+
1441
+ .ui.floated.menu {
1442
+ float: left;
1443
+ margin: 0rem 0.5rem 0rem 0rem;
1444
+ }
1445
+ .ui.floated.menu .item:last-child:before {
1446
+ display: none;
1447
+ }
1448
+ .ui.right.floated.menu {
1449
+ float: right;
1450
+ margin: 0rem 0rem 0rem 0.5rem;
1451
+ }
1452
+
1453
+ /*--------------
1454
+ Inverted
1455
+ ---------------*/
1456
+
1457
+
1458
+ /* Red */
1459
+ .ui.inverted.menu .red.active.item,
1460
+ .ui.inverted.red.menu {
1461
+ background-color: #DB2828;
1462
+ }
1463
+ .ui.inverted.red.menu .item:before {
1464
+ background-color: rgba(34, 36, 38, 0.1);
1465
+ }
1466
+ .ui.inverted.red.menu .active.item {
1467
+ background-color: rgba(0, 0, 0, 0.1) !important;
1468
+ }
1469
+
1470
+ /* Orange */
1471
+ .ui.inverted.menu .orange.active.item,
1472
+ .ui.inverted.orange.menu {
1473
+ background-color: #F2711C;
1474
+ }
1475
+ .ui.inverted.orange.menu .item:before {
1476
+ background-color: rgba(34, 36, 38, 0.1);
1477
+ }
1478
+ .ui.inverted.orange.menu .active.item {
1479
+ background-color: rgba(0, 0, 0, 0.1) !important;
1480
+ }
1481
+
1482
+ /* Yellow */
1483
+ .ui.inverted.menu .yellow.active.item,
1484
+ .ui.inverted.yellow.menu {
1485
+ background-color: #FBBD08;
1486
+ }
1487
+ .ui.inverted.yellow.menu .item:before {
1488
+ background-color: rgba(34, 36, 38, 0.1);
1489
+ }
1490
+ .ui.inverted.yellow.menu .active.item {
1491
+ background-color: rgba(0, 0, 0, 0.1) !important;
1492
+ }
1493
+
1494
+ /* Olive */
1495
+ .ui.inverted.menu .olive.active.item,
1496
+ .ui.inverted.olive.menu {
1497
+ background-color: #B5CC18;
1498
+ }
1499
+ .ui.inverted.olive.menu .item:before {
1500
+ background-color: rgba(34, 36, 38, 0.1);
1501
+ }
1502
+ .ui.inverted.olive.menu .active.item {
1503
+ background-color: rgba(0, 0, 0, 0.1) !important;
1504
+ }
1505
+
1506
+ /* Green */
1507
+ .ui.inverted.menu .green.active.item,
1508
+ .ui.inverted.green.menu {
1509
+ background-color: #21BA45;
1510
+ }
1511
+ .ui.inverted.green.menu .item:before {
1512
+ background-color: rgba(34, 36, 38, 0.1);
1513
+ }
1514
+ .ui.inverted.green.menu .active.item {
1515
+ background-color: rgba(0, 0, 0, 0.1) !important;
1516
+ }
1517
+
1518
+ /* Teal */
1519
+ .ui.inverted.menu .teal.active.item,
1520
+ .ui.inverted.teal.menu {
1521
+ background-color: #00B5AD;
1522
+ }
1523
+ .ui.inverted.teal.menu .item:before {
1524
+ background-color: rgba(34, 36, 38, 0.1);
1525
+ }
1526
+ .ui.inverted.teal.menu .active.item {
1527
+ background-color: rgba(0, 0, 0, 0.1) !important;
1528
+ }
1529
+
1530
+ /* Blue */
1531
+ .ui.inverted.menu .blue.active.item,
1532
+ .ui.inverted.blue.menu {
1533
+ background-color: #2185D0;
1534
+ }
1535
+ .ui.inverted.blue.menu .item:before {
1536
+ background-color: rgba(34, 36, 38, 0.1);
1537
+ }
1538
+ .ui.inverted.blue.menu .active.item {
1539
+ background-color: rgba(0, 0, 0, 0.1) !important;
1540
+ }
1541
+
1542
+ /* Violet */
1543
+ .ui.inverted.menu .violet.active.item,
1544
+ .ui.inverted.violet.menu {
1545
+ background-color: #6435C9;
1546
+ }
1547
+ .ui.inverted.violet.menu .item:before {
1548
+ background-color: rgba(34, 36, 38, 0.1);
1549
+ }
1550
+ .ui.inverted.violet.menu .active.item {
1551
+ background-color: rgba(0, 0, 0, 0.1) !important;
1552
+ }
1553
+
1554
+ /* Purple */
1555
+ .ui.inverted.menu .purple.active.item,
1556
+ .ui.inverted.purple.menu {
1557
+ background-color: #A333C8;
1558
+ }
1559
+ .ui.inverted.purple.menu .item:before {
1560
+ background-color: rgba(34, 36, 38, 0.1);
1561
+ }
1562
+ .ui.inverted.purple.menu .active.item {
1563
+ background-color: rgba(0, 0, 0, 0.1) !important;
1564
+ }
1565
+
1566
+ /* Pink */
1567
+ .ui.inverted.menu .pink.active.item,
1568
+ .ui.inverted.pink.menu {
1569
+ background-color: #E03997;
1570
+ }
1571
+ .ui.inverted.pink.menu .item:before {
1572
+ background-color: rgba(34, 36, 38, 0.1);
1573
+ }
1574
+ .ui.inverted.pink.menu .active.item {
1575
+ background-color: rgba(0, 0, 0, 0.1) !important;
1576
+ }
1577
+
1578
+ /* Brown */
1579
+ .ui.inverted.menu .brown.active.item,
1580
+ .ui.inverted.brown.menu {
1581
+ background-color: #A5673F;
1582
+ }
1583
+ .ui.inverted.brown.menu .item:before {
1584
+ background-color: rgba(34, 36, 38, 0.1);
1585
+ }
1586
+ .ui.inverted.brown.menu .active.item {
1587
+ background-color: rgba(0, 0, 0, 0.1) !important;
1588
+ }
1589
+
1590
+ /* Grey */
1591
+ .ui.inverted.menu .grey.active.item,
1592
+ .ui.inverted.grey.menu {
1593
+ background-color: #767676;
1594
+ }
1595
+ .ui.inverted.grey.menu .item:before {
1596
+ background-color: rgba(34, 36, 38, 0.1);
1597
+ }
1598
+ .ui.inverted.grey.menu .active.item {
1599
+ background-color: rgba(0, 0, 0, 0.1) !important;
1600
+ }
1601
+
1602
+ /*--------------
1603
+ Fitted
1604
+ ---------------*/
1605
+
1606
+ .ui.fitted.menu .item,
1607
+ .ui.fitted.menu .item .menu .item,
1608
+ .ui.menu .fitted.item {
1609
+ padding: 0em;
1610
+ }
1611
+ .ui.horizontally.fitted.menu .item,
1612
+ .ui.horizontally.fitted.menu .item .menu .item,
1613
+ .ui.menu .horizontally.fitted.item {
1614
+ padding-top: 0.92857143em;
1615
+ padding-bottom: 0.92857143em;
1616
+ }
1617
+ .ui.vertically.fitted.menu .item,
1618
+ .ui.vertically.fitted.menu .item .menu .item,
1619
+ .ui.menu .vertically.fitted.item {
1620
+ padding-left: 1.14285714em;
1621
+ padding-right: 1.14285714em;
1622
+ }
1623
+
1624
+ /*--------------
1625
+ Borderless
1626
+ ---------------*/
1627
+
1628
+ .ui.borderless.menu .item:before,
1629
+ .ui.borderless.menu .item .menu .item:before,
1630
+ .ui.menu .borderless.item:before {
1631
+ background: none !important;
1632
+ }
1633
+
1634
+ /*-------------------
1635
+ Compact
1636
+ --------------------*/
1637
+
1638
+ .ui.compact.menu {
1639
+ display: -webkit-inline-box;
1640
+ display: -ms-inline-flexbox;
1641
+ display: inline-flex;
1642
+ margin: 0em;
1643
+ vertical-align: middle;
1644
+ }
1645
+ .ui.compact.vertical.menu {
1646
+ display: inline-block;
1647
+ }
1648
+ .ui.compact.menu .item:last-child {
1649
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1650
+ }
1651
+ .ui.compact.menu .item:last-child:before {
1652
+ display: none;
1653
+ }
1654
+ .ui.compact.vertical.menu {
1655
+ width: auto !important;
1656
+ }
1657
+ .ui.compact.vertical.menu .item:last-child::before {
1658
+ display: block;
1659
+ }
1660
+
1661
+ /*-------------------
1662
+ Fluid
1663
+ --------------------*/
1664
+
1665
+ .ui.menu.fluid,
1666
+ .ui.vertical.menu.fluid {
1667
+ width: 100% !important;
1668
+ }
1669
+
1670
+ /*-------------------
1671
+ Evenly Sized
1672
+ --------------------*/
1673
+
1674
+ .ui.item.menu,
1675
+ .ui.item.menu .item {
1676
+ width: 100%;
1677
+ padding-left: 0em !important;
1678
+ padding-right: 0em !important;
1679
+ margin-left: 0em !important;
1680
+ margin-right: 0em !important;
1681
+ text-align: center;
1682
+ -webkit-box-pack: center;
1683
+ -ms-flex-pack: center;
1684
+ justify-content: center;
1685
+ }
1686
+ .ui.item.menu .item:last-child:before {
1687
+ display: none;
1688
+ }
1689
+ .ui.menu.two.item .item {
1690
+ width: 50%;
1691
+ }
1692
+ .ui.menu.three.item .item {
1693
+ width: 33.333%;
1694
+ }
1695
+ .ui.menu.four.item .item {
1696
+ width: 25%;
1697
+ }
1698
+ .ui.menu.five.item .item {
1699
+ width: 20%;
1700
+ }
1701
+ .ui.menu.six.item .item {
1702
+ width: 16.666%;
1703
+ }
1704
+ .ui.menu.seven.item .item {
1705
+ width: 14.285%;
1706
+ }
1707
+ .ui.menu.eight.item .item {
1708
+ width: 12.500%;
1709
+ }
1710
+ .ui.menu.nine.item .item {
1711
+ width: 11.11%;
1712
+ }
1713
+ .ui.menu.ten.item .item {
1714
+ width: 10.0%;
1715
+ }
1716
+ .ui.menu.eleven.item .item {
1717
+ width: 9.09%;
1718
+ }
1719
+ .ui.menu.twelve.item .item {
1720
+ width: 8.333%;
1721
+ }
1722
+
1723
+ /*--------------
1724
+ Fixed
1725
+ ---------------*/
1726
+
1727
+ .ui.menu.fixed {
1728
+ position: fixed;
1729
+ z-index: 101;
1730
+ margin: 0em;
1731
+ width: 100%;
1732
+ }
1733
+ .ui.menu.fixed,
1734
+ .ui.menu.fixed .item:first-child,
1735
+ .ui.menu.fixed .item:last-child {
1736
+ border-radius: 0px !important;
1737
+ }
1738
+ .ui.fixed.menu,
1739
+ .ui[class*="top fixed"].menu {
1740
+ top: 0px;
1741
+ left: 0px;
1742
+ right: auto;
1743
+ bottom: auto;
1744
+ }
1745
+ .ui[class*="top fixed"].menu {
1746
+ border-top: none;
1747
+ border-left: none;
1748
+ border-right: none;
1749
+ }
1750
+ .ui[class*="right fixed"].menu {
1751
+ border-top: none;
1752
+ border-bottom: none;
1753
+ border-right: none;
1754
+ top: 0px;
1755
+ right: 0px;
1756
+ left: auto;
1757
+ bottom: auto;
1758
+ width: auto;
1759
+ height: 100%;
1760
+ }
1761
+ .ui[class*="bottom fixed"].menu {
1762
+ border-bottom: none;
1763
+ border-left: none;
1764
+ border-right: none;
1765
+ bottom: 0px;
1766
+ left: 0px;
1767
+ top: auto;
1768
+ right: auto;
1769
+ }
1770
+ .ui[class*="left fixed"].menu {
1771
+ border-top: none;
1772
+ border-bottom: none;
1773
+ border-left: none;
1774
+ top: 0px;
1775
+ left: 0px;
1776
+ right: auto;
1777
+ bottom: auto;
1778
+ width: auto;
1779
+ height: 100%;
1780
+ }
1781
+
1782
+ /* Coupling with Grid */
1783
+ .ui.fixed.menu + .ui.grid {
1784
+ padding-top: 2.75rem;
1785
+ }
1786
+
1787
+ /*-------------------
1788
+ Pointing
1789
+ --------------------*/
1790
+
1791
+ .ui.pointing.menu .item:after {
1792
+ visibility: hidden;
1793
+ position: absolute;
1794
+ content: '';
1795
+ top: 100%;
1796
+ left: 50%;
1797
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1798
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
1799
+ background: none;
1800
+ margin: 0.5px 0em 0em;
1801
+ width: 0.57142857em;
1802
+ height: 0.57142857em;
1803
+ border: none;
1804
+ border-bottom: 1px solid #D4D4D5;
1805
+ border-right: 1px solid #D4D4D5;
1806
+ z-index: 2;
1807
+ -webkit-transition: background 0.1s ease;
1808
+ transition: background 0.1s ease;
1809
+ }
1810
+ .ui.vertical.pointing.menu .item:after {
1811
+ position: absolute;
1812
+ top: 50%;
1813
+ right: 0%;
1814
+ bottom: auto;
1815
+ left: auto;
1816
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
1817
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
1818
+ margin: 0em -0.5px 0em 0em;
1819
+ border: none;
1820
+ border-top: 1px solid #D4D4D5;
1821
+ border-right: 1px solid #D4D4D5;
1822
+ }
1823
+
1824
+ /* Active */
1825
+ .ui.pointing.menu .active.item:after {
1826
+ visibility: visible;
1827
+ }
1828
+ .ui.pointing.menu .active.dropdown.item:after {
1829
+ visibility: hidden;
1830
+ }
1831
+
1832
+ /* Don't double up pointers */
1833
+ .ui.pointing.menu .dropdown.active.item:after,
1834
+ .ui.pointing.menu .active.item .menu .active.item:after {
1835
+ display: none;
1836
+ }
1837
+
1838
+ /* Colors */
1839
+ .ui.pointing.menu .active.item:hover:after {
1840
+ background-color: #F2F2F2;
1841
+ }
1842
+ .ui.pointing.menu .active.item:after {
1843
+ background-color: #F2F2F2;
1844
+ }
1845
+ .ui.pointing.menu .active.item:hover:after {
1846
+ background-color: #F2F2F2;
1847
+ }
1848
+ .ui.vertical.pointing.menu .active.item:hover:after {
1849
+ background-color: #F2F2F2;
1850
+ }
1851
+ .ui.vertical.pointing.menu .active.item:after {
1852
+ background-color: #F2F2F2;
1853
+ }
1854
+ .ui.vertical.pointing.menu .menu .active.item:after {
1855
+ background-color: #FFFFFF;
1856
+ }
1857
+
1858
+ /*--------------
1859
+ Attached
1860
+ ---------------*/
1861
+
1862
+
1863
+ /* Middle */
1864
+ .ui.attached.menu {
1865
+ top: 0px;
1866
+ bottom: 0px;
1867
+ border-radius: 0px;
1868
+ margin: 0em -1px;
1869
+ width: calc(100% + 2px );
1870
+ max-width: calc(100% + 2px );
1871
+ box-shadow: none;
1872
+ }
1873
+ .ui.attached + .ui.attached.menu:not(.top) {
1874
+ border-top: none;
1875
+ }
1876
+
1877
+ /* Top */
1878
+ .ui[class*="top attached"].menu {
1879
+ bottom: 0px;
1880
+ margin-bottom: 0em;
1881
+ top: 0px;
1882
+ margin-top: 1rem;
1883
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1884
+ }
1885
+ .ui.menu[class*="top attached"]:first-child {
1886
+ margin-top: 0em;
1887
+ }
1888
+
1889
+ /* Bottom */
1890
+ .ui[class*="bottom attached"].menu {
1891
+ bottom: 0px;
1892
+ margin-top: 0em;
1893
+ top: 0px;
1894
+ margin-bottom: 1rem;
1895
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
1896
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1897
+ }
1898
+ .ui[class*="bottom attached"].menu:last-child {
1899
+ margin-bottom: 0em;
1900
+ }
1901
+
1902
+ /* Attached Menu Item */
1903
+ .ui.top.attached.menu > .item:first-child {
1904
+ border-radius: 0.28571429rem 0em 0em 0em;
1905
+ }
1906
+ .ui.bottom.attached.menu > .item:first-child {
1907
+ border-radius: 0em 0em 0em 0.28571429rem;
1908
+ }
1909
+
1910
+ /* Tabular Attached */
1911
+ .ui.attached.menu:not(.tabular) {
1912
+ border: 1px solid #D4D4D5;
1913
+ }
1914
+ .ui.attached.inverted.menu {
1915
+ border: none;
1916
+ }
1917
+ .ui.attached.tabular.menu {
1918
+ margin-left: 0;
1919
+ margin-right: 0;
1920
+ width: 100%;
1921
+ }
1922
+
1923
+ /*--------------
1924
+ Sizes
1925
+ ---------------*/
1926
+
1927
+
1928
+ /* Mini */
1929
+ .ui.mini.menu {
1930
+ font-size: 0.78571429rem;
1931
+ }
1932
+ .ui.mini.vertical.menu {
1933
+ width: 9rem;
1934
+ }
1935
+
1936
+ /* Tiny */
1937
+ .ui.tiny.menu {
1938
+ font-size: 0.85714286rem;
1939
+ }
1940
+ .ui.tiny.vertical.menu {
1941
+ width: 11rem;
1942
+ }
1943
+
1944
+ /* Small */
1945
+ .ui.small.menu {
1946
+ font-size: 0.92857143rem;
1947
+ }
1948
+ .ui.small.vertical.menu {
1949
+ width: 13rem;
1950
+ }
1951
+
1952
+ /* Medium */
1953
+ .ui.menu {
1954
+ font-size: 1rem;
1955
+ }
1956
+ .ui.vertical.menu {
1957
+ width: 15rem;
1958
+ }
1959
+
1960
+ /* Large */
1961
+ .ui.large.menu {
1962
+ font-size: 1.07142857rem;
1963
+ }
1964
+ .ui.large.vertical.menu {
1965
+ width: 18rem;
1966
+ }
1967
+
1968
+ /* Huge */
1969
+ .ui.huge.menu {
1970
+ font-size: 1.14285714rem;
1971
+ }
1972
+ .ui.huge.vertical.menu {
1973
+ width: 20rem;
1974
+ }
1975
+
1976
+ /* Big */
1977
+ .ui.big.menu {
1978
+ font-size: 1.21428571rem;
1979
+ }
1980
+ .ui.big.vertical.menu {
1981
+ width: 22rem;
1982
+ }
1983
+
1984
+ /* Massive */
1985
+ .ui.massive.menu {
1986
+ font-size: 1.28571429rem;
1987
+ }
1988
+ .ui.massive.vertical.menu {
1989
+ width: 25rem;
1990
+ }
1991
+
1992
+
1993
+ /*******************************
1994
+ Theme Overrides
1995
+ *******************************/
1996
+
1997
+
1998
+
1999
+ /*******************************
2000
+ Site Overrides
2001
+ *******************************/
2002
+