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,243 @@
|
|
1
|
+
//
|
2
|
+
// Button groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Make the div behave like a button
|
6
|
+
.btn-group,
|
7
|
+
.btn-group-vertical {
|
8
|
+
position: relative;
|
9
|
+
display: inline-block;
|
10
|
+
vertical-align: middle; // match .btn alignment given font-size hack above
|
11
|
+
> .btn {
|
12
|
+
position: relative;
|
13
|
+
float: left;
|
14
|
+
// Bring the "active" button to the front
|
15
|
+
&:hover,
|
16
|
+
&:focus,
|
17
|
+
&:active,
|
18
|
+
&.active {
|
19
|
+
z-index: 2;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
// Prevent double borders when buttons are next to each other
|
25
|
+
.btn-group {
|
26
|
+
.btn + .btn,
|
27
|
+
.btn + .btn-group,
|
28
|
+
.btn-group + .btn,
|
29
|
+
.btn-group + .btn-group {
|
30
|
+
margin-left: -1px;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
// Optional: Group multiple button groups together for a toolbar
|
35
|
+
.btn-toolbar {
|
36
|
+
margin-left: -5px; // Offset the first child's margin
|
37
|
+
@include clearfix;
|
38
|
+
|
39
|
+
.btn-group,
|
40
|
+
.input-group {
|
41
|
+
float: left;
|
42
|
+
}
|
43
|
+
> .btn,
|
44
|
+
> .btn-group,
|
45
|
+
> .input-group {
|
46
|
+
margin-left: 5px;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
51
|
+
border-radius: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
|
55
|
+
.btn-group > .btn:first-child {
|
56
|
+
margin-left: 0;
|
57
|
+
&:not(:last-child):not(.dropdown-toggle) {
|
58
|
+
@include border-right-radius(0);
|
59
|
+
}
|
60
|
+
}
|
61
|
+
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
|
62
|
+
.btn-group > .btn:last-child:not(:first-child),
|
63
|
+
.btn-group > .dropdown-toggle:not(:first-child) {
|
64
|
+
@include border-left-radius(0);
|
65
|
+
}
|
66
|
+
|
67
|
+
// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
|
68
|
+
.btn-group > .btn-group {
|
69
|
+
float: left;
|
70
|
+
}
|
71
|
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
72
|
+
border-radius: 0;
|
73
|
+
}
|
74
|
+
.btn-group > .btn-group:first-child {
|
75
|
+
> .btn:last-child,
|
76
|
+
> .dropdown-toggle {
|
77
|
+
@include border-right-radius(0);
|
78
|
+
}
|
79
|
+
}
|
80
|
+
.btn-group > .btn-group:last-child > .btn:first-child {
|
81
|
+
@include border-left-radius(0);
|
82
|
+
}
|
83
|
+
|
84
|
+
// On active and open, don't show outline
|
85
|
+
.btn-group .dropdown-toggle:active,
|
86
|
+
.btn-group.open .dropdown-toggle {
|
87
|
+
outline: 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
// Sizing
|
92
|
+
//
|
93
|
+
// Remix the default button sizing classes into new ones for easier manipulation.
|
94
|
+
|
95
|
+
.btn-group-xs > .btn { @extend .btn-xs; }
|
96
|
+
.btn-group-sm > .btn { @extend .btn-sm; }
|
97
|
+
.btn-group-lg > .btn { @extend .btn-lg; }
|
98
|
+
|
99
|
+
|
100
|
+
// Split button dropdowns
|
101
|
+
// ----------------------
|
102
|
+
|
103
|
+
// Give the line between buttons some depth
|
104
|
+
.btn-group > .btn + .dropdown-toggle {
|
105
|
+
padding-left: 8px;
|
106
|
+
padding-right: 8px;
|
107
|
+
}
|
108
|
+
.btn-group > .btn-lg + .dropdown-toggle {
|
109
|
+
padding-left: 12px;
|
110
|
+
padding-right: 12px;
|
111
|
+
}
|
112
|
+
|
113
|
+
// The clickable button for toggling the menu
|
114
|
+
// Remove the gradient and set the same inset shadow as the :active state
|
115
|
+
.btn-group.open .dropdown-toggle {
|
116
|
+
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
117
|
+
|
118
|
+
// Show no shadow for `.btn-link` since it has no other button styles.
|
119
|
+
&.btn-link {
|
120
|
+
@include box-shadow(none);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
|
125
|
+
// Reposition the caret
|
126
|
+
.btn .caret {
|
127
|
+
margin-left: 0;
|
128
|
+
}
|
129
|
+
// Carets in other button sizes
|
130
|
+
.btn-lg .caret {
|
131
|
+
border-width: $caret-width-large $caret-width-large 0;
|
132
|
+
border-bottom-width: 0;
|
133
|
+
}
|
134
|
+
// Upside down carets for .dropup
|
135
|
+
.dropup .btn-lg .caret {
|
136
|
+
border-width: 0 $caret-width-large $caret-width-large;
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
// Vertical button groups
|
141
|
+
// ----------------------
|
142
|
+
|
143
|
+
.btn-group-vertical {
|
144
|
+
> .btn,
|
145
|
+
> .btn-group,
|
146
|
+
> .btn-group > .btn {
|
147
|
+
display: block;
|
148
|
+
float: none;
|
149
|
+
width: 100%;
|
150
|
+
max-width: 100%;
|
151
|
+
}
|
152
|
+
|
153
|
+
// Clear floats so dropdown menus can be properly placed
|
154
|
+
> .btn-group {
|
155
|
+
@include clearfix;
|
156
|
+
> .btn {
|
157
|
+
float: none;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
> .btn + .btn,
|
162
|
+
> .btn + .btn-group,
|
163
|
+
> .btn-group + .btn,
|
164
|
+
> .btn-group + .btn-group {
|
165
|
+
margin-top: -1px;
|
166
|
+
margin-left: 0;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
.btn-group-vertical > .btn {
|
171
|
+
&:not(:first-child):not(:last-child) {
|
172
|
+
border-radius: 0;
|
173
|
+
}
|
174
|
+
&:first-child:not(:last-child) {
|
175
|
+
border-top-right-radius: $border-radius-base;
|
176
|
+
@include border-bottom-radius(0);
|
177
|
+
}
|
178
|
+
&:last-child:not(:first-child) {
|
179
|
+
border-bottom-left-radius: $border-radius-base;
|
180
|
+
@include border-top-radius(0);
|
181
|
+
}
|
182
|
+
}
|
183
|
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
184
|
+
border-radius: 0;
|
185
|
+
}
|
186
|
+
.btn-group-vertical > .btn-group:first-child:not(:last-child) {
|
187
|
+
> .btn:last-child,
|
188
|
+
> .dropdown-toggle {
|
189
|
+
@include border-bottom-radius(0);
|
190
|
+
}
|
191
|
+
}
|
192
|
+
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
193
|
+
@include border-top-radius(0);
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
// Justified button groups
|
198
|
+
// ----------------------
|
199
|
+
|
200
|
+
.btn-group-justified {
|
201
|
+
display: table;
|
202
|
+
width: 100%;
|
203
|
+
table-layout: fixed;
|
204
|
+
border-collapse: separate;
|
205
|
+
> .btn,
|
206
|
+
> .btn-group {
|
207
|
+
float: none;
|
208
|
+
display: table-cell;
|
209
|
+
width: 1%;
|
210
|
+
}
|
211
|
+
> .btn-group .btn {
|
212
|
+
width: 100%;
|
213
|
+
}
|
214
|
+
|
215
|
+
> .btn-group .dropdown-menu {
|
216
|
+
left: auto;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
|
221
|
+
// Checkbox and radio options
|
222
|
+
//
|
223
|
+
// In order to support the browser's form validation feedback, powered by the
|
224
|
+
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
225
|
+
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
226
|
+
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
227
|
+
// certain cases which is prevented by using `clip` and `pointer-events`.
|
228
|
+
// This way, we ensure a DOM element is visible to position the popover from.
|
229
|
+
//
|
230
|
+
// See https://github.com/twbs/bootstrap/pull/12794 and
|
231
|
+
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
232
|
+
|
233
|
+
[data-toggle="buttons"] {
|
234
|
+
> .btn,
|
235
|
+
> .btn-group > .btn {
|
236
|
+
input[type="radio"],
|
237
|
+
input[type="checkbox"] {
|
238
|
+
position: absolute;
|
239
|
+
clip: rect(0,0,0,0);
|
240
|
+
pointer-events: none;
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|
@@ -0,0 +1,160 @@
|
|
1
|
+
//
|
2
|
+
// Buttons
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base styles
|
7
|
+
// --------------------------------------------------
|
8
|
+
|
9
|
+
.btn {
|
10
|
+
display: inline-block;
|
11
|
+
margin-bottom: 0; // For input.btn
|
12
|
+
font-weight: $btn-font-weight;
|
13
|
+
text-align: center;
|
14
|
+
vertical-align: middle;
|
15
|
+
touch-action: manipulation;
|
16
|
+
cursor: pointer;
|
17
|
+
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
18
|
+
border: 1px solid transparent;
|
19
|
+
white-space: nowrap;
|
20
|
+
@include button-size($padding-base-vertical, $padding-base-horizontal, $font-size-base, $line-height-base, $border-radius-base);
|
21
|
+
@include user-select(none);
|
22
|
+
|
23
|
+
&,
|
24
|
+
&:active,
|
25
|
+
&.active {
|
26
|
+
&:focus,
|
27
|
+
&.focus {
|
28
|
+
@include tab-focus;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
&:hover,
|
33
|
+
&:focus,
|
34
|
+
&.focus {
|
35
|
+
color: $btn-default-color;
|
36
|
+
text-decoration: none;
|
37
|
+
}
|
38
|
+
|
39
|
+
&:active,
|
40
|
+
&.active {
|
41
|
+
outline: 0;
|
42
|
+
background-image: none;
|
43
|
+
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
44
|
+
}
|
45
|
+
|
46
|
+
&.disabled,
|
47
|
+
&[disabled],
|
48
|
+
fieldset[disabled] & {
|
49
|
+
cursor: $cursor-disabled;
|
50
|
+
pointer-events: none; // Future-proof disabling of clicks
|
51
|
+
@include opacity(.65);
|
52
|
+
@include box-shadow(none);
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
// Alternate buttons
|
58
|
+
// --------------------------------------------------
|
59
|
+
|
60
|
+
.btn-default {
|
61
|
+
@include button-variant($btn-default-color, $btn-default-bg, $btn-default-border);
|
62
|
+
}
|
63
|
+
.btn-primary {
|
64
|
+
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
65
|
+
}
|
66
|
+
// Success appears as green
|
67
|
+
.btn-success {
|
68
|
+
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
69
|
+
}
|
70
|
+
// Info appears as blue-green
|
71
|
+
.btn-info {
|
72
|
+
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
73
|
+
}
|
74
|
+
// Warning appears as orange
|
75
|
+
.btn-warning {
|
76
|
+
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
77
|
+
}
|
78
|
+
// Danger and error appear as red
|
79
|
+
.btn-danger {
|
80
|
+
@include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// Link buttons
|
85
|
+
// -------------------------
|
86
|
+
|
87
|
+
// Make a button look and behave like a link
|
88
|
+
.btn-link {
|
89
|
+
color: $link-color;
|
90
|
+
font-weight: normal;
|
91
|
+
border-radius: 0;
|
92
|
+
|
93
|
+
&,
|
94
|
+
&:active,
|
95
|
+
&.active,
|
96
|
+
&[disabled],
|
97
|
+
fieldset[disabled] & {
|
98
|
+
background-color: transparent;
|
99
|
+
@include box-shadow(none);
|
100
|
+
}
|
101
|
+
&,
|
102
|
+
&:hover,
|
103
|
+
&:focus,
|
104
|
+
&:active {
|
105
|
+
border-color: transparent;
|
106
|
+
}
|
107
|
+
&:hover,
|
108
|
+
&:focus {
|
109
|
+
color: $link-hover-color;
|
110
|
+
text-decoration: underline;
|
111
|
+
background-color: transparent;
|
112
|
+
}
|
113
|
+
&[disabled],
|
114
|
+
fieldset[disabled] & {
|
115
|
+
&:hover,
|
116
|
+
&:focus {
|
117
|
+
color: $btn-link-disabled-color;
|
118
|
+
text-decoration: none;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
// Button Sizes
|
125
|
+
// --------------------------------------------------
|
126
|
+
|
127
|
+
.btn-lg {
|
128
|
+
// line-height: ensure even-numbered height of button next to large input
|
129
|
+
@include button-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large);
|
130
|
+
}
|
131
|
+
.btn-sm {
|
132
|
+
// line-height: ensure proper height of button next to small input
|
133
|
+
@include button-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
134
|
+
}
|
135
|
+
.btn-xs {
|
136
|
+
@include button-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
// Block button
|
141
|
+
// --------------------------------------------------
|
142
|
+
|
143
|
+
.btn-block {
|
144
|
+
display: block;
|
145
|
+
width: 100%;
|
146
|
+
}
|
147
|
+
|
148
|
+
// Vertically space out multiple block buttons
|
149
|
+
.btn-block + .btn-block {
|
150
|
+
margin-top: 5px;
|
151
|
+
}
|
152
|
+
|
153
|
+
// Specificity overrides
|
154
|
+
input[type="submit"],
|
155
|
+
input[type="reset"],
|
156
|
+
input[type="button"] {
|
157
|
+
&.btn-block {
|
158
|
+
width: 100%;
|
159
|
+
}
|
160
|
+
}
|
@@ -0,0 +1,267 @@
|
|
1
|
+
//
|
2
|
+
// Carousel
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Wrapper for the slide container and indicators
|
7
|
+
.carousel {
|
8
|
+
position: relative;
|
9
|
+
}
|
10
|
+
|
11
|
+
.carousel-inner {
|
12
|
+
position: relative;
|
13
|
+
overflow: hidden;
|
14
|
+
width: 100%;
|
15
|
+
|
16
|
+
> .item {
|
17
|
+
display: none;
|
18
|
+
position: relative;
|
19
|
+
@include transition(.6s ease-in-out left);
|
20
|
+
|
21
|
+
// Account for jankitude on images
|
22
|
+
> img,
|
23
|
+
> a > img {
|
24
|
+
@include img-responsive;
|
25
|
+
line-height: 1;
|
26
|
+
}
|
27
|
+
|
28
|
+
// WebKit CSS3 transforms for supported devices
|
29
|
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
30
|
+
transition: transform .6s ease-in-out;
|
31
|
+
backface-visibility: hidden;
|
32
|
+
perspective: 1000;
|
33
|
+
|
34
|
+
&.next,
|
35
|
+
&.active.right {
|
36
|
+
transform: translate3d(100%, 0, 0);
|
37
|
+
left: 0;
|
38
|
+
}
|
39
|
+
&.prev,
|
40
|
+
&.active.left {
|
41
|
+
transform: translate3d(-100%, 0, 0);
|
42
|
+
left: 0;
|
43
|
+
}
|
44
|
+
&.next.left,
|
45
|
+
&.prev.right,
|
46
|
+
&.active {
|
47
|
+
transform: translate3d(0, 0, 0);
|
48
|
+
left: 0;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
> .active,
|
54
|
+
> .next,
|
55
|
+
> .prev {
|
56
|
+
display: block;
|
57
|
+
}
|
58
|
+
|
59
|
+
> .active {
|
60
|
+
left: 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
> .next,
|
64
|
+
> .prev {
|
65
|
+
position: absolute;
|
66
|
+
top: 0;
|
67
|
+
width: 100%;
|
68
|
+
}
|
69
|
+
|
70
|
+
> .next {
|
71
|
+
left: 100%;
|
72
|
+
}
|
73
|
+
> .prev {
|
74
|
+
left: -100%;
|
75
|
+
}
|
76
|
+
> .next.left,
|
77
|
+
> .prev.right {
|
78
|
+
left: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
> .active.left {
|
82
|
+
left: -100%;
|
83
|
+
}
|
84
|
+
> .active.right {
|
85
|
+
left: 100%;
|
86
|
+
}
|
87
|
+
|
88
|
+
}
|
89
|
+
|
90
|
+
// Left/right controls for nav
|
91
|
+
// ---------------------------
|
92
|
+
|
93
|
+
.carousel-control {
|
94
|
+
position: absolute;
|
95
|
+
top: 0;
|
96
|
+
left: 0;
|
97
|
+
bottom: 0;
|
98
|
+
width: $carousel-control-width;
|
99
|
+
@include opacity($carousel-control-opacity);
|
100
|
+
font-size: $carousel-control-font-size;
|
101
|
+
color: $carousel-control-color;
|
102
|
+
text-align: center;
|
103
|
+
text-shadow: $carousel-text-shadow;
|
104
|
+
// We can't have this transition here because WebKit cancels the carousel
|
105
|
+
// animation if you trip this while in the middle of another animation.
|
106
|
+
|
107
|
+
// Set gradients for backgrounds
|
108
|
+
&.left {
|
109
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001));
|
110
|
+
}
|
111
|
+
&.right {
|
112
|
+
left: auto;
|
113
|
+
right: 0;
|
114
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5));
|
115
|
+
}
|
116
|
+
|
117
|
+
// Hover/focus state
|
118
|
+
&:hover,
|
119
|
+
&:focus {
|
120
|
+
outline: 0;
|
121
|
+
color: $carousel-control-color;
|
122
|
+
text-decoration: none;
|
123
|
+
@include opacity(.9);
|
124
|
+
}
|
125
|
+
|
126
|
+
// Toggles
|
127
|
+
.icon-prev,
|
128
|
+
.icon-next,
|
129
|
+
.glyphicon-chevron-left,
|
130
|
+
.glyphicon-chevron-right {
|
131
|
+
position: absolute;
|
132
|
+
top: 50%;
|
133
|
+
z-index: 5;
|
134
|
+
display: inline-block;
|
135
|
+
}
|
136
|
+
.icon-prev,
|
137
|
+
.glyphicon-chevron-left {
|
138
|
+
left: 50%;
|
139
|
+
margin-left: -10px;
|
140
|
+
}
|
141
|
+
.icon-next,
|
142
|
+
.glyphicon-chevron-right {
|
143
|
+
right: 50%;
|
144
|
+
margin-right: -10px;
|
145
|
+
}
|
146
|
+
.icon-prev,
|
147
|
+
.icon-next {
|
148
|
+
width: 20px;
|
149
|
+
height: 20px;
|
150
|
+
margin-top: -10px;
|
151
|
+
font-family: serif;
|
152
|
+
}
|
153
|
+
|
154
|
+
|
155
|
+
.icon-prev {
|
156
|
+
&:before {
|
157
|
+
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
158
|
+
}
|
159
|
+
}
|
160
|
+
.icon-next {
|
161
|
+
&:before {
|
162
|
+
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
163
|
+
}
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
// Optional indicator pips
|
168
|
+
//
|
169
|
+
// Add an unordered list with the following class and add a list item for each
|
170
|
+
// slide your carousel holds.
|
171
|
+
|
172
|
+
.carousel-indicators {
|
173
|
+
position: absolute;
|
174
|
+
bottom: 10px;
|
175
|
+
left: 50%;
|
176
|
+
z-index: 15;
|
177
|
+
width: 60%;
|
178
|
+
margin-left: -30%;
|
179
|
+
padding-left: 0;
|
180
|
+
list-style: none;
|
181
|
+
text-align: center;
|
182
|
+
|
183
|
+
li {
|
184
|
+
display: inline-block;
|
185
|
+
width: 10px;
|
186
|
+
height: 10px;
|
187
|
+
margin: 1px;
|
188
|
+
text-indent: -999px;
|
189
|
+
border: 1px solid $carousel-indicator-border-color;
|
190
|
+
border-radius: 10px;
|
191
|
+
cursor: pointer;
|
192
|
+
|
193
|
+
// IE8-9 hack for event handling
|
194
|
+
//
|
195
|
+
// Internet Explorer 8-9 does not support clicks on elements without a set
|
196
|
+
// `background-color`. We cannot use `filter` since that's not viewed as a
|
197
|
+
// background color by the browser. Thus, a hack is needed.
|
198
|
+
//
|
199
|
+
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
200
|
+
// set alpha transparency for the best results possible.
|
201
|
+
background-color: #000 \9; // IE8
|
202
|
+
background-color: rgba(0,0,0,0); // IE9
|
203
|
+
}
|
204
|
+
.active {
|
205
|
+
margin: 0;
|
206
|
+
width: 12px;
|
207
|
+
height: 12px;
|
208
|
+
background-color: $carousel-indicator-active-bg;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
// Optional captions
|
213
|
+
// -----------------------------
|
214
|
+
// Hidden by default for smaller viewports
|
215
|
+
.carousel-caption {
|
216
|
+
position: absolute;
|
217
|
+
left: 15%;
|
218
|
+
right: 15%;
|
219
|
+
bottom: 20px;
|
220
|
+
z-index: 10;
|
221
|
+
padding-top: 20px;
|
222
|
+
padding-bottom: 20px;
|
223
|
+
color: $carousel-caption-color;
|
224
|
+
text-align: center;
|
225
|
+
text-shadow: $carousel-text-shadow;
|
226
|
+
& .btn {
|
227
|
+
text-shadow: none; // No shadow for button elements in carousel-caption
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
// Scale up controls for tablets and up
|
233
|
+
@media screen and (min-width: $screen-sm-min) {
|
234
|
+
|
235
|
+
// Scale up the controls a smidge
|
236
|
+
.carousel-control {
|
237
|
+
.glyphicon-chevron-left,
|
238
|
+
.glyphicon-chevron-right,
|
239
|
+
.icon-prev,
|
240
|
+
.icon-next {
|
241
|
+
width: 30px;
|
242
|
+
height: 30px;
|
243
|
+
margin-top: -15px;
|
244
|
+
font-size: 30px;
|
245
|
+
}
|
246
|
+
.glyphicon-chevron-left,
|
247
|
+
.icon-prev {
|
248
|
+
margin-left: -15px;
|
249
|
+
}
|
250
|
+
.glyphicon-chevron-right,
|
251
|
+
.icon-next {
|
252
|
+
margin-right: -15px;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
// Show and left align the captions
|
257
|
+
.carousel-caption {
|
258
|
+
left: 20%;
|
259
|
+
right: 20%;
|
260
|
+
padding-bottom: 30px;
|
261
|
+
}
|
262
|
+
|
263
|
+
// Move up the indicators
|
264
|
+
.carousel-indicators {
|
265
|
+
bottom: 20px;
|
266
|
+
}
|
267
|
+
}
|
File without changes
|