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
+ i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(../themes/default/assets/images/flags.png) no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}
@@ -0,0 +1,875 @@
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
+ Elements
16
+ *******************************/
17
+
18
+
19
+ /*--------------------
20
+ Form
21
+ ---------------------*/
22
+
23
+ .ui.form {
24
+ position: relative;
25
+ max-width: 100%;
26
+ }
27
+
28
+ /*--------------------
29
+ Content
30
+ ---------------------*/
31
+
32
+ .ui.form > p {
33
+ margin: 1em 0em;
34
+ }
35
+
36
+ /*--------------------
37
+ Field
38
+ ---------------------*/
39
+
40
+ .ui.form .fields .field,
41
+ .ui.form .field {
42
+ clear: both;
43
+ margin: 0em 0em 1em;
44
+ }
45
+ .ui.form .fields:last-child,
46
+ .ui.form .field:last-child {
47
+ margin-bottom: 0em;
48
+ }
49
+
50
+ /*--------------------
51
+ Labels
52
+ ---------------------*/
53
+
54
+ .ui.form .field > label {
55
+ display: block;
56
+ margin: 0em 0em 0.2857rem 0em;
57
+ color: rgba(0, 0, 0, 0.8);
58
+ font-size: 0.9285em;
59
+ font-weight: bold;
60
+ text-transform: none;
61
+ }
62
+ .ui.form .grouped.fields > label {
63
+ margin: 0em 0em 0.2857rem 0em;
64
+ color: rgba(0, 0, 0, 0.8);
65
+ font-size: 0.9285em;
66
+ font-weight: bold;
67
+ text-transform: none;
68
+ }
69
+ .ui.form .inline.fields > label {
70
+ display: inline-block;
71
+ vertical-align: middle;
72
+ margin: 0em 1em 0em 0em;
73
+ color: rgba(0, 0, 0, 0.8);
74
+ font-size: 0.9285em;
75
+ font-weight: bold;
76
+ text-transform: none;
77
+ }
78
+
79
+ /*--------------------
80
+ Standard Inputs
81
+ ---------------------*/
82
+
83
+ .ui.form textarea,
84
+ .ui.form input:not([type]),
85
+ .ui.form input[type="text"],
86
+ .ui.form input[type="email"],
87
+ .ui.form input[type="date"],
88
+ .ui.form input[type="datetime-local"],
89
+ .ui.form input[type="password"],
90
+ .ui.form input[type="number"],
91
+ .ui.form input[type="url"],
92
+ .ui.form input[type="tel"],
93
+ .ui.form .ui.input {
94
+ width: 100%;
95
+ vertical-align: top;
96
+ }
97
+ .ui.form input:not([type]),
98
+ .ui.form input[type="text"],
99
+ .ui.form input[type="email"],
100
+ .ui.form input[type="date"],
101
+ .ui.form input[type="datetime-local"],
102
+ .ui.form input[type="password"],
103
+ .ui.form input[type="number"],
104
+ .ui.form input[type="url"],
105
+ .ui.form input[type="tel"] {
106
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
107
+ margin: 0em;
108
+ outline: none;
109
+ -webkit-appearance: none;
110
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
111
+ line-height: 1.2142em;
112
+ padding: 0.67861em 1em;
113
+ font-size: 1em;
114
+ background: #ffffff;
115
+ border: 1px solid rgba(39, 41, 43, 0.15);
116
+ color: rgba(0, 0, 0, 0.8);
117
+ border-radius: 0.2857rem;
118
+ box-shadow: 0em 0em 0em 0em transparent inset;
119
+ -webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
120
+ transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
121
+ }
122
+ .ui.textarea,
123
+ .ui.form textarea {
124
+ margin: 0em;
125
+ -webkit-appearance: none;
126
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
127
+ padding: 0.78571em 1em;
128
+ background: #ffffff;
129
+ border: 1px solid rgba(39, 41, 43, 0.15);
130
+ outline: none;
131
+ color: rgba(0, 0, 0, 0.8);
132
+ border-radius: 0.2857rem;
133
+ box-shadow: 0em 0em 0em 0em transparent inset;
134
+ -webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
135
+ transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
136
+ font-size: 1em;
137
+ height: 12em;
138
+ min-height: 8em;
139
+ max-height: 24em;
140
+ line-height: 1.2857;
141
+ resize: vertical;
142
+ }
143
+ .ui.form textarea,
144
+ .ui.form input[type="checkbox"] {
145
+ vertical-align: top;
146
+ }
147
+
148
+ /*--------------------------
149
+ Input w/ attached Button
150
+ ---------------------------*/
151
+
152
+ .ui.form input.attached {
153
+ width: auto;
154
+ }
155
+
156
+ /*--------------------
157
+ Basic Select
158
+ ---------------------*/
159
+
160
+ .ui.form select {
161
+ display: block;
162
+ height: auto;
163
+ width: 100%;
164
+ background: #ffffff;
165
+ border: 1px solid rgba(39, 41, 43, 0.15);
166
+ border-radius: 0.2857rem;
167
+ box-shadow: 0em 0em 0em 0em transparent inset;
168
+ padding: 0.62em 1em;
169
+ color: rgba(0, 0, 0, 0.8);
170
+ -webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
171
+ transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
172
+ }
173
+
174
+ /*--------------------
175
+ Dropdown
176
+ ---------------------*/
177
+
178
+ .ui.form .field > .selection.dropdown {
179
+ width: 100%;
180
+ }
181
+ .ui.form .field > .selection.dropdown > .dropdown.icon {
182
+ float: right;
183
+ }
184
+ .ui.form .inline.field > .selection.dropdown {
185
+ width: auto;
186
+ }
187
+ .ui.form .inline.field > .selection.dropdown > .dropdown.icon {
188
+ float: none;
189
+ }
190
+
191
+ /*--------------------
192
+ Dividers
193
+ ---------------------*/
194
+
195
+ .ui.form .divider {
196
+ clear: both;
197
+ margin: 1em 0em;
198
+ }
199
+
200
+ /*--------------------
201
+ Types of Messages
202
+ ---------------------*/
203
+
204
+ .ui.form .info.message,
205
+ .ui.form .success.message,
206
+ .ui.form .warning.message,
207
+ .ui.form .error.message {
208
+ display: none;
209
+ }
210
+
211
+ /* Assumptions */
212
+ .ui.form .message:first-child {
213
+ margin-top: 0px;
214
+ }
215
+
216
+ /*--------------------
217
+ Validation Prompt
218
+ ---------------------*/
219
+
220
+ .ui.form .field .prompt.label {
221
+ white-space: nowrap;
222
+ }
223
+ .ui.form .inline.field .prompt {
224
+ margin: 0em 0em 0em 1em;
225
+ }
226
+ .ui.form .inline.field .prompt:before {
227
+ margin-top: -0.3em;
228
+ bottom: auto;
229
+ right: auto;
230
+ top: 50%;
231
+ left: 0em;
232
+ }
233
+
234
+
235
+ /*******************************
236
+ States
237
+ *******************************/
238
+
239
+
240
+ /*--------------------
241
+ Placeholder
242
+ ---------------------*/
243
+
244
+
245
+ /* browsers require these rules separate */
246
+ .ui.form ::-webkit-input-placeholder {
247
+ color: rgba(140, 140, 140, 0.8);
248
+ }
249
+ .ui.form ::-moz-placeholder {
250
+ color: rgba(140, 140, 140, 0.8);
251
+ }
252
+ .ui.form :focus::-webkit-input-placeholder {
253
+ color: rgba(89, 89, 89, 0.8);
254
+ }
255
+ .ui.form :focus::-moz-placeholder {
256
+ color: rgba(89, 89, 89, 0.8);
257
+ }
258
+
259
+ /* Error Placeholder */
260
+ .ui.form .error ::-webkit-input-placeholder {
261
+ color: #e38585;
262
+ }
263
+ .ui.form .error ::-moz-placeholder {
264
+ color: #e38585;
265
+ }
266
+ .ui.form .error :focus::-webkit-input-placeholder {
267
+ color: #de7171;
268
+ }
269
+ .ui.form .error :focus::-moz-placeholder {
270
+ color: #de7171;
271
+ }
272
+
273
+ /*--------------------
274
+ Focus
275
+ ---------------------*/
276
+
277
+ .ui.form input:not([type]):focus,
278
+ .ui.form input[type="text"]:focus,
279
+ .ui.form input[type="email"]:focus,
280
+ .ui.form input[type="date"]:focus,
281
+ .ui.form input[type="datetime-local"]:focus,
282
+ .ui.form input[type="password"]:focus,
283
+ .ui.form input[type="number"]:focus,
284
+ .ui.form input[type="url"]:focus,
285
+ .ui.form input[type="tel"]:focus {
286
+ color: rgba(0, 0, 0, 0.85);
287
+ border-color: rgba(39, 41, 43, 0.3);
288
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
289
+ background: #ffffff;
290
+ box-shadow: 1px 0em 0em 0em rgba(39, 41, 43, 0.3) inset;
291
+ }
292
+ .ui.form textarea:focus {
293
+ color: rgba(0, 0, 0, 0.85);
294
+ border-color: rgba(39, 41, 43, 0.3);
295
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
296
+ background: #ffffff;
297
+ box-shadow: 1px 0em 0em 0em rgba(39, 41, 43, 0.3) inset;
298
+ -webkit-appearance: none;
299
+ }
300
+
301
+ /*--------------------
302
+ Success
303
+ ---------------------*/
304
+
305
+
306
+ /* On Form */
307
+ .ui.form.success .success.message {
308
+ display: block;
309
+ }
310
+
311
+ /*--------------------
312
+ Error
313
+ ---------------------*/
314
+
315
+
316
+ /* On Form */
317
+ .ui.form.warning .warning.message {
318
+ display: block;
319
+ }
320
+
321
+ /*--------------------
322
+ Warning
323
+ ---------------------*/
324
+
325
+
326
+ /* On Form */
327
+ .ui.form.error .error.message {
328
+ display: block;
329
+ }
330
+
331
+ /* On Field(s) */
332
+ .ui.form .fields.error .field label,
333
+ .ui.form .field.error label,
334
+ .ui.form .fields.error .field .input,
335
+ .ui.form .field.error .input {
336
+ color: #d95c5c;
337
+ }
338
+ .ui.form .fields.error .field .corner.label,
339
+ .ui.form .field.error .corner.label {
340
+ border-color: #d95c5c;
341
+ color: #ffffff;
342
+ }
343
+ .ui.form .fields.error .field textarea,
344
+ .ui.form .fields.error .field input:not([type]),
345
+ .ui.form .fields.error .field input[type="text"],
346
+ .ui.form .fields.error .field input[type="email"],
347
+ .ui.form .fields.error .field input[type="date"],
348
+ .ui.form .fields.error .field input[type="datetime-local"],
349
+ .ui.form .fields.error .field input[type="password"],
350
+ .ui.form .fields.error .field input[type="number"],
351
+ .ui.form .fields.error .field input[type="url"],
352
+ .ui.form .fields.error .field input[type="tel"],
353
+ .ui.form .field.error textarea,
354
+ .ui.form .field.error input:not([type]),
355
+ .ui.form .field.error input[type="text"],
356
+ .ui.form .field.error input[type="email"],
357
+ .ui.form .field.error input[type="date"],
358
+ .ui.form .field.error input[type="datetime-local"],
359
+ .ui.form .field.error input[type="password"],
360
+ .ui.form .field.error input[type="number"],
361
+ .ui.form .field.error input[type="url"],
362
+ .ui.form .field.error input[type="tel"] {
363
+ background: #fff0f0;
364
+ border-color: #dbb1b1;
365
+ color: #d95c5c;
366
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
367
+ box-shadow: 2px 0em 0em 0em #d95c5c inset;
368
+ }
369
+ .ui.form .field.error textarea:focus,
370
+ .ui.form .field.error input:not([type]):focus,
371
+ .ui.form .field.error input[type="text"]:focus,
372
+ .ui.form .field.error input[type="email"]:focus,
373
+ .ui.form .field.error input[type="date"]:focus,
374
+ .ui.form .field.error input[type="datetime-local"]:focus,
375
+ .ui.form .field.error input[type="password"]:focus,
376
+ .ui.form .field.error input[type="number"]:focus,
377
+ .ui.form .field.error input[type="url"]:focus,
378
+ .ui.form .field.error input[type="tel"]:focus {
379
+ background: #fff0f0;
380
+ border-color: #dbb1b1;
381
+ color: #dc6868;
382
+ -webkit-appearance: none;
383
+ box-shadow: 2px 0em 0em 0em #dc6868 inset;
384
+ }
385
+
386
+ /*------------------
387
+ Dropdown Error
388
+ --------------------*/
389
+
390
+ .ui.form .fields.error .field .ui.dropdown,
391
+ .ui.form .fields.error .field .ui.dropdown .item,
392
+ .ui.form .field.error .ui.dropdown,
393
+ .ui.form .field.error .ui.dropdown .text,
394
+ .ui.form .field.error .ui.dropdown .item {
395
+ background: #fff0f0;
396
+ color: #d95c5c;
397
+ }
398
+ .ui.form .fields.error .field .ui.dropdown,
399
+ .ui.form .field.error .ui.dropdown {
400
+ border-color: #dbb1b1 !important;
401
+ }
402
+ .ui.form .fields.error .field .ui.dropdown:hover,
403
+ .ui.form .field.error .ui.dropdown:hover {
404
+ border-color: #dbb1b1 !important;
405
+ }
406
+ .ui.form .fields.error .field .ui.dropdown:hover .menu,
407
+ .ui.form .field.error .ui.dropdown:hover .menu {
408
+ border-color: #dbb1b1;
409
+ }
410
+
411
+ /* Hover */
412
+ .ui.form .fields.error .field .ui.dropdown .menu .item:hover,
413
+ .ui.form .field.error .ui.dropdown .menu .item:hover {
414
+ background-color: #fff2f2;
415
+ }
416
+
417
+ /* Active */
418
+ .ui.form .fields.error .field .ui.dropdown .menu .active.item,
419
+ .ui.form .field.error .ui.dropdown .menu .active.item {
420
+ background-color: #fdcfcf !important;
421
+ }
422
+
423
+ /*--------------------
424
+ Checkbox Error
425
+ ---------------------*/
426
+
427
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label,
428
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) label,
429
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,
430
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) .box {
431
+ color: #d95c5c;
432
+ }
433
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,
434
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,
435
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,
436
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before {
437
+ background: #fff0f0;
438
+ border-color: #dbb1b1;
439
+ }
440
+ .ui.form .fields.error .field .checkbox label:after,
441
+ .ui.form .field.error .checkbox label:after,
442
+ .ui.form .fields.error .field .checkbox .box:after,
443
+ .ui.form .field.error .checkbox .box:after {
444
+ color: #d95c5c;
445
+ }
446
+
447
+ /*--------------------
448
+ Disabled
449
+ ---------------------*/
450
+
451
+ .ui.form .field :disabled,
452
+ .ui.form .field.disabled {
453
+ opacity: 0.5;
454
+ }
455
+ .ui.form .field.disabled label {
456
+ opacity: 0.5;
457
+ }
458
+ .ui.form .field.disabled :disabled {
459
+ opacity: 1;
460
+ }
461
+
462
+ /*--------------
463
+ Loading
464
+ ---------------*/
465
+
466
+ .ui.loading.form {
467
+ position: relative;
468
+ cursor: default;
469
+ point-events: none;
470
+ text-shadow: none !important;
471
+ color: transparent !important;
472
+ -webkit-transition: all 0s linear;
473
+ transition: all 0s linear;
474
+ z-index: 100;
475
+ }
476
+ .ui.loading.form:before {
477
+ position: absolute;
478
+ content: '';
479
+ top: 0%;
480
+ left: 0%;
481
+ background: rgba(255, 255, 255, 0.8);
482
+ width: 100%;
483
+ height: 100%;
484
+ z-index: 100;
485
+ }
486
+ .ui.loading.form:after {
487
+ position: absolute;
488
+ content: '';
489
+ top: 50%;
490
+ left: 50%;
491
+ margin: -1.5em 0em 0em -1.5em;
492
+ width: 3em;
493
+ height: 3em;
494
+ -webkit-animation: form-spin 0.6s linear;
495
+ animation: form-spin 0.6s linear;
496
+ -webkit-animation-iteration-count: infinite;
497
+ animation-iteration-count: infinite;
498
+ border-radius: 500rem;
499
+ border-color: #aaaaaa rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
500
+ border-style: solid;
501
+ border-width: 0.2em;
502
+ box-shadow: 0px 0px 0px 1px transparent;
503
+ visibility: visible;
504
+ z-index: 101;
505
+ }
506
+ @-webkit-keyframes form-spin {
507
+
508
+ from {
509
+ -webkit-transform: rotate(0deg);
510
+ transform: rotate(0deg);
511
+ }
512
+
513
+ to {
514
+ -webkit-transform: rotate(360deg);
515
+ transform: rotate(360deg);
516
+ }
517
+ }
518
+ @keyframes form-spin {
519
+ from {
520
+ -webkit-transform: rotate(0deg);
521
+ transform: rotate(0deg);
522
+ }
523
+ to {
524
+ -webkit-transform: rotate(360deg);
525
+ transform: rotate(360deg);
526
+ }
527
+ }
528
+
529
+
530
+ /*******************************
531
+ Element Types
532
+ *******************************/
533
+
534
+
535
+ /*--------------------
536
+ Required Field
537
+ ---------------------*/
538
+
539
+ .ui.form .required.fields > .field > label:after,
540
+ .ui.form .required.field > label:after,
541
+ .ui.form .required.fields > .field > .checkbox:after,
542
+ .ui.form .required.field > .checkbox:after {
543
+ margin: -0.2em 0em 0em 0.2em;
544
+ content: '*';
545
+ color: #d95c5c;
546
+ }
547
+ .ui.form .required.fields > .field > label:after,
548
+ .ui.form .required.field > label:after {
549
+ display: inline-block;
550
+ vertical-align: top;
551
+ }
552
+ .ui.form .required.fields > .field > .checkbox:after,
553
+ .ui.form .required.field > .checkbox:after {
554
+ position: absolute;
555
+ top: 0%;
556
+ left: 100%;
557
+ }
558
+
559
+
560
+ /*******************************
561
+ Variations
562
+ *******************************/
563
+
564
+
565
+ /*--------------------
566
+ Inverted Colors
567
+ ---------------------*/
568
+
569
+ .ui.inverted.form label,
570
+ .ui.form .inverted.segment label,
571
+ .ui.form .inverted.segment .ui.checkbox label,
572
+ .ui.form .inverted.segment .ui.checkbox .box,
573
+ .ui.inverted.form .ui.checkbox label,
574
+ .ui.inverted.form .ui.checkbox .box {
575
+ color: #ffffff;
576
+ }
577
+
578
+ /*--------------------
579
+ Field Groups
580
+ ---------------------*/
581
+
582
+
583
+ /* Grouped Vertically */
584
+ .ui.form .grouped.fields {
585
+ margin: 0em 0em 1em;
586
+ }
587
+ .ui.form .grouped.fields:last-child {
588
+ margin-bottom: 0em;
589
+ }
590
+ .ui.form .grouped.fields > label {
591
+ font-size: 0.9285em;
592
+ }
593
+ .ui.form .grouped.fields .field {
594
+ display: block;
595
+ float: none;
596
+ margin: 0.5em 0em;
597
+ padding: 0em;
598
+ }
599
+
600
+ /*--------------------
601
+ Fields
602
+ ---------------------*/
603
+
604
+
605
+ /* Split fields */
606
+ .ui.form .fields {
607
+ clear: both;
608
+ }
609
+ .ui.form .fields:after {
610
+ content: ' ';
611
+ display: block;
612
+ clear: both;
613
+ visibility: hidden;
614
+ line-height: 0;
615
+ height: 0;
616
+ }
617
+ .ui.form .fields > .field {
618
+ clear: none;
619
+ float: left;
620
+ padding-left: 0.5em;
621
+ padding-right: 0.5em;
622
+ }
623
+ .ui.form .fields > .field:first-child {
624
+ border-left: none;
625
+ box-shadow: none;
626
+ }
627
+
628
+ /* Other Combinations */
629
+ .ui.form .two.fields > .fields,
630
+ .ui.form .two.fields > .field {
631
+ width: 50%;
632
+ }
633
+ .ui.form .three.fields > .fields,
634
+ .ui.form .three.fields > .field {
635
+ width: 33.33333333%;
636
+ }
637
+ .ui.form .four.fields > .fields,
638
+ .ui.form .four.fields > .field {
639
+ width: 25%;
640
+ }
641
+ .ui.form .five.fields > .fields,
642
+ .ui.form .five.fields > .field {
643
+ width: 20%;
644
+ }
645
+ .ui.form .six.fields > .fields,
646
+ .ui.form .six.fields > .field {
647
+ width: 16.66666667%;
648
+ }
649
+ .ui.form .seven.fields > .fields,
650
+ .ui.form .seven.fields > .field {
651
+ width: 14.28571429%;
652
+ }
653
+ .ui.form .eight.fields > .fields,
654
+ .ui.form .eight.fields > .field {
655
+ width: 12.5%;
656
+ }
657
+ .ui.form .nine.fields > .fields,
658
+ .ui.form .nine.fields > .field {
659
+ width: 11.11111111%;
660
+ }
661
+ .ui.form .ten.fields > .fields,
662
+ .ui.form .ten.fields > .field {
663
+ width: 10%;
664
+ }
665
+
666
+ /* Swap to full width on mobile */
667
+ @media only screen and (max-width: 767px) {
668
+ .ui.form .two.fields > .fields,
669
+ .ui.form .two.fields > .field,
670
+ .ui.form .three.fields > .fields,
671
+ .ui.form .three.fields > .field,
672
+ .ui.form .four.fields > .fields,
673
+ .ui.form .four.fields > .field,
674
+ .ui.form .five.fields > .fields,
675
+ .ui.form .five.fields > .field,
676
+ .ui.form .six.fields > .fields,
677
+ .ui.form .six.fields > .field,
678
+ .ui.form .seven.fields > .fields,
679
+ .ui.form .seven.fields > .field,
680
+ .ui.form .eight.fields > .fields,
681
+ .ui.form .eight.fields > .field,
682
+ .ui.form .nine.fields > .fields,
683
+ .ui.form .nine.fields > .field,
684
+ .ui.form .ten.fields > .fields,
685
+ .ui.form .ten.fields > .field {
686
+ width: 100% !important;
687
+ margin: 0em 0em 1em;
688
+ padding-left: 0%;
689
+ padding-right: 0%;
690
+ }
691
+ }
692
+ .ui.form .fields .field:first-child {
693
+ padding-left: 0%;
694
+ }
695
+ .ui.form .fields .field:last-child {
696
+ padding-right: 0%;
697
+ }
698
+
699
+ /* Sizing Combinations */
700
+ .ui.form .fields .wide.field {
701
+ width: 6.25%;
702
+ padding-left: 0.5em;
703
+ padding-right: 0.5em;
704
+ }
705
+ .ui.form .fields .wide.field:first-child {
706
+ padding-left: 0%;
707
+ }
708
+ .ui.form .fields .wide.field:last-child {
709
+ padding-right: 0%;
710
+ }
711
+ .ui.form .one.wide.field {
712
+ width: 6.25% !important;
713
+ }
714
+ .ui.form .two.wide.field {
715
+ width: 12.5% !important;
716
+ }
717
+ .ui.form .three.wide.field {
718
+ width: 18.75% !important;
719
+ }
720
+ .ui.form .four.wide.field {
721
+ width: 25% !important;
722
+ }
723
+ .ui.form .five.wide.field {
724
+ width: 31.25% !important;
725
+ }
726
+ .ui.form .six.wide.field {
727
+ width: 37.5% !important;
728
+ }
729
+ .ui.form .seven.wide.field {
730
+ width: 43.75% !important;
731
+ }
732
+ .ui.form .eight.wide.field {
733
+ width: 50% !important;
734
+ }
735
+ .ui.form .nine.wide.field {
736
+ width: 56.25% !important;
737
+ }
738
+ .ui.form .ten.wide.field {
739
+ width: 62.5% !important;
740
+ }
741
+ .ui.form .eleven.wide.field {
742
+ width: 68.75% !important;
743
+ }
744
+ .ui.form .twelve.wide.field {
745
+ width: 75% !important;
746
+ }
747
+ .ui.form .thirteen.wide.field {
748
+ width: 81.25% !important;
749
+ }
750
+ .ui.form .fourteen.wide.field {
751
+ width: 87.5% !important;
752
+ }
753
+ .ui.form .fifteen.wide.field {
754
+ width: 93.75% !important;
755
+ }
756
+ .ui.form .sixteen.wide.field {
757
+ width: 100% !important;
758
+ }
759
+
760
+ /* Swap to full width on mobile */
761
+ @media only screen and (max-width: 767px) {
762
+ .ui.form .two.fields > .fields,
763
+ .ui.form .two.fields > .field,
764
+ .ui.form .three.fields > .fields,
765
+ .ui.form .three.fields > .field,
766
+ .ui.form .four.fields > .fields,
767
+ .ui.form .four.fields > .field,
768
+ .ui.form .five.fields > .fields,
769
+ .ui.form .five.fields > .field,
770
+ .ui.form .fields > .two.wide.field,
771
+ .ui.form .fields > .three.wide.field,
772
+ .ui.form .fields > .four.wide.field,
773
+ .ui.form .fields > .five.wide.field,
774
+ .ui.form .fields > .six.wide.field,
775
+ .ui.form .fields > .seven.wide.field,
776
+ .ui.form .fields > .eight.wide.field,
777
+ .ui.form .fields > .nine.wide.field,
778
+ .ui.form .fields > .ten.wide.field,
779
+ .ui.form .fields > .eleven.wide.field,
780
+ .ui.form .fields > .twelve.wide.field,
781
+ .ui.form .fields > .thirteen.wide.field,
782
+ .ui.form .fields > .fourteen.wide.field,
783
+ .ui.form .fields > .fifteen.wide.field,
784
+ .ui.form .fields > .sixteen.wide.field {
785
+ width: 100% !important;
786
+ margin: 0em 0em 1em;
787
+ padding-left: 0%;
788
+ padding-right: 0%;
789
+ }
790
+ }
791
+
792
+ /*--------------------
793
+ Inline Fields
794
+ ---------------------*/
795
+
796
+ .ui.form .inline.fields {
797
+ margin: 0em 0em 1em;
798
+ }
799
+ .ui.form .inline.fields .field {
800
+ display: inline-block;
801
+ float: none;
802
+ margin: 0em 1em 0em 0em;
803
+ padding: 0em;
804
+ }
805
+ .ui.form .inline.fields .field > label,
806
+ .ui.form .inline.fields .field > p,
807
+ .ui.form .inline.fields .field > input,
808
+ .ui.form .inline.fields .field > .ui.input,
809
+ .ui.form .inline.field > label,
810
+ .ui.form .inline.field > p,
811
+ .ui.form .inline.field > input,
812
+ .ui.form .inline.field > .ui.input {
813
+ display: inline-block;
814
+ width: auto;
815
+ margin-top: 0em;
816
+ margin-bottom: 0em;
817
+ vertical-align: middle;
818
+ font-size: 0.9285em;
819
+ }
820
+ .ui.form .inline.fields .field > input,
821
+ .ui.form .inline.fields .field > .ui.input,
822
+ .ui.form .inline.field > input,
823
+ .ui.form .inline.field > .ui.input {
824
+ font-size: 0.9285em;
825
+ }
826
+ .ui.form .inline.fields .field > .ui.checkbox label {
827
+ padding-left: 1.75em;
828
+ }
829
+
830
+ /* Label */
831
+ .ui.form .inline.fields .field > :first-child,
832
+ .ui.form .inline.field > :first-child {
833
+ margin: 0em 0.2857rem 0em 0em;
834
+ }
835
+ .ui.form .inline.fields .field > :only-child,
836
+ .ui.form .inline.field > :only-child {
837
+ margin: 0em;
838
+ }
839
+
840
+ /*--------------------
841
+ Sizes
842
+ ---------------------*/
843
+
844
+
845
+ /* Standard */
846
+ .ui.small.form {
847
+ font-size: 0.875em;
848
+ }
849
+
850
+ /* Medium */
851
+ .ui.form {
852
+ font-size: auto;
853
+ }
854
+
855
+ /* Large */
856
+ .ui.large.form {
857
+ font-size: 1.125em;
858
+ }
859
+
860
+ /* Huge */
861
+ .ui.huge.form {
862
+ font-size: 1.2em;
863
+ }
864
+
865
+
866
+ /*******************************
867
+ Theme Overrides
868
+ *******************************/
869
+
870
+
871
+
872
+ /*******************************
873
+ Site Overrides
874
+ *******************************/
875
+