lanes 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile +1 -1
- data/Rakefile +0 -42
- data/client/{javascripts/component → lanes/components}/Base.coffee +10 -10
- data/client/{javascripts/component → lanes/components}/ChoicesInput.coffee +0 -0
- data/client/lanes/components/enabled.js.erb +3 -0
- data/client/{javascripts/lib/create-namespace.js → lanes/components/enabled.scss.erb} +0 -0
- data/client/{javascripts/component → lanes/components}/grid/Editor.coffee +10 -13
- data/client/{javascripts/component → lanes/components/grid}/Grid.coffee +6 -6
- data/client/{javascripts/component → lanes/components}/grid/PopOverEditor.coffee +3 -3
- data/client/{javascripts/component → lanes/components}/grid/RowEditor.coffee +2 -3
- data/client/lanes/components/grid/config.json +3 -0
- data/client/{stylesheets/compoonents/grid-editors.scss → lanes/components/grid/editors.scss} +0 -0
- data/client/{stylesheets/compoonents → lanes/components/grid}/grid.scss +8 -6
- data/client/lanes/components/grid/index.js +8 -0
- data/client/{javascripts/component → lanes/components}/grid/popover-editor.html +0 -0
- data/client/{javascripts/component → lanes/components}/grid/row-editor.html +0 -0
- data/client/{javascripts/component/grid.html → lanes/components/grid/template.html} +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/dataTables.bootstrap.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/dataTables.scroller.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/datatables.responsive.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/index.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/jquery.dataTables.js +1 -0
- data/client/lanes/components/index.js +2 -0
- data/client/lanes/components/modal/ModalDialog.coffee +47 -0
- data/client/lanes/components/modal/index.js +2 -0
- data/client/lanes/components/modal/modal.scss +20 -0
- data/client/{javascripts/component/modal.html → lanes/components/modal/template.html} +5 -4
- data/client/{javascripts/component → lanes/components/popover}/PopOver.coffee +4 -4
- data/client/lanes/components/popover/index.js +2 -0
- data/client/lanes/components/popover/popover.scss +1 -0
- data/client/{javascripts/component/popover.html → lanes/components/popover/template.html} +0 -0
- data/client/{javascripts/component → lanes/components/radio_group}/RadioGroup.coffee +1 -1
- data/client/{javascripts/component → lanes/components/record_finder}/RecordFinder.coffee +4 -4
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/clause.skr +0 -0
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/dialog.skr +0 -0
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/field.skr +0 -0
- data/client/lanes/components/select_field/SelectField.coffee +87 -0
- data/client/{screens/user-management → lanes/components/select_field}/index.js +0 -1
- data/client/{javascripts/workspace/tab.html → lanes/components/select_field/select_field.scss} +0 -0
- data/client/{javascripts → lanes}/data/Bootstrap.coffee +0 -0
- data/client/{javascripts → lanes}/data/ChangeSet.coffee +0 -0
- data/client/{javascripts → lanes}/data/Collection.coffee +37 -6
- data/client/{javascripts → lanes}/data/Config.coffee +0 -0
- data/client/{javascripts → lanes}/data/Model.coffee +8 -9
- data/client/{javascripts → lanes}/data/PubSub.coffee +0 -0
- data/client/{javascripts → lanes}/data/Query.coffee +0 -0
- data/client/{javascripts → lanes}/data/Screens.coffee +48 -19
- data/client/{javascripts → lanes}/data/Sync.coffee +5 -5
- data/client/lanes/data/User.coffee +46 -0
- data/client/{javascripts → lanes}/data/index.js +1 -2
- data/client/{javascripts → lanes}/data/mixins/HasCodeField.coffee +1 -1
- data/client/{javascripts → lanes}/extension/Base.coffee +1 -1
- data/client/lanes/extension/EarlyExtensions.js.erb +3 -0
- data/client/{javascripts → lanes}/extension/Extensions.coffee +5 -0
- data/client/{javascripts → lanes}/extension/GlAccounts.coffee +0 -0
- data/client/lanes/extension/LateLoaded.js.erb +3 -0
- data/client/lanes/extension/index.js +5 -0
- data/client/lanes/extension/namespace-available.js.erb +3 -0
- data/client/lanes/index.js +11 -0
- data/client/{javascripts → lanes}/lib/MakeBaseClass.coffee +0 -0
- data/client/{javascripts → lanes}/lib/ModuleSupport.coffee +0 -0
- data/client/{javascripts → lanes}/lib/Templates.coffee +2 -5
- data/{spec/client/foo_spec.js → client/lanes/lib/create-namespace.js} +0 -0
- data/client/{javascripts → lanes}/lib/debounce.coffee +0 -0
- data/client/{javascripts → lanes}/lib/defer.coffee +0 -0
- data/client/{javascripts → lanes}/lib/el.js +0 -0
- data/client/{javascripts → lanes}/lib/index.js +0 -4
- data/client/{javascripts → lanes}/lib/loader.coffee +15 -10
- data/client/{javascripts → lanes}/lib/namespace.coffee +3 -0
- data/client/{javascripts → lanes}/lib/noConflict.coffee +1 -0
- data/client/{javascripts → lanes}/lib/promise_helpers.coffee +0 -0
- data/client/{javascripts → lanes}/lib/results.coffee +0 -0
- data/client/{javascripts → lanes}/lib/utilFunctions.coffee +11 -13
- data/client/{javascripts → lanes}/plugins/ResizeSensor.js +0 -0
- data/client/lanes/plugins/index.js +1 -0
- data/client/{javascripts → lanes}/plugins/overlay.coffee +0 -0
- data/client/{javascripts → lanes}/plugins/trigger.coffee +0 -0
- data/client/lanes/screens/Base.coffee +40 -0
- data/client/{javascripts/view/mixins/ScreenChangeListener.coffee → lanes/screens/ChangeListener.coffee} +2 -2
- data/client/lanes/screens/Router.coffee +6 -0
- data/client/lanes/screens/index.js +1 -0
- data/client/{javascripts/view → lanes/screens}/screen-definitions.js.erb +0 -0
- data/client/{javascripts → lanes}/vendor/bootstrap/affix.js +43 -23
- data/client/{javascripts → lanes}/vendor/bootstrap/alert.js +6 -4
- data/client/{javascripts → lanes}/vendor/bootstrap/button.js +16 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/carousel.js +27 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/collapse.js +69 -28
- data/client/{javascripts → lanes}/vendor/bootstrap/dropdown.js +20 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/modal.js +67 -23
- data/client/{javascripts → lanes}/vendor/bootstrap/popover.js +13 -7
- data/client/{javascripts → lanes}/vendor/bootstrap/scrollspy.js +12 -7
- data/client/{javascripts → lanes}/vendor/bootstrap/tab.js +41 -16
- data/client/{javascripts → lanes}/vendor/bootstrap/tooltip.js +60 -39
- data/client/{javascripts → lanes}/vendor/bootstrap/transition.js +1 -1
- data/client/{javascripts → lanes}/vendor/jquery-2.js +0 -0
- data/client/{javascripts → lanes}/vendor/jquery.tap.js +0 -0
- data/client/{javascripts → lanes}/vendor/magicsuggest.js +0 -0
- data/client/{javascripts → lanes}/vendor/message-bus.js +0 -0
- data/client/lanes/vendor/modern-stack.js +27 -0
- data/client/lanes/vendor/packaged.js +13698 -0
- data/client/{javascripts/view → lanes/views}/Assets.coffee +1 -1
- data/client/lanes/views/Base.coffee +426 -0
- data/client/{javascripts/view → lanes/views}/FormBindings.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/Functions.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/Helpers.coffee +6 -6
- data/client/{javascripts/view → lanes/views}/Keys.coffee +3 -3
- data/client/{javascripts/view → lanes/views}/ModelObserver.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/ModelUpdate.coffee +2 -2
- data/client/{javascripts/view → lanes/views}/PubSub.coffee +3 -3
- data/client/{javascripts/view → lanes/views}/RenderContext.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/SaveNotify.coffee +2 -2
- data/client/{javascripts/view → lanes/views}/TimedHighlight.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/TimedMask.coffee +1 -1
- data/client/{javascripts/view/InterfaceState.coffee → lanes/views/Viewport.coffee} +18 -18
- data/client/{javascripts/view → lanes/views}/_button.html +0 -0
- data/client/{javascripts/view → lanes/views}/_toolbar.html +0 -0
- data/client/lanes/views/index.js +2 -0
- data/client/{javascripts/view → lanes/views}/model-update.html +0 -0
- data/client/{javascripts → lanes}/workspace/ActiveScreensSwitcher.coffee +23 -27
- data/client/{javascripts → lanes}/workspace/Instance.es6 +25 -21
- data/client/{javascripts → lanes}/workspace/Layout.coffee +6 -5
- data/client/{javascripts → lanes}/workspace/Navbar.coffee +2 -2
- data/client/{javascripts → lanes}/workspace/Pages.coffee +9 -13
- data/client/{javascripts → lanes}/workspace/ScreensMenu.coffee +11 -11
- data/client/{javascripts → lanes}/workspace/index.js +7 -5
- data/client/{javascripts → lanes}/workspace/layout.html +0 -0
- data/client/{javascripts → lanes}/workspace/menu.html +0 -0
- data/client/{javascripts → lanes}/workspace/menu_toggle.html +0 -0
- data/client/{javascripts → lanes}/workspace/navbar.html +0 -0
- data/client/{javascripts → lanes}/workspace/pages.html +0 -0
- data/client/{javascripts → lanes}/workspace/screens-menu.html +0 -0
- data/client/{javascripts → lanes}/workspace/screens-switcher.html +0 -0
- data/client/lanes/workspace/tab.html +0 -0
- data/client/lanes/workspace.scss.erb +21 -0
- data/client/{javascripts/lanes-complete.js → lanes-complete.js} +0 -0
- data/client/lanes-workspace.scss.erb +21 -0
- data/client/{stylesheets/compoonents → styles/components}/all.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/changes-notification.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/record-finder.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/suggest.scss +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.eot +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.svg +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.ttf +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.woff +0 -0
- data/client/{stylesheets → styles}/fonts/selection.json +0 -0
- data/client/{stylesheets/fonts/style.css → styles/fonts/style.scss} +0 -0
- data/client/{stylesheets → styles}/fonts.scss +6 -6
- data/client/{stylesheets → styles}/forms.scss +0 -0
- data/client/{stylesheets → styles}/index.css +0 -0
- data/client/{stylesheets → styles}/keybindings.scss +0 -0
- data/client/{stylesheets → styles}/layout.scss +1 -1
- data/client/{stylesheets → styles}/plugins/all.scss +0 -0
- data/client/{stylesheets → styles}/plugins/overlay.scss +1 -1
- data/client/{stylesheets → styles}/plugins/resize-sensor.scss +0 -0
- data/client/{stylesheets → styles}/screens.scss +0 -0
- data/client/{stylesheets → styles}/tabs.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_alerts.scss +0 -0
- data/client/styles/vendor/bootstrap/_badges.scss +63 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_breadcrumbs.scss +0 -0
- data/client/styles/vendor/bootstrap/_button-groups.scss +243 -0
- data/client/styles/vendor/bootstrap/_buttons.scss +160 -0
- data/client/styles/vendor/bootstrap/_carousel.scss +267 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_close.scss +0 -0
- data/client/styles/vendor/bootstrap/_code.scss +69 -0
- data/client/styles/vendor/bootstrap/_component-animations.scss +38 -0
- data/client/styles/vendor/bootstrap/_dropdowns.scss +213 -0
- data/client/styles/vendor/bootstrap/_forms.scss +548 -0
- data/client/styles/vendor/bootstrap/_glyphicons.scss +234 -0
- data/client/styles/vendor/bootstrap/_grid.scss +84 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_input-groups.scss +0 -0
- data/client/styles/vendor/bootstrap/_jumbotron.scss +49 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_labels.scss +0 -0
- data/client/styles/vendor/bootstrap/_list-group.scss +124 -0
- data/client/styles/vendor/bootstrap/_media.scss +47 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_mixins.scss +0 -0
- data/client/styles/vendor/bootstrap/_modals.scss +148 -0
- data/client/styles/vendor/bootstrap/_navbar.scss +662 -0
- data/client/styles/vendor/bootstrap/_navs.scss +244 -0
- data/client/styles/vendor/bootstrap/_normalize.scss +427 -0
- data/client/styles/vendor/bootstrap/_pager.scss +54 -0
- data/client/styles/vendor/bootstrap/_pagination.scss +88 -0
- data/client/styles/vendor/bootstrap/_panels.scss +261 -0
- data/client/styles/vendor/bootstrap/_popovers.scss +135 -0
- data/client/styles/vendor/bootstrap/_print.scss +107 -0
- data/client/styles/vendor/bootstrap/_progress-bars.scss +87 -0
- data/client/styles/vendor/bootstrap/_responsive-embed.scss +35 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_responsive-utilities.scss +0 -0
- data/client/styles/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/styles/vendor/bootstrap/_tables.scss +234 -0
- data/client/styles/vendor/bootstrap/_theme.scss +272 -0
- data/client/styles/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/styles/vendor/bootstrap/_tooltip.scss +103 -0
- data/client/styles/vendor/bootstrap/_type.scss +298 -0
- data/client/styles/vendor/bootstrap/_utilities.scss +56 -0
- data/client/styles/vendor/bootstrap/_variables.scss +864 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_wells.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_alerts.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_background-variant.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_border-radius.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_buttons.scss +52 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_center-block.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_clearfix.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_forms.scss +88 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_gradients.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_grid-framework.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/styles/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/styles/vendor/bootstrap/mixins/_image.scss +33 -0
- data/client/styles/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_list-group.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_nav-divider.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_nav-vertical-align.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_opacity.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_pagination.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_panels.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_reset-filter.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_resize.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_responsive-visibility.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_size.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_tab-focus.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_table-row.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_text-emphasis.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_text-overflow.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/client/styles/vendor/bootstrap/old/_alerts.scss +68 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_badges.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_breadcrumbs.scss +26 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_button-groups.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_buttons.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_carousel.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_close.scss +35 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_code.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_component-animations.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_dropdowns.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_forms.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_glyphicons.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_grid.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_input-groups.scss +166 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_jumbotron.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_labels.scss +66 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_list-group.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_media.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_mixins.scss +39 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_modals.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_navbar.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_navs.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_normalize.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_pager.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_pagination.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_panels.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_popovers.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_print.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_progress-bars.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_responsive-embed.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_responsive-utilities.scss +174 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_scaffolding.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_tables.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_theme.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_thumbnails.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_tooltip.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_type.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_utilities.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_variables.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_wells.scss +29 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/bootstrap.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_alerts.scss +14 -0
- data/client/styles/vendor/bootstrap/old/mixins/_background-variant.scss +11 -0
- data/client/styles/vendor/bootstrap/old/mixins/_border-radius.scss +18 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_buttons.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_center-block.scss +7 -0
- data/client/styles/vendor/bootstrap/old/mixins/_clearfix.scss +22 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_forms.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_gradients.scss +58 -0
- data/client/styles/vendor/bootstrap/old/mixins/_grid-framework.scss +81 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_grid.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_hide-text.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_image.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_labels.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_list-group.scss +31 -0
- data/client/styles/vendor/bootstrap/old/mixins/_nav-divider.scss +10 -0
- data/client/styles/vendor/bootstrap/old/mixins/_nav-vertical-align.scss +9 -0
- data/client/styles/vendor/bootstrap/old/mixins/_opacity.scss +8 -0
- data/client/styles/vendor/bootstrap/old/mixins/_pagination.scss +23 -0
- data/client/styles/vendor/bootstrap/old/mixins/_panels.scss +24 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_progress-bar.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_reset-filter.scss +8 -0
- data/client/styles/vendor/bootstrap/old/mixins/_resize.scss +6 -0
- data/client/styles/vendor/bootstrap/old/mixins/_responsive-visibility.scss +21 -0
- data/client/styles/vendor/bootstrap/old/mixins/_size.scss +10 -0
- data/client/styles/vendor/bootstrap/old/mixins/_tab-focus.scss +9 -0
- data/client/styles/vendor/bootstrap/old/mixins/_table-row.scss +28 -0
- data/client/styles/vendor/bootstrap/old/mixins/_text-emphasis.scss +11 -0
- data/client/styles/vendor/bootstrap/old/mixins/_text-overflow.scss +8 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_vendor-prefixes.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap-custom-grid.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap-custom-modals.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap.scss +14 -9
- data/client/{stylesheets → styles}/vendor/dataTables.scss +0 -0
- data/lanes.gemspec +5 -1
- data/lib/lanes/api/controller.rb +47 -6
- data/lib/lanes/api/helper_methods.rb +2 -10
- data/lib/lanes/api/javascript_processor.rb +17 -7
- data/lib/lanes/api/null_authentication_provider.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +49 -28
- data/lib/lanes/api/root.rb +12 -30
- data/lib/lanes/api/routing.rb +37 -0
- data/lib/lanes/api/sprockets_compressor.rb +35 -0
- data/lib/lanes/api/sprockets_extension.rb +69 -0
- data/lib/lanes/api/test_specs.rb +13 -9
- data/lib/lanes/api.rb +2 -18
- data/lib/lanes/cli.rb +22 -2
- data/lib/lanes/command/app.rb +49 -0
- data/lib/lanes/command/client_model_update.rb +65 -0
- data/lib/lanes/command/console.rb +20 -0
- data/lib/lanes/command/db.rb +33 -0
- data/lib/lanes/command/db.usage +1 -0
- data/lib/lanes/command/generate.rb +21 -0
- data/lib/lanes/command/generate_model.rb +105 -0
- data/lib/lanes/command/generate_model.usage +45 -0
- data/lib/lanes/command/generate_screen.rb +31 -0
- data/lib/lanes/command/generate_screen.usage +11 -0
- data/lib/lanes/command/generate_view.rb +22 -0
- data/lib/lanes/command/generate_view.usage +13 -0
- data/lib/lanes/command/model_attribute.rb +188 -0
- data/lib/lanes/command/named_command.rb +27 -0
- data/lib/lanes/command/server.rb +19 -0
- data/lib/lanes/command/server.usage +3 -0
- data/lib/lanes/command/templates/Gemfile +10 -0
- data/lib/lanes/{generators/app → command/templates}/Guardfile +0 -0
- data/lib/lanes/command/templates/Rakefile +2 -0
- data/lib/lanes/command/templates/client/Extension.coffee +5 -0
- data/lib/lanes/command/templates/client/components/.gitkeep +0 -0
- data/lib/lanes/command/templates/client/components/Component.coffee +1 -0
- data/lib/lanes/command/templates/client/data/Model.coffee +24 -0
- data/lib/lanes/command/templates/client/namespace-extension.js +17 -0
- data/lib/lanes/command/templates/client/screens/Screen.coffee +9 -0
- data/lib/lanes/command/templates/client/screens/index.js +5 -0
- data/lib/lanes/command/templates/client/screens/layout.html +3 -0
- data/lib/lanes/command/templates/client/screens/styles.scss +9 -0
- data/lib/lanes/command/templates/client/styles/styles.scss +1 -0
- data/lib/lanes/command/templates/client/views/.gitkeep +0 -0
- data/lib/lanes/command/templates/client/views/View.coffee +9 -0
- data/lib/lanes/command/templates/client/views/template.html +3 -0
- data/lib/lanes/{generators/app → command/templates}/config/database.yml +0 -0
- data/lib/lanes/command/templates/config/lanes.rb +7 -0
- data/lib/lanes/command/templates/config/routes.rb +2 -0
- data/lib/lanes/{generators/app → command/templates}/config.ru +1 -0
- data/lib/lanes/command/templates/db/create_table_migration.rb +19 -0
- data/lib/lanes/command/templates/gitignore +1 -0
- data/lib/lanes/command/templates/lib/namespace/extension.rb +13 -0
- data/lib/lanes/command/templates/lib/namespace/model.rb +7 -0
- data/lib/lanes/command/templates/lib/namespace/screen.rb +17 -0
- data/lib/lanes/command/templates/lib/namespace/version.rb +3 -0
- data/lib/lanes/command/templates/lib/namespace.rb +12 -0
- data/lib/lanes/command/templates/spec/client/data/ModelSpec.coffee +5 -0
- data/lib/lanes/command/templates/spec/client/views/ViewSpec.coffee +5 -0
- data/lib/lanes/command/templates/spec/fixtures/namespace/model.yml +16 -0
- data/lib/lanes/command/templates/spec/namespace/model_spec.rb +10 -0
- data/lib/lanes/command/templates/spec/spec_helper.rb +15 -0
- data/lib/lanes/command/update.rb +13 -0
- data/lib/lanes/command/update_model.rb +125 -0
- data/lib/lanes/command/update_model.usage +2 -0
- data/lib/lanes/command.rb +37 -0
- data/lib/lanes/components.rb +45 -0
- data/lib/lanes/concerns/set_attribute_data.rb +2 -2
- data/lib/lanes/configuration.rb +3 -3
- data/lib/lanes/db.rb +5 -39
- data/lib/lanes/extension.rb +64 -19
- data/lib/lanes/guard_tasks.rb +7 -5
- data/lib/lanes/rake_tasks.rb +47 -0
- data/lib/lanes/screens.rb +1 -48
- data/{spec → lib/lanes}/spec_helper.rb +0 -0
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes.rb +1 -3
- data/npm-build/compile.coffee +1 -1
- data/npm-build/package.json +5 -5
- data/npm-build/template.js +13 -13
- data/spec/api/javascript_processor_spec.rb +1 -1
- data/spec/client/view/BaseSpec.coffee +166 -0
- data/spec/helpers/jasmine-jquery.js +813 -0
- data/spec/helpers/jasmine-matchers.js +1586 -0
- data/tasks/migrations.rake +1 -1
- data/views/index.erb +9 -13
- metadata +419 -268
- data/client/javascripts/component/ModalDialog.coffee +0 -44
- data/client/javascripts/component/SelectField.coffee +0 -43
- data/client/javascripts/component/TaggedField.coffee +0 -27
- data/client/javascripts/component/index.js +0 -5
- data/client/javascripts/data/Roles.coffee +0 -91
- data/client/javascripts/data/User.coffee +0 -70
- data/client/javascripts/extension/index.js +0 -6
- data/client/javascripts/extension/load.js.erb +0 -3
- data/client/javascripts/lanes-workspace.js +0 -1
- data/client/javascripts/lib/underscore.inflection.js +0 -210
- data/client/javascripts/plugins/index.js +0 -4
- data/client/javascripts/vendor/modern-stack.js +0 -14
- data/client/javascripts/vendor/packaged.js +0 -13769
- data/client/javascripts/view/Base.coffee +0 -231
- data/client/javascripts/view/Screen.coffee +0 -30
- data/client/javascripts/view/index.js +0 -10
- data/client/javascripts/workspace/LoginDialog.coffee +0 -33
- data/client/javascripts/workspace/login-dialog.html +0 -16
- data/client/screens/user-management/UserEditScreen.coffee +0 -21
- data/client/screens/user-management/UserManagement.coffee +0 -24
- data/client/screens/user-management/grid-popover-editor.html +0 -33
- data/client/screens/user-management/index.css +0 -4
- data/client/screens/user-management/user-management-styles.scss +0 -7
- data/client/screens/user-management/user-management.html +0 -8
- data/client/stylesheets/compoonents/modal-dialog.scss +0 -23
- data/client/stylesheets/lanes-workspace.scss +0 -17
- data/config/puma.rb +0 -7
- data/db/seed.rb +0 -37
- data/foo/Gemfile +0 -5
- data/foo/Guardfile +0 -13
- data/foo/foo/Gemfile +0 -5
- data/foo/foo/lib/foo.rb +0 -7
- data/foo/lib/foo/version.rb +0 -3
- data/foo/lib/foo.rb +0 -8
- data/lib/lanes/access/locked_fields.rb +0 -43
- data/lib/lanes/access/role.rb +0 -58
- data/lib/lanes/access/role_collection.rb +0 -75
- data/lib/lanes/access/roles/administrator.rb +0 -25
- data/lib/lanes/access/roles/support.rb +0 -13
- data/lib/lanes/access/user_maint_screen.rb +0 -32
- data/lib/lanes/access.rb +0 -50
- data/lib/lanes/api/asset_pipeline.rb +0 -59
- data/lib/lanes/api/authentication_helper.rb +0 -21
- data/lib/lanes/api/authentication_provider.rb +0 -45
- data/lib/lanes/api/default_routes.rb +0 -35
- data/lib/lanes/api/skr_templates.rb +0 -60
- data/lib/lanes/concerns/track_modifications.rb +0 -51
- data/lib/lanes/db/seed.rb +0 -27
- data/lib/lanes/generators/app/Gemfile +0 -5
- data/lib/lanes/generators/app/Rakefile +0 -9
- data/lib/lanes/generators/app/lib/main_class/version.rb +0 -3
- data/lib/lanes/generators/app/lib/main_class.rb +0 -8
- data/lib/lanes/generators/app.rb +0 -36
- data/lib/lanes/user.rb +0 -127
- data/spec/client/component/ChoicesInputSpec.coffee +0 -12
- data/spec/client/component/foo_spec.coffee +0 -4
- data/spec/client/support/jasmine.yml +0 -128
- data/spec/client/support/jasmine_helper.rb +0 -15
- data/spec/helpers/SpecHelper.js +0 -18
@@ -0,0 +1,234 @@
|
|
1
|
+
//
|
2
|
+
// Glyphicons for Bootstrap
|
3
|
+
//
|
4
|
+
// Since icons are fonts, they can be placed anywhere text is placed and are
|
5
|
+
// thus automatically sized to match the surrounding child. To use, create an
|
6
|
+
// inline element with the appropriate classes, like so:
|
7
|
+
//
|
8
|
+
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
9
|
+
|
10
|
+
// Import the fonts
|
11
|
+
@font-face {
|
12
|
+
font-family: 'Glyphicons Halflings';
|
13
|
+
src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot'));
|
14
|
+
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'),
|
15
|
+
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'),
|
16
|
+
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'),
|
17
|
+
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');
|
18
|
+
}
|
19
|
+
|
20
|
+
// Catchall baseclass
|
21
|
+
.glyphicon {
|
22
|
+
position: relative;
|
23
|
+
top: 1px;
|
24
|
+
display: inline-block;
|
25
|
+
font-family: 'Glyphicons Halflings';
|
26
|
+
font-style: normal;
|
27
|
+
font-weight: normal;
|
28
|
+
line-height: 1;
|
29
|
+
-webkit-font-smoothing: antialiased;
|
30
|
+
-moz-osx-font-smoothing: grayscale;
|
31
|
+
}
|
32
|
+
|
33
|
+
// Individual icons
|
34
|
+
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
35
|
+
.glyphicon-plus { &:before { content: "\2b"; } }
|
36
|
+
.glyphicon-euro,
|
37
|
+
.glyphicon-eur { &:before { content: "\20ac"; } }
|
38
|
+
.glyphicon-minus { &:before { content: "\2212"; } }
|
39
|
+
.glyphicon-cloud { &:before { content: "\2601"; } }
|
40
|
+
.glyphicon-envelope { &:before { content: "\2709"; } }
|
41
|
+
.glyphicon-pencil { &:before { content: "\270f"; } }
|
42
|
+
.glyphicon-glass { &:before { content: "\e001"; } }
|
43
|
+
.glyphicon-music { &:before { content: "\e002"; } }
|
44
|
+
.glyphicon-search { &:before { content: "\e003"; } }
|
45
|
+
.glyphicon-heart { &:before { content: "\e005"; } }
|
46
|
+
.glyphicon-star { &:before { content: "\e006"; } }
|
47
|
+
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
48
|
+
.glyphicon-user { &:before { content: "\e008"; } }
|
49
|
+
.glyphicon-film { &:before { content: "\e009"; } }
|
50
|
+
.glyphicon-th-large { &:before { content: "\e010"; } }
|
51
|
+
.glyphicon-th { &:before { content: "\e011"; } }
|
52
|
+
.glyphicon-th-list { &:before { content: "\e012"; } }
|
53
|
+
.glyphicon-ok { &:before { content: "\e013"; } }
|
54
|
+
.glyphicon-remove { &:before { content: "\e014"; } }
|
55
|
+
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
56
|
+
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
57
|
+
.glyphicon-off { &:before { content: "\e017"; } }
|
58
|
+
.glyphicon-signal { &:before { content: "\e018"; } }
|
59
|
+
.glyphicon-cog { &:before { content: "\e019"; } }
|
60
|
+
.glyphicon-trash { &:before { content: "\e020"; } }
|
61
|
+
.glyphicon-home { &:before { content: "\e021"; } }
|
62
|
+
.glyphicon-file { &:before { content: "\e022"; } }
|
63
|
+
.glyphicon-time { &:before { content: "\e023"; } }
|
64
|
+
.glyphicon-road { &:before { content: "\e024"; } }
|
65
|
+
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
66
|
+
.glyphicon-download { &:before { content: "\e026"; } }
|
67
|
+
.glyphicon-upload { &:before { content: "\e027"; } }
|
68
|
+
.glyphicon-inbox { &:before { content: "\e028"; } }
|
69
|
+
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
70
|
+
.glyphicon-repeat { &:before { content: "\e030"; } }
|
71
|
+
.glyphicon-refresh { &:before { content: "\e031"; } }
|
72
|
+
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
73
|
+
.glyphicon-lock { &:before { content: "\e033"; } }
|
74
|
+
.glyphicon-flag { &:before { content: "\e034"; } }
|
75
|
+
.glyphicon-headphones { &:before { content: "\e035"; } }
|
76
|
+
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
77
|
+
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
78
|
+
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
79
|
+
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
80
|
+
.glyphicon-barcode { &:before { content: "\e040"; } }
|
81
|
+
.glyphicon-tag { &:before { content: "\e041"; } }
|
82
|
+
.glyphicon-tags { &:before { content: "\e042"; } }
|
83
|
+
.glyphicon-book { &:before { content: "\e043"; } }
|
84
|
+
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
85
|
+
.glyphicon-print { &:before { content: "\e045"; } }
|
86
|
+
.glyphicon-camera { &:before { content: "\e046"; } }
|
87
|
+
.glyphicon-font { &:before { content: "\e047"; } }
|
88
|
+
.glyphicon-bold { &:before { content: "\e048"; } }
|
89
|
+
.glyphicon-italic { &:before { content: "\e049"; } }
|
90
|
+
.glyphicon-text-height { &:before { content: "\e050"; } }
|
91
|
+
.glyphicon-text-width { &:before { content: "\e051"; } }
|
92
|
+
.glyphicon-align-left { &:before { content: "\e052"; } }
|
93
|
+
.glyphicon-align-center { &:before { content: "\e053"; } }
|
94
|
+
.glyphicon-align-right { &:before { content: "\e054"; } }
|
95
|
+
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
96
|
+
.glyphicon-list { &:before { content: "\e056"; } }
|
97
|
+
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
98
|
+
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
99
|
+
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
100
|
+
.glyphicon-picture { &:before { content: "\e060"; } }
|
101
|
+
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
102
|
+
.glyphicon-adjust { &:before { content: "\e063"; } }
|
103
|
+
.glyphicon-tint { &:before { content: "\e064"; } }
|
104
|
+
.glyphicon-edit { &:before { content: "\e065"; } }
|
105
|
+
.glyphicon-share { &:before { content: "\e066"; } }
|
106
|
+
.glyphicon-check { &:before { content: "\e067"; } }
|
107
|
+
.glyphicon-move { &:before { content: "\e068"; } }
|
108
|
+
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
109
|
+
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
110
|
+
.glyphicon-backward { &:before { content: "\e071"; } }
|
111
|
+
.glyphicon-play { &:before { content: "\e072"; } }
|
112
|
+
.glyphicon-pause { &:before { content: "\e073"; } }
|
113
|
+
.glyphicon-stop { &:before { content: "\e074"; } }
|
114
|
+
.glyphicon-forward { &:before { content: "\e075"; } }
|
115
|
+
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
116
|
+
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
117
|
+
.glyphicon-eject { &:before { content: "\e078"; } }
|
118
|
+
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
119
|
+
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
120
|
+
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
121
|
+
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
122
|
+
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
123
|
+
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
124
|
+
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
125
|
+
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
126
|
+
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
127
|
+
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
128
|
+
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
129
|
+
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
130
|
+
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
131
|
+
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
132
|
+
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
133
|
+
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
134
|
+
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
135
|
+
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
136
|
+
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
137
|
+
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
138
|
+
.glyphicon-gift { &:before { content: "\e102"; } }
|
139
|
+
.glyphicon-leaf { &:before { content: "\e103"; } }
|
140
|
+
.glyphicon-fire { &:before { content: "\e104"; } }
|
141
|
+
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
142
|
+
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
143
|
+
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
144
|
+
.glyphicon-plane { &:before { content: "\e108"; } }
|
145
|
+
.glyphicon-calendar { &:before { content: "\e109"; } }
|
146
|
+
.glyphicon-random { &:before { content: "\e110"; } }
|
147
|
+
.glyphicon-comment { &:before { content: "\e111"; } }
|
148
|
+
.glyphicon-magnet { &:before { content: "\e112"; } }
|
149
|
+
.glyphicon-chevron-up { &:before { content: "\e113"; } }
|
150
|
+
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
151
|
+
.glyphicon-retweet { &:before { content: "\e115"; } }
|
152
|
+
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
153
|
+
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
154
|
+
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
155
|
+
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
156
|
+
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
157
|
+
.glyphicon-hdd { &:before { content: "\e121"; } }
|
158
|
+
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
159
|
+
.glyphicon-bell { &:before { content: "\e123"; } }
|
160
|
+
.glyphicon-certificate { &:before { content: "\e124"; } }
|
161
|
+
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
162
|
+
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
163
|
+
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
164
|
+
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
165
|
+
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
166
|
+
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
167
|
+
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
168
|
+
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
169
|
+
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
170
|
+
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
171
|
+
.glyphicon-globe { &:before { content: "\e135"; } }
|
172
|
+
.glyphicon-wrench { &:before { content: "\e136"; } }
|
173
|
+
.glyphicon-tasks { &:before { content: "\e137"; } }
|
174
|
+
.glyphicon-filter { &:before { content: "\e138"; } }
|
175
|
+
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
176
|
+
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
177
|
+
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
178
|
+
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
179
|
+
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
180
|
+
.glyphicon-link { &:before { content: "\e144"; } }
|
181
|
+
.glyphicon-phone { &:before { content: "\e145"; } }
|
182
|
+
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
183
|
+
.glyphicon-usd { &:before { content: "\e148"; } }
|
184
|
+
.glyphicon-gbp { &:before { content: "\e149"; } }
|
185
|
+
.glyphicon-sort { &:before { content: "\e150"; } }
|
186
|
+
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
187
|
+
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
188
|
+
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
189
|
+
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
190
|
+
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
191
|
+
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
192
|
+
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
193
|
+
.glyphicon-expand { &:before { content: "\e158"; } }
|
194
|
+
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
195
|
+
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
196
|
+
.glyphicon-log-in { &:before { content: "\e161"; } }
|
197
|
+
.glyphicon-flash { &:before { content: "\e162"; } }
|
198
|
+
.glyphicon-log-out { &:before { content: "\e163"; } }
|
199
|
+
.glyphicon-new-window { &:before { content: "\e164"; } }
|
200
|
+
.glyphicon-record { &:before { content: "\e165"; } }
|
201
|
+
.glyphicon-save { &:before { content: "\e166"; } }
|
202
|
+
.glyphicon-open { &:before { content: "\e167"; } }
|
203
|
+
.glyphicon-saved { &:before { content: "\e168"; } }
|
204
|
+
.glyphicon-import { &:before { content: "\e169"; } }
|
205
|
+
.glyphicon-export { &:before { content: "\e170"; } }
|
206
|
+
.glyphicon-send { &:before { content: "\e171"; } }
|
207
|
+
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
208
|
+
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
209
|
+
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
210
|
+
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
211
|
+
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
212
|
+
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
213
|
+
.glyphicon-transfer { &:before { content: "\e178"; } }
|
214
|
+
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
215
|
+
.glyphicon-header { &:before { content: "\e180"; } }
|
216
|
+
.glyphicon-compressed { &:before { content: "\e181"; } }
|
217
|
+
.glyphicon-earphone { &:before { content: "\e182"; } }
|
218
|
+
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
219
|
+
.glyphicon-tower { &:before { content: "\e184"; } }
|
220
|
+
.glyphicon-stats { &:before { content: "\e185"; } }
|
221
|
+
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
222
|
+
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
223
|
+
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
224
|
+
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
225
|
+
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
226
|
+
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
227
|
+
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
228
|
+
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
229
|
+
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
230
|
+
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
231
|
+
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
232
|
+
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
233
|
+
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
234
|
+
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
@@ -0,0 +1,84 @@
|
|
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
|
+
}
|
File without changes
|
@@ -0,0 +1,49 @@
|
|
1
|
+
//
|
2
|
+
// Jumbotron
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.jumbotron {
|
7
|
+
padding: $jumbotron-padding ($jumbotron-padding / 2);
|
8
|
+
margin-bottom: $jumbotron-padding;
|
9
|
+
color: $jumbotron-color;
|
10
|
+
background-color: $jumbotron-bg;
|
11
|
+
|
12
|
+
h1,
|
13
|
+
.h1 {
|
14
|
+
color: $jumbotron-heading-color;
|
15
|
+
}
|
16
|
+
p {
|
17
|
+
margin-bottom: ($jumbotron-padding / 2);
|
18
|
+
font-size: $jumbotron-font-size;
|
19
|
+
font-weight: 200;
|
20
|
+
}
|
21
|
+
|
22
|
+
> hr {
|
23
|
+
border-top-color: darken($jumbotron-bg, 10%);
|
24
|
+
}
|
25
|
+
|
26
|
+
.container &,
|
27
|
+
.container-fluid & {
|
28
|
+
border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
|
29
|
+
}
|
30
|
+
|
31
|
+
.container {
|
32
|
+
max-width: 100%;
|
33
|
+
}
|
34
|
+
|
35
|
+
@media screen and (min-width: $screen-sm-min) {
|
36
|
+
padding: ($jumbotron-padding * 1.6) 0;
|
37
|
+
|
38
|
+
.container &,
|
39
|
+
.container-fluid & {
|
40
|
+
padding-left: ($jumbotron-padding * 2);
|
41
|
+
padding-right: ($jumbotron-padding * 2);
|
42
|
+
}
|
43
|
+
|
44
|
+
h1,
|
45
|
+
.h1 {
|
46
|
+
font-size: ($font-size-base * 4.5);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
File without changes
|
@@ -0,0 +1,124 @@
|
|
1
|
+
//
|
2
|
+
// List groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
//
|
8
|
+
// Easily usable on <ul>, <ol>, or <div>.
|
9
|
+
|
10
|
+
.list-group {
|
11
|
+
// No need to set list-style: none; since .list-group-item is block level
|
12
|
+
margin-bottom: 20px;
|
13
|
+
padding-left: 0; // reset padding because ul and ol
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
// Individual list items
|
18
|
+
//
|
19
|
+
// Use on `li`s or `div`s within the `.list-group` parent.
|
20
|
+
|
21
|
+
.list-group-item {
|
22
|
+
position: relative;
|
23
|
+
display: block;
|
24
|
+
padding: 10px 15px;
|
25
|
+
// Place the border on the list items and negative margin up for better styling
|
26
|
+
margin-bottom: -1px;
|
27
|
+
background-color: $list-group-bg;
|
28
|
+
border: 1px solid $list-group-border;
|
29
|
+
|
30
|
+
// Round the first and last items
|
31
|
+
&:first-child {
|
32
|
+
@include border-top-radius($list-group-border-radius);
|
33
|
+
}
|
34
|
+
&:last-child {
|
35
|
+
margin-bottom: 0;
|
36
|
+
@include border-bottom-radius($list-group-border-radius);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
|
41
|
+
// Linked list items
|
42
|
+
//
|
43
|
+
// Use anchor elements instead of `li`s or `div`s to create linked list items.
|
44
|
+
// Includes an extra `.active` modifier class for showing selected items.
|
45
|
+
|
46
|
+
a.list-group-item {
|
47
|
+
color: $list-group-link-color;
|
48
|
+
|
49
|
+
.list-group-item-heading {
|
50
|
+
color: $list-group-link-heading-color;
|
51
|
+
}
|
52
|
+
|
53
|
+
// Hover state
|
54
|
+
&:hover,
|
55
|
+
&:focus {
|
56
|
+
text-decoration: none;
|
57
|
+
color: $list-group-link-hover-color;
|
58
|
+
background-color: $list-group-hover-bg;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
.list-group-item {
|
63
|
+
// Disabled state
|
64
|
+
&.disabled,
|
65
|
+
&.disabled:hover,
|
66
|
+
&.disabled:focus {
|
67
|
+
background-color: $list-group-disabled-bg;
|
68
|
+
color: $list-group-disabled-color;
|
69
|
+
cursor: $cursor-disabled;
|
70
|
+
|
71
|
+
// Force color to inherit for custom content
|
72
|
+
.list-group-item-heading {
|
73
|
+
color: inherit;
|
74
|
+
}
|
75
|
+
.list-group-item-text {
|
76
|
+
color: $list-group-disabled-text-color;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
// Active class on item itself, not parent
|
81
|
+
&.active,
|
82
|
+
&.active:hover,
|
83
|
+
&.active:focus {
|
84
|
+
z-index: 2; // Place active items above their siblings for proper border styling
|
85
|
+
color: $list-group-active-color;
|
86
|
+
background-color: $list-group-active-bg;
|
87
|
+
border-color: $list-group-active-border;
|
88
|
+
|
89
|
+
// Force color to inherit for custom content
|
90
|
+
.list-group-item-heading,
|
91
|
+
.list-group-item-heading > small,
|
92
|
+
.list-group-item-heading > .small {
|
93
|
+
color: inherit;
|
94
|
+
}
|
95
|
+
.list-group-item-text {
|
96
|
+
color: $list-group-active-text-color;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
// Contextual variants
|
103
|
+
//
|
104
|
+
// Add modifier classes to change text and background color on individual items.
|
105
|
+
// Organizationally, this must come after the `:hover` states.
|
106
|
+
|
107
|
+
@include list-group-item-variant(success, $state-success-bg, $state-success-text);
|
108
|
+
@include list-group-item-variant(info, $state-info-bg, $state-info-text);
|
109
|
+
@include list-group-item-variant(warning, $state-warning-bg, $state-warning-text);
|
110
|
+
@include list-group-item-variant(danger, $state-danger-bg, $state-danger-text);
|
111
|
+
|
112
|
+
|
113
|
+
// Custom content options
|
114
|
+
//
|
115
|
+
// Extra classes for creating well-formatted content within `.list-group-item`s.
|
116
|
+
|
117
|
+
.list-group-item-heading {
|
118
|
+
margin-top: 0;
|
119
|
+
margin-bottom: 5px;
|
120
|
+
}
|
121
|
+
.list-group-item-text {
|
122
|
+
margin-bottom: 0;
|
123
|
+
line-height: 1.3;
|
124
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
.media {
|
2
|
+
// Proper spacing between instances of .media
|
3
|
+
margin-top: 15px;
|
4
|
+
|
5
|
+
&:first-child {
|
6
|
+
margin-top: 0;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
.media-right,
|
11
|
+
.media > .pull-right {
|
12
|
+
padding-left: 10px;
|
13
|
+
}
|
14
|
+
|
15
|
+
.media-left,
|
16
|
+
.media > .pull-left {
|
17
|
+
padding-right: 10px;
|
18
|
+
}
|
19
|
+
|
20
|
+
.media-left,
|
21
|
+
.media-right,
|
22
|
+
.media-body {
|
23
|
+
display: table-cell;
|
24
|
+
vertical-align: top;
|
25
|
+
}
|
26
|
+
|
27
|
+
.media-middle {
|
28
|
+
vertical-align: middle;
|
29
|
+
}
|
30
|
+
|
31
|
+
.media-bottom {
|
32
|
+
vertical-align: bottom;
|
33
|
+
}
|
34
|
+
|
35
|
+
// Reset margins on headings for tighter default spacing
|
36
|
+
.media-heading {
|
37
|
+
margin-top: 0;
|
38
|
+
margin-bottom: 5px;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Media list variation
|
42
|
+
//
|
43
|
+
// Undo default ul/ol styles
|
44
|
+
.media-list {
|
45
|
+
padding-left: 0;
|
46
|
+
list-style: none;
|
47
|
+
}
|
File without changes
|