stylish 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -10
  3. data/ARCHITECTURE.md +96 -0
  4. data/Gemfile +8 -0
  5. data/README.md +25 -29
  6. data/Rakefile +24 -0
  7. data/bin/stylish +33 -0
  8. data/lib/stylish.rb +36 -1
  9. data/lib/stylish/configuration.rb +37 -0
  10. data/lib/stylish/core_ext.rb +20 -0
  11. data/lib/stylish/developer.rb +13 -0
  12. data/lib/stylish/developer/config.rb +19 -0
  13. data/lib/stylish/developer/environment.rb +75 -0
  14. data/lib/stylish/developer/listing.rb +85 -0
  15. data/lib/stylish/developer/model_delegator.rb +51 -0
  16. data/lib/stylish/developer/modification.rb +139 -0
  17. data/lib/stylish/developer/path.rb +168 -0
  18. data/lib/stylish/developer/route.rb +97 -0
  19. data/lib/stylish/developer/server.rb +40 -0
  20. data/lib/stylish/engine.rb +12 -0
  21. data/lib/stylish/fs.rb +59 -0
  22. data/lib/stylish/manifest.rb +100 -0
  23. data/lib/stylish/models.rb +119 -0
  24. data/lib/stylish/models/component.rb +19 -0
  25. data/lib/stylish/models/layout.rb +19 -0
  26. data/lib/stylish/models/library.rb +134 -0
  27. data/lib/stylish/models/package.rb +156 -0
  28. data/lib/stylish/models/script.rb +10 -0
  29. data/lib/stylish/models/stylesheet.rb +9 -0
  30. data/lib/stylish/models/template.rb +9 -0
  31. data/lib/stylish/models/theme.rb +8 -0
  32. data/lib/stylish/util.rb +20 -0
  33. data/lib/stylish/version.rb +1 -1
  34. data/library/config.json +4 -0
  35. data/library/second-theme/manifest.json +8 -0
  36. data/library/second-theme/manifest.yml +6 -0
  37. data/library/second-theme/templates/footers/footer-01.html +3 -0
  38. data/library/second-theme/templates/footers/footer-02.html +3 -0
  39. data/library/second-theme/templates/headers/header-01.html +3 -0
  40. data/library/second-theme/templates/headers/header-02.html +3 -0
  41. data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  42. data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  43. data/library/test-theme/components/footers/footer-01.json +5 -0
  44. data/library/test-theme/components/footers/footer-02.json +5 -0
  45. data/library/test-theme/components/headers/header-01.json +5 -0
  46. data/library/test-theme/components/headers/header-02.json +5 -0
  47. data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  48. data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  49. data/library/test-theme/manifest.json +8 -0
  50. data/library/test-theme/manifest.yml +6 -0
  51. data/library/test-theme/pages/page-01.json +11 -0
  52. data/library/test-theme/templates/footers/footer-01.html +3 -0
  53. data/library/test-theme/templates/footers/footer-02.html +3 -0
  54. data/library/test-theme/templates/headers/header-01.html +3 -0
  55. data/library/test-theme/templates/headers/header-02.html +3 -0
  56. data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  57. data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  58. data/library/test-theme/templates/layouts/standard-layout.html +10 -0
  59. data/spec/acceptance/listing_assets_spec.rb +20 -0
  60. data/spec/acceptance/model_browsing_spec.rb +21 -0
  61. data/spec/acceptance/model_creation_spec.rb +16 -0
  62. data/spec/acceptance/model_deleting_spec.rb +10 -0
  63. data/spec/acceptance/model_updating_spec.rb +12 -0
  64. data/spec/acceptance/modifying_assets_spec.rb +50 -0
  65. data/spec/acceptance/server_info_spec.rb +10 -0
  66. data/spec/dummy/README.rdoc +28 -0
  67. data/spec/dummy/Rakefile +6 -0
  68. data/spec/dummy/app/assets/images/.keep +0 -0
  69. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  70. data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
  71. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  72. data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
  73. data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
  74. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  75. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  76. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  77. data/spec/dummy/app/mailers/.keep +0 -0
  78. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  79. data/spec/dummy/bin/bundle +3 -0
  80. data/spec/dummy/bin/rails +4 -0
  81. data/spec/dummy/bin/rake +4 -0
  82. data/spec/dummy/config.ru +4 -0
  83. data/spec/dummy/config/application.rb +30 -0
  84. data/spec/dummy/config/boot.rb +5 -0
  85. data/spec/dummy/config/database.yml +25 -0
  86. data/spec/dummy/config/environment.rb +5 -0
  87. data/spec/dummy/config/environments/development.rb +37 -0
  88. data/spec/dummy/config/environments/production.rb +82 -0
  89. data/spec/dummy/config/environments/test.rb +39 -0
  90. data/spec/dummy/config/initializers/assets.rb +8 -0
  91. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  93. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  94. data/spec/dummy/config/initializers/inflections.rb +16 -0
  95. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  96. data/spec/dummy/config/initializers/session_store.rb +3 -0
  97. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/spec/dummy/config/locales/en.yml +23 -0
  99. data/spec/dummy/config/routes.rb +3 -0
  100. data/spec/dummy/config/secrets.yml +22 -0
  101. data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
  102. data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
  103. data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
  104. data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
  105. data/spec/dummy/db/schema.rb +37 -0
  106. data/spec/dummy/db/test.sqlite3 +0 -0
  107. data/spec/dummy/lib/assets/.keep +0 -0
  108. data/spec/dummy/log/.keep +0 -0
  109. data/spec/dummy/public/404.html +67 -0
  110. data/spec/dummy/public/422.html +67 -0
  111. data/spec/dummy/public/500.html +66 -0
  112. data/spec/dummy/public/favicon.ico +0 -0
  113. data/spec/fixtures/config.json +3 -0
  114. data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
  115. data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
  116. data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
  117. data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
  118. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  119. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  120. data/spec/fixtures/test-theme/manifest.json +8 -0
  121. data/spec/fixtures/test-theme/manifest.yml +6 -0
  122. data/spec/fixtures/test-theme/pages/page-01.json +11 -0
  123. data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
  124. data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
  125. data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
  126. data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
  127. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  128. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  129. data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
  130. data/spec/lib/stylish/configuration_spec.rb +8 -0
  131. data/spec/lib/stylish/developer/path_spec.rb +36 -0
  132. data/spec/lib/stylish/developer/route_spec.rb +5 -0
  133. data/spec/lib/stylish/manifest_spec.rb +48 -0
  134. data/spec/lib/stylish/models/library_spec.rb +38 -0
  135. data/spec/lib/stylish/models/package_spec.rb +35 -0
  136. data/spec/lib/stylish/models_spec.rb +12 -0
  137. data/spec/spec_helper.rb +38 -0
  138. data/spec/support/json_helper.rb +7 -0
  139. data/spec/test.css.scss +6 -0
  140. data/stylish.gemspec +17 -2
  141. data/support/editor-app/.gitignore +2 -0
  142. data/support/editor-app/development/bower.json +9 -0
  143. data/support/editor-app/development/package.json +28 -0
  144. data/support/editor-app/development/semantic/components/accordion.css +257 -0
  145. data/support/editor-app/development/semantic/components/accordion.js +558 -0
  146. data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
  147. data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
  148. data/support/editor-app/development/semantic/components/ad.css +277 -0
  149. data/support/editor-app/development/semantic/components/ad.min.css +11 -0
  150. data/support/editor-app/development/semantic/components/api.js +851 -0
  151. data/support/editor-app/development/semantic/components/api.min.js +11 -0
  152. data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
  153. data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
  154. data/support/editor-app/development/semantic/components/button.css +2391 -0
  155. data/support/editor-app/development/semantic/components/button.min.css +11 -0
  156. data/support/editor-app/development/semantic/components/card.css +758 -0
  157. data/support/editor-app/development/semantic/components/card.min.css +11 -0
  158. data/support/editor-app/development/semantic/components/checkbox.css +514 -0
  159. data/support/editor-app/development/semantic/components/checkbox.js +507 -0
  160. data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
  161. data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
  162. data/support/editor-app/development/semantic/components/comment.css +260 -0
  163. data/support/editor-app/development/semantic/components/comment.min.css +11 -0
  164. data/support/editor-app/development/semantic/components/dimmer.css +187 -0
  165. data/support/editor-app/development/semantic/components/dimmer.js +627 -0
  166. data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
  167. data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
  168. data/support/editor-app/development/semantic/components/divider.css +244 -0
  169. data/support/editor-app/development/semantic/components/divider.min.css +11 -0
  170. data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
  171. data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
  172. data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
  173. data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
  174. data/support/editor-app/development/semantic/components/feed.css +277 -0
  175. data/support/editor-app/development/semantic/components/feed.min.css +11 -0
  176. data/support/editor-app/development/semantic/components/flag.css +1017 -0
  177. data/support/editor-app/development/semantic/components/flag.min.css +11 -0
  178. data/support/editor-app/development/semantic/components/form.css +875 -0
  179. data/support/editor-app/development/semantic/components/form.js +1039 -0
  180. data/support/editor-app/development/semantic/components/form.min.css +11 -0
  181. data/support/editor-app/development/semantic/components/form.min.js +11 -0
  182. data/support/editor-app/development/semantic/components/grid.css +1816 -0
  183. data/support/editor-app/development/semantic/components/grid.min.css +11 -0
  184. data/support/editor-app/development/semantic/components/header.css +572 -0
  185. data/support/editor-app/development/semantic/components/header.min.css +11 -0
  186. data/support/editor-app/development/semantic/components/icon.css +2127 -0
  187. data/support/editor-app/development/semantic/components/icon.min.css +11 -0
  188. data/support/editor-app/development/semantic/components/image.css +275 -0
  189. data/support/editor-app/development/semantic/components/image.min.css +11 -0
  190. data/support/editor-app/development/semantic/components/input.css +455 -0
  191. data/support/editor-app/development/semantic/components/input.min.css +11 -0
  192. data/support/editor-app/development/semantic/components/item.css +458 -0
  193. data/support/editor-app/development/semantic/components/item.min.css +11 -0
  194. data/support/editor-app/development/semantic/components/label.css +930 -0
  195. data/support/editor-app/development/semantic/components/label.min.css +11 -0
  196. data/support/editor-app/development/semantic/components/list.css +879 -0
  197. data/support/editor-app/development/semantic/components/list.min.css +11 -0
  198. data/support/editor-app/development/semantic/components/loader.css +279 -0
  199. data/support/editor-app/development/semantic/components/loader.min.css +11 -0
  200. data/support/editor-app/development/semantic/components/menu.css +1596 -0
  201. data/support/editor-app/development/semantic/components/menu.min.css +11 -0
  202. data/support/editor-app/development/semantic/components/message.css +422 -0
  203. data/support/editor-app/development/semantic/components/message.min.css +11 -0
  204. data/support/editor-app/development/semantic/components/modal.css +431 -0
  205. data/support/editor-app/development/semantic/components/modal.js +860 -0
  206. data/support/editor-app/development/semantic/components/modal.min.css +11 -0
  207. data/support/editor-app/development/semantic/components/modal.min.js +11 -0
  208. data/support/editor-app/development/semantic/components/nag.css +149 -0
  209. data/support/editor-app/development/semantic/components/nag.js +477 -0
  210. data/support/editor-app/development/semantic/components/nag.min.css +11 -0
  211. data/support/editor-app/development/semantic/components/nag.min.js +11 -0
  212. data/support/editor-app/development/semantic/components/popup.css +294 -0
  213. data/support/editor-app/development/semantic/components/popup.js +1187 -0
  214. data/support/editor-app/development/semantic/components/popup.min.css +11 -0
  215. data/support/editor-app/development/semantic/components/popup.min.js +11 -0
  216. data/support/editor-app/development/semantic/components/progress.css +449 -0
  217. data/support/editor-app/development/semantic/components/progress.js +785 -0
  218. data/support/editor-app/development/semantic/components/progress.min.css +11 -0
  219. data/support/editor-app/development/semantic/components/progress.min.js +11 -0
  220. data/support/editor-app/development/semantic/components/rail.css +125 -0
  221. data/support/editor-app/development/semantic/components/rail.min.css +11 -0
  222. data/support/editor-app/development/semantic/components/rating.css +262 -0
  223. data/support/editor-app/development/semantic/components/rating.js +451 -0
  224. data/support/editor-app/development/semantic/components/rating.min.css +11 -0
  225. data/support/editor-app/development/semantic/components/rating.min.js +11 -0
  226. data/support/editor-app/development/semantic/components/reset.css +430 -0
  227. data/support/editor-app/development/semantic/components/reset.min.css +11 -0
  228. data/support/editor-app/development/semantic/components/reveal.css +294 -0
  229. data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
  230. data/support/editor-app/development/semantic/components/search.css +330 -0
  231. data/support/editor-app/development/semantic/components/search.js +1055 -0
  232. data/support/editor-app/development/semantic/components/search.min.css +11 -0
  233. data/support/editor-app/development/semantic/components/search.min.js +11 -0
  234. data/support/editor-app/development/semantic/components/segment.css +590 -0
  235. data/support/editor-app/development/semantic/components/segment.min.css +11 -0
  236. data/support/editor-app/development/semantic/components/shape.css +155 -0
  237. data/support/editor-app/development/semantic/components/shape.js +830 -0
  238. data/support/editor-app/development/semantic/components/shape.min.css +11 -0
  239. data/support/editor-app/development/semantic/components/shape.min.js +11 -0
  240. data/support/editor-app/development/semantic/components/sidebar.css +621 -0
  241. data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
  242. data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
  243. data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
  244. data/support/editor-app/development/semantic/components/site.css +147 -0
  245. data/support/editor-app/development/semantic/components/site.js +487 -0
  246. data/support/editor-app/development/semantic/components/site.min.css +11 -0
  247. data/support/editor-app/development/semantic/components/site.min.js +11 -0
  248. data/support/editor-app/development/semantic/components/state.js +690 -0
  249. data/support/editor-app/development/semantic/components/state.min.js +11 -0
  250. data/support/editor-app/development/semantic/components/statistic.css +410 -0
  251. data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
  252. data/support/editor-app/development/semantic/components/step.css +433 -0
  253. data/support/editor-app/development/semantic/components/step.min.css +11 -0
  254. data/support/editor-app/development/semantic/components/sticky.css +80 -0
  255. data/support/editor-app/development/semantic/components/sticky.js +775 -0
  256. data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
  257. data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
  258. data/support/editor-app/development/semantic/components/tab.css +93 -0
  259. data/support/editor-app/development/semantic/components/tab.js +787 -0
  260. data/support/editor-app/development/semantic/components/tab.min.css +11 -0
  261. data/support/editor-app/development/semantic/components/tab.min.js +11 -0
  262. data/support/editor-app/development/semantic/components/table.css +999 -0
  263. data/support/editor-app/development/semantic/components/table.min.css +11 -0
  264. data/support/editor-app/development/semantic/components/transition.css +2152 -0
  265. data/support/editor-app/development/semantic/components/transition.js +936 -0
  266. data/support/editor-app/development/semantic/components/transition.min.css +11 -0
  267. data/support/editor-app/development/semantic/components/transition.min.js +11 -0
  268. data/support/editor-app/development/semantic/components/video.css +126 -0
  269. data/support/editor-app/development/semantic/components/video.js +540 -0
  270. data/support/editor-app/development/semantic/components/video.min.css +11 -0
  271. data/support/editor-app/development/semantic/components/video.min.js +11 -0
  272. data/support/editor-app/development/semantic/components/visibility.js +970 -0
  273. data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
  274. data/support/editor-app/development/semantic/semantic.css +31768 -0
  275. data/support/editor-app/development/semantic/semantic.js +18317 -0
  276. data/support/editor-app/development/semantic/semantic.min.css +11 -0
  277. data/support/editor-app/development/semantic/semantic.min.js +17 -0
  278. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  279. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  280. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  281. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  282. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
  283. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
  284. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
  285. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  286. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
  287. data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
  288. data/support/editor-app/development/src/apis/index.coffee +35 -0
  289. data/support/editor-app/development/src/components/editor.cjsx +58 -0
  290. data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
  291. data/support/editor-app/development/src/components/header.cjsx +12 -0
  292. data/support/editor-app/development/src/components/index.coffee +9 -0
  293. data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
  294. data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
  295. data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
  296. data/support/editor-app/development/src/index.cjsx +82 -0
  297. data/support/editor-app/development/src/lib/util.coffee +48 -0
  298. data/support/editor-app/development/src/pages/home.cjsx +46 -0
  299. data/support/editor-app/development/src/pages/index.coffee +6 -0
  300. data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
  301. data/support/editor-app/development/src/registry.coffee +35 -0
  302. data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
  303. data/support/editor-app/development/src/styles/index.css.scss +240 -0
  304. data/support/editor-app/development/src/sugar.cjsx +126 -0
  305. data/support/editor-app/development/webpack.config.js +53 -0
  306. data/support/editor-app/dist/base.css +0 -0
  307. data/support/editor-app/dist/toolit.js +62 -0
  308. data/support/editor-app/dist/toolkit.js +44573 -0
  309. data/support/editor-app/index.html +50 -0
  310. data/support/editor-app/package.json +15 -0
  311. data/support/editor-app/semantic/components/accordion.css +257 -0
  312. data/support/editor-app/semantic/components/accordion.js +558 -0
  313. data/support/editor-app/semantic/components/accordion.min.css +11 -0
  314. data/support/editor-app/semantic/components/accordion.min.js +11 -0
  315. data/support/editor-app/semantic/components/ad.css +277 -0
  316. data/support/editor-app/semantic/components/ad.min.css +11 -0
  317. data/support/editor-app/semantic/components/api.js +851 -0
  318. data/support/editor-app/semantic/components/api.min.js +11 -0
  319. data/support/editor-app/semantic/components/breadcrumb.css +125 -0
  320. data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
  321. data/support/editor-app/semantic/components/button.css +2391 -0
  322. data/support/editor-app/semantic/components/button.min.css +11 -0
  323. data/support/editor-app/semantic/components/card.css +758 -0
  324. data/support/editor-app/semantic/components/card.min.css +11 -0
  325. data/support/editor-app/semantic/components/checkbox.css +514 -0
  326. data/support/editor-app/semantic/components/checkbox.js +507 -0
  327. data/support/editor-app/semantic/components/checkbox.min.css +11 -0
  328. data/support/editor-app/semantic/components/checkbox.min.js +11 -0
  329. data/support/editor-app/semantic/components/comment.css +260 -0
  330. data/support/editor-app/semantic/components/comment.min.css +11 -0
  331. data/support/editor-app/semantic/components/dimmer.css +187 -0
  332. data/support/editor-app/semantic/components/dimmer.js +627 -0
  333. data/support/editor-app/semantic/components/dimmer.min.css +11 -0
  334. data/support/editor-app/semantic/components/dimmer.min.js +11 -0
  335. data/support/editor-app/semantic/components/divider.css +244 -0
  336. data/support/editor-app/semantic/components/divider.min.css +11 -0
  337. data/support/editor-app/semantic/components/dropdown.css +1085 -0
  338. data/support/editor-app/semantic/components/dropdown.js +1757 -0
  339. data/support/editor-app/semantic/components/dropdown.min.css +11 -0
  340. data/support/editor-app/semantic/components/dropdown.min.js +11 -0
  341. data/support/editor-app/semantic/components/feed.css +277 -0
  342. data/support/editor-app/semantic/components/feed.min.css +11 -0
  343. data/support/editor-app/semantic/components/flag.css +1017 -0
  344. data/support/editor-app/semantic/components/flag.min.css +11 -0
  345. data/support/editor-app/semantic/components/form.css +875 -0
  346. data/support/editor-app/semantic/components/form.js +1039 -0
  347. data/support/editor-app/semantic/components/form.min.css +11 -0
  348. data/support/editor-app/semantic/components/form.min.js +11 -0
  349. data/support/editor-app/semantic/components/grid.css +1816 -0
  350. data/support/editor-app/semantic/components/grid.min.css +11 -0
  351. data/support/editor-app/semantic/components/header.css +572 -0
  352. data/support/editor-app/semantic/components/header.min.css +11 -0
  353. data/support/editor-app/semantic/components/icon.css +2127 -0
  354. data/support/editor-app/semantic/components/icon.min.css +11 -0
  355. data/support/editor-app/semantic/components/image.css +275 -0
  356. data/support/editor-app/semantic/components/image.min.css +11 -0
  357. data/support/editor-app/semantic/components/input.css +455 -0
  358. data/support/editor-app/semantic/components/input.min.css +11 -0
  359. data/support/editor-app/semantic/components/item.css +458 -0
  360. data/support/editor-app/semantic/components/item.min.css +11 -0
  361. data/support/editor-app/semantic/components/label.css +930 -0
  362. data/support/editor-app/semantic/components/label.min.css +11 -0
  363. data/support/editor-app/semantic/components/list.css +879 -0
  364. data/support/editor-app/semantic/components/list.min.css +11 -0
  365. data/support/editor-app/semantic/components/loader.css +279 -0
  366. data/support/editor-app/semantic/components/loader.min.css +11 -0
  367. data/support/editor-app/semantic/components/menu.css +1596 -0
  368. data/support/editor-app/semantic/components/menu.min.css +11 -0
  369. data/support/editor-app/semantic/components/message.css +422 -0
  370. data/support/editor-app/semantic/components/message.min.css +11 -0
  371. data/support/editor-app/semantic/components/modal.css +431 -0
  372. data/support/editor-app/semantic/components/modal.js +860 -0
  373. data/support/editor-app/semantic/components/modal.min.css +11 -0
  374. data/support/editor-app/semantic/components/modal.min.js +11 -0
  375. data/support/editor-app/semantic/components/nag.css +149 -0
  376. data/support/editor-app/semantic/components/nag.js +477 -0
  377. data/support/editor-app/semantic/components/nag.min.css +11 -0
  378. data/support/editor-app/semantic/components/nag.min.js +11 -0
  379. data/support/editor-app/semantic/components/popup.css +294 -0
  380. data/support/editor-app/semantic/components/popup.js +1187 -0
  381. data/support/editor-app/semantic/components/popup.min.css +11 -0
  382. data/support/editor-app/semantic/components/popup.min.js +11 -0
  383. data/support/editor-app/semantic/components/progress.css +449 -0
  384. data/support/editor-app/semantic/components/progress.js +785 -0
  385. data/support/editor-app/semantic/components/progress.min.css +11 -0
  386. data/support/editor-app/semantic/components/progress.min.js +11 -0
  387. data/support/editor-app/semantic/components/rail.css +125 -0
  388. data/support/editor-app/semantic/components/rail.min.css +11 -0
  389. data/support/editor-app/semantic/components/rating.css +262 -0
  390. data/support/editor-app/semantic/components/rating.js +451 -0
  391. data/support/editor-app/semantic/components/rating.min.css +11 -0
  392. data/support/editor-app/semantic/components/rating.min.js +11 -0
  393. data/support/editor-app/semantic/components/reset.css +430 -0
  394. data/support/editor-app/semantic/components/reset.min.css +11 -0
  395. data/support/editor-app/semantic/components/reveal.css +294 -0
  396. data/support/editor-app/semantic/components/reveal.min.css +11 -0
  397. data/support/editor-app/semantic/components/search.css +330 -0
  398. data/support/editor-app/semantic/components/search.js +1055 -0
  399. data/support/editor-app/semantic/components/search.min.css +11 -0
  400. data/support/editor-app/semantic/components/search.min.js +11 -0
  401. data/support/editor-app/semantic/components/segment.css +590 -0
  402. data/support/editor-app/semantic/components/segment.min.css +11 -0
  403. data/support/editor-app/semantic/components/shape.css +155 -0
  404. data/support/editor-app/semantic/components/shape.js +830 -0
  405. data/support/editor-app/semantic/components/shape.min.css +11 -0
  406. data/support/editor-app/semantic/components/shape.min.js +11 -0
  407. data/support/editor-app/semantic/components/sidebar.css +621 -0
  408. data/support/editor-app/semantic/components/sidebar.js +1084 -0
  409. data/support/editor-app/semantic/components/sidebar.min.css +11 -0
  410. data/support/editor-app/semantic/components/sidebar.min.js +11 -0
  411. data/support/editor-app/semantic/components/site.css +147 -0
  412. data/support/editor-app/semantic/components/site.js +487 -0
  413. data/support/editor-app/semantic/components/site.min.css +11 -0
  414. data/support/editor-app/semantic/components/site.min.js +11 -0
  415. data/support/editor-app/semantic/components/state.js +690 -0
  416. data/support/editor-app/semantic/components/state.min.js +11 -0
  417. data/support/editor-app/semantic/components/statistic.css +410 -0
  418. data/support/editor-app/semantic/components/statistic.min.css +11 -0
  419. data/support/editor-app/semantic/components/step.css +433 -0
  420. data/support/editor-app/semantic/components/step.min.css +11 -0
  421. data/support/editor-app/semantic/components/sticky.css +80 -0
  422. data/support/editor-app/semantic/components/sticky.js +775 -0
  423. data/support/editor-app/semantic/components/sticky.min.css +11 -0
  424. data/support/editor-app/semantic/components/sticky.min.js +11 -0
  425. data/support/editor-app/semantic/components/tab.css +93 -0
  426. data/support/editor-app/semantic/components/tab.js +787 -0
  427. data/support/editor-app/semantic/components/tab.min.css +11 -0
  428. data/support/editor-app/semantic/components/tab.min.js +11 -0
  429. data/support/editor-app/semantic/components/table.css +999 -0
  430. data/support/editor-app/semantic/components/table.min.css +11 -0
  431. data/support/editor-app/semantic/components/transition.css +2152 -0
  432. data/support/editor-app/semantic/components/transition.js +936 -0
  433. data/support/editor-app/semantic/components/transition.min.css +11 -0
  434. data/support/editor-app/semantic/components/transition.min.js +11 -0
  435. data/support/editor-app/semantic/components/video.css +126 -0
  436. data/support/editor-app/semantic/components/video.js +540 -0
  437. data/support/editor-app/semantic/components/video.min.css +11 -0
  438. data/support/editor-app/semantic/components/video.min.js +11 -0
  439. data/support/editor-app/semantic/components/visibility.js +970 -0
  440. data/support/editor-app/semantic/components/visibility.min.js +11 -0
  441. data/support/editor-app/semantic/semantic.css +31768 -0
  442. data/support/editor-app/semantic/semantic.js +18317 -0
  443. data/support/editor-app/semantic/semantic.min.css +11 -0
  444. data/support/editor-app/semantic/semantic.min.js +17 -0
  445. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  446. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  447. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  448. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  449. data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
  450. data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
  451. data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
  452. data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  453. data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
  454. data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
  455. data/support/editor-app/vendor/jquery.js +8829 -0
  456. data/support/library-server/Gemfile +0 -0
  457. data/support/library-server/config.ru +4 -0
  458. metadata +740 -7
@@ -0,0 +1,11 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ .ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding: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:.3em 0;line-height:1.2}.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>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:.1rem;padding-right:.3em;vertical-align:middle;-webkit-transition:color .2s ease;transition:color .2s ease}.ui.list .list>.item i[class*="top aligned"].icon,.ui.list>.item>i[class*="top aligned"].icon{vertical-align:top}.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;padding-right:.5em;vertical-align:middle}.ui.list .list>.item>[class*="top aligned"].image,.ui.list>.item>[class*="top aligned"].image{vertical-align:top}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:middle}.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;padding-right:0}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.2em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.icon+.content .ui.list>.item>.image+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding-left:.5em;vertical-align:middle}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block}.ui.list .list>.item [class*="top aligned"].content,.ui.list>.item>[class*="top aligned"].content{vertical-align:top}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:rgba(0,0,0,.8)}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#00b2f3}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .item a{cursor:pointer;color:rgba(0,0,0,.8)!important}.ui.list .item a:hover{color:#00b2f3!important}.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,.8)}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.8)}.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:.3em 0;line-height:1.2}.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}.ui.horizontal.list>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.3em;padding-bottom:.3em}.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,.8)}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.8)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:#fff}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.8)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:#fff}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#00b2f3}.ui.inverted.list .item a{cursor:pointer;color:#fff!important}.ui.inverted.list .item a:hover{color:#00b2f3!important}.ui.link.list .item,.ui.link.list .item a,.ui.link.list a.item{color:rgba(0,0,0,.4);-webkit-transition:.2s color ease;transition:.2s color ease}.ui.link.list .active.item,.ui.link.list .active.item a,.ui.link.list .item a:active,.ui.link.list .item a:hover,.ui.link.list a.item:active,.ui.link.list a.item:hover{color:rgba(0,0,0,.8)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a,.ui.inverted.link.list a.item{color:rgba(255,255,255,.5)}.ui.inverted.link.list .active.item a,.ui.inverted.link.list .item a:active,.ui.inverted.link.list .item a:hover,.ui.inverted.link.list a.active.item,.ui.inverted.link.list a.item:active,.ui.inverted.link.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em;margin:0;color:rgba(0,0,0,.4);border-radius:.5em;-webkit-transition:.2s color ease,.2s padding-left ease,.2s background-color ease;transition:.2s color ease,.2s padding-left ease,.2s 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 .list>.item:active,.ui.selection.list>.item.active,.ui.selection.list>.item:active{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.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,.ui.inverted.selection.list>.item:active{background:rgba(255,255,255,.05);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:.2s color ease,.2s padding-left ease,.2s background-color ease;transition:.2s color ease,.2s padding-left ease,.2s background-color ease}.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:1rem}.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{position:absolute;top:auto;left:auto;margin-left:-1rem;content:'•';opacity:1;color:rgba(0,0,0,.8);vertical-align:top}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1rem}.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.5rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.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;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered,".") " ";text-align:right;color:rgba(0,0,0,.8);vertical-align:middle;opacity:.8}.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(39,41,43,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.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 .list>.item:not(.horizontal),.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1rem}.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:.3em}.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{border-top:none;border-left:1px solid rgba(39,41,43,.15);margin:0;padding-left:.5em;padding-right:.5em;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,.2)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(39,41,43,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(39,41,43,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.3em;padding-bottom:.3em}.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:1rem}.ui.celled.bulleted.list .item .list{margin-left:-1rem;margin-right:-1rem;padding-bottom:.3em}.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:.3em}.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(39,41,43,.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(39,41,43,.15)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.2)}.ui.relaxed.list:not(.horizontal)>.item{padding-top:.5rem;padding-bottom:.5rem}.ui.horizontal.relaxed.list>.item{padding-left:1.25rem;padding-right:1.25rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item{padding-top:1rem;padding-bottom:1rem}.ui.horizontal[class*="very relaxed"].list .list>.item,.ui.horizontal[class*="very relaxed"].list>.item{padding-left:2rem;padding-right:2rem}.ui.mini.list{font-size:.71428571em}.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:.71428571rem}.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,279 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+
14
+ /*******************************
15
+ Loader
16
+ *******************************/
17
+
18
+
19
+ /* Standard Size */
20
+ .ui.loader {
21
+ display: none;
22
+ position: absolute;
23
+ top: 50%;
24
+ left: 50%;
25
+ margin: 0px;
26
+ text-align: center;
27
+ z-index: 1000;
28
+ -webkit-transform: translateX(-50%) translateY(-50%);
29
+ -ms-transform: translateX(-50%) translateY(-50%);
30
+ transform: translateX(-50%) translateY(-50%);
31
+ }
32
+
33
+ /* Static Shape */
34
+ .ui.loader:before {
35
+ position: absolute;
36
+ content: '';
37
+ top: 0%;
38
+ left: 50%;
39
+ width: 100%;
40
+ height: 100%;
41
+ border-radius: 500rem;
42
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
43
+ }
44
+
45
+ /* Active Shape */
46
+ .ui.loader:after {
47
+ position: absolute;
48
+ content: '';
49
+ top: 0%;
50
+ left: 50%;
51
+ width: 100%;
52
+ height: 100%;
53
+ -webkit-animation: loader 0.6s linear;
54
+ animation: loader 0.6s linear;
55
+ -webkit-animation-iteration-count: infinite;
56
+ animation-iteration-count: infinite;
57
+ border-radius: 500rem;
58
+ border-color: #aaaaaa transparent transparent;
59
+ border-style: solid;
60
+ border-width: 0.2em;
61
+ box-shadow: 0px 0px 0px 1px transparent;
62
+ }
63
+
64
+ /* Active Animation */
65
+ @-webkit-keyframes loader {
66
+ from {
67
+ -webkit-transform: rotate(0deg);
68
+ transform: rotate(0deg);
69
+ }
70
+ to {
71
+ -webkit-transform: rotate(360deg);
72
+ transform: rotate(360deg);
73
+ }
74
+ }
75
+ @keyframes loader {
76
+ from {
77
+ -webkit-transform: rotate(0deg);
78
+ transform: rotate(0deg);
79
+ }
80
+ to {
81
+ -webkit-transform: rotate(360deg);
82
+ transform: rotate(360deg);
83
+ }
84
+ }
85
+
86
+ /* Sizes */
87
+ .ui.loader:before,
88
+ .ui.loader:after {
89
+ width: 2.2585em;
90
+ height: 2.2585em;
91
+ margin: 0em 0em 0em -1.12925em;
92
+ }
93
+ .ui.mini.loader:before,
94
+ .ui.mini.loader:after {
95
+ width: 1.2857em;
96
+ height: 1.2857em;
97
+ margin: 0em 0em 0em -0.64285em;
98
+ }
99
+ .ui.small.loader:before,
100
+ .ui.small.loader:after {
101
+ width: 1.7142em;
102
+ height: 1.7142em;
103
+ margin: 0em 0em 0em -0.8571em;
104
+ }
105
+ .ui.large.loader:before,
106
+ .ui.large.loader:after {
107
+ width: 4.5714em;
108
+ height: 4.5714em;
109
+ margin: 0em 0em 0em -2.2857em;
110
+ }
111
+
112
+ /*-------------------
113
+ Coupling
114
+ --------------------*/
115
+
116
+
117
+ /* Show inside active dimmer */
118
+ .ui.dimmer .loader {
119
+ display: block;
120
+ }
121
+
122
+ /* Black Dimmer */
123
+ .ui.dimmer .ui.loader {
124
+ color: #ffffff;
125
+ }
126
+ .ui.dimmer .ui.loader:before {
127
+ border-color: rgba(255, 255, 255, 0.15);
128
+ }
129
+ .ui.dimmer .ui.loader:after {
130
+ border-color: #ffffff transparent transparent;
131
+ }
132
+
133
+ /* White Dimmer (Inverted) */
134
+ .ui.inverted.dimmer .ui.loader {
135
+ color: rgba(0, 0, 0, 0.8);
136
+ }
137
+ .ui.inverted.dimmer .ui.loader:before {
138
+ border-color: rgba(0, 0, 0, 0.1);
139
+ }
140
+ .ui.inverted.dimmer .ui.loader:after {
141
+ border-color: #aaaaaa transparent transparent;
142
+ }
143
+
144
+
145
+ /*******************************
146
+ Types
147
+ *******************************/
148
+
149
+
150
+ /*-------------------
151
+ Text
152
+ --------------------*/
153
+
154
+ .ui.text.loader {
155
+ width: auto !important;
156
+ height: auto !important;
157
+ text-align: center;
158
+ font-style: normal;
159
+ }
160
+
161
+
162
+ /*******************************
163
+ States
164
+ *******************************/
165
+
166
+ .ui.indeterminate.loader:after {
167
+ -webkit-animation-direction: reverse;
168
+ animation-direction: reverse;
169
+ -webkit-animation-duration: 1.2s;
170
+ animation-duration: 1.2s;
171
+ }
172
+ .ui.loader.active,
173
+ .ui.loader.visible {
174
+ display: block;
175
+ }
176
+ .ui.loader.disabled,
177
+ .ui.loader.hidden {
178
+ display: none;
179
+ }
180
+
181
+
182
+ /*******************************
183
+ Variations
184
+ *******************************/
185
+
186
+
187
+ /*-------------------
188
+ Sizes
189
+ --------------------*/
190
+
191
+
192
+ /* Loader */
193
+ .ui.inverted.dimmer .ui.mini.loader,
194
+ .ui.mini.loader {
195
+ width: 1.2857em;
196
+ height: 1.2857em;
197
+ font-size: 0.7857em;
198
+ }
199
+ .ui.inverted.dimmer .ui.small.loader,
200
+ .ui.small.loader {
201
+ width: 1.7142em;
202
+ height: 1.7142em;
203
+ font-size: 0.9285em;
204
+ }
205
+ .ui.inverted.dimmer .ui.loader,
206
+ .ui.loader {
207
+ width: 2.2585em;
208
+ height: 2.2585em;
209
+ font-size: 1em;
210
+ }
211
+ .ui.inverted.dimmer .ui.loader.large,
212
+ .ui.loader.large {
213
+ width: 4.5714em;
214
+ height: 4.5714em;
215
+ font-size: 1.1428em;
216
+ }
217
+
218
+ /* Text Loader */
219
+ .ui.mini.text.loader {
220
+ min-width: 1.2857em;
221
+ padding-top: 1.9857em;
222
+ }
223
+ .ui.small.text.loader {
224
+ min-width: 1.7142em;
225
+ padding-top: 2.4142em;
226
+ }
227
+ .ui.text.loader {
228
+ min-width: 2.2585em;
229
+ padding-top: 2.9585em;
230
+ }
231
+ .ui.large.text.loader {
232
+ min-width: 4.5714em;
233
+ padding-top: 5.2714em;
234
+ }
235
+
236
+ /*-------------------
237
+ Inverted
238
+ --------------------*/
239
+
240
+ .ui.inverted.loader {
241
+ color: #ffffff;
242
+ }
243
+ .ui.inverted.loader:before {
244
+ border-color: rgba(255, 255, 255, 0.15);
245
+ }
246
+ .ui.inverted.loader:after {
247
+ border-top-color: #ffffff;
248
+ }
249
+
250
+ /*-------------------
251
+ Inline
252
+ --------------------*/
253
+
254
+ .ui.inline.loader {
255
+ position: relative;
256
+ vertical-align: middle;
257
+ margin: 0em;
258
+ left: 0em;
259
+ top: 0em;
260
+ -webkit-transform: none;
261
+ -ms-transform: none;
262
+ transform: none;
263
+ }
264
+ .ui.inline.loader.active,
265
+ .ui.inline.loader.visible {
266
+ display: inline-block;
267
+ }
268
+
269
+
270
+ /*******************************
271
+ Theme Overrides
272
+ *******************************/
273
+
274
+
275
+
276
+ /*******************************
277
+ Site Overrides
278
+ *******************************/
279
+
@@ -0,0 +1,11 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#aaa transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:#fff}.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,.8)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#aaa 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:1.2857em;height:1.2857em;font-size:.7857em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.9285em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.1428em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.9857em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.4142em}.ui.text.loader{min-width:2.2585em;padding-top:2.9585em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.2714em}.ui.inverted.loader{color:#fff}.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;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}
@@ -0,0 +1,1596 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+
14
+ /*******************************
15
+ Standard
16
+ *******************************/
17
+
18
+
19
+ /*--------------
20
+ Menu
21
+ ---------------*/
22
+
23
+ .ui.menu {
24
+ margin: 1rem 0rem;
25
+ background: #ffffff;
26
+ font-size: 0px;
27
+ font-weight: normal;
28
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15), 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
29
+ border-radius: 0.2857rem;
30
+ }
31
+ .ui.menu:after {
32
+ content: '';
33
+ display: block;
34
+ height: 0px;
35
+ clear: both;
36
+ visibility: hidden;
37
+ }
38
+ .ui.menu:first-child {
39
+ margin-top: 0rem;
40
+ }
41
+ .ui.menu:last-child {
42
+ margin-bottom: 0rem;
43
+ }
44
+
45
+ /*--------------
46
+ Colors
47
+ ---------------*/
48
+
49
+
50
+ /* Text Color */
51
+ .ui.menu .item {
52
+ color: rgba(0, 0, 0, 0.8);
53
+ }
54
+ .ui.menu .item .item {
55
+ color: rgba(0, 0, 0, 0.5);
56
+ }
57
+
58
+ /* Hover */
59
+ .ui.menu .item .menu a.item:hover,
60
+ .ui.menu .item .menu .link.item:hover {
61
+ color: rgba(0, 0, 0, 0.85);
62
+ }
63
+
64
+ /*--------------
65
+ Items
66
+ ---------------*/
67
+
68
+ .ui.menu .item {
69
+ position: relative;
70
+ display: inline-block;
71
+ padding: 0.78571em 0.95em;
72
+ border-top: 0em solid transparent;
73
+ background: none;
74
+ vertical-align: middle;
75
+ line-height: 1;
76
+ text-decoration: none;
77
+ box-sizing: border-box;
78
+ -webkit-tap-highlight-color: transparent;
79
+ -webkit-user-select: none;
80
+ -moz-user-select: none;
81
+ -ms-user-select: none;
82
+ user-select: none;
83
+ -webkit-transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
84
+ transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
85
+ }
86
+ .ui.menu .menu {
87
+ margin: 0em;
88
+ }
89
+
90
+ /* Floated Content */
91
+ .ui.menu > .item:first-child {
92
+ border-radius: 0.2857rem 0px 0px 0.2857rem;
93
+ }
94
+ .ui.menu:not(.vertical) .item.left,
95
+ .ui.menu:not(.vertical) .menu.left {
96
+ float: left;
97
+ }
98
+ .ui.menu:not(.vertical) .item.right,
99
+ .ui.menu:not(.vertical) .menu.right {
100
+ float: right;
101
+ }
102
+
103
+ /*--------------
104
+ Borders
105
+ ---------------*/
106
+
107
+ .ui.menu .item:before {
108
+ position: absolute;
109
+ content: '';
110
+ top: 0%;
111
+ right: 0px;
112
+ width: 1px;
113
+ height: 100%;
114
+ background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
115
+ background: linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
116
+ }
117
+ .ui.menu > .right.menu:first-child {
118
+ display: none;
119
+ }
120
+ .ui.menu .menu.right .item:before,
121
+ .ui.menu .item.right:before {
122
+ right: auto;
123
+ left: 0px;
124
+ }
125
+
126
+ /*--------------
127
+ Text Content
128
+ ---------------*/
129
+
130
+ .ui.menu .text.item > *,
131
+ .ui.menu .item > a:not(.ui),
132
+ .ui.menu .item > p:only-child {
133
+ -webkit-user-select: text;
134
+ -moz-user-select: text;
135
+ -ms-user-select: text;
136
+ user-select: text;
137
+ line-height: 1.3;
138
+ color: rgba(0, 0, 0, 0.8);
139
+ }
140
+ .ui.menu .item > p:first-child {
141
+ margin-top: 0;
142
+ }
143
+ .ui.menu .item > p:last-child {
144
+ margin-bottom: 0;
145
+ }
146
+
147
+ /*--------------
148
+ Icons
149
+ ---------------*/
150
+
151
+ .ui.menu .item > i.icon {
152
+ opacity: 0.75;
153
+ float: none;
154
+ margin: 0em 0.25em 0em 0em;
155
+ }
156
+ .ui.menu .item > i.dropdown.icon {
157
+ float: right;
158
+ margin-left: 1em;
159
+ }
160
+
161
+ /*--------------
162
+ Button
163
+ ---------------*/
164
+
165
+ .ui.menu:not(.vertical) .item > .button {
166
+ position: relative;
167
+ top: -0.05em;
168
+ margin: -0.55em 0;
169
+ padding-bottom: 0.55em;
170
+ padding-top: 0.55em;
171
+ font-size: 0.875em;
172
+ }
173
+
174
+ /*--------------
175
+ Inputs
176
+ ---------------*/
177
+
178
+ .ui.menu .item > .input {
179
+ width: 100%;
180
+ }
181
+ .ui.menu:not(.vertical) .item > .input {
182
+ position: relative;
183
+ top: 0em;
184
+ margin: -0.6em 0em;
185
+ }
186
+ .ui.menu .item > .input input {
187
+ font-size: 1em;
188
+ padding-top: 0.4em;
189
+ padding-bottom: 0.4em;
190
+ }
191
+ .ui.menu .item > .input .button,
192
+ .ui.menu .item > .input .label {
193
+ padding-top: 0.4em;
194
+ padding-bottom: 0.4em;
195
+ }
196
+
197
+ /* Resizes */
198
+ .ui.small.menu .item > .input input {
199
+ top: 0em;
200
+ padding-top: 0.4em;
201
+ padding-bottom: 0.4em;
202
+ }
203
+ .ui.small.menu .item > .input .button,
204
+ .ui.small.menu .item > .input .label {
205
+ padding-top: 0.4em;
206
+ padding-bottom: 0.4em;
207
+ }
208
+ .ui.large.menu .item > .input input {
209
+ top: -0.125em;
210
+ padding-bottom: 0.6em;
211
+ padding-top: 0.6em;
212
+ }
213
+ .ui.large.menu .item > .input .button,
214
+ .ui.large.menu .item > .input .label {
215
+ padding-top: 0.6em;
216
+ padding-bottom: 0.6em;
217
+ }
218
+
219
+ /*--------------
220
+ Header
221
+ ---------------*/
222
+
223
+ .ui.menu .header.item,
224
+ .ui.vertical.menu .header.item {
225
+ background: rgba(0, 0, 0, 0.04);
226
+ margin: 0em;
227
+ text-transform: normal;
228
+ font-weight: bold;
229
+ }
230
+
231
+ /*--------------
232
+ Dropdowns
233
+ ---------------*/
234
+
235
+
236
+ /* Dropdown */
237
+ .ui.menu .ui.dropdown.item.visible {
238
+ background: rgba(0, 0, 0, 0.03);
239
+ border-bottom-right-radius: 0em;
240
+ border-bottom-left-radius: 0em;
241
+ }
242
+ .ui.menu .ui.dropdown.active {
243
+ box-shadow: none;
244
+ }
245
+
246
+ /* Menu Position */
247
+ .ui.menu .dropdown.item .menu {
248
+ background: #ffffff;
249
+ left: 0px;
250
+ margin: 0px 0px 0px;
251
+ min-width: -webkit-calc(100% - 1px);
252
+ min-width: calc(100% - 1px);
253
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
254
+ }
255
+ .ui.menu:not(.secondary) .pointing.dropdown.item .menu {
256
+ margin-top: 0px;
257
+ border-top-left-radius: 0em;
258
+ border-top-right-radius: 0em;
259
+ }
260
+ .ui.menu .simple.dropdown.item .menu {
261
+ margin: 0px !important;
262
+ }
263
+
264
+ /* Secondary Menu Dropdown */
265
+ .ui.secondary.menu > .menu > .active.dropdown.item {
266
+ background-color: transparent;
267
+ }
268
+ .ui.secondary.menu .dropdown.item .menu {
269
+ left: 0px;
270
+ min-width: 100%;
271
+ }
272
+
273
+ /* Even Width Menu Dropdown */
274
+ .ui.item.menu .dropdown .menu .item {
275
+ width: 100%;
276
+ }
277
+
278
+ /*--------------
279
+ Labels
280
+ ---------------*/
281
+
282
+ .ui.menu .item > .label {
283
+ background: rgba(0, 0, 0, 0.35);
284
+ color: #ffffff;
285
+ margin: -0.15em 0em -0.15em 0.5em;
286
+ padding: 0.3em 0.8em;
287
+ vertical-align: baseline;
288
+ }
289
+ .ui.menu .item > .floating.label {
290
+ padding: 0.3em 0.8em;
291
+ }
292
+
293
+ /*--------------
294
+ Images
295
+ ---------------*/
296
+
297
+ .ui.menu .item > img:only-child {
298
+ display: block;
299
+ max-width: 100%;
300
+ margin: 0em auto;
301
+ }
302
+
303
+
304
+ /*******************************
305
+ States
306
+ *******************************/
307
+
308
+
309
+ /*--------------
310
+ Hover
311
+ ---------------*/
312
+
313
+ .ui.link.menu > .item:hover,
314
+ .ui.menu > .link.item:hover,
315
+ .ui.menu > a.item:hover,
316
+ .ui.link.menu .menu > .item:hover,
317
+ .ui.menu .menu > .link.item:hover,
318
+ .ui.menu .menu > a.item:hover {
319
+ cursor: pointer;
320
+ background: rgba(0, 0, 0, 0.03);
321
+ color: rgba(0, 0, 0, 0.8);
322
+ }
323
+
324
+ /*--------------
325
+ Pressed
326
+ ---------------*/
327
+
328
+ .ui.link.menu .item:active,
329
+ .ui.menu .link.item:active,
330
+ .ui.menu a.item:active {
331
+ background: rgba(0, 0, 0, 0.03);
332
+ color: rgba(0, 0, 0, 0.8);
333
+ }
334
+
335
+ /*--------------
336
+ Active
337
+ ---------------*/
338
+
339
+ .ui.menu .active.item {
340
+ background: rgba(0, 0, 0, 0.03);
341
+ color: rgba(0, 0, 0, 0.8);
342
+ font-weight: normal;
343
+ box-shadow: 0em 2px 0em inset;
344
+ }
345
+ .ui.menu .active.item > i.icon {
346
+ opacity: 1;
347
+ }
348
+
349
+ /* Vertical */
350
+ .ui.vertical.menu .active.item {
351
+ background: rgba(0, 0, 0, 0.03);
352
+ border-radius: 0em;
353
+ box-shadow: 2px 0em 0em inset;
354
+ }
355
+ .ui.vertical.menu > .active.item:first-child {
356
+ border-radius: 0em 0.2857rem 0em 0em;
357
+ }
358
+ .ui.vertical.menu > .active.item:last-child {
359
+ border-radius: 0em 0em 0.2857rem 0em;
360
+ }
361
+ .ui.vertical.menu > .active.item:only-child {
362
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
363
+ }
364
+ .ui.vertical.menu .active.item .menu .active.item {
365
+ border-left: none;
366
+ }
367
+ .ui.vertical.menu .item .menu .active.item {
368
+ background-color: transparent;
369
+ box-shadow: none;
370
+ }
371
+
372
+ /*--------------
373
+ Active Hover
374
+ ---------------*/
375
+
376
+ .ui.vertical.menu .active.item:hover,
377
+ .ui.menu .active.item:hover {
378
+ background-color: rgba(0, 0, 0, 0.03);
379
+ }
380
+
381
+ /*--------------
382
+ Disabled
383
+ ---------------*/
384
+
385
+ .ui.menu .item.disabled,
386
+ .ui.menu .item.disabled:hover {
387
+ cursor: default;
388
+ color: rgba(40, 40, 40, 0.3);
389
+ background-color: transparent !important;
390
+ }
391
+
392
+
393
+ /*******************************
394
+ Types
395
+ *******************************/
396
+
397
+
398
+ /*--------------
399
+ Vertical
400
+ ---------------*/
401
+
402
+ .ui.vertical.menu {
403
+ background: #ffffff;
404
+ }
405
+
406
+ /*--- Item ---*/
407
+
408
+ .ui.vertical.menu .item {
409
+ background: none;
410
+ display: block;
411
+ height: auto !important;
412
+ border-top: none;
413
+ border-left: 0em solid transparent;
414
+ border-right: none;
415
+ }
416
+ .ui.vertical.menu > .item:first-child {
417
+ border-radius: 0.2857rem 0.2857rem 0px 0px;
418
+ }
419
+ .ui.vertical.menu > .item:last-child {
420
+ border-radius: 0px 0px 0.2857rem 0.2857rem;
421
+ }
422
+
423
+ /*--- Label ---*/
424
+
425
+ .ui.vertical.menu .item > .label {
426
+ float: right;
427
+ text-align: center;
428
+ }
429
+
430
+ /*--- Icon ---*/
431
+
432
+ .ui.vertical.menu .item > i.icon {
433
+ width: 1.18em;
434
+ float: right;
435
+ margin: 0em 0em 0em 0.5em;
436
+ }
437
+ .ui.vertical.menu .item > .label + i.icon {
438
+ float: none;
439
+ margin: 0em 0.5em 0em 0em;
440
+ }
441
+
442
+ /*--- Border ---*/
443
+
444
+ .ui.vertical.menu .item:before {
445
+ position: absolute;
446
+ content: '';
447
+ top: 0%;
448
+ left: 0px;
449
+ width: 100%;
450
+ background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%);
451
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%);
452
+ height: 1px;
453
+ }
454
+ .ui.vertical.menu .item:first-child:before {
455
+ background: none !important;
456
+ }
457
+
458
+ /*--- Dropdown ---*/
459
+
460
+ .ui.vertical.menu .dropdown.item > .icon {
461
+ float: right;
462
+ content: "\f0da";
463
+ margin-left: 1em;
464
+ }
465
+ .ui.vertical.menu .active.dropdown.item {
466
+ border-top-right-radius: 0em;
467
+ border-bottom-right-radius: 0em;
468
+ }
469
+ .ui.vertical.menu .dropdown.item .menu {
470
+ top: 0% !important;
471
+ left: 100%;
472
+ margin: 0px 0px 0px 0px;
473
+ box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
474
+ border-radius: 0em 0.2857rem 0.2857rem 0.2857rem;
475
+ }
476
+ .ui.vertical.menu .dropdown.item .menu .item {
477
+ font-size: 1rem;
478
+ }
479
+ .ui.vertical.menu .dropdown.item .menu .item i.icon {
480
+ margin-right: 0em;
481
+ }
482
+ .ui.vertical.menu .dropdown.item.active {
483
+ box-shadow: none;
484
+ }
485
+
486
+ /*--- Sub Menu ---*/
487
+
488
+ .ui.vertical.menu .item:not(.dropdown) > .menu {
489
+ margin: 0.5em -0.95em 0em;
490
+ }
491
+ .ui.vertical.menu .item:not(.dropdown) > .menu > .item {
492
+ background: none;
493
+ padding: 0.5rem 1.5rem;
494
+ font-size: 0.875rem;
495
+ }
496
+ .ui.vertical.menu .item > .menu > .item:before {
497
+ display: none;
498
+ }
499
+
500
+ /*--------------
501
+ Tiered
502
+ ---------------*/
503
+
504
+ .ui.tiered.menu > .menu > .item:hover {
505
+ color: rgba(0, 0, 0, 0.8);
506
+ }
507
+ .ui.tiered.menu .active.item {
508
+ background: #fcfcfc;
509
+ }
510
+ .ui.tiered.menu > .menu .item.active:after {
511
+ position: absolute;
512
+ content: '';
513
+ margin-top: -1px;
514
+ top: 100%;
515
+ left: 0px;
516
+ width: 100%;
517
+ height: 2px;
518
+ background-color: #fcfcfc;
519
+ }
520
+
521
+ /* Sub Menu */
522
+ .ui.tiered.menu .sub.menu {
523
+ background-color: #fcfcfc;
524
+ border-radius: 0em;
525
+ border-top: 1px solid rgba(39, 41, 43, 0.15);
526
+ box-shadow: none;
527
+ }
528
+ .ui.tiered.menu > .sub.menu > .item {
529
+ color: rgba(0, 0, 0, 0.4);
530
+ font-weight: normal;
531
+ text-transform: normal;
532
+ font-size: 0.875rem;
533
+ }
534
+
535
+ /* Sub Menu Divider */
536
+ .ui.tiered.menu .sub.menu .item:before {
537
+ background: none;
538
+ }
539
+
540
+ /* Sub Menu Hover */
541
+ .ui.tiered.menu .sub.menu .item:hover {
542
+ background: none transparent;
543
+ color: rgba(0, 0, 0, 0.8);
544
+ }
545
+
546
+ /* Sub Menu Active */
547
+ .ui.tiered.menu .sub.menu .active.item {
548
+ padding-top: 0.78571em;
549
+ background: none transparent;
550
+ border-radius: 0;
551
+ border-top: medium none;
552
+ box-shadow: none;
553
+ color: rgba(0, 0, 0, 0.8) !important;
554
+ }
555
+ .ui.tiered.menu .sub.menu .active.item:after {
556
+ display: none;
557
+ }
558
+
559
+ /* Inverted Tiered Menu */
560
+ .ui.inverted.tiered.menu > .menu > .item {
561
+ color: rgba(255, 255, 255, 0.5);
562
+ }
563
+ .ui.inverted.tiered.menu .sub.menu {
564
+ background-color: rgba(0, 0, 0, 0.2);
565
+ }
566
+ .ui.inverted.tiered.menu .sub.menu .item {
567
+ color: rgba(255, 255, 255, 0.8);
568
+ }
569
+ .ui.inverted.tiered.menu > .menu > .item:hover {
570
+ color: #ffffff;
571
+ }
572
+ .ui.inverted.tiered.menu .active.item:after {
573
+ display: none;
574
+ }
575
+ .ui.inverted.tiered.menu > .sub.menu > .active.item,
576
+ .ui.inverted.tiered.menu > .menu > .active.item {
577
+ color: #ffffff !important;
578
+ box-shadow: none;
579
+ }
580
+
581
+ /* Tiered Pointing */
582
+ .ui.pointing.tiered.menu > .menu > .item:after {
583
+ display: none;
584
+ }
585
+ .ui.pointing.tiered.menu > .sub.menu > .item:after {
586
+ display: block;
587
+ }
588
+
589
+ /*--------------
590
+ Tabular
591
+ ---------------*/
592
+
593
+ .ui.tabular.menu {
594
+ background-color: transparent;
595
+ border-radius: 0em;
596
+ box-shadow: none !important;
597
+ border-bottom: 1px solid #d4d4d5;
598
+ }
599
+ .ui.tabular.fluid.menu {
600
+ width: -webkit-calc(100% + 2px ) !important;
601
+ width: calc(100% + 2px ) !important;
602
+ }
603
+ .ui.tabular.menu .item {
604
+ background-color: transparent;
605
+ border-left: 1px solid transparent;
606
+ border-right: 1px solid transparent;
607
+ border-top: 1px solid transparent;
608
+ padding-left: 1.4em;
609
+ padding-right: 1.4em;
610
+ color: rgba(0, 0, 0, 0.8);
611
+ }
612
+ .ui.tabular.menu .item:before {
613
+ display: none;
614
+ }
615
+
616
+ /* Hover */
617
+ .ui.tabular.menu .item:hover {
618
+ background-color: transparent;
619
+ color: rgba(0, 0, 0, 0.8);
620
+ }
621
+
622
+ /* Active */
623
+ .ui.tabular.menu .active.item {
624
+ position: relative;
625
+ background-color: #ffffff;
626
+ color: rgba(0, 0, 0, 0.8);
627
+ border-color: #d4d4d5;
628
+ font-weight: bold;
629
+ margin-bottom: -1px;
630
+ border-bottom: none;
631
+ box-shadow: 0px 2px 0px -1px #ffffff;
632
+ border-radius: 5px 5px 0px 0px;
633
+ }
634
+
635
+ /* Coupling with segment for attachment */
636
+ .ui.attached.tabular.menu {
637
+ position: relative;
638
+ z-index: 2;
639
+ }
640
+ .ui.tabular.menu + .bottom.attached.segment,
641
+ .ui.tabular.menu ~ .bottom.attached.segment + .bottom.attached.segment {
642
+ border-top: none;
643
+ margin: 0px;
644
+ }
645
+
646
+ /*--------------
647
+ Pagination
648
+ ---------------*/
649
+
650
+ .ui.pagination.menu {
651
+ margin: 0em;
652
+ display: inline-block;
653
+ vertical-align: middle;
654
+ }
655
+ .ui.pagination.menu .item {
656
+ min-width: 3em;
657
+ text-align: center;
658
+ }
659
+ .ui.pagination.menu .icon.item i.icon {
660
+ vertical-align: top;
661
+ }
662
+ .ui.pagination.menu.floated {
663
+ display: block;
664
+ }
665
+
666
+ /* Active */
667
+ .ui.pagination.menu .active.item {
668
+ border-top: none;
669
+ padding-top: 0.78571em;
670
+ background-color: rgba(0, 0, 0, 0.03);
671
+ box-shadow: none;
672
+ }
673
+
674
+ /*--------------
675
+ Secondary
676
+ ---------------*/
677
+
678
+ .ui.secondary.menu {
679
+ background: none;
680
+ border-radius: 0em;
681
+ box-shadow: none;
682
+ }
683
+ .ui.secondary.menu > .menu > .item,
684
+ .ui.secondary.menu > .item {
685
+ box-shadow: none;
686
+ border: none;
687
+ height: auto !important;
688
+ background: none;
689
+ margin: 0em 0.25em;
690
+ padding: 0.5em 0.8em;
691
+ border-radius: 0.2857rem;
692
+ }
693
+ .ui.secondary.menu > .menu > .item:before,
694
+ .ui.secondary.menu > .item:before {
695
+ display: none !important;
696
+ }
697
+ .ui.secondary.menu .item > .input input {
698
+ background-color: transparent;
699
+ border: none;
700
+ }
701
+ .ui.secondary.menu .link.item,
702
+ .ui.secondary.menu a.item {
703
+ opacity: 0.8;
704
+ -webkit-transition: none;
705
+ transition: none;
706
+ }
707
+ .ui.secondary.menu .header.item {
708
+ border-right: 0.1em solid rgba(0, 0, 0, 0.1);
709
+ background: none transparent;
710
+ border-radius: 0em;
711
+ }
712
+
713
+ /* Hover */
714
+ .ui.secondary.menu .link.item:hover,
715
+ .ui.secondary.menu a.item:hover {
716
+ opacity: 1;
717
+ }
718
+
719
+ /* Active */
720
+ .ui.secondary.menu > .menu > .active.item,
721
+ .ui.secondary.menu > .active.item {
722
+ background: rgba(0, 0, 0, 0.05);
723
+ opacity: 1;
724
+ box-shadow: none;
725
+ }
726
+ .ui.secondary.vertical.menu > .active.item {
727
+ border-radius: 0.2857rem;
728
+ }
729
+
730
+ /* Inverted */
731
+ .ui.secondary.inverted.menu .link.item,
732
+ .ui.secondary.inverted.menu a.item {
733
+ color: rgba(255, 255, 255, 0.8);
734
+ }
735
+ .ui.secondary.inverted.menu .link.item:hover,
736
+ .ui.secondary.inverted.menu a.item:hover {
737
+ color: #ffffff;
738
+ }
739
+ .ui.secondary.inverted.menu .active.item {
740
+ background-color: rgba(255, 255, 255, 0.05);
741
+ }
742
+
743
+ /* Disable variations */
744
+ .ui.secondary.item.menu > .item {
745
+ margin: 0em;
746
+ }
747
+ .ui.secondary.attached.menu {
748
+ box-shadow: none;
749
+ }
750
+
751
+ /*---------------------
752
+ Secondary Vertical
753
+ -----------------------*/
754
+
755
+ .ui.secondary.vertical.menu > .item {
756
+ border: none;
757
+ margin: 0em 0em 0.3em;
758
+ border-radius: 0.2857rem;
759
+ }
760
+ .ui.secondary.vertical.menu > .header.item {
761
+ border-radius: 0em;
762
+ }
763
+
764
+ /* Inverted */
765
+ .ui.secondary.inverted.menu {
766
+ background-color: transparent;
767
+ }
768
+ .ui.secondary.inverted.pointing.menu {
769
+ border-bottom: 3px solid rgba(255, 255, 255, 0.1);
770
+ }
771
+ .ui.secondary.inverted.pointing.menu > .item {
772
+ color: rgba(255, 255, 255, 0.7);
773
+ }
774
+ .ui.secondary.inverted.pointing.menu > .header.item {
775
+ color: #FFFFFF !important;
776
+ }
777
+
778
+ /* Hover */
779
+ .ui.secondary.inverted.pointing.menu > .menu > .item:hover,
780
+ .ui.secondary.inverted.pointing.menu > .item:hover {
781
+ color: rgba(255, 255, 255, 0.85);
782
+ }
783
+
784
+ /* Pressed */
785
+ .ui.secondary.inverted.pointing.menu > .menu > .item:active,
786
+ .ui.secondary.inverted.pointing.menu > .item:active {
787
+ border-color: rgba(255, 255, 255, 0.4);
788
+ }
789
+
790
+ /* Active */
791
+ .ui.secondary.inverted.pointing.menu > .menu > .item.active,
792
+ .ui.secondary.inverted.pointing.menu > .item.active {
793
+ border-color: rgba(255, 255, 255, 0.8);
794
+ color: #ffffff;
795
+ }
796
+
797
+ /*---------------------
798
+ Secondary Pointing
799
+ -----------------------*/
800
+
801
+ .ui.secondary.pointing.menu {
802
+ border-bottom: 3px solid rgba(0, 0, 0, 0.1);
803
+ }
804
+ .ui.secondary.pointing.menu > .menu > .item,
805
+ .ui.secondary.pointing.menu > .item {
806
+ margin: 0em 0em -3px;
807
+ padding: 0.6em 0.95em;
808
+ border-bottom: 3px solid transparent;
809
+ border-radius: 0em;
810
+ -webkit-transition: color 0.2s ease;
811
+ transition: color 0.2s ease;
812
+ }
813
+
814
+ /* Item Types */
815
+ .ui.secondary.pointing.menu .header.item {
816
+ margin-bottom: -3px;
817
+ background-color: transparent !important;
818
+ border-right-width: 0px !important;
819
+ font-weight: bold !important;
820
+ color: rgba(0, 0, 0, 0.85) !important;
821
+ }
822
+ .ui.secondary.pointing.menu .text.item {
823
+ box-shadow: none !important;
824
+ }
825
+ .ui.secondary.pointing.menu > .menu > .item:after,
826
+ .ui.secondary.pointing.menu > .item:after {
827
+ display: none;
828
+ }
829
+
830
+ /* Hover */
831
+ .ui.secondary.pointing.menu > .menu > .link.item:hover,
832
+ .ui.secondary.pointing.menu > .link.item:hover,
833
+ .ui.secondary.pointing.menu > .menu > a.item:hover,
834
+ .ui.secondary.pointing.menu > a.item:hover {
835
+ background-color: transparent;
836
+ color: rgba(0, 0, 0, 0.8);
837
+ }
838
+
839
+ /* Pressed */
840
+ .ui.secondary.pointing.menu > .menu > .link.item:active,
841
+ .ui.secondary.pointing.menu > .link.item:active,
842
+ .ui.secondary.pointing.menu > .menu > a.item:active,
843
+ .ui.secondary.pointing.menu > a.item:active {
844
+ background-color: transparent;
845
+ border-color: rgba(0, 0, 0, 0.2);
846
+ }
847
+
848
+ /* Active */
849
+ .ui.secondary.pointing.menu > .menu > .item.active,
850
+ .ui.secondary.pointing.menu > .item.active {
851
+ background-color: transparent;
852
+ border-color: rgba(0, 0, 0, 0.4);
853
+ box-shadow: none;
854
+ color: rgba(0, 0, 0, 0.8);
855
+ }
856
+
857
+ /* Secondary Vertical Pointing */
858
+ .ui.secondary.vertical.pointing.menu {
859
+ border: none;
860
+ border-right: 3px solid rgba(0, 0, 0, 0.1);
861
+ }
862
+ .ui.secondary.vertical.pointing.menu > .item {
863
+ margin: 0em -3px 0em 0em;
864
+ border-bottom: none;
865
+ border-right: 3px solid transparent;
866
+ border-radius: 0em;
867
+ }
868
+
869
+ /* Hover */
870
+ .ui.secondary.vertical.pointing.menu > .item:hover {
871
+ background-color: transparent;
872
+ color: rgba(0, 0, 0, 0.7);
873
+ }
874
+
875
+ /* Pressed */
876
+ .ui.secondary.vertical.pointing.menu > .item:active {
877
+ background-color: transparent;
878
+ border-color: rgba(0, 0, 0, 0.2);
879
+ }
880
+
881
+ /* Active */
882
+ .ui.secondary.vertical.pointing.menu > .item.active {
883
+ background-color: transparent;
884
+ border-color: rgba(0, 0, 0, 0.4);
885
+ color: rgba(0, 0, 0, 0.85);
886
+ }
887
+
888
+ /* Inverted Vertical Pointing Secondary */
889
+ .ui.secondary.inverted.vertical.pointing.menu {
890
+ border-right: 3px solid rgba(255, 255, 255, 0.1);
891
+ border-bottom: none;
892
+ }
893
+
894
+ /*--------------
895
+ Text Menu
896
+ ---------------*/
897
+
898
+ .ui.text.menu {
899
+ display: inline-block;
900
+ background: none transparent;
901
+ margin: 1rem -1rem;
902
+ border-radius: 0px;
903
+ box-shadow: none;
904
+ }
905
+ .ui.text.menu > .item {
906
+ opacity: 0.8;
907
+ margin: 0em 1em;
908
+ padding: 0em;
909
+ height: auto !important;
910
+ border-radius: 0px;
911
+ box-shadow: none;
912
+ -webkit-transition: opacity 0.2s ease;
913
+ transition: opacity 0.2s ease;
914
+ }
915
+ .ui.text.menu > .item:before {
916
+ display: none !important;
917
+ }
918
+ .ui.text.menu .header.item {
919
+ background-color: transparent;
920
+ opacity: 1;
921
+ color: rgba(50, 50, 50, 0.8);
922
+ font-size: 0.875rem;
923
+ padding: 0em;
924
+ text-transform: uppercase;
925
+ font-weight: bold;
926
+ }
927
+ .ui.text.menu .text.item {
928
+ opacity: 1;
929
+ color: rgba(50, 50, 50, 0.8);
930
+ font-weight: bold;
931
+ }
932
+
933
+ /*--- fluid text ---*/
934
+
935
+ .ui.text.item.menu .item {
936
+ margin: 0em;
937
+ }
938
+
939
+ /*--- vertical text ---*/
940
+
941
+ .ui.vertical.text.menu {
942
+ margin: 1rem 0em;
943
+ }
944
+ .ui.vertical.text.menu:first-child {
945
+ margin-top: 0rem;
946
+ }
947
+ .ui.vertical.text.menu:last-child {
948
+ margin-bottom: 0rem;
949
+ }
950
+ .ui.vertical.text.menu .item {
951
+ float: left;
952
+ clear: left;
953
+ margin: 0.5em 0em;
954
+ }
955
+ .ui.vertical.text.menu .item > i.icon {
956
+ float: none;
957
+ margin: 0em 0.78571em 0em 0em;
958
+ }
959
+ .ui.vertical.text.menu .header.item {
960
+ margin: 0.8em 0em;
961
+ }
962
+
963
+ /*--- hover ---*/
964
+
965
+ .ui.text.menu .item:hover {
966
+ opacity: 1;
967
+ background-color: transparent;
968
+ }
969
+
970
+ /*--- active ---*/
971
+
972
+ .ui.text.menu .active.item {
973
+ background-color: transparent;
974
+ padding: 0em;
975
+ border: none;
976
+ opacity: 1;
977
+ font-weight: bold;
978
+ box-shadow: none;
979
+ }
980
+
981
+ /* disable variations */
982
+ .ui.text.pointing.menu .active.item:after {
983
+ box-shadow: none;
984
+ }
985
+ .ui.text.attached.menu {
986
+ box-shadow: none;
987
+ }
988
+
989
+ /* Inverted */
990
+ .ui.inverted.text.menu,
991
+ .ui.inverted.text.menu .item,
992
+ .ui.inverted.text.menu .item:hover,
993
+ .ui.inverted.text.menu .item.active {
994
+ background-color: transparent;
995
+ }
996
+
997
+ /* Fluid */
998
+ .ui.fluid.text.menu {
999
+ margin-left: 0em;
1000
+ margin-right: 0em;
1001
+ }
1002
+
1003
+ /*--------------
1004
+ Icon Only
1005
+ ---------------*/
1006
+
1007
+ .ui.icon.menu,
1008
+ .ui.vertical.icon.menu {
1009
+ width: auto;
1010
+ display: inline-block;
1011
+ height: auto;
1012
+ }
1013
+ .ui.icon.menu > .item {
1014
+ height: auto;
1015
+ text-align: center;
1016
+ color: rgba(60, 60, 60, 0.7);
1017
+ }
1018
+ .ui.icon.menu > .item > .icon {
1019
+ display: block;
1020
+ float: none !important;
1021
+ opacity: 1;
1022
+ margin: 0em auto !important;
1023
+ }
1024
+ .ui.icon.menu .icon:before {
1025
+ opacity: 1;
1026
+ }
1027
+
1028
+ /* Item Icon Only */
1029
+ .ui.menu .icon.item .icon {
1030
+ margin: 0em;
1031
+ }
1032
+ .ui.vertical.icon.menu {
1033
+ float: none;
1034
+ }
1035
+
1036
+ /*--- inverted ---*/
1037
+
1038
+ .ui.inverted.icon.menu .item {
1039
+ color: rgba(255, 255, 255, 0.8);
1040
+ }
1041
+ .ui.inverted.icon.menu .icon {
1042
+ color: #ffffff;
1043
+ }
1044
+
1045
+ /*--------------
1046
+ Labeled Icon
1047
+ ---------------*/
1048
+
1049
+ .ui.labeled.icon.menu {
1050
+ text-align: center;
1051
+ }
1052
+ .ui.fluid.labeled.icon.menu > .item {
1053
+ min-width: 0em;
1054
+ }
1055
+ .ui.labeled.icon.menu > .item {
1056
+ min-width: 6em;
1057
+ }
1058
+ .ui.labeled.icon.menu > .item > .icon {
1059
+ display: block;
1060
+ font-size: 1.5em !important;
1061
+ margin: 0em auto 0.5em !important;
1062
+ }
1063
+
1064
+
1065
+ /*******************************
1066
+ Variations
1067
+ *******************************/
1068
+
1069
+
1070
+ /*--------------
1071
+ Colors
1072
+ ---------------*/
1073
+
1074
+
1075
+ /*--- Light Colors ---*/
1076
+
1077
+ .ui.menu .blue.active.item,
1078
+ .ui.blue.menu .active.item {
1079
+ border-color: #3b83c0 !important;
1080
+ color: #3b83c0 !important;
1081
+ }
1082
+ .ui.menu .green.active.item,
1083
+ .ui.green.menu .active.item {
1084
+ border-color: #5bbd72 !important;
1085
+ color: #5bbd72 !important;
1086
+ }
1087
+ .ui.menu .orange.active.item,
1088
+ .ui.orange.menu .active.item {
1089
+ border-color: #e07b53 !important;
1090
+ color: #e07b53 !important;
1091
+ }
1092
+ .ui.menu .pink.active.item,
1093
+ .ui.pink.menu .active.item {
1094
+ border-color: #d9499a !important;
1095
+ color: #d9499a !important;
1096
+ }
1097
+ .ui.menu .purple.active.item,
1098
+ .ui.purple.menu .active.item {
1099
+ border-color: #564f8a !important;
1100
+ color: #564f8a !important;
1101
+ }
1102
+ .ui.menu .red.active.item,
1103
+ .ui.red.menu .active.item {
1104
+ border-color: #d95c5c !important;
1105
+ color: #d95c5c !important;
1106
+ }
1107
+ .ui.menu .teal.active.item,
1108
+ .ui.teal.menu .active.item {
1109
+ border-color: #00b5ad !important;
1110
+ color: #00b5ad !important;
1111
+ }
1112
+ .ui.menu .yellow.active.item,
1113
+ .ui.yellow.menu .active.item {
1114
+ border-color: #f2c61f !important;
1115
+ color: #f2c61f !important;
1116
+ }
1117
+
1118
+ /*--------------
1119
+ Inverted
1120
+ ---------------*/
1121
+
1122
+ .ui.inverted.menu {
1123
+ background: #1b1c1d;
1124
+ box-shadow: none;
1125
+ }
1126
+ .ui.inverted.menu .header.item {
1127
+ margin: 0em;
1128
+ background: rgba(0, 0, 0, 0.3);
1129
+ box-shadow: none;
1130
+ }
1131
+ .ui.inverted.menu .item,
1132
+ .ui.inverted.menu .item > a:not(.ui) {
1133
+ color: #ffffff;
1134
+ }
1135
+ .ui.inverted.menu .item:not(.dropdown).menu {
1136
+ background: transparent;
1137
+ }
1138
+ .ui.inverted.menu .item .item,
1139
+ .ui.inverted.menu .item .item > a:not(.ui) {
1140
+ color: rgba(255, 255, 255, 0.5);
1141
+ }
1142
+ .ui.inverted.menu .dropdown .menu .item {
1143
+ color: rgba(0, 0, 0, 0.8) !important;
1144
+ }
1145
+ .ui.inverted.menu .item.disabled,
1146
+ .ui.inverted.menu .item.disabled:hover {
1147
+ color: rgba(225, 225, 225, 0.3);
1148
+ }
1149
+
1150
+ /*--- Border ---*/
1151
+
1152
+ .ui.inverted.menu .item:before {
1153
+ background: -webkit-linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
1154
+ background: linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
1155
+ }
1156
+ .ui.vertical.inverted.menu .item:before {
1157
+ background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
1158
+ background: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%);
1159
+ }
1160
+
1161
+ /*--- Hover ---*/
1162
+
1163
+ .ui.link.inverted.menu .item:hover,
1164
+ .ui.inverted.menu .link.item:hover,
1165
+ .ui.inverted.menu a.item:hover,
1166
+ .ui.inverted.menu .dropdown.item:hover {
1167
+ background: rgba(255, 255, 255, 0.1);
1168
+ color: #ffffff;
1169
+ }
1170
+ .ui.inverted.menu .item .menu a.item:hover,
1171
+ .ui.inverted.menu .item .menu .link.item:hover {
1172
+ background: transparent;
1173
+ color: #ffffff;
1174
+ }
1175
+
1176
+ /*--- Pressed ---*/
1177
+
1178
+ .ui.inverted.menu a.item:active,
1179
+ .ui.inverted.menu .dropdown.item:active,
1180
+ .ui.inverted.menu .link.item:active,
1181
+ .ui.inverted.menu a.item:active {
1182
+ background: rgba(255, 255, 255, 0.15);
1183
+ color: #ffffff;
1184
+ }
1185
+
1186
+ /*--- Active ---*/
1187
+
1188
+ .ui.inverted.menu .active.item {
1189
+ box-shadow: none !important;
1190
+ background: rgba(255, 255, 255, 0.2);
1191
+ color: #ffffff !important;
1192
+ }
1193
+ .ui.inverted.vertical.menu .item .menu .active.item {
1194
+ background: transparent;
1195
+ color: #ffffff;
1196
+ }
1197
+
1198
+ /*--- Pointers ---*/
1199
+
1200
+ .ui.inverted.pointing.menu .active.item:after {
1201
+ background: #5B5B5B;
1202
+ box-shadow: none;
1203
+ }
1204
+ .ui.inverted.pointing.menu .active.item:hover:after {
1205
+ background: #4A4A4A;
1206
+ }
1207
+
1208
+ /*--------------
1209
+ Selection
1210
+ ---------------*/
1211
+
1212
+ .ui.selection.menu > .item {
1213
+ color: rgba(0, 0, 0, 0.4);
1214
+ }
1215
+ .ui.selection.menu > .item:hover {
1216
+ color: rgba(0, 0, 0, 0.6);
1217
+ }
1218
+ .ui.selection.menu > .item.active {
1219
+ color: rgba(0, 0, 0, 0.85);
1220
+ }
1221
+ .ui.inverted.selection.menu > .item {
1222
+ color: rgba(255, 255, 255, 0.4);
1223
+ }
1224
+ .ui.inverted.selection.menu > .item:hover {
1225
+ color: rgba(255, 255, 255, 0.9);
1226
+ }
1227
+ .ui.inverted.selection.menu > .item.active {
1228
+ color: #FFFFFF;
1229
+ }
1230
+
1231
+ /*--------------
1232
+ Floated
1233
+ ---------------*/
1234
+
1235
+ .ui.floated.menu {
1236
+ float: left;
1237
+ margin: 0rem 0.5rem 0rem 0rem;
1238
+ }
1239
+ .ui.right.floated.menu {
1240
+ float: right;
1241
+ margin: 0rem 0rem 0rem 0.5rem;
1242
+ }
1243
+
1244
+ /*--------------
1245
+ Inverted Colors
1246
+ ---------------*/
1247
+
1248
+
1249
+ /*--- Light Colors ---*/
1250
+
1251
+ .ui.grey.menu {
1252
+ background-color: #fafafa;
1253
+ }
1254
+
1255
+ /*--- Inverted Colors ---*/
1256
+
1257
+
1258
+ /* Blue */
1259
+ .ui.inverted.blue.menu {
1260
+ background-color: #3b83c0;
1261
+ }
1262
+ .ui.inverted.blue.pointing.menu .active.item:after {
1263
+ background-color: #3b83c0;
1264
+ }
1265
+
1266
+ /* Green */
1267
+ .ui.inverted.green.menu {
1268
+ background-color: #5bbd72;
1269
+ }
1270
+ .ui.inverted.green.pointing.menu .active.item:after {
1271
+ background-color: #5bbd72;
1272
+ }
1273
+
1274
+ /* Orange */
1275
+ .ui.inverted.orange.menu {
1276
+ background-color: #e07b53;
1277
+ }
1278
+ .ui.inverted.orange.pointing.menu .active.item:after {
1279
+ background-color: #e07b53;
1280
+ }
1281
+
1282
+ /* Pink */
1283
+ .ui.inverted.pink.menu {
1284
+ background-color: #d9499a;
1285
+ }
1286
+ .ui.inverted.pink.pointing.menu .active.item:after {
1287
+ background-color: #d9499a;
1288
+ }
1289
+
1290
+ /* Purple */
1291
+ .ui.inverted.purple.menu {
1292
+ background-color: #564f8a;
1293
+ }
1294
+ .ui.inverted.purple.pointing.menu .active.item:after {
1295
+ background-color: #564f8a;
1296
+ }
1297
+
1298
+ /* Red */
1299
+ .ui.inverted.red.menu {
1300
+ background-color: #d95c5c;
1301
+ }
1302
+ .ui.inverted.red.pointing.menu .active.item:after {
1303
+ background-color: #d95c5c;
1304
+ }
1305
+
1306
+ /* Teal */
1307
+ .ui.inverted.teal.menu {
1308
+ background-color: #00b5ad;
1309
+ }
1310
+ .ui.inverted.teal.pointing.menu .active.item:after {
1311
+ background-color: #00b5ad;
1312
+ }
1313
+
1314
+ /* Yellow */
1315
+ .ui.inverted.yellow.menu {
1316
+ background-color: #f2c61f;
1317
+ }
1318
+ .ui.inverted.yellow.pointing.menu .active.item:after {
1319
+ background-color: #f2c61f;
1320
+ }
1321
+
1322
+ /*--------------
1323
+ Fitted
1324
+ ---------------*/
1325
+
1326
+ .ui.fitted.menu .item,
1327
+ .ui.fitted.menu .item .menu .item,
1328
+ .ui.menu .fitted.item {
1329
+ padding: 0em;
1330
+ }
1331
+ .ui.horizontally.fitted.menu .item,
1332
+ .ui.horizontally.fitted.menu .item .menu .item,
1333
+ .ui.menu .horizontally.fitted.item {
1334
+ padding-top: 0.78571em;
1335
+ padding-bottom: 0.78571em;
1336
+ }
1337
+ .ui.vertically.fitted.menu .item,
1338
+ .ui.vertically.fitted.menu .item .menu .item,
1339
+ .ui.menu .vertically.fitted.item {
1340
+ padding-left: 0.95em;
1341
+ padding-right: 0.95em;
1342
+ }
1343
+
1344
+ /*--------------
1345
+ Borderless
1346
+ ---------------*/
1347
+
1348
+ .ui.borderless.menu .item:before,
1349
+ .ui.borderless.menu .item .menu .item:before,
1350
+ .ui.menu .borderless.item:before {
1351
+ background: none !important;
1352
+ }
1353
+
1354
+ /*-------------------
1355
+ Compact
1356
+ --------------------*/
1357
+
1358
+ .ui.compact.menu {
1359
+ display: inline-block;
1360
+ margin: 0em;
1361
+ vertical-align: middle;
1362
+ }
1363
+ .ui.compact.vertical.menu {
1364
+ width: auto !important;
1365
+ }
1366
+ .ui.compact.vertical.menu .item:last-child::before {
1367
+ display: block;
1368
+ }
1369
+
1370
+ /*-------------------
1371
+ Fluid
1372
+ --------------------*/
1373
+
1374
+ .ui.menu.fluid,
1375
+ .ui.vertical.menu.fluid {
1376
+ display: block;
1377
+ width: 100% !important;
1378
+ }
1379
+
1380
+ /*-------------------
1381
+ Evenly Sized
1382
+ --------------------*/
1383
+
1384
+ .ui.item.menu,
1385
+ .ui.item.menu .item {
1386
+ width: 100%;
1387
+ padding-left: 0px !important;
1388
+ padding-right: 0px !important;
1389
+ text-align: center;
1390
+ }
1391
+ .ui.menu.two.item .item {
1392
+ width: 50%;
1393
+ }
1394
+ .ui.menu.three.item .item {
1395
+ width: 33.333%;
1396
+ }
1397
+ .ui.menu.four.item .item {
1398
+ width: 25%;
1399
+ }
1400
+ .ui.menu.five.item .item {
1401
+ width: 20%;
1402
+ }
1403
+ .ui.menu.six.item .item {
1404
+ width: 16.666%;
1405
+ }
1406
+ .ui.menu.seven.item .item {
1407
+ width: 14.285%;
1408
+ }
1409
+ .ui.menu.eight.item .item {
1410
+ width: 12.500%;
1411
+ }
1412
+ .ui.menu.nine.item .item {
1413
+ width: 11.11%;
1414
+ }
1415
+ .ui.menu.ten.item .item {
1416
+ width: 10.0%;
1417
+ }
1418
+ .ui.menu.eleven.item .item {
1419
+ width: 9.09%;
1420
+ }
1421
+ .ui.menu.twelve.item .item {
1422
+ width: 8.333%;
1423
+ }
1424
+
1425
+ /*--------------
1426
+ Fixed
1427
+ ---------------*/
1428
+
1429
+ .ui.menu.fixed {
1430
+ position: fixed;
1431
+ z-index: 101;
1432
+ margin: 0em;
1433
+ border: none;
1434
+ width: 100%;
1435
+ }
1436
+ .ui.menu.fixed,
1437
+ .ui.menu.fixed .item:first-child,
1438
+ .ui.menu.fixed .item:last-child {
1439
+ border-radius: 0px !important;
1440
+ }
1441
+ .ui.fixed.menu,
1442
+ .ui.top.fixed.menu {
1443
+ top: 0px;
1444
+ left: 0px;
1445
+ right: auto;
1446
+ bottom: auto;
1447
+ }
1448
+ .ui.right.fixed.menu {
1449
+ top: 0px;
1450
+ right: 0px;
1451
+ left: auto;
1452
+ bottom: auto;
1453
+ width: auto;
1454
+ height: 100%;
1455
+ }
1456
+ .ui.bottom.fixed.menu {
1457
+ bottom: 0px;
1458
+ left: 0px;
1459
+ top: auto;
1460
+ right: auto;
1461
+ }
1462
+ .ui.left.fixed.menu {
1463
+ top: 0px;
1464
+ left: 0px;
1465
+ right: auto;
1466
+ bottom: auto;
1467
+ width: auto;
1468
+ height: 100%;
1469
+ }
1470
+
1471
+ /* Coupling with Grid */
1472
+ .ui.fixed.menu + .ui.grid {
1473
+ padding-top: 2.75rem;
1474
+ }
1475
+
1476
+ /*-------------------
1477
+ Pointing
1478
+ --------------------*/
1479
+
1480
+ .ui.pointing.menu .active.item:after {
1481
+ position: absolute;
1482
+ content: '';
1483
+ top: 100%;
1484
+ left: 50%;
1485
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1486
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1487
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
1488
+ margin: 1px 0em 0em 0em;
1489
+ background: none;
1490
+ width: 0.6em;
1491
+ height: 0.6em;
1492
+ border: none;
1493
+ border-bottom: 1px solid #d4d4d5;
1494
+ border-right: 1px solid #d4d4d5;
1495
+ z-index: 2;
1496
+ -webkit-transition: background 0.2s ease;
1497
+ transition: background 0.2s ease;
1498
+ }
1499
+
1500
+ /* Don't double up pointers */
1501
+ .ui.pointing.menu .active.item .menu .active.item:after {
1502
+ display: none;
1503
+ }
1504
+ .ui.vertical.pointing.menu .active.item:after {
1505
+ position: absolute;
1506
+ top: 50%;
1507
+ right: 0%;
1508
+ bottom: auto;
1509
+ left: auto;
1510
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
1511
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
1512
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
1513
+ margin: 0em -1px 0em 0em;
1514
+ border: none;
1515
+ border-top: 1px solid #d4d4d5;
1516
+ border-right: 1px solid #d4d4d5;
1517
+ }
1518
+
1519
+ /* Colors */
1520
+ .ui.pointing.menu .active.item:hover:after {
1521
+ background-color: #fafafa;
1522
+ }
1523
+ .ui.pointing.menu .active.item:after {
1524
+ background-color: #f7f7f7;
1525
+ }
1526
+ .ui.vertical.pointing.menu .item:hover:after {
1527
+ background-color: #fafafa;
1528
+ }
1529
+ .ui.vertical.pointing.menu .active.item:after {
1530
+ background-color: #f7f7f7;
1531
+ }
1532
+
1533
+ /*--------------
1534
+ Attached
1535
+ ---------------*/
1536
+
1537
+ .ui.menu.attached {
1538
+ margin: 0rem;
1539
+ border-radius: 0px;
1540
+
1541
+ /* avoid rgba multiplying */
1542
+ box-shadow: 0px 0px 0px 1px #dddddd;
1543
+ }
1544
+ .ui.top.attached.menu {
1545
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
1546
+ }
1547
+ .ui.menu.bottom.attached {
1548
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
1549
+ }
1550
+
1551
+ /*--------------
1552
+ Sizes
1553
+ ---------------*/
1554
+
1555
+
1556
+ /* Small */
1557
+ .ui.small.menu .item {
1558
+ font-size: 0.875rem;
1559
+ }
1560
+ .ui.small.vertical.menu {
1561
+ width: 13rem;
1562
+ }
1563
+
1564
+ /* Medium */
1565
+ .ui.menu .item {
1566
+ font-size: 1rem;
1567
+ }
1568
+ .ui.vertical.menu {
1569
+ width: 15rem;
1570
+ }
1571
+
1572
+ /* Large */
1573
+ .ui.large.menu .item {
1574
+ font-size: 1.125rem;
1575
+ }
1576
+ .ui.large.menu .item .item {
1577
+ font-size: 0.875rem;
1578
+ }
1579
+ .ui.large.menu .dropdown .item {
1580
+ font-size: 1rem;
1581
+ }
1582
+ .ui.large.vertical.menu {
1583
+ width: 18rem;
1584
+ }
1585
+
1586
+
1587
+ /*******************************
1588
+ Theme Overrides
1589
+ *******************************/
1590
+
1591
+
1592
+
1593
+ /*******************************
1594
+ Site Overrides
1595
+ *******************************/
1596
+