bastion 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +15 -0
  2. data/.jshintrc +35 -0
  3. data/Gruntfile.js +24 -0
  4. data/LICENSE +339 -0
  5. data/README.md +8 -0
  6. data/Rakefile +53 -0
  7. data/app/assets/javascripts/bastion/auth/auth.module.js +87 -0
  8. data/app/assets/javascripts/bastion/auth/authorization.service.js +48 -0
  9. data/app/assets/javascripts/bastion/bastion-bootstrap.js +32 -0
  10. data/app/assets/javascripts/bastion/bastion-resource.factory.js +39 -0
  11. data/app/assets/javascripts/bastion/bastion.js +52 -0
  12. data/app/assets/javascripts/bastion/bastion.module.js +213 -0
  13. data/app/assets/javascripts/bastion/i18n/README +9 -0
  14. data/app/assets/javascripts/bastion/i18n/i18n.module.js +24 -0
  15. data/app/assets/javascripts/bastion/i18n/katello.pot +968 -0
  16. data/app/assets/javascripts/bastion/i18n/locale/README +1 -0
  17. data/app/assets/javascripts/bastion/i18n/translate.service.js +14 -0
  18. data/app/assets/javascripts/bastion/i18n/translations.js +3 -0
  19. data/app/assets/javascripts/bastion/i18n/zanata.xml +28 -0
  20. data/app/assets/javascripts/bastion/incubator/alch-alert.directive.js +67 -0
  21. data/app/assets/javascripts/bastion/incubator/alch-container-scroll.directive.js +44 -0
  22. data/app/assets/javascripts/bastion/incubator/alch-dropdown.directive.js +28 -0
  23. data/app/assets/javascripts/bastion/incubator/alch-edit.directive.js +361 -0
  24. data/app/assets/javascripts/bastion/incubator/alch-flyout.directive.js +19 -0
  25. data/app/assets/javascripts/bastion/incubator/alch-form-buttons.directive.js +60 -0
  26. data/app/assets/javascripts/bastion/incubator/alch-form-group.directive.js +87 -0
  27. data/app/assets/javascripts/bastion/incubator/alch-infinite-scroll.directive.js +84 -0
  28. data/app/assets/javascripts/bastion/incubator/alch-menu.directive.js +56 -0
  29. data/app/assets/javascripts/bastion/incubator/alch-modal.directive.js +80 -0
  30. data/app/assets/javascripts/bastion/incubator/alch-save-control.directive.js +42 -0
  31. data/app/assets/javascripts/bastion/incubator/alch-table.directive.js +295 -0
  32. data/app/assets/javascripts/bastion/incubator/format/alch-format.module.js +21 -0
  33. data/app/assets/javascripts/bastion/incubator/format/array-to-string.filter.js +30 -0
  34. data/app/assets/javascripts/bastion/incubator/format/boolean-to-yes-no.filter.js +34 -0
  35. data/app/assets/javascripts/bastion/incubator/format/capitalize.filter.js +32 -0
  36. data/app/assets/javascripts/bastion/incubator/format/key-value-to-string.filter.js +40 -0
  37. data/app/assets/javascripts/bastion/incubator/format/unlimitedFilter.filter.js +35 -0
  38. data/app/assets/javascripts/bastion/incubator/stylesheets/alch-edit.scss +34 -0
  39. data/app/assets/javascripts/bastion/incubator/stylesheets/header.scss +207 -0
  40. data/app/assets/javascripts/bastion/incubator/views/alch-alert.html +6 -0
  41. data/app/assets/javascripts/bastion/incubator/views/alch-dropdown.html +19 -0
  42. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-item.html +21 -0
  43. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-remove-cancel.html +28 -0
  44. data/app/assets/javascripts/bastion/incubator/views/alch-edit-checkbox.html +6 -0
  45. data/app/assets/javascripts/bastion/incubator/views/alch-edit-custom.html +8 -0
  46. data/app/assets/javascripts/bastion/incubator/views/alch-edit-multiselect.html +17 -0
  47. data/app/assets/javascripts/bastion/incubator/views/alch-edit-save-cancel.html +20 -0
  48. data/app/assets/javascripts/bastion/incubator/views/alch-edit-select.html +10 -0
  49. data/app/assets/javascripts/bastion/incubator/views/alch-edit-text.html +6 -0
  50. data/app/assets/javascripts/bastion/incubator/views/alch-edit-textarea.html +6 -0
  51. data/app/assets/javascripts/bastion/incubator/views/alch-edit.html +18 -0
  52. data/app/assets/javascripts/bastion/incubator/views/alch-flyout.html +10 -0
  53. data/app/assets/javascripts/bastion/incubator/views/alch-form-buttons.html +10 -0
  54. data/app/assets/javascripts/bastion/incubator/views/alch-form-group.html +9 -0
  55. data/app/assets/javascripts/bastion/incubator/views/alch-menu.html +18 -0
  56. data/app/assets/javascripts/bastion/incubator/views/alch-modal-remove.html +13 -0
  57. data/app/assets/javascripts/bastion/incubator/views/alch-save-control.html +18 -0
  58. data/app/assets/javascripts/bastion/layouts/details-nutupane.html +73 -0
  59. data/app/assets/javascripts/bastion/layouts/nutupane.html +63 -0
  60. data/app/assets/javascripts/bastion/layouts/select-all-results.html +9 -0
  61. data/app/assets/javascripts/bastion/menu/menu-expander.service.js +51 -0
  62. data/app/assets/javascripts/bastion/menu/menu.module.js +26 -0
  63. data/app/assets/javascripts/bastion/utils/as.filter.js +33 -0
  64. data/app/assets/javascripts/bastion/utils/form-utils.service.js +53 -0
  65. data/app/assets/javascripts/bastion/utils/utils.module.js +21 -0
  66. data/app/assets/javascripts/bastion/widgets/current-tasks.directive.js +67 -0
  67. data/app/assets/javascripts/bastion/widgets/nutupane-table.directive.js +59 -0
  68. data/app/assets/javascripts/bastion/widgets/nutupane.factory.js +316 -0
  69. data/app/assets/javascripts/bastion/widgets/page-title.directive.js +61 -0
  70. data/app/assets/javascripts/bastion/widgets/page-title.service.js +42 -0
  71. data/app/assets/javascripts/bastion/widgets/path-selector.directive.js +109 -0
  72. data/app/assets/javascripts/bastion/widgets/views/current-tasks.html +23 -0
  73. data/app/assets/javascripts/bastion/widgets/views/path-selector.html +11 -0
  74. data/app/assets/javascripts/bastion/widgets/widgets.module.js +24 -0
  75. data/app/assets/stylesheets/bastion/animations.less +15 -0
  76. data/app/assets/stylesheets/bastion/bastion.less +160 -0
  77. data/app/assets/stylesheets/bastion/forms.less +41 -0
  78. data/app/assets/stylesheets/bastion/gpg-keys.less +36 -0
  79. data/app/assets/stylesheets/bastion/helpers.less +6 -0
  80. data/app/assets/stylesheets/bastion/mixins.less +15 -0
  81. data/app/assets/stylesheets/bastion/nutupane.less +382 -0
  82. data/app/assets/stylesheets/bastion/overrides.less +54 -0
  83. data/app/assets/stylesheets/bastion/path-selector.less +123 -0
  84. data/app/assets/stylesheets/bastion/systems.less +35 -0
  85. data/app/assets/stylesheets/bastion/tasks.less +23 -0
  86. data/app/assets/stylesheets/bastion/typography.less +31 -0
  87. data/app/assets/stylesheets/bastion/variables.less +3 -0
  88. data/app/controllers/bastion/bastion_controller.rb +24 -0
  89. data/app/views/bastion/layouts/application.html.erb +32 -0
  90. data/app/views/bastion/layouts/application_ie.html.erb +5 -0
  91. data/bastion.js +26 -0
  92. data/bower.json +94 -0
  93. data/config/routes.rb +25 -0
  94. data/config/routes/mount_engine.rb +3 -0
  95. data/grunt/bower.js +20 -0
  96. data/grunt/htmlhint.js +15 -0
  97. data/grunt/jshint.js +9 -0
  98. data/grunt/karma.js +83 -0
  99. data/lib/bastion.rb +17 -0
  100. data/lib/bastion/engine.rb +37 -0
  101. data/lib/bastion/version.rb +3 -0
  102. data/package.json +29 -0
  103. data/test/auth/authorization.service.test.js +63 -0
  104. data/test/bastion/bastion-resource.factory.test.js +31 -0
  105. data/test/bastion/test-constants.js +30 -0
  106. data/test/i18n/translate.service.test.js +31 -0
  107. data/test/incubator/alch-alert.directive.test.js +84 -0
  108. data/test/incubator/alch-container-scroll.directive.test.js +68 -0
  109. data/test/incubator/alch-dropdown.directive.test.js +113 -0
  110. data/test/incubator/alch-edit.directive.test.js +320 -0
  111. data/test/incubator/alch-flyout.directive.test.js +73 -0
  112. data/test/incubator/alch-form-buttons.directive.test.js +55 -0
  113. data/test/incubator/alch-form-group.directive.test.js +76 -0
  114. data/test/incubator/alch-infinite-scroll.directive.test.js +123 -0
  115. data/test/incubator/alch-menu.directive.test.js +94 -0
  116. data/test/incubator/alch-modal.directive.test.js +81 -0
  117. data/test/incubator/alch-table.directive.test.js +270 -0
  118. data/test/incubator/format/array-to-string.filter.test.js +38 -0
  119. data/test/incubator/format/boolean-to-yes-no.filter.test.js +41 -0
  120. data/test/incubator/format/capitalize.filter.test.js +35 -0
  121. data/test/incubator/format/key-value-to-string.filter.test.js +60 -0
  122. data/test/incubator/format/unlimited-filter.filter.test.js +31 -0
  123. data/test/incubator/nutupane-table.directive.test.js +69 -0
  124. data/test/incubator/nutupane.factory.test.js +307 -0
  125. data/test/menu/menu-expander.service.test.js +74 -0
  126. data/test/test-mocks.module.js +268 -0
  127. data/test/utils/as.filter.test.js +33 -0
  128. data/test/utils/form-utils.service.test.js +52 -0
  129. data/test/widgets/page-title.directive.test.js +54 -0
  130. data/test/widgets/page-title.service.test.js +51 -0
  131. data/test/widgets/path-selector.directive.test.js +136 -0
  132. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.eot +0 -0
  133. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.svg +229 -0
  134. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  135. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.woff +0 -0
  136. data/vendor/assets/fonts/bastion/font-awesome/FontAwesome.otf +0 -0
  137. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.eot +0 -0
  138. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.svg +399 -0
  139. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.ttf +0 -0
  140. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.woff +0 -0
  141. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.eot +0 -0
  142. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.svg +146 -0
  143. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.ttf +0 -0
  144. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.woff +0 -0
  145. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.eot +0 -0
  146. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.svg +146 -0
  147. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.ttf +0 -0
  148. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.woff +0 -0
  149. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.eot +0 -0
  150. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.svg +146 -0
  151. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.ttf +0 -0
  152. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.woff +0 -0
  153. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
  154. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.svg +146 -0
  155. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
  156. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
  157. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.eot +0 -0
  158. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.svg +146 -0
  159. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.ttf +0 -0
  160. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.woff +0 -0
  161. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.eot +0 -0
  162. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.svg +146 -0
  163. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.ttf +0 -0
  164. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.woff +0 -0
  165. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.eot +0 -0
  166. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.svg +146 -0
  167. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.ttf +0 -0
  168. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.woff +0 -0
  169. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.eot +0 -0
  170. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.svg +146 -0
  171. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.ttf +0 -0
  172. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.woff +0 -0
  173. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.eot +0 -0
  174. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.svg +146 -0
  175. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.ttf +0 -0
  176. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.woff +0 -0
  177. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.eot +0 -0
  178. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.svg +146 -0
  179. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  180. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.woff +0 -0
  181. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.eot +0 -0
  182. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.svg +454 -0
  183. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.ttf +0 -0
  184. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.woff +0 -0
  185. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.eot +0 -0
  186. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.svg +454 -0
  187. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.ttf +0 -0
  188. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.woff +0 -0
  189. data/vendor/assets/javascripts/bastion/alchemy/alchemy.js +20 -0
  190. data/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +1226 -0
  191. data/vendor/assets/javascripts/bastion/angular-blocks/angular-blocks.js +79 -0
  192. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap-tpls.js +3677 -0
  193. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap.js +3427 -0
  194. data/vendor/assets/javascripts/bastion/angular-gettext/angular-gettext.js +345 -0
  195. data/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +594 -0
  196. data/vendor/assets/javascripts/bastion/angular-route/angular-route.js +920 -0
  197. data/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +622 -0
  198. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/datepicker.js +447 -0
  199. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/timepicker.js +232 -0
  200. data/vendor/assets/javascripts/bastion/angular-ui-router/angular-ui-router.js +3223 -0
  201. data/vendor/assets/javascripts/bastion/angular-uuid4/angular-uuid4.js +21 -0
  202. data/vendor/assets/javascripts/bastion/angular/angular.js +20560 -0
  203. data/vendor/assets/javascripts/bastion/es5-shim/es5-shim.js +1216 -0
  204. data/vendor/assets/javascripts/bastion/json3/json3.js +861 -0
  205. data/vendor/assets/javascripts/bastion/ngUpload/ng-upload.js +205 -0
  206. data/vendor/assets/javascripts/bastion/underscore/underscore.js +1276 -0
  207. data/vendor/assets/stylesheets/bastion/alchemy/_colors.scss +99 -0
  208. data/vendor/assets/stylesheets/bastion/alchemy/_media_object.scss +22 -0
  209. data/vendor/assets/stylesheets/bastion/alchemy/_mixins.scss +24 -0
  210. data/vendor/assets/stylesheets/bastion/alchemy/_normalize.scss +396 -0
  211. data/vendor/assets/stylesheets/bastion/alchemy/_vars.scss +31 -0
  212. data/vendor/assets/stylesheets/bastion/alchemy/alchemy.scss +8 -0
  213. data/vendor/assets/stylesheets/bastion/bootstrap/alerts.less +67 -0
  214. data/vendor/assets/stylesheets/bastion/bootstrap/badges.less +51 -0
  215. data/vendor/assets/stylesheets/bastion/bootstrap/bootstrap.less +49 -0
  216. data/vendor/assets/stylesheets/bastion/bootstrap/breadcrumbs.less +23 -0
  217. data/vendor/assets/stylesheets/bastion/bootstrap/button-groups.less +227 -0
  218. data/vendor/assets/stylesheets/bastion/bootstrap/buttons.less +155 -0
  219. data/vendor/assets/stylesheets/bastion/bootstrap/carousel.less +232 -0
  220. data/vendor/assets/stylesheets/bastion/bootstrap/close.less +33 -0
  221. data/vendor/assets/stylesheets/bastion/bootstrap/code.less +53 -0
  222. data/vendor/assets/stylesheets/bastion/bootstrap/component-animations.less +29 -0
  223. data/vendor/assets/stylesheets/bastion/bootstrap/dropdowns.less +187 -0
  224. data/vendor/assets/stylesheets/bastion/bootstrap/forms.less +375 -0
  225. data/vendor/assets/stylesheets/bastion/bootstrap/glyphicons.less +237 -0
  226. data/vendor/assets/stylesheets/bastion/bootstrap/grid.less +79 -0
  227. data/vendor/assets/stylesheets/bastion/bootstrap/input-groups.less +136 -0
  228. data/vendor/assets/stylesheets/bastion/bootstrap/jumbotron.less +46 -0
  229. data/vendor/assets/stylesheets/bastion/bootstrap/labels.less +64 -0
  230. data/vendor/assets/stylesheets/bastion/bootstrap/list-group.less +88 -0
  231. data/vendor/assets/stylesheets/bastion/bootstrap/media.less +56 -0
  232. data/vendor/assets/stylesheets/bastion/bootstrap/mixins.less +845 -0
  233. data/vendor/assets/stylesheets/bastion/bootstrap/modals.less +129 -0
  234. data/vendor/assets/stylesheets/bastion/bootstrap/navbar.less +612 -0
  235. data/vendor/assets/stylesheets/bastion/bootstrap/navs.less +242 -0
  236. data/vendor/assets/stylesheets/bastion/bootstrap/normalize.less +406 -0
  237. data/vendor/assets/stylesheets/bastion/bootstrap/pager.less +55 -0
  238. data/vendor/assets/stylesheets/bastion/bootstrap/pagination.less +85 -0
  239. data/vendor/assets/stylesheets/bastion/bootstrap/panels.less +182 -0
  240. data/vendor/assets/stylesheets/bastion/bootstrap/popovers.less +133 -0
  241. data/vendor/assets/stylesheets/bastion/bootstrap/print.less +105 -0
  242. data/vendor/assets/stylesheets/bastion/bootstrap/progress-bars.less +80 -0
  243. data/vendor/assets/stylesheets/bastion/bootstrap/responsive-utilities.less +209 -0
  244. data/vendor/assets/stylesheets/bastion/bootstrap/scaffolding.less +119 -0
  245. data/vendor/assets/stylesheets/bastion/bootstrap/tables.less +231 -0
  246. data/vendor/assets/stylesheets/bastion/bootstrap/theme.less +247 -0
  247. data/vendor/assets/stylesheets/bastion/bootstrap/thumbnails.less +36 -0
  248. data/vendor/assets/stylesheets/bastion/bootstrap/tooltip.less +95 -0
  249. data/vendor/assets/stylesheets/bastion/bootstrap/type.less +281 -0
  250. data/vendor/assets/stylesheets/bastion/bootstrap/utilities.less +56 -0
  251. data/vendor/assets/stylesheets/bastion/bootstrap/variables.less +642 -0
  252. data/vendor/assets/stylesheets/bastion/bootstrap/wells.less +29 -0
  253. data/vendor/assets/stylesheets/bastion/font-awesome/less/bootstrap.less +84 -0
  254. data/vendor/assets/stylesheets/bastion/font-awesome/less/core.less +129 -0
  255. data/vendor/assets/stylesheets/bastion/font-awesome/less/extras.less +93 -0
  256. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome-ie7.less +1953 -0
  257. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome.less +33 -0
  258. data/vendor/assets/stylesheets/bastion/font-awesome/less/icons.less +381 -0
  259. data/vendor/assets/stylesheets/bastion/font-awesome/less/mixins.less +48 -0
  260. data/vendor/assets/stylesheets/bastion/font-awesome/less/path.less +14 -0
  261. data/vendor/assets/stylesheets/bastion/font-awesome/less/variables.less +735 -0
  262. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_bootstrap.scss +84 -0
  263. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_core.scss +129 -0
  264. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_extras.scss +93 -0
  265. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_icons.scss +381 -0
  266. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_mixins.scss +48 -0
  267. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_path.scss +14 -0
  268. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_variables.scss +734 -0
  269. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  270. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome.scss +33 -0
  271. data/vendor/assets/stylesheets/bastion/rcue/buttons.less +44 -0
  272. data/vendor/assets/stylesheets/bastion/rcue/fonts.less +52 -0
  273. data/vendor/assets/stylesheets/bastion/rcue/forms.less +19 -0
  274. data/vendor/assets/stylesheets/bastion/rcue/mixins.less +50 -0
  275. data/vendor/assets/stylesheets/bastion/rcue/navbar.less +481 -0
  276. data/vendor/assets/stylesheets/bastion/rcue/rcue.less +15 -0
  277. data/vendor/assets/stylesheets/bastion/rcue/variables.less +47 -0
  278. metadata +376 -0
@@ -0,0 +1,84 @@
1
+ /* BOOTSTRAP SPECIFIC CLASSES
2
+ * -------------------------- */
3
+
4
+ /* Bootstrap 2.0 sprites.less reset */
5
+ [class^="icon-"],
6
+ [class*=" icon-"] {
7
+ display: inline;
8
+ width: auto;
9
+ height: auto;
10
+ line-height: normal;
11
+ vertical-align: baseline;
12
+ background-image: none;
13
+ background-position: 0% 0%;
14
+ background-repeat: repeat;
15
+ margin-top: 0;
16
+ }
17
+
18
+ /* more sprites.less reset */
19
+ .icon-white,
20
+ .nav-pills > .active > a > [class^="icon-"],
21
+ .nav-pills > .active > a > [class*=" icon-"],
22
+ .nav-list > .active > a > [class^="icon-"],
23
+ .nav-list > .active > a > [class*=" icon-"],
24
+ .navbar-inverse .nav > .active > a > [class^="icon-"],
25
+ .navbar-inverse .nav > .active > a > [class*=" icon-"],
26
+ .dropdown-menu > li > a:hover > [class^="icon-"],
27
+ .dropdown-menu > li > a:hover > [class*=" icon-"],
28
+ .dropdown-menu > .active > a > [class^="icon-"],
29
+ .dropdown-menu > .active > a > [class*=" icon-"],
30
+ .dropdown-submenu:hover > a > [class^="icon-"],
31
+ .dropdown-submenu:hover > a > [class*=" icon-"] {
32
+ background-image: none;
33
+ }
34
+
35
+
36
+ /* keeps Bootstrap styles with and without icons the same */
37
+ .btn, .nav {
38
+ [class^="icon-"],
39
+ [class*=" icon-"] {
40
+ // display: inline;
41
+ &.icon-large { line-height: .9em; }
42
+ &.icon-spin { display: inline-block; }
43
+ }
44
+ }
45
+ .nav-tabs, .nav-pills {
46
+ [class^="icon-"],
47
+ [class*=" icon-"] {
48
+ &, &.icon-large { line-height: .9em; }
49
+ }
50
+ }
51
+ .btn {
52
+ [class^="icon-"],
53
+ [class*=" icon-"] {
54
+ &.pull-left, &.pull-right {
55
+ &.icon-2x { margin-top: .18em; }
56
+ }
57
+ &.icon-spin.icon-large { line-height: .8em; }
58
+ }
59
+ }
60
+ .btn.btn-small {
61
+ [class^="icon-"],
62
+ [class*=" icon-"] {
63
+ &.pull-left, &.pull-right {
64
+ &.icon-2x { margin-top: .25em; }
65
+ }
66
+ }
67
+ }
68
+ .btn.btn-large {
69
+ [class^="icon-"],
70
+ [class*=" icon-"] {
71
+ margin-top: 0; // overrides bootstrap default
72
+ &.pull-left, &.pull-right {
73
+ &.icon-2x { margin-top: .05em; }
74
+ }
75
+ &.pull-left.icon-2x { margin-right: .2em; }
76
+ &.pull-right.icon-2x { margin-left: .2em; }
77
+ }
78
+ }
79
+
80
+ /* Fixes alignment in nav lists */
81
+ .nav-list [class^="icon-"],
82
+ .nav-list [class*=" icon-"] {
83
+ line-height: inherit;
84
+ }
@@ -0,0 +1,129 @@
1
+ /* FONT AWESOME CORE
2
+ * -------------------------- */
3
+
4
+ [class^="icon-"],
5
+ [class*=" icon-"] {
6
+ @include icon-FontAwesome();
7
+ }
8
+
9
+ [class^="icon-"]:before,
10
+ [class*=" icon-"]:before {
11
+ text-decoration: inherit;
12
+ display: inline-block;
13
+ speak: none;
14
+ }
15
+
16
+ /* makes the font 33% larger relative to the icon container */
17
+ .icon-large:before {
18
+ vertical-align: -10%;
19
+ font-size: (4em/3);
20
+ }
21
+
22
+ /* makes sure icons active on rollover in links */
23
+ a {
24
+ [class^="icon-"],
25
+ [class*=" icon-"] {
26
+ display: inline;
27
+ }
28
+ }
29
+
30
+ /* increased font size for icon-large */
31
+ [class^="icon-"],
32
+ [class*=" icon-"] {
33
+ &.icon-fixed-width {
34
+ display: inline-block;
35
+ width: (16em/14);
36
+ text-align: right;
37
+ padding-right: (4em/14);
38
+ &.icon-large {
39
+ width: (20em/14);
40
+ }
41
+ }
42
+ }
43
+
44
+ .icons-ul {
45
+ margin-left: $icons-li-width;
46
+ list-style-type: none;
47
+
48
+ > li { position: relative; }
49
+
50
+ .icon-li {
51
+ position: absolute;
52
+ left: -$icons-li-width;
53
+ width: $icons-li-width;
54
+ text-align: center;
55
+ line-height: inherit;
56
+ }
57
+ }
58
+
59
+ // allows usage of the hide class directly on font awesome icons
60
+ [class^="icon-"],
61
+ [class*=" icon-"] {
62
+ &.hide {
63
+ display: none;
64
+ }
65
+ }
66
+
67
+ .icon-muted { color: $iconMuted; }
68
+ .icon-light { color: $iconLight; }
69
+ .icon-dark { color: $iconDark; }
70
+
71
+ // Icon Borders
72
+ // -------------------------
73
+
74
+ .icon-border {
75
+ border: solid 1px $borderColor;
76
+ padding: .2em .25em .15em;
77
+ @include border-radius(3px);
78
+ }
79
+
80
+ // Icon Sizes
81
+ // -------------------------
82
+
83
+ .icon-2x {
84
+ font-size: 2em;
85
+ &.icon-border {
86
+ border-width: 2px;
87
+ @include border-radius(4px);
88
+ }
89
+ }
90
+ .icon-3x {
91
+ font-size: 3em;
92
+ &.icon-border {
93
+ border-width: 3px;
94
+ @include border-radius(5px);
95
+ }
96
+ }
97
+ .icon-4x {
98
+ font-size: 4em;
99
+ &.icon-border {
100
+ border-width: 4px;
101
+ @include border-radius(6px);
102
+ }
103
+ }
104
+
105
+ .icon-5x {
106
+ font-size: 5em;
107
+ &.icon-border {
108
+ border-width: 5px;
109
+ @include border-radius(7px);
110
+ }
111
+ }
112
+
113
+
114
+ // Floats & Margins
115
+ // -------------------------
116
+
117
+ // Quick floats
118
+ .pull-right { float: right; }
119
+ .pull-left { float: left; }
120
+
121
+ [class^="icon-"],
122
+ [class*=" icon-"] {
123
+ &.pull-left {
124
+ margin-right: .3em;
125
+ }
126
+ &.pull-right {
127
+ margin-left: .3em;
128
+ }
129
+ }
@@ -0,0 +1,93 @@
1
+ /* EXTRAS
2
+ * -------------------------- */
3
+
4
+ /* Stacked and layered icon */
5
+ @include icon-stack();
6
+
7
+ /* Animated rotating icon */
8
+ .icon-spin {
9
+ display: inline-block;
10
+ -moz-animation: spin 2s infinite linear;
11
+ -o-animation: spin 2s infinite linear;
12
+ -webkit-animation: spin 2s infinite linear;
13
+ animation: spin 2s infinite linear;
14
+ }
15
+
16
+ /* Prevent stack and spinners from being taken inline when inside a link */
17
+ a .icon-stack,
18
+ a .icon-spin {
19
+ display: inline-block;
20
+ text-decoration: none;
21
+ }
22
+
23
+ @-moz-keyframes spin {
24
+ 0% { -moz-transform: rotate(0deg); }
25
+ 100% { -moz-transform: rotate(359deg); }
26
+ }
27
+ @-webkit-keyframes spin {
28
+ 0% { -webkit-transform: rotate(0deg); }
29
+ 100% { -webkit-transform: rotate(359deg); }
30
+ }
31
+ @-o-keyframes spin {
32
+ 0% { -o-transform: rotate(0deg); }
33
+ 100% { -o-transform: rotate(359deg); }
34
+ }
35
+ @-ms-keyframes spin {
36
+ 0% { -ms-transform: rotate(0deg); }
37
+ 100% { -ms-transform: rotate(359deg); }
38
+ }
39
+ @keyframes spin {
40
+ 0% { transform: rotate(0deg); }
41
+ 100% { transform: rotate(359deg); }
42
+ }
43
+
44
+ /* Icon rotations and mirroring */
45
+ .icon-rotate-90:before {
46
+ -webkit-transform: rotate(90deg);
47
+ -moz-transform: rotate(90deg);
48
+ -ms-transform: rotate(90deg);
49
+ -o-transform: rotate(90deg);
50
+ transform: rotate(90deg);
51
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
52
+ }
53
+
54
+ .icon-rotate-180:before {
55
+ -webkit-transform: rotate(180deg);
56
+ -moz-transform: rotate(180deg);
57
+ -ms-transform: rotate(180deg);
58
+ -o-transform: rotate(180deg);
59
+ transform: rotate(180deg);
60
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
61
+ }
62
+
63
+ .icon-rotate-270:before {
64
+ -webkit-transform: rotate(270deg);
65
+ -moz-transform: rotate(270deg);
66
+ -ms-transform: rotate(270deg);
67
+ -o-transform: rotate(270deg);
68
+ transform: rotate(270deg);
69
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
70
+ }
71
+
72
+ .icon-flip-horizontal:before {
73
+ -webkit-transform: scale(-1, 1);
74
+ -moz-transform: scale(-1, 1);
75
+ -ms-transform: scale(-1, 1);
76
+ -o-transform: scale(-1, 1);
77
+ transform: scale(-1, 1);
78
+ }
79
+
80
+ .icon-flip-vertical:before {
81
+ -webkit-transform: scale(1, -1);
82
+ -moz-transform: scale(1, -1);
83
+ -ms-transform: scale(1, -1);
84
+ -o-transform: scale(1, -1);
85
+ transform: scale(1, -1);
86
+ }
87
+
88
+ /* ensure rotation occurs inside anchor tags */
89
+ a {
90
+ .icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical {
91
+ &:before { display: inline-block; }
92
+ }
93
+ }
@@ -0,0 +1,381 @@
1
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
2
+ * readers do not read off random characters that represent icons */
3
+
4
+ .icon-glass:before { content: $glass; }
5
+ .icon-music:before { content: $music; }
6
+ .icon-search:before { content: $search; }
7
+ .icon-envelope-alt:before { content: $envelope-alt; }
8
+ .icon-heart:before { content: $heart; }
9
+ .icon-star:before { content: $star; }
10
+ .icon-star-empty:before { content: $star-empty; }
11
+ .icon-user:before { content: $user; }
12
+ .icon-film:before { content: $film; }
13
+ .icon-th-large:before { content: $th-large; }
14
+ .icon-th:before { content: $th; }
15
+ .icon-th-list:before { content: $th-list; }
16
+ .icon-ok:before { content: $ok; }
17
+ .icon-remove:before { content: $remove; }
18
+ .icon-zoom-in:before { content: $zoom-in; }
19
+ .icon-zoom-out:before { content: $zoom-out; }
20
+ .icon-power-off:before,
21
+ .icon-off:before { content: $off; }
22
+ .icon-signal:before { content: $signal; }
23
+ .icon-gear:before,
24
+ .icon-cog:before { content: $cog; }
25
+ .icon-trash:before { content: $trash; }
26
+ .icon-home:before { content: $home; }
27
+ .icon-file-alt:before { content: $file-alt; }
28
+ .icon-time:before { content: $time; }
29
+ .icon-road:before { content: $road; }
30
+ .icon-download-alt:before { content: $download-alt; }
31
+ .icon-download:before { content: $download; }
32
+ .icon-upload:before { content: $upload; }
33
+ .icon-inbox:before { content: $inbox; }
34
+ .icon-play-circle:before { content: $play-circle; }
35
+ .icon-rotate-right:before,
36
+ .icon-repeat:before { content: $repeat; }
37
+ .icon-refresh:before { content: $refresh; }
38
+ .icon-list-alt:before { content: $list-alt; }
39
+ .icon-lock:before { content: $lock; }
40
+ .icon-flag:before { content: $flag; }
41
+ .icon-headphones:before { content: $headphones; }
42
+ .icon-volume-off:before { content: $volume-off; }
43
+ .icon-volume-down:before { content: $volume-down; }
44
+ .icon-volume-up:before { content: $volume-up; }
45
+ .icon-qrcode:before { content: $qrcode; }
46
+ .icon-barcode:before { content: $barcode; }
47
+ .icon-tag:before { content: $tag; }
48
+ .icon-tags:before { content: $tags; }
49
+ .icon-book:before { content: $book; }
50
+ .icon-bookmark:before { content: $bookmark; }
51
+ .icon-print:before { content: $print; }
52
+ .icon-camera:before { content: $camera; }
53
+ .icon-font:before { content: $font; }
54
+ .icon-bold:before { content: $bold; }
55
+ .icon-italic:before { content: $italic; }
56
+ .icon-text-height:before { content: $text-height; }
57
+ .icon-text-width:before { content: $text-width; }
58
+ .icon-align-left:before { content: $align-left; }
59
+ .icon-align-center:before { content: $align-center; }
60
+ .icon-align-right:before { content: $align-right; }
61
+ .icon-align-justify:before { content: $align-justify; }
62
+ .icon-list:before { content: $list; }
63
+ .icon-indent-left:before { content: $indent-left; }
64
+ .icon-indent-right:before { content: $indent-right; }
65
+ .icon-facetime-video:before { content: $facetime-video; }
66
+ .icon-picture:before { content: $picture; }
67
+ .icon-pencil:before { content: $pencil; }
68
+ .icon-map-marker:before { content: $map-marker; }
69
+ .icon-adjust:before { content: $adjust; }
70
+ .icon-tint:before { content: $tint; }
71
+ .icon-edit:before { content: $edit; }
72
+ .icon-share:before { content: $share; }
73
+ .icon-check:before { content: $check; }
74
+ .icon-move:before { content: $move; }
75
+ .icon-step-backward:before { content: $step-backward; }
76
+ .icon-fast-backward:before { content: $fast-backward; }
77
+ .icon-backward:before { content: $backward; }
78
+ .icon-play:before { content: $play; }
79
+ .icon-pause:before { content: $pause; }
80
+ .icon-stop:before { content: $stop; }
81
+ .icon-forward:before { content: $forward; }
82
+ .icon-fast-forward:before { content: $fast-forward; }
83
+ .icon-step-forward:before { content: $step-forward; }
84
+ .icon-eject:before { content: $eject; }
85
+ .icon-chevron-left:before { content: $chevron-left; }
86
+ .icon-chevron-right:before { content: $chevron-right; }
87
+ .icon-plus-sign:before { content: $plus-sign; }
88
+ .icon-minus-sign:before { content: $minus-sign; }
89
+ .icon-remove-sign:before { content: $remove-sign; }
90
+ .icon-ok-sign:before { content: $ok-sign; }
91
+ .icon-question-sign:before { content: $question-sign; }
92
+ .icon-info-sign:before { content: $info-sign; }
93
+ .icon-screenshot:before { content: $screenshot; }
94
+ .icon-remove-circle:before { content: $remove-circle; }
95
+ .icon-ok-circle:before { content: $ok-circle; }
96
+ .icon-ban-circle:before { content: $ban-circle; }
97
+ .icon-arrow-left:before { content: $arrow-left; }
98
+ .icon-arrow-right:before { content: $arrow-right; }
99
+ .icon-arrow-up:before { content: $arrow-up; }
100
+ .icon-arrow-down:before { content: $arrow-down; }
101
+ .icon-mail-forward:before,
102
+ .icon-share-alt:before { content: $share-alt; }
103
+ .icon-resize-full:before { content: $resize-full; }
104
+ .icon-resize-small:before { content: $resize-small; }
105
+ .icon-plus:before { content: $plus; }
106
+ .icon-minus:before { content: $minus; }
107
+ .icon-asterisk:before { content: $asterisk; }
108
+ .icon-exclamation-sign:before { content: $exclamation-sign; }
109
+ .icon-gift:before { content: $gift; }
110
+ .icon-leaf:before { content: $leaf; }
111
+ .icon-fire:before { content: $fire; }
112
+ .icon-eye-open:before { content: $eye-open; }
113
+ .icon-eye-close:before { content: $eye-close; }
114
+ .icon-warning-sign:before { content: $warning-sign; }
115
+ .icon-plane:before { content: $plane; }
116
+ .icon-calendar:before { content: $calendar; }
117
+ .icon-random:before { content: $random; }
118
+ .icon-comment:before { content: $comment; }
119
+ .icon-magnet:before { content: $magnet; }
120
+ .icon-chevron-up:before { content: $chevron-up; }
121
+ .icon-chevron-down:before { content: $chevron-down; }
122
+ .icon-retweet:before { content: $retweet; }
123
+ .icon-shopping-cart:before { content: $shopping-cart; }
124
+ .icon-folder-close:before { content: $folder-close; }
125
+ .icon-folder-open:before { content: $folder-open; }
126
+ .icon-resize-vertical:before { content: $resize-vertical; }
127
+ .icon-resize-horizontal:before { content: $resize-horizontal; }
128
+ .icon-bar-chart:before { content: $bar-chart; }
129
+ .icon-twitter-sign:before { content: $twitter-sign; }
130
+ .icon-facebook-sign:before { content: $facebook-sign; }
131
+ .icon-camera-retro:before { content: $camera-retro; }
132
+ .icon-key:before { content: $key; }
133
+ .icon-gears:before,
134
+ .icon-cogs:before { content: $cogs; }
135
+ .icon-comments:before { content: $comments; }
136
+ .icon-thumbs-up-alt:before { content: $thumbs-up-alt; }
137
+ .icon-thumbs-down-alt:before { content: $thumbs-down-alt; }
138
+ .icon-star-half:before { content: $star-half; }
139
+ .icon-heart-empty:before { content: $heart-empty; }
140
+ .icon-signout:before { content: $signout; }
141
+ .icon-linkedin-sign:before { content: $linkedin-sign; }
142
+ .icon-pushpin:before { content: $pushpin; }
143
+ .icon-external-link:before { content: $external-link; }
144
+ .icon-signin:before { content: $signin; }
145
+ .icon-trophy:before { content: $trophy; }
146
+ .icon-github-sign:before { content: $github-sign; }
147
+ .icon-upload-alt:before { content: $upload-alt; }
148
+ .icon-lemon:before { content: $lemon; }
149
+ .icon-phone:before { content: $phone; }
150
+ .icon-unchecked:before,
151
+ .icon-check-empty:before { content: $check-empty; }
152
+ .icon-bookmark-empty:before { content: $bookmark-empty; }
153
+ .icon-phone-sign:before { content: $phone-sign; }
154
+ .icon-twitter:before { content: $twitter; }
155
+ .icon-facebook:before { content: $facebook; }
156
+ .icon-github:before { content: $github; }
157
+ .icon-unlock:before { content: $unlock; }
158
+ .icon-credit-card:before { content: $credit-card; }
159
+ .icon-rss:before { content: $rss; }
160
+ .icon-hdd:before { content: $hdd; }
161
+ .icon-bullhorn:before { content: $bullhorn; }
162
+ .icon-bell:before { content: $bell; }
163
+ .icon-certificate:before { content: $certificate; }
164
+ .icon-hand-right:before { content: $hand-right; }
165
+ .icon-hand-left:before { content: $hand-left; }
166
+ .icon-hand-up:before { content: $hand-up; }
167
+ .icon-hand-down:before { content: $hand-down; }
168
+ .icon-circle-arrow-left:before { content: $circle-arrow-left; }
169
+ .icon-circle-arrow-right:before { content: $circle-arrow-right; }
170
+ .icon-circle-arrow-up:before { content: $circle-arrow-up; }
171
+ .icon-circle-arrow-down:before { content: $circle-arrow-down; }
172
+ .icon-globe:before { content: $globe; }
173
+ .icon-wrench:before { content: $wrench; }
174
+ .icon-tasks:before { content: $tasks; }
175
+ .icon-filter:before { content: $filter; }
176
+ .icon-briefcase:before { content: $briefcase; }
177
+ .icon-fullscreen:before { content: $fullscreen; }
178
+ .icon-group:before { content: $group; }
179
+ .icon-link:before { content: $link; }
180
+ .icon-cloud:before { content: $cloud; }
181
+ .icon-beaker:before { content: $beaker; }
182
+ .icon-cut:before { content: $cut; }
183
+ .icon-copy:before { content: $copy; }
184
+ .icon-paperclip:before,
185
+ .icon-paper-clip:before { content: $paper-clip; }
186
+ .icon-save:before { content: $save; }
187
+ .icon-sign-blank:before { content: $sign-blank; }
188
+ .icon-reorder:before { content: $reorder; }
189
+ .icon-list-ul:before { content: $list-ul; }
190
+ .icon-list-ol:before { content: $list-ol; }
191
+ .icon-strikethrough:before { content: $strikethrough; }
192
+ .icon-underline:before { content: $underline; }
193
+ .icon-table:before { content: $table; }
194
+ .icon-magic:before { content: $magic; }
195
+ .icon-truck:before { content: $truck; }
196
+ .icon-pinterest:before { content: $pinterest; }
197
+ .icon-pinterest-sign:before { content: $pinterest-sign; }
198
+ .icon-google-plus-sign:before { content: $google-plus-sign; }
199
+ .icon-google-plus:before { content: $google-plus; }
200
+ .icon-money:before { content: $money; }
201
+ .icon-caret-down:before { content: $caret-down; }
202
+ .icon-caret-up:before { content: $caret-up; }
203
+ .icon-caret-left:before { content: $caret-left; }
204
+ .icon-caret-right:before { content: $caret-right; }
205
+ .icon-columns:before { content: $columns; }
206
+ .icon-sort:before { content: $sort; }
207
+ .icon-sort-down:before { content: $sort-down; }
208
+ .icon-sort-up:before { content: $sort-up; }
209
+ .icon-envelope:before { content: $envelope; }
210
+ .icon-linkedin:before { content: $linkedin; }
211
+ .icon-rotate-left:before,
212
+ .icon-undo:before { content: $undo; }
213
+ .icon-legal:before { content: $legal; }
214
+ .icon-dashboard:before { content: $dashboard; }
215
+ .icon-comment-alt:before { content: $comment-alt; }
216
+ .icon-comments-alt:before { content: $comments-alt; }
217
+ .icon-bolt:before { content: $bolt; }
218
+ .icon-sitemap:before { content: $sitemap; }
219
+ .icon-umbrella:before { content: $umbrella; }
220
+ .icon-paste:before { content: $paste; }
221
+ .icon-lightbulb:before { content: $lightbulb; }
222
+ .icon-exchange:before { content: $exchange; }
223
+ .icon-cloud-download:before { content: $cloud-download; }
224
+ .icon-cloud-upload:before { content: $cloud-upload; }
225
+ .icon-user-md:before { content: $user-md; }
226
+ .icon-stethoscope:before { content: $stethoscope; }
227
+ .icon-suitcase:before { content: $suitcase; }
228
+ .icon-bell-alt:before { content: $bell-alt; }
229
+ .icon-coffee:before { content: $coffee; }
230
+ .icon-food:before { content: $food; }
231
+ .icon-file-text-alt:before { content: $file-text-alt; }
232
+ .icon-building:before { content: $building; }
233
+ .icon-hospital:before { content: $hospital; }
234
+ .icon-ambulance:before { content: $ambulance; }
235
+ .icon-medkit:before { content: $medkit; }
236
+ .icon-fighter-jet:before { content: $fighter-jet; }
237
+ .icon-beer:before { content: $beer; }
238
+ .icon-h-sign:before { content: $h-sign; }
239
+ .icon-plus-sign-alt:before { content: $plus-sign-alt; }
240
+ .icon-double-angle-left:before { content: $double-angle-left; }
241
+ .icon-double-angle-right:before { content: $double-angle-right; }
242
+ .icon-double-angle-up:before { content: $double-angle-up; }
243
+ .icon-double-angle-down:before { content: $double-angle-down; }
244
+ .icon-angle-left:before { content: $angle-left; }
245
+ .icon-angle-right:before { content: $angle-right; }
246
+ .icon-angle-up:before { content: $angle-up; }
247
+ .icon-angle-down:before { content: $angle-down; }
248
+ .icon-desktop:before { content: $desktop; }
249
+ .icon-laptop:before { content: $laptop; }
250
+ .icon-tablet:before { content: $tablet; }
251
+ .icon-mobile-phone:before { content: $mobile-phone; }
252
+ .icon-circle-blank:before { content: $circle-blank; }
253
+ .icon-quote-left:before { content: $quote-left; }
254
+ .icon-quote-right:before { content: $quote-right; }
255
+ .icon-spinner:before { content: $spinner; }
256
+ .icon-circle:before { content: $circle; }
257
+ .icon-mail-reply:before,
258
+ .icon-reply:before { content: $reply; }
259
+ .icon-github-alt:before { content: $github-alt; }
260
+ .icon-folder-close-alt:before { content: $folder-close-alt; }
261
+ .icon-folder-open-alt:before { content: $folder-open-alt; }
262
+ .icon-expand-alt:before { content: $expand-alt; }
263
+ .icon-collapse-alt:before { content: $collapse-alt; }
264
+ .icon-smile:before { content: $smile; }
265
+ .icon-frown:before { content: $frown; }
266
+ .icon-meh:before { content: $meh; }
267
+ .icon-gamepad:before { content: $gamepad; }
268
+ .icon-keyboard:before { content: $keyboard; }
269
+ .icon-flag-alt:before { content: $flag-alt; }
270
+ .icon-flag-checkered:before { content: $flag-checkered; }
271
+ .icon-terminal:before { content: $terminal; }
272
+ .icon-code:before { content: $code; }
273
+ .icon-reply-all:before { content: $reply-all; }
274
+ .icon-mail-reply-all:before { content: $mail-reply-all; }
275
+ .icon-star-half-full:before,
276
+ .icon-star-half-empty:before { content: $star-half-empty; }
277
+ .icon-location-arrow:before { content: $location-arrow; }
278
+ .icon-crop:before { content: $crop; }
279
+ .icon-code-fork:before { content: $code-fork; }
280
+ .icon-unlink:before { content: $unlink; }
281
+ .icon-question:before { content: $question; }
282
+ .icon-info:before { content: $info; }
283
+ .icon-exclamation:before { content: $exclamation; }
284
+ .icon-superscript:before { content: $superscript; }
285
+ .icon-subscript:before { content: $subscript; }
286
+ .icon-eraser:before { content: $eraser; }
287
+ .icon-puzzle-piece:before { content: $puzzle-piece; }
288
+ .icon-microphone:before { content: $microphone; }
289
+ .icon-microphone-off:before { content: $microphone-off; }
290
+ .icon-shield:before { content: $shield; }
291
+ .icon-calendar-empty:before { content: $calendar-empty; }
292
+ .icon-fire-extinguisher:before { content: $fire-extinguisher; }
293
+ .icon-rocket:before { content: $rocket; }
294
+ .icon-maxcdn:before { content: $maxcdn; }
295
+ .icon-chevron-sign-left:before { content: $chevron-sign-left; }
296
+ .icon-chevron-sign-right:before { content: $chevron-sign-right; }
297
+ .icon-chevron-sign-up:before { content: $chevron-sign-up; }
298
+ .icon-chevron-sign-down:before { content: $chevron-sign-down; }
299
+ .icon-html5:before { content: $html5; }
300
+ .icon-css3:before { content: $css3; }
301
+ .icon-anchor:before { content: $anchor; }
302
+ .icon-unlock-alt:before { content: $unlock-alt; }
303
+ .icon-bullseye:before { content: $bullseye; }
304
+ .icon-ellipsis-horizontal:before { content: $ellipsis-horizontal; }
305
+ .icon-ellipsis-vertical:before { content: $ellipsis-vertical; }
306
+ .icon-rss-sign:before { content: $rss-sign; }
307
+ .icon-play-sign:before { content: $play-sign; }
308
+ .icon-ticket:before { content: $ticket; }
309
+ .icon-minus-sign-alt:before { content: $minus-sign-alt; }
310
+ .icon-check-minus:before { content: $check-minus; }
311
+ .icon-level-up:before { content: $level-up; }
312
+ .icon-level-down:before { content: $level-down; }
313
+ .icon-check-sign:before { content: $check-sign; }
314
+ .icon-edit-sign:before { content: $edit-sign; }
315
+ .icon-external-link-sign:before { content: $external-link-sign; }
316
+ .icon-share-sign:before { content: $share-sign; }
317
+ .icon-compass:before { content: $compass; }
318
+ .icon-collapse:before { content: $collapse; }
319
+ .icon-collapse-top:before { content: $collapse-top; }
320
+ .icon-expand:before { content: $expand; }
321
+ .icon-euro:before,
322
+ .icon-eur:before { content: $eur; }
323
+ .icon-gbp:before { content: $gbp; }
324
+ .icon-dollar:before,
325
+ .icon-usd:before { content: $usd; }
326
+ .icon-rupee:before,
327
+ .icon-inr:before { content: $inr; }
328
+ .icon-yen:before,
329
+ .icon-jpy:before { content: $jpy; }
330
+ .icon-renminbi:before,
331
+ .icon-cny:before { content: $cny; }
332
+ .icon-won:before,
333
+ .icon-krw:before { content: $krw; }
334
+ .icon-bitcoin:before,
335
+ .icon-btc:before { content: $btc; }
336
+ .icon-file:before { content: $file; }
337
+ .icon-file-text:before { content: $file-text; }
338
+ .icon-sort-by-alphabet:before { content: $sort-by-alphabet; }
339
+ .icon-sort-by-alphabet-alt:before { content: $sort-by-alphabet-alt; }
340
+ .icon-sort-by-attributes:before { content: $sort-by-attributes; }
341
+ .icon-sort-by-attributes-alt:before { content: $sort-by-attributes-alt; }
342
+ .icon-sort-by-order:before { content: $sort-by-order; }
343
+ .icon-sort-by-order-alt:before { content: $sort-by-order-alt; }
344
+ .icon-thumbs-up:before { content: $thumbs-up; }
345
+ .icon-thumbs-down:before { content: $thumbs-down; }
346
+ .icon-youtube-sign:before { content: $youtube-sign; }
347
+ .icon-youtube:before { content: $youtube; }
348
+ .icon-xing:before { content: $xing; }
349
+ .icon-xing-sign:before { content: $xing-sign; }
350
+ .icon-youtube-play:before { content: $youtube-play; }
351
+ .icon-dropbox:before { content: $dropbox; }
352
+ .icon-stackexchange:before { content: $stackexchange; }
353
+ .icon-instagram:before { content: $instagram; }
354
+ .icon-flickr:before { content: $flickr; }
355
+ .icon-adn:before { content: $adn; }
356
+ .icon-bitbucket:before { content: $bitbucket; }
357
+ .icon-bitbucket-sign:before { content: $bitbucket-sign; }
358
+ .icon-tumblr:before { content: $tumblr; }
359
+ .icon-tumblr-sign:before { content: $tumblr-sign; }
360
+ .icon-long-arrow-down:before { content: $long-arrow-down; }
361
+ .icon-long-arrow-up:before { content: $long-arrow-up; }
362
+ .icon-long-arrow-left:before { content: $long-arrow-left; }
363
+ .icon-long-arrow-right:before { content: $long-arrow-right; }
364
+ .icon-apple:before { content: $apple; }
365
+ .icon-windows:before { content: $windows; }
366
+ .icon-android:before { content: $android; }
367
+ .icon-linux:before { content: $linux; }
368
+ .icon-dribbble:before { content: $dribbble; }
369
+ .icon-skype:before { content: $skype; }
370
+ .icon-foursquare:before { content: $foursquare; }
371
+ .icon-trello:before { content: $trello; }
372
+ .icon-female:before { content: $female; }
373
+ .icon-male:before { content: $male; }
374
+ .icon-gittip:before { content: $gittip; }
375
+ .icon-sun:before { content: $sun; }
376
+ .icon-moon:before { content: $moon; }
377
+ .icon-archive:before { content: $archive; }
378
+ .icon-bug:before { content: $bug; }
379
+ .icon-vk:before { content: $vk; }
380
+ .icon-weibo:before { content: $weibo; }
381
+ .icon-renren:before { content: $renren; }