lanes 0.1.9 → 0.1.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (447) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/client/fonts/fontawesome-webfont.woff +0 -0
  4. data/client/fonts/fontawesome-webfont.woff2 +0 -0
  5. data/client/lanes/Boot.cjsx +9 -0
  6. data/client/lanes/access/Extension.coffee +18 -4
  7. data/client/lanes/access/LoginDialog.cjsx +78 -0
  8. data/client/lanes/access/Roles.coffee +22 -28
  9. data/client/lanes/access/User.coffee +16 -16
  10. data/client/lanes/access/index.js +4 -5
  11. data/client/lanes/access/screens/user-management/Editor.cjsx +20 -0
  12. data/client/lanes/access/screens/user-management/UserManagement.cjsx +41 -0
  13. data/client/lanes/access/screens/user-management/index.js +0 -1
  14. data/client/lanes/components/grid/EditingMixin.cjsx +64 -0
  15. data/client/lanes/components/grid/Grid.cjsx +139 -0
  16. data/client/lanes/components/grid/PopOverMixin.cjsx +28 -0
  17. data/client/lanes/components/grid/PopoverEditor.cjsx +8 -0
  18. data/client/lanes/components/grid/RowEditor.cjsx +10 -0
  19. data/client/lanes/components/grid/Toolbar.cjsx +14 -0
  20. data/client/lanes/components/grid/config.json +1 -1
  21. data/client/lanes/components/grid/editors.scss +94 -53
  22. data/client/lanes/components/grid/index.js +2 -7
  23. data/client/lanes/components/grid/styles.scss +8 -296
  24. data/client/lanes/components/helpers.coffee +2 -0
  25. data/client/lanes/components/index.js +2 -1
  26. data/client/lanes/components/modal/Modal.cjsx +36 -0
  27. data/client/lanes/components/modal/index.js +1 -2
  28. data/client/lanes/components/modal/styles.scss +0 -19
  29. data/client/lanes/components/record-finder/Clause.cjsx +80 -0
  30. data/client/lanes/components/record-finder/Dialog.cjsx +54 -0
  31. data/client/lanes/components/record-finder/RecordFinder.cjsx +38 -0
  32. data/client/lanes/components/record-finder/config.json +1 -1
  33. data/client/lanes/components/record-finder/index.js +1 -2
  34. data/client/lanes/components/request-spinner/index.js +1 -0
  35. data/client/lanes/components/select-field/SelectField.cjsx +78 -0
  36. data/client/lanes/components/select-field/index.js +2 -1
  37. data/client/lanes/components/select-field/styles.scss +1 -0
  38. data/client/lanes/components/shared/CountBadge.cjsx +9 -0
  39. data/client/lanes/components/shared/ErrorDisplay.cjsx +21 -0
  40. data/client/lanes/components/shared/FieldMixin.cjsx +71 -0
  41. data/client/lanes/components/shared/FieldSet.cjsx +58 -0
  42. data/client/lanes/components/shared/GenericField.cjsx +5 -0
  43. data/client/lanes/components/shared/Helpers.coffee +9 -0
  44. data/client/lanes/components/shared/RadioField.cjsx +14 -0
  45. data/client/lanes/components/shared/Resize.cjsx +152 -0
  46. data/client/lanes/components/shared/TextArea.cjsx +19 -0
  47. data/client/lanes/components/shared/TextField.cjsx +25 -0
  48. data/client/lanes/components/shared/Tooltip.cjsx +10 -0
  49. data/client/lanes/components/shared/fields.scss +35 -0
  50. data/client/lanes/components/shared/fieldset.scss +29 -0
  51. data/client/lanes/components/shared/index.js +3 -0
  52. data/client/lanes/components/shared/styles.scss +32 -0
  53. data/client/lanes/components/toolbar/RemoteChangeSets.cjsx +75 -0
  54. data/client/lanes/components/toolbar/SaveButton.cjsx +3 -0
  55. data/client/lanes/components/toolbar/Toolbar.cjsx +58 -0
  56. data/client/lanes/{workspace/styles → components/toolbar}/changes-notification.scss +10 -23
  57. data/client/lanes/components/toolbar/index.js +3 -0
  58. data/client/lanes/components/toolbar/styles.scss +51 -0
  59. data/client/lanes/extension/Extensions.coffee +19 -10
  60. data/client/lanes/extension/LateLoaded.js.erb +4 -3
  61. data/client/lanes/index.js +3 -5
  62. data/client/lanes/index.scss.erb +6 -14
  63. data/client/lanes/lib/HotReload.coffee +35 -0
  64. data/client/lanes/lib/MakeBaseClass.coffee +10 -11
  65. data/client/lanes/lib/development.coffee +3 -0
  66. data/client/lanes/lib/dom.coffee +49 -0
  67. data/client/lanes/lib/el.coffee +23 -0
  68. data/client/lanes/lib/index.js.erb +16 -0
  69. data/client/lanes/lib/loader.coffee +34 -34
  70. data/client/lanes/lib/namespace.coffee +1 -1
  71. data/client/lanes/lib/objToParam.coffee +37 -0
  72. data/client/lanes/{access/views/.gitkeep → lib/production.coffee} +0 -0
  73. data/client/lanes/lib/utilFunctions.coffee +44 -26
  74. data/client/lanes/models/AssociationMap.coffee +51 -38
  75. data/client/lanes/models/Base.coffee +89 -88
  76. data/client/lanes/models/ChangeMonitor.coffee +10 -10
  77. data/client/lanes/models/ChangeSet.coffee +14 -24
  78. data/client/lanes/models/Collection.coffee +40 -41
  79. data/client/lanes/models/PubSub.coffee +28 -19
  80. data/client/lanes/models/Query.coffee +78 -45
  81. data/client/lanes/models/QueryResults.coffee +93 -0
  82. data/client/lanes/models/ServerCache.coffee +12 -12
  83. data/client/lanes/models/Sync.coffee +53 -50
  84. data/client/lanes/models/User.coffee +31 -17
  85. data/client/lanes/react/Component.coffee +31 -0
  86. data/client/lanes/react/DefaultComponentNotFound.cjsx +9 -0
  87. data/client/lanes/{views → react}/FormBindings.coffee +0 -0
  88. data/client/lanes/{views → react}/ModelObserver.coffee +0 -0
  89. data/client/lanes/{views → react}/ModelUpdate.coffee +0 -0
  90. data/client/lanes/{views → react}/PubSub.coffee +0 -0
  91. data/client/lanes/react/Root.cjsx +14 -0
  92. data/client/lanes/react/Router.cjsx +18 -0
  93. data/client/lanes/react/Screen.coffee +15 -0
  94. data/client/lanes/{views → react}/TimedHighlight.coffee +0 -0
  95. data/client/lanes/{views → react}/TimedMask.coffee +0 -0
  96. data/client/lanes/react/TypeValidators.coffee +21 -0
  97. data/client/lanes/{lib/create-namespace.js → react/Utils.coffee} +0 -0
  98. data/client/lanes/react/Viewport.coffee +30 -0
  99. data/client/lanes/react/index.js +8 -0
  100. data/client/lanes/react/mixins/Access.coffee +27 -0
  101. data/client/lanes/react/mixins/Component.coffee +4 -0
  102. data/client/lanes/react/mixins/Data.coffee +136 -0
  103. data/client/lanes/react/mixins/MonitorSize.coffee +11 -0
  104. data/client/lanes/react/mixins/ReadEditingState.coffee +11 -0
  105. data/client/lanes/react/mixins/RelayEditingState.coffee +17 -0
  106. data/client/lanes/react/mixins/RelayFieldChange.coffee +11 -0
  107. data/client/lanes/react/mixins/Screen.coffee +7 -0
  108. data/client/lanes/react/mixins/Viewport.coffee +11 -0
  109. data/client/lanes/screens/ChangeListener.coffee +3 -3
  110. data/client/lanes/screens/Commands.coffee +27 -0
  111. data/client/lanes/screens/Definitions.coffee +74 -65
  112. data/client/lanes/screens/all.js.erb +1 -1
  113. data/client/lanes/screens/index.js +1 -2
  114. data/client/lanes/screens/mixins/index.js +0 -1
  115. data/client/lanes/screens/register.js.erb +0 -1
  116. data/client/lanes/screens/styles.scss +7 -0
  117. data/client/lanes/styles/bootstrap-custom-grid.scss +67 -37
  118. data/client/lanes/styles/bootstrap.scss +4 -5
  119. data/client/lanes/styles/fonts.scss +10 -23
  120. data/client/lanes/styles/fonts/_animated.scss +34 -0
  121. data/client/lanes/styles/fonts/_bordered-pulled.scss +16 -0
  122. data/client/lanes/styles/fonts/_core.scss +13 -0
  123. data/client/lanes/styles/fonts/_fixed-width.scss +6 -0
  124. data/client/lanes/styles/fonts/_icons.scss +596 -0
  125. data/client/lanes/styles/fonts/_larger.scss +13 -0
  126. data/client/lanes/styles/fonts/_list.scss +19 -0
  127. data/client/lanes/styles/fonts/_mixins.scss +27 -0
  128. data/client/lanes/styles/fonts/_path.scss +10 -0
  129. data/client/lanes/styles/fonts/_rotated-flipped.scss +20 -0
  130. data/client/lanes/styles/fonts/_stacked.scss +20 -0
  131. data/client/lanes/styles/fonts/_variables.scss +606 -0
  132. data/client/lanes/styles/fonts/font-awesome.scss +16 -0
  133. data/client/lanes/styles/fonts/index.scss +2 -0
  134. data/client/lanes/styles/global.scss +2 -0
  135. data/client/lanes/styles/global/fancy-header.scss +14 -0
  136. data/client/lanes/testing/BeforeEach.coffee +15 -40
  137. data/client/lanes/testing/Helpers.coffee +27 -0
  138. data/client/lanes/testing/ModelSaver.coffee +14 -24
  139. data/client/lanes/testing/StubRouter.coffee +27 -0
  140. data/client/lanes/testing/TestObjects.coffee +27 -0
  141. data/client/lanes/testing/index.js +3 -1
  142. data/client/lanes/vendor/base.js +85256 -0
  143. data/client/lanes/vendor/commons.js +20579 -0
  144. data/client/lanes/vendor/development.js +2511 -0
  145. data/client/lanes/vendor/grid.js +6689 -0
  146. data/client/lanes/vendor/grid.scss +387 -0
  147. data/client/lanes/vendor/index.js +3 -0
  148. data/client/lanes/vendor/message-bus.coffee +264 -0
  149. data/client/lanes/vendor/widgets.js +8798 -0
  150. data/client/lanes/vendor/widgets.scss +723 -0
  151. data/client/lanes/workspace/ActiveScreenSwitcher.cjsx +38 -0
  152. data/client/lanes/workspace/Extension.coffee +6 -0
  153. data/client/lanes/workspace/Layout.cjsx +28 -0
  154. data/client/lanes/workspace/Navbar.cjsx +25 -0
  155. data/client/lanes/workspace/ScreenView.cjsx +27 -0
  156. data/client/lanes/workspace/ScreensMenu.cjsx +57 -0
  157. data/client/lanes/workspace/UIState.coffee +17 -16
  158. data/client/lanes/workspace/index.js +7 -2
  159. data/client/lanes/workspace/styles.scss +0 -3
  160. data/client/lanes/workspace/styles/forms.scss +2 -73
  161. data/client/lanes/workspace/styles/header.scss +0 -2
  162. data/client/lanes/workspace/styles/layout.scss +9 -2
  163. data/client/lanes/workspace/styles/screens.scss +0 -59
  164. data/client/lanes/workspace/styles/tabs.scss +16 -15
  165. data/coffeelint.json +49 -0
  166. data/config.ru +1 -0
  167. data/config/database.yml +2 -2
  168. data/config/routes.rb +7 -0
  169. data/docs/command.md +11 -8
  170. data/docs/model.md +2 -5
  171. data/docs/react.md +137 -0
  172. data/lanes.gemspec +1 -0
  173. data/lib/lanes.rb +1 -1
  174. data/lib/lanes/access/authentication_provider.rb +1 -0
  175. data/lib/lanes/access/config/routes.rb +2 -0
  176. data/lib/lanes/access/config/screens.rb +15 -12
  177. data/lib/lanes/access/extension.rb +2 -1
  178. data/lib/lanes/access/role.rb +8 -4
  179. data/lib/lanes/api.rb +4 -3
  180. data/lib/lanes/api/coffeescript_processor.rb +47 -6
  181. data/lib/lanes/api/controller.rb +4 -3
  182. data/lib/lanes/api/default_routes.rb +16 -0
  183. data/lib/lanes/api/javascript_processor.rb +14 -68
  184. data/lib/lanes/api/pub_sub.rb +17 -3
  185. data/lib/lanes/api/request_wrapper.rb +2 -2
  186. data/lib/lanes/api/root.rb +16 -13
  187. data/lib/lanes/api/routing.rb +0 -18
  188. data/lib/lanes/api/sprockets_extension.rb +10 -4
  189. data/lib/lanes/api/test_specs.rb +3 -3
  190. data/lib/lanes/cli.rb +6 -1
  191. data/lib/lanes/command/app.rb +7 -11
  192. data/lib/lanes/command/generate.rb +3 -3
  193. data/lib/lanes/command/generate_component.rb +28 -0
  194. data/lib/lanes/command/generate_component.usage +11 -0
  195. data/lib/lanes/command/generate_screen.rb +24 -7
  196. data/lib/lanes/command/generate_screen.usage +5 -8
  197. data/lib/lanes/configuration.rb +3 -2
  198. data/lib/lanes/extension.rb +12 -18
  199. data/lib/lanes/extension/definition.rb +20 -8
  200. data/lib/lanes/guard_tasks.rb +22 -5
  201. data/lib/lanes/hot_reload_plugin.rb +47 -0
  202. data/lib/lanes/logger.rb +41 -5
  203. data/lib/lanes/screen.rb +40 -16
  204. data/lib/lanes/spec_helper.rb +6 -3
  205. data/lib/lanes/version.rb +1 -1
  206. data/lib/lanes/workspace/extension.rb +1 -0
  207. data/npm-build/{template.js → base.js} +17 -17
  208. data/{client/lanes/workspace/tab.html → npm-build/common.js} +0 -0
  209. data/npm-build/compile.coffee +13 -4
  210. data/npm-build/development.js +7 -0
  211. data/npm-build/grid.js +11 -0
  212. data/npm-build/package.json +62 -58
  213. data/npm-build/react-widgets.js +5 -0
  214. data/npm-build/react-widgets.less +35 -0
  215. data/npm-build/webpack.config.js +39 -0
  216. data/spec/command-reference-files/component/client/appy-app/components/Big.cjsx +4 -0
  217. data/spec/command-reference-files/component/spec/appy-app/components/BigSpec.coffee +5 -0
  218. data/spec/command-reference-files/initial/.rubocop.yml +7 -0
  219. data/spec/command-reference-files/initial/Gemfile +1 -1
  220. data/spec/command-reference-files/initial/client/appy-app/Extension.coffee +17 -5
  221. data/spec/command-reference-files/initial/client/appy-app/components/Base.coffee +9 -0
  222. data/spec/command-reference-files/initial/client/appy-app/index.js +1 -3
  223. data/spec/command-reference-files/initial/client/appy-app/screens/Base.coffee +8 -2
  224. data/spec/command-reference-files/initial/coffeelint.json +49 -0
  225. data/spec/command-reference-files/initial/config.ru +2 -0
  226. data/spec/command-reference-files/initial/config/screens.rb +10 -0
  227. data/spec/command-reference-files/initial/lib/appy-app/extension.rb +7 -0
  228. data/spec/command-reference-files/model/client/appy-app/models/TestTest.coffee +0 -1
  229. data/spec/command-reference-files/screen/client/appy-app/Extension.coffee +34 -0
  230. data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.cjsx +7 -0
  231. data/spec/command-reference-files/screen/config/screens.rb +19 -9
  232. data/spec/command-reference-files/screen/spec/appy-app/screens/ready-set-go/ReadySetGoSpec.coffee +3 -3
  233. data/spec/lanes/components/grid/GridSpec.coffee +26 -26
  234. data/spec/lanes/models/AssociationMapSpec.coffee +6 -6
  235. data/spec/lanes/models/BaseSpec.coffee +24 -35
  236. data/spec/lanes/models/CollectionSpec.coffee +19 -18
  237. data/spec/lanes/models/EnumMapSpec.coffee +1 -1
  238. data/spec/lanes/models/PubSubSpec.coffee +17 -15
  239. data/spec/lanes/models/SyncSpec.coffee +28 -0
  240. data/spec/lanes/models/UserSpec.coffee +17 -0
  241. data/spec/lanes/react/mixins/DataSpec.coffee +72 -0
  242. data/spec/lanes/screens/DefinitionsSpec.coffee +33 -0
  243. data/spec/lanes/views/BaseSpec.coffee +133 -133
  244. data/spec/lanes/views/FormBindingsSpec.coffee +30 -30
  245. data/spec/server/api/coffeescript_processor_spec.rb +2 -2
  246. data/spec/server/command_spec.rb +3 -3
  247. data/templates/client/Extension.coffee +17 -5
  248. data/templates/client/components/BaseComponent.coffee +9 -0
  249. data/templates/client/components/Component.cjsx +4 -0
  250. data/templates/client/{views → components}/template.html +0 -0
  251. data/templates/client/index.js +1 -3
  252. data/templates/client/models/Model.coffee +0 -1
  253. data/templates/client/screens/BaseScreen.coffee +9 -0
  254. data/templates/client/screens/Screen.cjsx +7 -0
  255. data/templates/config.ru +2 -0
  256. data/templates/config/screen.rb +10 -10
  257. data/templates/config/screens.rb +10 -0
  258. data/templates/lib/namespace/extension.rb +7 -0
  259. data/templates/spec/client/Screen.coffee +4 -4
  260. data/templates/spec/client/components/ComponentSpec.coffee +5 -0
  261. metadata +157 -201
  262. data/client/fonts/lanes/icomoon.eot +0 -0
  263. data/client/fonts/lanes/icomoon.svg +0 -160
  264. data/client/fonts/lanes/icomoon.ttf +0 -0
  265. data/client/fonts/lanes/icomoon.woff +0 -0
  266. data/client/fonts/lanes/selection.json +0 -3565
  267. data/client/lanes/Boot.coffee +0 -50
  268. data/client/lanes/access/LoginDialog.coffee +0 -46
  269. data/client/lanes/access/login-dialog.html +0 -16
  270. data/client/lanes/access/screens/user-management/GridUserEditor.coffee +0 -26
  271. data/client/lanes/access/screens/user-management/UserManagement.coffee +0 -23
  272. data/client/lanes/access/screens/user-management/grid-popover-editor.html +0 -33
  273. data/client/lanes/access/screens/user-management/screen.html +0 -7
  274. data/client/lanes/components/Base.coffee +0 -39
  275. data/client/lanes/components/ChoicesInput.coffee +0 -47
  276. data/client/lanes/components/grid/Editor.coffee +0 -62
  277. data/client/lanes/components/grid/Grid.coffee +0 -205
  278. data/client/lanes/components/grid/PopOverEditor.coffee +0 -29
  279. data/client/lanes/components/grid/RowEditor.coffee +0 -30
  280. data/client/lanes/components/grid/popover-editor.html +0 -18
  281. data/client/lanes/components/grid/row-editor.html +0 -16
  282. data/client/lanes/components/grid/template.html +0 -4
  283. data/client/lanes/components/grid/vendor/dataTables.scroller.js +0 -1262
  284. data/client/lanes/components/grid/vendor/index.js +0 -2
  285. data/client/lanes/components/grid/vendor/jquery.dataTables.js +0 -14839
  286. data/client/lanes/components/modal/ModalDialog.coffee +0 -68
  287. data/client/lanes/components/modal/template.html +0 -18
  288. data/client/lanes/components/multi-select/MultiSelect.coffee +0 -65
  289. data/client/lanes/components/popover/PopOver.coffee +0 -55
  290. data/client/lanes/components/popover/index.js +0 -2
  291. data/client/lanes/components/popover/styles.scss +0 -2
  292. data/client/lanes/components/popover/template.html +0 -5
  293. data/client/lanes/components/radio-group/RadioGroup.coffee +0 -47
  294. data/client/lanes/components/radio-group/index.js +0 -1
  295. data/client/lanes/components/radio-group/styles.scss +0 -1
  296. data/client/lanes/components/record-finder/Clause.coffee +0 -37
  297. data/client/lanes/components/record-finder/Dialog.coffee +0 -45
  298. data/client/lanes/components/record-finder/RecordFinder.coffee +0 -61
  299. data/client/lanes/components/record-finder/clause.html +0 -37
  300. data/client/lanes/components/record-finder/dialog.html +0 -4
  301. data/client/lanes/components/record-finder/field.html +0 -8
  302. data/client/lanes/components/select-field/SelectField.coffee +0 -63
  303. data/client/lanes/components/select2/Select2.coffee +0 -8
  304. data/client/lanes/components/select2/index.js +0 -2
  305. data/client/lanes/lib/Templates.coffee +0 -51
  306. data/client/lanes/lib/debounce.coffee +0 -15
  307. data/client/lanes/lib/defer.coffee +0 -7
  308. data/client/lanes/lib/el.js +0 -115
  309. data/client/lanes/lib/index.js +0 -5
  310. data/client/lanes/plugins/overlay.coffee +0 -41
  311. data/client/lanes/screens/Base.coffee +0 -35
  312. data/client/lanes/screens/Router.coffee +0 -4
  313. data/client/lanes/screens/mixins/Editing.coffee +0 -38
  314. data/client/lanes/styles/bootstrap/old/_alerts.scss +0 -68
  315. data/client/lanes/styles/bootstrap/old/_badges.scss +0 -57
  316. data/client/lanes/styles/bootstrap/old/_breadcrumbs.scss +0 -26
  317. data/client/lanes/styles/bootstrap/old/_button-groups.scss +0 -240
  318. data/client/lanes/styles/bootstrap/old/_buttons.scss +0 -157
  319. data/client/lanes/styles/bootstrap/old/_carousel.scss +0 -243
  320. data/client/lanes/styles/bootstrap/old/_close.scss +0 -35
  321. data/client/lanes/styles/bootstrap/old/_code.scss +0 -68
  322. data/client/lanes/styles/bootstrap/old/_component-animations.scss +0 -35
  323. data/client/lanes/styles/bootstrap/old/_dropdowns.scss +0 -215
  324. data/client/lanes/styles/bootstrap/old/_forms.scss +0 -538
  325. data/client/lanes/styles/bootstrap/old/_glyphicons.scss +0 -237
  326. data/client/lanes/styles/bootstrap/old/_grid.scss +0 -84
  327. data/client/lanes/styles/bootstrap/old/_input-groups.scss +0 -166
  328. data/client/lanes/styles/bootstrap/old/_jumbotron.scss +0 -48
  329. data/client/lanes/styles/bootstrap/old/_labels.scss +0 -66
  330. data/client/lanes/styles/bootstrap/old/_list-group.scss +0 -132
  331. data/client/lanes/styles/bootstrap/old/_media.scss +0 -56
  332. data/client/lanes/styles/bootstrap/old/_mixins.scss +0 -39
  333. data/client/lanes/styles/bootstrap/old/_modals.scss +0 -150
  334. data/client/lanes/styles/bootstrap/old/_navbar.scss +0 -659
  335. data/client/lanes/styles/bootstrap/old/_navs.scss +0 -242
  336. data/client/lanes/styles/bootstrap/old/_normalize.scss +0 -425
  337. data/client/lanes/styles/bootstrap/old/_pager.scss +0 -55
  338. data/client/lanes/styles/bootstrap/old/_pagination.scss +0 -88
  339. data/client/lanes/styles/bootstrap/old/_panels.scss +0 -243
  340. data/client/lanes/styles/bootstrap/old/_popovers.scss +0 -133
  341. data/client/lanes/styles/bootstrap/old/_print.scss +0 -101
  342. data/client/lanes/styles/bootstrap/old/_progress-bars.scss +0 -105
  343. data/client/lanes/styles/bootstrap/old/_responsive-embed.scss +0 -34
  344. data/client/lanes/styles/bootstrap/old/_responsive-utilities.scss +0 -174
  345. data/client/lanes/styles/bootstrap/old/_scaffolding.scss +0 -150
  346. data/client/lanes/styles/bootstrap/old/_tables.scss +0 -233
  347. data/client/lanes/styles/bootstrap/old/_theme.scss +0 -258
  348. data/client/lanes/styles/bootstrap/old/_thumbnails.scss +0 -38
  349. data/client/lanes/styles/bootstrap/old/_tooltip.scss +0 -95
  350. data/client/lanes/styles/bootstrap/old/_type.scss +0 -304
  351. data/client/lanes/styles/bootstrap/old/_utilities.scss +0 -57
  352. data/client/lanes/styles/bootstrap/old/_variables.scss +0 -850
  353. data/client/lanes/styles/bootstrap/old/_wells.scss +0 -29
  354. data/client/lanes/styles/bootstrap/old/bootstrap.scss +0 -50
  355. data/client/lanes/styles/bootstrap/old/mixins/_alerts.scss +0 -14
  356. data/client/lanes/styles/bootstrap/old/mixins/_background-variant.scss +0 -11
  357. data/client/lanes/styles/bootstrap/old/mixins/_border-radius.scss +0 -18
  358. data/client/lanes/styles/bootstrap/old/mixins/_buttons.scss +0 -50
  359. data/client/lanes/styles/bootstrap/old/mixins/_center-block.scss +0 -7
  360. data/client/lanes/styles/bootstrap/old/mixins/_clearfix.scss +0 -22
  361. data/client/lanes/styles/bootstrap/old/mixins/_forms.scss +0 -84
  362. data/client/lanes/styles/bootstrap/old/mixins/_gradients.scss +0 -58
  363. data/client/lanes/styles/bootstrap/old/mixins/_grid-framework.scss +0 -81
  364. data/client/lanes/styles/bootstrap/old/mixins/_grid.scss +0 -122
  365. data/client/lanes/styles/bootstrap/old/mixins/_hide-text.scss +0 -21
  366. data/client/lanes/styles/bootstrap/old/mixins/_image.scss +0 -34
  367. data/client/lanes/styles/bootstrap/old/mixins/_labels.scss +0 -12
  368. data/client/lanes/styles/bootstrap/old/mixins/_list-group.scss +0 -31
  369. data/client/lanes/styles/bootstrap/old/mixins/_nav-divider.scss +0 -10
  370. data/client/lanes/styles/bootstrap/old/mixins/_nav-vertical-align.scss +0 -9
  371. data/client/lanes/styles/bootstrap/old/mixins/_opacity.scss +0 -8
  372. data/client/lanes/styles/bootstrap/old/mixins/_pagination.scss +0 -23
  373. data/client/lanes/styles/bootstrap/old/mixins/_panels.scss +0 -24
  374. data/client/lanes/styles/bootstrap/old/mixins/_progress-bar.scss +0 -10
  375. data/client/lanes/styles/bootstrap/old/mixins/_reset-filter.scss +0 -8
  376. data/client/lanes/styles/bootstrap/old/mixins/_resize.scss +0 -6
  377. data/client/lanes/styles/bootstrap/old/mixins/_responsive-visibility.scss +0 -21
  378. data/client/lanes/styles/bootstrap/old/mixins/_size.scss +0 -10
  379. data/client/lanes/styles/bootstrap/old/mixins/_tab-focus.scss +0 -9
  380. data/client/lanes/styles/bootstrap/old/mixins/_table-row.scss +0 -28
  381. data/client/lanes/styles/bootstrap/old/mixins/_text-emphasis.scss +0 -11
  382. data/client/lanes/styles/bootstrap/old/mixins/_text-overflow.scss +0 -8
  383. data/client/lanes/styles/bootstrap/old/mixins/_vendor-prefixes.scss +0 -219
  384. data/client/lanes/styles/font-definitions.scss +0 -451
  385. data/client/lanes/testing/TestModels.coffee +0 -23
  386. data/client/lanes/vendor/bootstrap/affix.js +0 -162
  387. data/client/lanes/vendor/bootstrap/alert.js +0 -94
  388. data/client/lanes/vendor/bootstrap/button.js +0 -116
  389. data/client/lanes/vendor/bootstrap/carousel.js +0 -240
  390. data/client/lanes/vendor/bootstrap/collapse.js +0 -211
  391. data/client/lanes/vendor/bootstrap/dropdown.js +0 -161
  392. data/client/lanes/vendor/bootstrap/modal.js +0 -324
  393. data/client/lanes/vendor/bootstrap/popover.js +0 -119
  394. data/client/lanes/vendor/bootstrap/scrollspy.js +0 -175
  395. data/client/lanes/vendor/bootstrap/tab.js +0 -153
  396. data/client/lanes/vendor/bootstrap/tooltip.js +0 -478
  397. data/client/lanes/vendor/bootstrap/transition.js +0 -59
  398. data/client/lanes/vendor/message-bus.js +0 -285
  399. data/client/lanes/vendor/modern-stack.js +0 -27
  400. data/client/lanes/vendor/packaged.js +0 -19533
  401. data/client/lanes/views/Assets.coffee +0 -9
  402. data/client/lanes/views/Base.coffee +0 -426
  403. data/client/lanes/views/Functions.coffee +0 -13
  404. data/client/lanes/views/Helpers.coffee +0 -76
  405. data/client/lanes/views/Keys.coffee +0 -59
  406. data/client/lanes/views/RenderContext.coffee +0 -32
  407. data/client/lanes/views/SaveNotify.coffee +0 -32
  408. data/client/lanes/views/Viewport.coffee +0 -18
  409. data/client/lanes/views/_button.html +0 -3
  410. data/client/lanes/views/_toolbar.html +0 -23
  411. data/client/lanes/views/empty-span.html +0 -1
  412. data/client/lanes/views/index.js +0 -2
  413. data/client/lanes/views/model-update.html +0 -15
  414. data/client/lanes/workspace/ActiveScreensSwitcher.coffee +0 -112
  415. data/client/lanes/workspace/Layout.coffee +0 -29
  416. data/client/lanes/workspace/Navbar.coffee +0 -31
  417. data/client/lanes/workspace/Pages.coffee +0 -39
  418. data/client/lanes/workspace/ScreensMenu.coffee +0 -126
  419. data/client/lanes/workspace/WorkspaceView.coffee +0 -8
  420. data/client/lanes/workspace/layout.html +0 -4
  421. data/client/lanes/workspace/menu.html +0 -356
  422. data/client/lanes/workspace/menu_toggle.html +0 -9
  423. data/client/lanes/workspace/navbar.html +0 -17
  424. data/client/lanes/workspace/pages.html +0 -6
  425. data/client/lanes/workspace/screens-menu.html +0 -11
  426. data/client/lanes/workspace/screens-switcher.html +0 -7
  427. data/docs/view.md +0 -292
  428. data/lib/lanes/command/generate_view.rb +0 -38
  429. data/lib/lanes/command/generate_view.usage +0 -13
  430. data/spec/command-reference-files/initial/client/appy-app/Router.coffee +0 -4
  431. data/spec/command-reference-files/initial/client/appy-app/controllers/.gitkeep +0 -0
  432. data/spec/command-reference-files/initial/client/appy-app/views/.gitkeep +0 -0
  433. data/spec/command-reference-files/initial/client/appy-app/views/Base.coffee +0 -5
  434. data/spec/command-reference-files/initial/spec/appy-app/screens/Base.coffee +0 -5
  435. data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.coffee +0 -6
  436. data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/layout.html +0 -3
  437. data/spec/command-reference-files/view/client/appy-app/views/BigView.coffee +0 -10
  438. data/spec/command-reference-files/view/spec/appy-app/views/BigViewSpec.coffee +0 -5
  439. data/templates/client/Router.coffee +0 -4
  440. data/templates/client/components/Component.coffee +0 -1
  441. data/templates/client/screens/Base.coffee +0 -3
  442. data/templates/client/screens/Screen.coffee +0 -11
  443. data/templates/client/screens/layout.html +0 -3
  444. data/templates/client/views/.gitkeep +0 -0
  445. data/templates/client/views/BaseView.coffee +0 -5
  446. data/templates/client/views/View.coffee +0 -10
  447. data/templates/spec/client/views/ViewSpec.coffee +0 -5
@@ -1,237 +0,0 @@
1
- //= depend_on "bootstrap/glyphicons-halflings-regular.eot"
2
- //= depend_on "bootstrap/glyphicons-halflings-regular.svg"
3
- //= depend_on "bootstrap/glyphicons-halflings-regular.ttf"
4
- //= depend_on "bootstrap/glyphicons-halflings-regular.woff"
5
- //
6
- // Glyphicons for Bootstrap
7
- //
8
- // Since icons are fonts, they can be placed anywhere text is placed and are
9
- // thus automatically sized to match the surrounding child. To use, create an
10
- // inline element with the appropriate classes, like so:
11
- //
12
- // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
13
-
14
- // Import the fonts
15
- @font-face {
16
- font-family: 'Glyphicons Halflings';
17
- src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot'));
18
- src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot?#iefix'), '#{$icon-font-path}#{$icon-font-name}.eot?#iefix')) format('embedded-opentype'),
19
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff'), '#{$icon-font-path}#{$icon-font-name}.woff')) format('woff'),
20
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.ttf'), '#{$icon-font-path}#{$icon-font-name}.ttf')) format('truetype'),
21
- url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}'), '#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}')) format('svg');
22
- }
23
-
24
- // Catchall baseclass
25
- .glyphicon {
26
- position: relative;
27
- top: 1px;
28
- display: inline-block;
29
- font-family: 'Glyphicons Halflings';
30
- font-style: normal;
31
- font-weight: normal;
32
- line-height: 1;
33
- -webkit-font-smoothing: antialiased;
34
- -moz-osx-font-smoothing: grayscale;
35
- }
36
-
37
- // Individual icons
38
- .glyphicon-asterisk { &:before { content: "\2a"; } }
39
- .glyphicon-plus { &:before { content: "\2b"; } }
40
- .glyphicon-euro { &:before { content: "\20ac"; } }
41
- .glyphicon-minus { &:before { content: "\2212"; } }
42
- .glyphicon-cloud { &:before { content: "\2601"; } }
43
- .glyphicon-envelope { &:before { content: "\2709"; } }
44
- .glyphicon-pencil { &:before { content: "\270f"; } }
45
- .glyphicon-glass { &:before { content: "\e001"; } }
46
- .glyphicon-music { &:before { content: "\e002"; } }
47
- .glyphicon-search { &:before { content: "\e003"; } }
48
- .glyphicon-heart { &:before { content: "\e005"; } }
49
- .glyphicon-star { &:before { content: "\e006"; } }
50
- .glyphicon-star-empty { &:before { content: "\e007"; } }
51
- .glyphicon-user { &:before { content: "\e008"; } }
52
- .glyphicon-film { &:before { content: "\e009"; } }
53
- .glyphicon-th-large { &:before { content: "\e010"; } }
54
- .glyphicon-th { &:before { content: "\e011"; } }
55
- .glyphicon-th-list { &:before { content: "\e012"; } }
56
- .glyphicon-ok { &:before { content: "\e013"; } }
57
- .glyphicon-remove { &:before { content: "\e014"; } }
58
- .glyphicon-zoom-in { &:before { content: "\e015"; } }
59
- .glyphicon-zoom-out { &:before { content: "\e016"; } }
60
- .glyphicon-off { &:before { content: "\e017"; } }
61
- .glyphicon-signal { &:before { content: "\e018"; } }
62
- .glyphicon-cog { &:before { content: "\e019"; } }
63
- .glyphicon-trash { &:before { content: "\e020"; } }
64
- .glyphicon-home { &:before { content: "\e021"; } }
65
- .glyphicon-file { &:before { content: "\e022"; } }
66
- .glyphicon-time { &:before { content: "\e023"; } }
67
- .glyphicon-road { &:before { content: "\e024"; } }
68
- .glyphicon-download-alt { &:before { content: "\e025"; } }
69
- .glyphicon-download { &:before { content: "\e026"; } }
70
- .glyphicon-upload { &:before { content: "\e027"; } }
71
- .glyphicon-inbox { &:before { content: "\e028"; } }
72
- .glyphicon-play-circle { &:before { content: "\e029"; } }
73
- .glyphicon-repeat { &:before { content: "\e030"; } }
74
- .glyphicon-refresh { &:before { content: "\e031"; } }
75
- .glyphicon-list-alt { &:before { content: "\e032"; } }
76
- .glyphicon-lock { &:before { content: "\e033"; } }
77
- .glyphicon-flag { &:before { content: "\e034"; } }
78
- .glyphicon-headphones { &:before { content: "\e035"; } }
79
- .glyphicon-volume-off { &:before { content: "\e036"; } }
80
- .glyphicon-volume-down { &:before { content: "\e037"; } }
81
- .glyphicon-volume-up { &:before { content: "\e038"; } }
82
- .glyphicon-qrcode { &:before { content: "\e039"; } }
83
- .glyphicon-barcode { &:before { content: "\e040"; } }
84
- .glyphicon-tag { &:before { content: "\e041"; } }
85
- .glyphicon-tags { &:before { content: "\e042"; } }
86
- .glyphicon-book { &:before { content: "\e043"; } }
87
- .glyphicon-bookmark { &:before { content: "\e044"; } }
88
- .glyphicon-print { &:before { content: "\e045"; } }
89
- .glyphicon-camera { &:before { content: "\e046"; } }
90
- .glyphicon-font { &:before { content: "\e047"; } }
91
- .glyphicon-bold { &:before { content: "\e048"; } }
92
- .glyphicon-italic { &:before { content: "\e049"; } }
93
- .glyphicon-text-height { &:before { content: "\e050"; } }
94
- .glyphicon-text-width { &:before { content: "\e051"; } }
95
- .glyphicon-align-left { &:before { content: "\e052"; } }
96
- .glyphicon-align-center { &:before { content: "\e053"; } }
97
- .glyphicon-align-right { &:before { content: "\e054"; } }
98
- .glyphicon-align-justify { &:before { content: "\e055"; } }
99
- .glyphicon-list { &:before { content: "\e056"; } }
100
- .glyphicon-indent-left { &:before { content: "\e057"; } }
101
- .glyphicon-indent-right { &:before { content: "\e058"; } }
102
- .glyphicon-facetime-video { &:before { content: "\e059"; } }
103
- .glyphicon-picture { &:before { content: "\e060"; } }
104
- .glyphicon-map-marker { &:before { content: "\e062"; } }
105
- .glyphicon-adjust { &:before { content: "\e063"; } }
106
- .glyphicon-tint { &:before { content: "\e064"; } }
107
- .glyphicon-edit { &:before { content: "\e065"; } }
108
- .glyphicon-share { &:before { content: "\e066"; } }
109
- .glyphicon-check { &:before { content: "\e067"; } }
110
- .glyphicon-move { &:before { content: "\e068"; } }
111
- .glyphicon-step-backward { &:before { content: "\e069"; } }
112
- .glyphicon-fast-backward { &:before { content: "\e070"; } }
113
- .glyphicon-backward { &:before { content: "\e071"; } }
114
- .glyphicon-play { &:before { content: "\e072"; } }
115
- .glyphicon-pause { &:before { content: "\e073"; } }
116
- .glyphicon-stop { &:before { content: "\e074"; } }
117
- .glyphicon-forward { &:before { content: "\e075"; } }
118
- .glyphicon-fast-forward { &:before { content: "\e076"; } }
119
- .glyphicon-step-forward { &:before { content: "\e077"; } }
120
- .glyphicon-eject { &:before { content: "\e078"; } }
121
- .glyphicon-chevron-left { &:before { content: "\e079"; } }
122
- .glyphicon-chevron-right { &:before { content: "\e080"; } }
123
- .glyphicon-plus-sign { &:before { content: "\e081"; } }
124
- .glyphicon-minus-sign { &:before { content: "\e082"; } }
125
- .glyphicon-remove-sign { &:before { content: "\e083"; } }
126
- .glyphicon-ok-sign { &:before { content: "\e084"; } }
127
- .glyphicon-question-sign { &:before { content: "\e085"; } }
128
- .glyphicon-info-sign { &:before { content: "\e086"; } }
129
- .glyphicon-screenshot { &:before { content: "\e087"; } }
130
- .glyphicon-remove-circle { &:before { content: "\e088"; } }
131
- .glyphicon-ok-circle { &:before { content: "\e089"; } }
132
- .glyphicon-ban-circle { &:before { content: "\e090"; } }
133
- .glyphicon-arrow-left { &:before { content: "\e091"; } }
134
- .glyphicon-arrow-right { &:before { content: "\e092"; } }
135
- .glyphicon-arrow-up { &:before { content: "\e093"; } }
136
- .glyphicon-arrow-down { &:before { content: "\e094"; } }
137
- .glyphicon-share-alt { &:before { content: "\e095"; } }
138
- .glyphicon-resize-full { &:before { content: "\e096"; } }
139
- .glyphicon-resize-small { &:before { content: "\e097"; } }
140
- .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
141
- .glyphicon-gift { &:before { content: "\e102"; } }
142
- .glyphicon-leaf { &:before { content: "\e103"; } }
143
- .glyphicon-fire { &:before { content: "\e104"; } }
144
- .glyphicon-eye-open { &:before { content: "\e105"; } }
145
- .glyphicon-eye-close { &:before { content: "\e106"; } }
146
- .glyphicon-warning-sign { &:before { content: "\e107"; } }
147
- .glyphicon-plane { &:before { content: "\e108"; } }
148
- .glyphicon-calendar { &:before { content: "\e109"; } }
149
- .glyphicon-random { &:before { content: "\e110"; } }
150
- .glyphicon-comment { &:before { content: "\e111"; } }
151
- .glyphicon-magnet { &:before { content: "\e112"; } }
152
- .glyphicon-chevron-up { &:before { content: "\e113"; } }
153
- .glyphicon-chevron-down { &:before { content: "\e114"; } }
154
- .glyphicon-retweet { &:before { content: "\e115"; } }
155
- .glyphicon-shopping-cart { &:before { content: "\e116"; } }
156
- .glyphicon-folder-close { &:before { content: "\e117"; } }
157
- .glyphicon-folder-open { &:before { content: "\e118"; } }
158
- .glyphicon-resize-vertical { &:before { content: "\e119"; } }
159
- .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
160
- .glyphicon-hdd { &:before { content: "\e121"; } }
161
- .glyphicon-bullhorn { &:before { content: "\e122"; } }
162
- .glyphicon-bell { &:before { content: "\e123"; } }
163
- .glyphicon-certificate { &:before { content: "\e124"; } }
164
- .glyphicon-thumbs-up { &:before { content: "\e125"; } }
165
- .glyphicon-thumbs-down { &:before { content: "\e126"; } }
166
- .glyphicon-hand-right { &:before { content: "\e127"; } }
167
- .glyphicon-hand-left { &:before { content: "\e128"; } }
168
- .glyphicon-hand-up { &:before { content: "\e129"; } }
169
- .glyphicon-hand-down { &:before { content: "\e130"; } }
170
- .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
171
- .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
172
- .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
173
- .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
174
- .glyphicon-globe { &:before { content: "\e135"; } }
175
- .glyphicon-wrench { &:before { content: "\e136"; } }
176
- .glyphicon-tasks { &:before { content: "\e137"; } }
177
- .glyphicon-filter { &:before { content: "\e138"; } }
178
- .glyphicon-briefcase { &:before { content: "\e139"; } }
179
- .glyphicon-fullscreen { &:before { content: "\e140"; } }
180
- .glyphicon-dashboard { &:before { content: "\e141"; } }
181
- .glyphicon-paperclip { &:before { content: "\e142"; } }
182
- .glyphicon-heart-empty { &:before { content: "\e143"; } }
183
- .glyphicon-link { &:before { content: "\e144"; } }
184
- .glyphicon-phone { &:before { content: "\e145"; } }
185
- .glyphicon-pushpin { &:before { content: "\e146"; } }
186
- .glyphicon-usd { &:before { content: "\e148"; } }
187
- .glyphicon-gbp { &:before { content: "\e149"; } }
188
- .glyphicon-sort { &:before { content: "\e150"; } }
189
- .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
190
- .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
191
- .glyphicon-sort-by-order { &:before { content: "\e153"; } }
192
- .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
193
- .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
194
- .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
195
- .glyphicon-unchecked { &:before { content: "\e157"; } }
196
- .glyphicon-expand { &:before { content: "\e158"; } }
197
- .glyphicon-collapse-down { &:before { content: "\e159"; } }
198
- .glyphicon-collapse-up { &:before { content: "\e160"; } }
199
- .glyphicon-log-in { &:before { content: "\e161"; } }
200
- .glyphicon-flash { &:before { content: "\e162"; } }
201
- .glyphicon-log-out { &:before { content: "\e163"; } }
202
- .glyphicon-new-window { &:before { content: "\e164"; } }
203
- .glyphicon-record { &:before { content: "\e165"; } }
204
- .glyphicon-save { &:before { content: "\e166"; } }
205
- .glyphicon-open { &:before { content: "\e167"; } }
206
- .glyphicon-saved { &:before { content: "\e168"; } }
207
- .glyphicon-import { &:before { content: "\e169"; } }
208
- .glyphicon-export { &:before { content: "\e170"; } }
209
- .glyphicon-send { &:before { content: "\e171"; } }
210
- .glyphicon-floppy-disk { &:before { content: "\e172"; } }
211
- .glyphicon-floppy-saved { &:before { content: "\e173"; } }
212
- .glyphicon-floppy-remove { &:before { content: "\e174"; } }
213
- .glyphicon-floppy-save { &:before { content: "\e175"; } }
214
- .glyphicon-floppy-open { &:before { content: "\e176"; } }
215
- .glyphicon-credit-card { &:before { content: "\e177"; } }
216
- .glyphicon-transfer { &:before { content: "\e178"; } }
217
- .glyphicon-cutlery { &:before { content: "\e179"; } }
218
- .glyphicon-header { &:before { content: "\e180"; } }
219
- .glyphicon-compressed { &:before { content: "\e181"; } }
220
- .glyphicon-earphone { &:before { content: "\e182"; } }
221
- .glyphicon-phone-alt { &:before { content: "\e183"; } }
222
- .glyphicon-tower { &:before { content: "\e184"; } }
223
- .glyphicon-stats { &:before { content: "\e185"; } }
224
- .glyphicon-sd-video { &:before { content: "\e186"; } }
225
- .glyphicon-hd-video { &:before { content: "\e187"; } }
226
- .glyphicon-subtitles { &:before { content: "\e188"; } }
227
- .glyphicon-sound-stereo { &:before { content: "\e189"; } }
228
- .glyphicon-sound-dolby { &:before { content: "\e190"; } }
229
- .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
230
- .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
231
- .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
232
- .glyphicon-copyright-mark { &:before { content: "\e194"; } }
233
- .glyphicon-registration-mark { &:before { content: "\e195"; } }
234
- .glyphicon-cloud-download { &:before { content: "\e197"; } }
235
- .glyphicon-cloud-upload { &:before { content: "\e198"; } }
236
- .glyphicon-tree-conifer { &:before { content: "\e199"; } }
237
- .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
@@ -1,84 +0,0 @@
1
- //
2
- // Grid system
3
- // --------------------------------------------------
4
-
5
-
6
- // Container widths
7
- //
8
- // Set the container width, and override it for fixed navbars in media queries.
9
-
10
- .container {
11
- @include container-fixed();
12
-
13
- @media (min-width: $screen-sm-min) {
14
- width: $container-sm;
15
- }
16
- @media (min-width: $screen-md-min) {
17
- width: $container-md;
18
- }
19
- @media (min-width: $screen-lg-min) {
20
- width: $container-lg;
21
- }
22
- }
23
-
24
-
25
- // Fluid container
26
- //
27
- // Utilizes the mixin meant for fixed width containers, but without any defined
28
- // width for fluid, full width layouts.
29
-
30
- .container-fluid {
31
- @include container-fixed();
32
- }
33
-
34
-
35
- // Row
36
- //
37
- // Rows contain and clear the floats of your columns.
38
-
39
- .row {
40
- @include make-row();
41
- }
42
-
43
-
44
- // Columns
45
- //
46
- // Common styles for small and large grid columns
47
-
48
- @include make-grid-columns();
49
-
50
-
51
- // Extra small grid
52
- //
53
- // Columns, offsets, pushes, and pulls for extra small devices like
54
- // smartphones.
55
-
56
- @include make-grid(xs);
57
-
58
-
59
- // Small grid
60
- //
61
- // Columns, offsets, pushes, and pulls for the small device range, from phones
62
- // to tablets.
63
-
64
- @media (min-width: $screen-sm-min) {
65
- @include make-grid(sm);
66
- }
67
-
68
-
69
- // Medium grid
70
- //
71
- // Columns, offsets, pushes, and pulls for the desktop device range.
72
-
73
- @media (min-width: $screen-md-min) {
74
- @include make-grid(md);
75
- }
76
-
77
-
78
- // Large grid
79
- //
80
- // Columns, offsets, pushes, and pulls for the large desktop device range.
81
-
82
- @media (min-width: $screen-lg-min) {
83
- @include make-grid(lg);
84
- }
@@ -1,166 +0,0 @@
1
- //
2
- // Input groups
3
- // --------------------------------------------------
4
-
5
- // Base styles
6
- // -------------------------
7
- .input-group {
8
- position: relative; // For dropdowns
9
- display: table;
10
- border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
11
-
12
- // Undo padding and float of grid classes
13
- &[class*="col-"] {
14
- float: none;
15
- padding-left: 0;
16
- padding-right: 0;
17
- }
18
-
19
- .form-control {
20
- // Ensure that the input is always above the *appended* addon button for
21
- // proper border colors.
22
- position: relative;
23
- z-index: 2;
24
-
25
- // IE9 fubars the placeholder attribute in text inputs and the arrows on
26
- // select elements in input groups. To fix it, we float the input. Details:
27
- // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
28
- float: left;
29
-
30
- width: 100%;
31
- margin-bottom: 0;
32
- }
33
- }
34
-
35
- // Sizing options
36
- //
37
- // Remix the default form control sizing classes into new ones for easier
38
- // manipulation.
39
-
40
- .input-group-lg > .form-control,
41
- .input-group-lg > .input-group-addon,
42
- .input-group-lg > .input-group-btn > .btn {
43
- @extend .input-lg;
44
- }
45
- .input-group-sm > .form-control,
46
- .input-group-sm > .input-group-addon,
47
- .input-group-sm > .input-group-btn > .btn {
48
- @extend .input-sm;
49
- }
50
-
51
-
52
- // Display as table-cell
53
- // -------------------------
54
- .input-group-addon,
55
- .input-group-btn,
56
- .input-group .form-control {
57
- display: table-cell;
58
-
59
- &:not(:first-child):not(:last-child) {
60
- border-radius: 0;
61
- }
62
- }
63
- // Addon and addon wrapper for buttons
64
- .input-group-addon,
65
- .input-group-btn {
66
- width: 1%;
67
- white-space: nowrap;
68
- vertical-align: middle; // Match the inputs
69
- }
70
-
71
- // Text input groups
72
- // -------------------------
73
- .input-group-addon {
74
- padding: $padding-base-vertical $padding-base-horizontal;
75
- font-size: $font-size-base;
76
- font-weight: normal;
77
- line-height: 1;
78
- color: $input-color;
79
- text-align: center;
80
- background-color: $input-group-addon-bg;
81
- border: 1px solid $input-group-addon-border-color;
82
- border-radius: $border-radius-base;
83
-
84
- // Sizing
85
- &.input-sm {
86
- padding: $padding-small-vertical $padding-small-horizontal;
87
- font-size: $font-size-small;
88
- border-radius: $border-radius-small;
89
- }
90
- &.input-lg {
91
- padding: $padding-large-vertical $padding-large-horizontal;
92
- font-size: $font-size-large;
93
- border-radius: $border-radius-large;
94
- }
95
-
96
- // Nuke default margins from checkboxes and radios to vertically center within.
97
- input[type="radio"],
98
- input[type="checkbox"] {
99
- margin-top: 0;
100
- }
101
- }
102
-
103
- // Reset rounded corners
104
- .input-group .form-control:first-child,
105
- .input-group-addon:first-child,
106
- .input-group-btn:first-child > .btn,
107
- .input-group-btn:first-child > .btn-group > .btn,
108
- .input-group-btn:first-child > .dropdown-toggle,
109
- .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
110
- .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
111
- @include border-right-radius(0);
112
- }
113
- .input-group-addon:first-child {
114
- border-right: 0;
115
- }
116
- .input-group .form-control:last-child,
117
- .input-group-addon:last-child,
118
- .input-group-btn:last-child > .btn,
119
- .input-group-btn:last-child > .btn-group > .btn,
120
- .input-group-btn:last-child > .dropdown-toggle,
121
- .input-group-btn:first-child > .btn:not(:first-child),
122
- .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
123
- @include border-left-radius(0);
124
- }
125
- .input-group-addon:last-child {
126
- border-left: 0;
127
- }
128
-
129
- // Button input groups
130
- // -------------------------
131
- .input-group-btn {
132
- position: relative;
133
- // Jankily prevent input button groups from wrapping with `white-space` and
134
- // `font-size` in combination with `inline-block` on buttons.
135
- font-size: 0;
136
- white-space: nowrap;
137
-
138
- // Negative margin for spacing, position for bringing hovered/focused/actived
139
- // element above the siblings.
140
- > .btn {
141
- position: relative;
142
- + .btn {
143
- margin-left: -1px;
144
- }
145
- // Bring the "active" button to the front
146
- &:hover,
147
- &:focus,
148
- &:active {
149
- z-index: 2;
150
- }
151
- }
152
-
153
- // Negative margin to only have a 1px border between the two
154
- &:first-child {
155
- > .btn,
156
- > .btn-group {
157
- margin-right: -1px;
158
- }
159
- }
160
- &:last-child {
161
- > .btn,
162
- > .btn-group {
163
- margin-left: -1px;
164
- }
165
- }
166
- }