lanes 0.1.9 → 0.1.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/client/fonts/fontawesome-webfont.woff +0 -0
- data/client/fonts/fontawesome-webfont.woff2 +0 -0
- data/client/lanes/Boot.cjsx +9 -0
- data/client/lanes/access/Extension.coffee +18 -4
- data/client/lanes/access/LoginDialog.cjsx +78 -0
- data/client/lanes/access/Roles.coffee +22 -28
- data/client/lanes/access/User.coffee +16 -16
- data/client/lanes/access/index.js +4 -5
- data/client/lanes/access/screens/user-management/Editor.cjsx +20 -0
- data/client/lanes/access/screens/user-management/UserManagement.cjsx +41 -0
- data/client/lanes/access/screens/user-management/index.js +0 -1
- data/client/lanes/components/grid/EditingMixin.cjsx +64 -0
- data/client/lanes/components/grid/Grid.cjsx +139 -0
- data/client/lanes/components/grid/PopOverMixin.cjsx +28 -0
- data/client/lanes/components/grid/PopoverEditor.cjsx +8 -0
- data/client/lanes/components/grid/RowEditor.cjsx +10 -0
- data/client/lanes/components/grid/Toolbar.cjsx +14 -0
- data/client/lanes/components/grid/config.json +1 -1
- data/client/lanes/components/grid/editors.scss +94 -53
- data/client/lanes/components/grid/index.js +2 -7
- data/client/lanes/components/grid/styles.scss +8 -296
- data/client/lanes/components/helpers.coffee +2 -0
- data/client/lanes/components/index.js +2 -1
- data/client/lanes/components/modal/Modal.cjsx +36 -0
- data/client/lanes/components/modal/index.js +1 -2
- data/client/lanes/components/modal/styles.scss +0 -19
- data/client/lanes/components/record-finder/Clause.cjsx +80 -0
- data/client/lanes/components/record-finder/Dialog.cjsx +54 -0
- data/client/lanes/components/record-finder/RecordFinder.cjsx +38 -0
- data/client/lanes/components/record-finder/config.json +1 -1
- data/client/lanes/components/record-finder/index.js +1 -2
- data/client/lanes/components/request-spinner/index.js +1 -0
- data/client/lanes/components/select-field/SelectField.cjsx +78 -0
- data/client/lanes/components/select-field/index.js +2 -1
- data/client/lanes/components/select-field/styles.scss +1 -0
- data/client/lanes/components/shared/CountBadge.cjsx +9 -0
- data/client/lanes/components/shared/ErrorDisplay.cjsx +21 -0
- data/client/lanes/components/shared/FieldMixin.cjsx +71 -0
- data/client/lanes/components/shared/FieldSet.cjsx +58 -0
- data/client/lanes/components/shared/GenericField.cjsx +5 -0
- data/client/lanes/components/shared/Helpers.coffee +9 -0
- data/client/lanes/components/shared/RadioField.cjsx +14 -0
- data/client/lanes/components/shared/Resize.cjsx +152 -0
- data/client/lanes/components/shared/TextArea.cjsx +19 -0
- data/client/lanes/components/shared/TextField.cjsx +25 -0
- data/client/lanes/components/shared/Tooltip.cjsx +10 -0
- data/client/lanes/components/shared/fields.scss +35 -0
- data/client/lanes/components/shared/fieldset.scss +29 -0
- data/client/lanes/components/shared/index.js +3 -0
- data/client/lanes/components/shared/styles.scss +32 -0
- data/client/lanes/components/toolbar/RemoteChangeSets.cjsx +75 -0
- data/client/lanes/components/toolbar/SaveButton.cjsx +3 -0
- data/client/lanes/components/toolbar/Toolbar.cjsx +58 -0
- data/client/lanes/{workspace/styles → components/toolbar}/changes-notification.scss +10 -23
- data/client/lanes/components/toolbar/index.js +3 -0
- data/client/lanes/components/toolbar/styles.scss +51 -0
- data/client/lanes/extension/Extensions.coffee +19 -10
- data/client/lanes/extension/LateLoaded.js.erb +4 -3
- data/client/lanes/index.js +3 -5
- data/client/lanes/index.scss.erb +6 -14
- data/client/lanes/lib/HotReload.coffee +35 -0
- data/client/lanes/lib/MakeBaseClass.coffee +10 -11
- data/client/lanes/lib/development.coffee +3 -0
- data/client/lanes/lib/dom.coffee +49 -0
- data/client/lanes/lib/el.coffee +23 -0
- data/client/lanes/lib/index.js.erb +16 -0
- data/client/lanes/lib/loader.coffee +34 -34
- data/client/lanes/lib/namespace.coffee +1 -1
- data/client/lanes/lib/objToParam.coffee +37 -0
- data/client/lanes/{access/views/.gitkeep → lib/production.coffee} +0 -0
- data/client/lanes/lib/utilFunctions.coffee +44 -26
- data/client/lanes/models/AssociationMap.coffee +51 -38
- data/client/lanes/models/Base.coffee +89 -88
- data/client/lanes/models/ChangeMonitor.coffee +10 -10
- data/client/lanes/models/ChangeSet.coffee +14 -24
- data/client/lanes/models/Collection.coffee +40 -41
- data/client/lanes/models/PubSub.coffee +28 -19
- data/client/lanes/models/Query.coffee +78 -45
- data/client/lanes/models/QueryResults.coffee +93 -0
- data/client/lanes/models/ServerCache.coffee +12 -12
- data/client/lanes/models/Sync.coffee +53 -50
- data/client/lanes/models/User.coffee +31 -17
- data/client/lanes/react/Component.coffee +31 -0
- data/client/lanes/react/DefaultComponentNotFound.cjsx +9 -0
- data/client/lanes/{views → react}/FormBindings.coffee +0 -0
- data/client/lanes/{views → react}/ModelObserver.coffee +0 -0
- data/client/lanes/{views → react}/ModelUpdate.coffee +0 -0
- data/client/lanes/{views → react}/PubSub.coffee +0 -0
- data/client/lanes/react/Root.cjsx +14 -0
- data/client/lanes/react/Router.cjsx +18 -0
- data/client/lanes/react/Screen.coffee +15 -0
- data/client/lanes/{views → react}/TimedHighlight.coffee +0 -0
- data/client/lanes/{views → react}/TimedMask.coffee +0 -0
- data/client/lanes/react/TypeValidators.coffee +21 -0
- data/client/lanes/{lib/create-namespace.js → react/Utils.coffee} +0 -0
- data/client/lanes/react/Viewport.coffee +30 -0
- data/client/lanes/react/index.js +8 -0
- data/client/lanes/react/mixins/Access.coffee +27 -0
- data/client/lanes/react/mixins/Component.coffee +4 -0
- data/client/lanes/react/mixins/Data.coffee +136 -0
- data/client/lanes/react/mixins/MonitorSize.coffee +11 -0
- data/client/lanes/react/mixins/ReadEditingState.coffee +11 -0
- data/client/lanes/react/mixins/RelayEditingState.coffee +17 -0
- data/client/lanes/react/mixins/RelayFieldChange.coffee +11 -0
- data/client/lanes/react/mixins/Screen.coffee +7 -0
- data/client/lanes/react/mixins/Viewport.coffee +11 -0
- data/client/lanes/screens/ChangeListener.coffee +3 -3
- data/client/lanes/screens/Commands.coffee +27 -0
- data/client/lanes/screens/Definitions.coffee +74 -65
- data/client/lanes/screens/all.js.erb +1 -1
- data/client/lanes/screens/index.js +1 -2
- data/client/lanes/screens/mixins/index.js +0 -1
- data/client/lanes/screens/register.js.erb +0 -1
- data/client/lanes/screens/styles.scss +7 -0
- data/client/lanes/styles/bootstrap-custom-grid.scss +67 -37
- data/client/lanes/styles/bootstrap.scss +4 -5
- data/client/lanes/styles/fonts.scss +10 -23
- data/client/lanes/styles/fonts/_animated.scss +34 -0
- data/client/lanes/styles/fonts/_bordered-pulled.scss +16 -0
- data/client/lanes/styles/fonts/_core.scss +13 -0
- data/client/lanes/styles/fonts/_fixed-width.scss +6 -0
- data/client/lanes/styles/fonts/_icons.scss +596 -0
- data/client/lanes/styles/fonts/_larger.scss +13 -0
- data/client/lanes/styles/fonts/_list.scss +19 -0
- data/client/lanes/styles/fonts/_mixins.scss +27 -0
- data/client/lanes/styles/fonts/_path.scss +10 -0
- data/client/lanes/styles/fonts/_rotated-flipped.scss +20 -0
- data/client/lanes/styles/fonts/_stacked.scss +20 -0
- data/client/lanes/styles/fonts/_variables.scss +606 -0
- data/client/lanes/styles/fonts/font-awesome.scss +16 -0
- data/client/lanes/styles/fonts/index.scss +2 -0
- data/client/lanes/styles/global.scss +2 -0
- data/client/lanes/styles/global/fancy-header.scss +14 -0
- data/client/lanes/testing/BeforeEach.coffee +15 -40
- data/client/lanes/testing/Helpers.coffee +27 -0
- data/client/lanes/testing/ModelSaver.coffee +14 -24
- data/client/lanes/testing/StubRouter.coffee +27 -0
- data/client/lanes/testing/TestObjects.coffee +27 -0
- data/client/lanes/testing/index.js +3 -1
- data/client/lanes/vendor/base.js +85256 -0
- data/client/lanes/vendor/commons.js +20579 -0
- data/client/lanes/vendor/development.js +2511 -0
- data/client/lanes/vendor/grid.js +6689 -0
- data/client/lanes/vendor/grid.scss +387 -0
- data/client/lanes/vendor/index.js +3 -0
- data/client/lanes/vendor/message-bus.coffee +264 -0
- data/client/lanes/vendor/widgets.js +8798 -0
- data/client/lanes/vendor/widgets.scss +723 -0
- data/client/lanes/workspace/ActiveScreenSwitcher.cjsx +38 -0
- data/client/lanes/workspace/Extension.coffee +6 -0
- data/client/lanes/workspace/Layout.cjsx +28 -0
- data/client/lanes/workspace/Navbar.cjsx +25 -0
- data/client/lanes/workspace/ScreenView.cjsx +27 -0
- data/client/lanes/workspace/ScreensMenu.cjsx +57 -0
- data/client/lanes/workspace/UIState.coffee +17 -16
- data/client/lanes/workspace/index.js +7 -2
- data/client/lanes/workspace/styles.scss +0 -3
- data/client/lanes/workspace/styles/forms.scss +2 -73
- data/client/lanes/workspace/styles/header.scss +0 -2
- data/client/lanes/workspace/styles/layout.scss +9 -2
- data/client/lanes/workspace/styles/screens.scss +0 -59
- data/client/lanes/workspace/styles/tabs.scss +16 -15
- data/coffeelint.json +49 -0
- data/config.ru +1 -0
- data/config/database.yml +2 -2
- data/config/routes.rb +7 -0
- data/docs/command.md +11 -8
- data/docs/model.md +2 -5
- data/docs/react.md +137 -0
- data/lanes.gemspec +1 -0
- data/lib/lanes.rb +1 -1
- data/lib/lanes/access/authentication_provider.rb +1 -0
- data/lib/lanes/access/config/routes.rb +2 -0
- data/lib/lanes/access/config/screens.rb +15 -12
- data/lib/lanes/access/extension.rb +2 -1
- data/lib/lanes/access/role.rb +8 -4
- data/lib/lanes/api.rb +4 -3
- data/lib/lanes/api/coffeescript_processor.rb +47 -6
- data/lib/lanes/api/controller.rb +4 -3
- data/lib/lanes/api/default_routes.rb +16 -0
- data/lib/lanes/api/javascript_processor.rb +14 -68
- data/lib/lanes/api/pub_sub.rb +17 -3
- data/lib/lanes/api/request_wrapper.rb +2 -2
- data/lib/lanes/api/root.rb +16 -13
- data/lib/lanes/api/routing.rb +0 -18
- data/lib/lanes/api/sprockets_extension.rb +10 -4
- data/lib/lanes/api/test_specs.rb +3 -3
- data/lib/lanes/cli.rb +6 -1
- data/lib/lanes/command/app.rb +7 -11
- data/lib/lanes/command/generate.rb +3 -3
- data/lib/lanes/command/generate_component.rb +28 -0
- data/lib/lanes/command/generate_component.usage +11 -0
- data/lib/lanes/command/generate_screen.rb +24 -7
- data/lib/lanes/command/generate_screen.usage +5 -8
- data/lib/lanes/configuration.rb +3 -2
- data/lib/lanes/extension.rb +12 -18
- data/lib/lanes/extension/definition.rb +20 -8
- data/lib/lanes/guard_tasks.rb +22 -5
- data/lib/lanes/hot_reload_plugin.rb +47 -0
- data/lib/lanes/logger.rb +41 -5
- data/lib/lanes/screen.rb +40 -16
- data/lib/lanes/spec_helper.rb +6 -3
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes/workspace/extension.rb +1 -0
- data/npm-build/{template.js → base.js} +17 -17
- data/{client/lanes/workspace/tab.html → npm-build/common.js} +0 -0
- data/npm-build/compile.coffee +13 -4
- data/npm-build/development.js +7 -0
- data/npm-build/grid.js +11 -0
- data/npm-build/package.json +62 -58
- data/npm-build/react-widgets.js +5 -0
- data/npm-build/react-widgets.less +35 -0
- data/npm-build/webpack.config.js +39 -0
- data/spec/command-reference-files/component/client/appy-app/components/Big.cjsx +4 -0
- data/spec/command-reference-files/component/spec/appy-app/components/BigSpec.coffee +5 -0
- data/spec/command-reference-files/initial/.rubocop.yml +7 -0
- data/spec/command-reference-files/initial/Gemfile +1 -1
- data/spec/command-reference-files/initial/client/appy-app/Extension.coffee +17 -5
- data/spec/command-reference-files/initial/client/appy-app/components/Base.coffee +9 -0
- data/spec/command-reference-files/initial/client/appy-app/index.js +1 -3
- data/spec/command-reference-files/initial/client/appy-app/screens/Base.coffee +8 -2
- data/spec/command-reference-files/initial/coffeelint.json +49 -0
- data/spec/command-reference-files/initial/config.ru +2 -0
- data/spec/command-reference-files/initial/config/screens.rb +10 -0
- data/spec/command-reference-files/initial/lib/appy-app/extension.rb +7 -0
- data/spec/command-reference-files/model/client/appy-app/models/TestTest.coffee +0 -1
- data/spec/command-reference-files/screen/client/appy-app/Extension.coffee +34 -0
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.cjsx +7 -0
- data/spec/command-reference-files/screen/config/screens.rb +19 -9
- data/spec/command-reference-files/screen/spec/appy-app/screens/ready-set-go/ReadySetGoSpec.coffee +3 -3
- data/spec/lanes/components/grid/GridSpec.coffee +26 -26
- data/spec/lanes/models/AssociationMapSpec.coffee +6 -6
- data/spec/lanes/models/BaseSpec.coffee +24 -35
- data/spec/lanes/models/CollectionSpec.coffee +19 -18
- data/spec/lanes/models/EnumMapSpec.coffee +1 -1
- data/spec/lanes/models/PubSubSpec.coffee +17 -15
- data/spec/lanes/models/SyncSpec.coffee +28 -0
- data/spec/lanes/models/UserSpec.coffee +17 -0
- data/spec/lanes/react/mixins/DataSpec.coffee +72 -0
- data/spec/lanes/screens/DefinitionsSpec.coffee +33 -0
- data/spec/lanes/views/BaseSpec.coffee +133 -133
- data/spec/lanes/views/FormBindingsSpec.coffee +30 -30
- data/spec/server/api/coffeescript_processor_spec.rb +2 -2
- data/spec/server/command_spec.rb +3 -3
- data/templates/client/Extension.coffee +17 -5
- data/templates/client/components/BaseComponent.coffee +9 -0
- data/templates/client/components/Component.cjsx +4 -0
- data/templates/client/{views → components}/template.html +0 -0
- data/templates/client/index.js +1 -3
- data/templates/client/models/Model.coffee +0 -1
- data/templates/client/screens/BaseScreen.coffee +9 -0
- data/templates/client/screens/Screen.cjsx +7 -0
- data/templates/config.ru +2 -0
- data/templates/config/screen.rb +10 -10
- data/templates/config/screens.rb +10 -0
- data/templates/lib/namespace/extension.rb +7 -0
- data/templates/spec/client/Screen.coffee +4 -4
- data/templates/spec/client/components/ComponentSpec.coffee +5 -0
- metadata +157 -201
- data/client/fonts/lanes/icomoon.eot +0 -0
- data/client/fonts/lanes/icomoon.svg +0 -160
- data/client/fonts/lanes/icomoon.ttf +0 -0
- data/client/fonts/lanes/icomoon.woff +0 -0
- data/client/fonts/lanes/selection.json +0 -3565
- data/client/lanes/Boot.coffee +0 -50
- data/client/lanes/access/LoginDialog.coffee +0 -46
- data/client/lanes/access/login-dialog.html +0 -16
- data/client/lanes/access/screens/user-management/GridUserEditor.coffee +0 -26
- data/client/lanes/access/screens/user-management/UserManagement.coffee +0 -23
- data/client/lanes/access/screens/user-management/grid-popover-editor.html +0 -33
- data/client/lanes/access/screens/user-management/screen.html +0 -7
- data/client/lanes/components/Base.coffee +0 -39
- data/client/lanes/components/ChoicesInput.coffee +0 -47
- data/client/lanes/components/grid/Editor.coffee +0 -62
- data/client/lanes/components/grid/Grid.coffee +0 -205
- data/client/lanes/components/grid/PopOverEditor.coffee +0 -29
- data/client/lanes/components/grid/RowEditor.coffee +0 -30
- data/client/lanes/components/grid/popover-editor.html +0 -18
- data/client/lanes/components/grid/row-editor.html +0 -16
- data/client/lanes/components/grid/template.html +0 -4
- data/client/lanes/components/grid/vendor/dataTables.scroller.js +0 -1262
- data/client/lanes/components/grid/vendor/index.js +0 -2
- data/client/lanes/components/grid/vendor/jquery.dataTables.js +0 -14839
- data/client/lanes/components/modal/ModalDialog.coffee +0 -68
- data/client/lanes/components/modal/template.html +0 -18
- data/client/lanes/components/multi-select/MultiSelect.coffee +0 -65
- data/client/lanes/components/popover/PopOver.coffee +0 -55
- data/client/lanes/components/popover/index.js +0 -2
- data/client/lanes/components/popover/styles.scss +0 -2
- data/client/lanes/components/popover/template.html +0 -5
- data/client/lanes/components/radio-group/RadioGroup.coffee +0 -47
- data/client/lanes/components/radio-group/index.js +0 -1
- data/client/lanes/components/radio-group/styles.scss +0 -1
- data/client/lanes/components/record-finder/Clause.coffee +0 -37
- data/client/lanes/components/record-finder/Dialog.coffee +0 -45
- data/client/lanes/components/record-finder/RecordFinder.coffee +0 -61
- data/client/lanes/components/record-finder/clause.html +0 -37
- data/client/lanes/components/record-finder/dialog.html +0 -4
- data/client/lanes/components/record-finder/field.html +0 -8
- data/client/lanes/components/select-field/SelectField.coffee +0 -63
- data/client/lanes/components/select2/Select2.coffee +0 -8
- data/client/lanes/components/select2/index.js +0 -2
- data/client/lanes/lib/Templates.coffee +0 -51
- data/client/lanes/lib/debounce.coffee +0 -15
- data/client/lanes/lib/defer.coffee +0 -7
- data/client/lanes/lib/el.js +0 -115
- data/client/lanes/lib/index.js +0 -5
- data/client/lanes/plugins/overlay.coffee +0 -41
- data/client/lanes/screens/Base.coffee +0 -35
- data/client/lanes/screens/Router.coffee +0 -4
- data/client/lanes/screens/mixins/Editing.coffee +0 -38
- data/client/lanes/styles/bootstrap/old/_alerts.scss +0 -68
- data/client/lanes/styles/bootstrap/old/_badges.scss +0 -57
- data/client/lanes/styles/bootstrap/old/_breadcrumbs.scss +0 -26
- data/client/lanes/styles/bootstrap/old/_button-groups.scss +0 -240
- data/client/lanes/styles/bootstrap/old/_buttons.scss +0 -157
- data/client/lanes/styles/bootstrap/old/_carousel.scss +0 -243
- data/client/lanes/styles/bootstrap/old/_close.scss +0 -35
- data/client/lanes/styles/bootstrap/old/_code.scss +0 -68
- data/client/lanes/styles/bootstrap/old/_component-animations.scss +0 -35
- data/client/lanes/styles/bootstrap/old/_dropdowns.scss +0 -215
- data/client/lanes/styles/bootstrap/old/_forms.scss +0 -538
- data/client/lanes/styles/bootstrap/old/_glyphicons.scss +0 -237
- data/client/lanes/styles/bootstrap/old/_grid.scss +0 -84
- data/client/lanes/styles/bootstrap/old/_input-groups.scss +0 -166
- data/client/lanes/styles/bootstrap/old/_jumbotron.scss +0 -48
- data/client/lanes/styles/bootstrap/old/_labels.scss +0 -66
- data/client/lanes/styles/bootstrap/old/_list-group.scss +0 -132
- data/client/lanes/styles/bootstrap/old/_media.scss +0 -56
- data/client/lanes/styles/bootstrap/old/_mixins.scss +0 -39
- data/client/lanes/styles/bootstrap/old/_modals.scss +0 -150
- data/client/lanes/styles/bootstrap/old/_navbar.scss +0 -659
- data/client/lanes/styles/bootstrap/old/_navs.scss +0 -242
- data/client/lanes/styles/bootstrap/old/_normalize.scss +0 -425
- data/client/lanes/styles/bootstrap/old/_pager.scss +0 -55
- data/client/lanes/styles/bootstrap/old/_pagination.scss +0 -88
- data/client/lanes/styles/bootstrap/old/_panels.scss +0 -243
- data/client/lanes/styles/bootstrap/old/_popovers.scss +0 -133
- data/client/lanes/styles/bootstrap/old/_print.scss +0 -101
- data/client/lanes/styles/bootstrap/old/_progress-bars.scss +0 -105
- data/client/lanes/styles/bootstrap/old/_responsive-embed.scss +0 -34
- data/client/lanes/styles/bootstrap/old/_responsive-utilities.scss +0 -174
- data/client/lanes/styles/bootstrap/old/_scaffolding.scss +0 -150
- data/client/lanes/styles/bootstrap/old/_tables.scss +0 -233
- data/client/lanes/styles/bootstrap/old/_theme.scss +0 -258
- data/client/lanes/styles/bootstrap/old/_thumbnails.scss +0 -38
- data/client/lanes/styles/bootstrap/old/_tooltip.scss +0 -95
- data/client/lanes/styles/bootstrap/old/_type.scss +0 -304
- data/client/lanes/styles/bootstrap/old/_utilities.scss +0 -57
- data/client/lanes/styles/bootstrap/old/_variables.scss +0 -850
- data/client/lanes/styles/bootstrap/old/_wells.scss +0 -29
- data/client/lanes/styles/bootstrap/old/bootstrap.scss +0 -50
- data/client/lanes/styles/bootstrap/old/mixins/_alerts.scss +0 -14
- data/client/lanes/styles/bootstrap/old/mixins/_background-variant.scss +0 -11
- data/client/lanes/styles/bootstrap/old/mixins/_border-radius.scss +0 -18
- data/client/lanes/styles/bootstrap/old/mixins/_buttons.scss +0 -50
- data/client/lanes/styles/bootstrap/old/mixins/_center-block.scss +0 -7
- data/client/lanes/styles/bootstrap/old/mixins/_clearfix.scss +0 -22
- data/client/lanes/styles/bootstrap/old/mixins/_forms.scss +0 -84
- data/client/lanes/styles/bootstrap/old/mixins/_gradients.scss +0 -58
- data/client/lanes/styles/bootstrap/old/mixins/_grid-framework.scss +0 -81
- data/client/lanes/styles/bootstrap/old/mixins/_grid.scss +0 -122
- data/client/lanes/styles/bootstrap/old/mixins/_hide-text.scss +0 -21
- data/client/lanes/styles/bootstrap/old/mixins/_image.scss +0 -34
- data/client/lanes/styles/bootstrap/old/mixins/_labels.scss +0 -12
- data/client/lanes/styles/bootstrap/old/mixins/_list-group.scss +0 -31
- data/client/lanes/styles/bootstrap/old/mixins/_nav-divider.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_nav-vertical-align.scss +0 -9
- data/client/lanes/styles/bootstrap/old/mixins/_opacity.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_pagination.scss +0 -23
- data/client/lanes/styles/bootstrap/old/mixins/_panels.scss +0 -24
- data/client/lanes/styles/bootstrap/old/mixins/_progress-bar.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_reset-filter.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_resize.scss +0 -6
- data/client/lanes/styles/bootstrap/old/mixins/_responsive-visibility.scss +0 -21
- data/client/lanes/styles/bootstrap/old/mixins/_size.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_tab-focus.scss +0 -9
- data/client/lanes/styles/bootstrap/old/mixins/_table-row.scss +0 -28
- data/client/lanes/styles/bootstrap/old/mixins/_text-emphasis.scss +0 -11
- data/client/lanes/styles/bootstrap/old/mixins/_text-overflow.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_vendor-prefixes.scss +0 -219
- data/client/lanes/styles/font-definitions.scss +0 -451
- data/client/lanes/testing/TestModels.coffee +0 -23
- data/client/lanes/vendor/bootstrap/affix.js +0 -162
- data/client/lanes/vendor/bootstrap/alert.js +0 -94
- data/client/lanes/vendor/bootstrap/button.js +0 -116
- data/client/lanes/vendor/bootstrap/carousel.js +0 -240
- data/client/lanes/vendor/bootstrap/collapse.js +0 -211
- data/client/lanes/vendor/bootstrap/dropdown.js +0 -161
- data/client/lanes/vendor/bootstrap/modal.js +0 -324
- data/client/lanes/vendor/bootstrap/popover.js +0 -119
- data/client/lanes/vendor/bootstrap/scrollspy.js +0 -175
- data/client/lanes/vendor/bootstrap/tab.js +0 -153
- data/client/lanes/vendor/bootstrap/tooltip.js +0 -478
- data/client/lanes/vendor/bootstrap/transition.js +0 -59
- data/client/lanes/vendor/message-bus.js +0 -285
- data/client/lanes/vendor/modern-stack.js +0 -27
- data/client/lanes/vendor/packaged.js +0 -19533
- data/client/lanes/views/Assets.coffee +0 -9
- data/client/lanes/views/Base.coffee +0 -426
- data/client/lanes/views/Functions.coffee +0 -13
- data/client/lanes/views/Helpers.coffee +0 -76
- data/client/lanes/views/Keys.coffee +0 -59
- data/client/lanes/views/RenderContext.coffee +0 -32
- data/client/lanes/views/SaveNotify.coffee +0 -32
- data/client/lanes/views/Viewport.coffee +0 -18
- data/client/lanes/views/_button.html +0 -3
- data/client/lanes/views/_toolbar.html +0 -23
- data/client/lanes/views/empty-span.html +0 -1
- data/client/lanes/views/index.js +0 -2
- data/client/lanes/views/model-update.html +0 -15
- data/client/lanes/workspace/ActiveScreensSwitcher.coffee +0 -112
- data/client/lanes/workspace/Layout.coffee +0 -29
- data/client/lanes/workspace/Navbar.coffee +0 -31
- data/client/lanes/workspace/Pages.coffee +0 -39
- data/client/lanes/workspace/ScreensMenu.coffee +0 -126
- data/client/lanes/workspace/WorkspaceView.coffee +0 -8
- data/client/lanes/workspace/layout.html +0 -4
- data/client/lanes/workspace/menu.html +0 -356
- data/client/lanes/workspace/menu_toggle.html +0 -9
- data/client/lanes/workspace/navbar.html +0 -17
- data/client/lanes/workspace/pages.html +0 -6
- data/client/lanes/workspace/screens-menu.html +0 -11
- data/client/lanes/workspace/screens-switcher.html +0 -7
- data/docs/view.md +0 -292
- data/lib/lanes/command/generate_view.rb +0 -38
- data/lib/lanes/command/generate_view.usage +0 -13
- data/spec/command-reference-files/initial/client/appy-app/Router.coffee +0 -4
- data/spec/command-reference-files/initial/client/appy-app/controllers/.gitkeep +0 -0
- data/spec/command-reference-files/initial/client/appy-app/views/.gitkeep +0 -0
- data/spec/command-reference-files/initial/client/appy-app/views/Base.coffee +0 -5
- data/spec/command-reference-files/initial/spec/appy-app/screens/Base.coffee +0 -5
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.coffee +0 -6
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/layout.html +0 -3
- data/spec/command-reference-files/view/client/appy-app/views/BigView.coffee +0 -10
- data/spec/command-reference-files/view/spec/appy-app/views/BigViewSpec.coffee +0 -5
- data/templates/client/Router.coffee +0 -4
- data/templates/client/components/Component.coffee +0 -1
- data/templates/client/screens/Base.coffee +0 -3
- data/templates/client/screens/Screen.coffee +0 -11
- data/templates/client/screens/layout.html +0 -3
- data/templates/client/views/.gitkeep +0 -0
- data/templates/client/views/BaseView.coffee +0 -5
- data/templates/client/views/View.coffee +0 -10
- data/templates/spec/client/views/ViewSpec.coffee +0 -5
@@ -1,55 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Pager pagination
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
.pager {
|
7
|
-
padding-left: 0;
|
8
|
-
margin: $line-height-computed 0;
|
9
|
-
list-style: none;
|
10
|
-
text-align: center;
|
11
|
-
@include clearfix();
|
12
|
-
li {
|
13
|
-
display: inline;
|
14
|
-
> a,
|
15
|
-
> span {
|
16
|
-
display: inline-block;
|
17
|
-
padding: 5px 14px;
|
18
|
-
background-color: $pager-bg;
|
19
|
-
border: 1px solid $pager-border;
|
20
|
-
border-radius: $pager-border-radius;
|
21
|
-
}
|
22
|
-
|
23
|
-
> a:hover,
|
24
|
-
> a:focus {
|
25
|
-
text-decoration: none;
|
26
|
-
background-color: $pager-hover-bg;
|
27
|
-
}
|
28
|
-
}
|
29
|
-
|
30
|
-
.next {
|
31
|
-
> a,
|
32
|
-
> span {
|
33
|
-
float: right;
|
34
|
-
}
|
35
|
-
}
|
36
|
-
|
37
|
-
.previous {
|
38
|
-
> a,
|
39
|
-
> span {
|
40
|
-
float: left;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
.disabled {
|
45
|
-
> a,
|
46
|
-
> a:hover,
|
47
|
-
> a:focus,
|
48
|
-
> span {
|
49
|
-
color: $pager-disabled-color;
|
50
|
-
background-color: $pager-bg;
|
51
|
-
cursor: not-allowed;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
|
55
|
-
}
|
@@ -1,88 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Pagination (multiple pages)
|
3
|
-
// --------------------------------------------------
|
4
|
-
.pagination {
|
5
|
-
display: inline-block;
|
6
|
-
padding-left: 0;
|
7
|
-
margin: $line-height-computed 0;
|
8
|
-
border-radius: $border-radius-base;
|
9
|
-
|
10
|
-
> li {
|
11
|
-
display: inline; // Remove list-style and block-level defaults
|
12
|
-
> a,
|
13
|
-
> span {
|
14
|
-
position: relative;
|
15
|
-
float: left; // Collapse white-space
|
16
|
-
padding: $padding-base-vertical $padding-base-horizontal;
|
17
|
-
line-height: $line-height-base;
|
18
|
-
text-decoration: none;
|
19
|
-
color: $pagination-color;
|
20
|
-
background-color: $pagination-bg;
|
21
|
-
border: 1px solid $pagination-border;
|
22
|
-
margin-left: -1px;
|
23
|
-
}
|
24
|
-
&:first-child {
|
25
|
-
> a,
|
26
|
-
> span {
|
27
|
-
margin-left: 0;
|
28
|
-
@include border-left-radius($border-radius-base);
|
29
|
-
}
|
30
|
-
}
|
31
|
-
&:last-child {
|
32
|
-
> a,
|
33
|
-
> span {
|
34
|
-
@include border-right-radius($border-radius-base);
|
35
|
-
}
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
> li > a,
|
40
|
-
> li > span {
|
41
|
-
&:hover,
|
42
|
-
&:focus {
|
43
|
-
color: $pagination-hover-color;
|
44
|
-
background-color: $pagination-hover-bg;
|
45
|
-
border-color: $pagination-hover-border;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
|
49
|
-
> .active > a,
|
50
|
-
> .active > span {
|
51
|
-
&,
|
52
|
-
&:hover,
|
53
|
-
&:focus {
|
54
|
-
z-index: 2;
|
55
|
-
color: $pagination-active-color;
|
56
|
-
background-color: $pagination-active-bg;
|
57
|
-
border-color: $pagination-active-border;
|
58
|
-
cursor: default;
|
59
|
-
}
|
60
|
-
}
|
61
|
-
|
62
|
-
> .disabled {
|
63
|
-
> span,
|
64
|
-
> span:hover,
|
65
|
-
> span:focus,
|
66
|
-
> a,
|
67
|
-
> a:hover,
|
68
|
-
> a:focus {
|
69
|
-
color: $pagination-disabled-color;
|
70
|
-
background-color: $pagination-disabled-bg;
|
71
|
-
border-color: $pagination-disabled-border;
|
72
|
-
cursor: not-allowed;
|
73
|
-
}
|
74
|
-
}
|
75
|
-
}
|
76
|
-
|
77
|
-
// Sizing
|
78
|
-
// --------------------------------------------------
|
79
|
-
|
80
|
-
// Large
|
81
|
-
.pagination-lg {
|
82
|
-
@include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
|
83
|
-
}
|
84
|
-
|
85
|
-
// Small
|
86
|
-
.pagination-sm {
|
87
|
-
@include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
|
88
|
-
}
|
@@ -1,243 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Panels
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Base class
|
7
|
-
.panel {
|
8
|
-
margin-bottom: $line-height-computed;
|
9
|
-
background-color: $panel-bg;
|
10
|
-
border: 1px solid transparent;
|
11
|
-
border-radius: $panel-border-radius;
|
12
|
-
@include box-shadow(0 1px 1px rgba(0,0,0,.05));
|
13
|
-
}
|
14
|
-
|
15
|
-
// Panel contents
|
16
|
-
.panel-body {
|
17
|
-
padding: $panel-body-padding;
|
18
|
-
@include clearfix();
|
19
|
-
}
|
20
|
-
|
21
|
-
// Optional heading
|
22
|
-
.panel-heading {
|
23
|
-
padding: $panel-heading-padding;
|
24
|
-
border-bottom: 1px solid transparent;
|
25
|
-
@include border-top-radius(($panel-border-radius - 1));
|
26
|
-
|
27
|
-
> .dropdown .dropdown-toggle {
|
28
|
-
color: inherit;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
// Within heading, strip any `h*` tag of its default margins for spacing.
|
33
|
-
.panel-title {
|
34
|
-
margin-top: 0;
|
35
|
-
margin-bottom: 0;
|
36
|
-
font-size: ceil(($font-size-base * 1.125));
|
37
|
-
color: inherit;
|
38
|
-
|
39
|
-
> a {
|
40
|
-
color: inherit;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
// Optional footer (stays gray in every modifier class)
|
45
|
-
.panel-footer {
|
46
|
-
padding: $panel-footer-padding;
|
47
|
-
background-color: $panel-footer-bg;
|
48
|
-
border-top: 1px solid $panel-inner-border;
|
49
|
-
@include border-bottom-radius(($panel-border-radius - 1));
|
50
|
-
}
|
51
|
-
|
52
|
-
|
53
|
-
// List groups in panels
|
54
|
-
//
|
55
|
-
// By default, space out list group content from panel headings to account for
|
56
|
-
// any kind of custom content between the two.
|
57
|
-
|
58
|
-
.panel {
|
59
|
-
> .list-group {
|
60
|
-
margin-bottom: 0;
|
61
|
-
|
62
|
-
.list-group-item {
|
63
|
-
border-width: 1px 0;
|
64
|
-
border-radius: 0;
|
65
|
-
}
|
66
|
-
|
67
|
-
// Add border top radius for first one
|
68
|
-
&:first-child {
|
69
|
-
.list-group-item:first-child {
|
70
|
-
border-top: 0;
|
71
|
-
@include border-top-radius(($panel-border-radius - 1));
|
72
|
-
}
|
73
|
-
}
|
74
|
-
// Add border bottom radius for last one
|
75
|
-
&:last-child {
|
76
|
-
.list-group-item:last-child {
|
77
|
-
border-bottom: 0;
|
78
|
-
@include border-bottom-radius(($panel-border-radius - 1));
|
79
|
-
}
|
80
|
-
}
|
81
|
-
}
|
82
|
-
}
|
83
|
-
// Collapse space between when there's no additional content.
|
84
|
-
.panel-heading + .list-group {
|
85
|
-
.list-group-item:first-child {
|
86
|
-
border-top-width: 0;
|
87
|
-
}
|
88
|
-
}
|
89
|
-
.list-group + .panel-footer {
|
90
|
-
border-top-width: 0;
|
91
|
-
}
|
92
|
-
|
93
|
-
// Tables in panels
|
94
|
-
//
|
95
|
-
// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
|
96
|
-
// watch it go full width.
|
97
|
-
|
98
|
-
.panel {
|
99
|
-
> .table,
|
100
|
-
> .table-responsive > .table,
|
101
|
-
> .panel-collapse > .table {
|
102
|
-
margin-bottom: 0;
|
103
|
-
}
|
104
|
-
// Add border top radius for first one
|
105
|
-
> .table:first-child,
|
106
|
-
> .table-responsive:first-child > .table:first-child {
|
107
|
-
@include border-top-radius(($panel-border-radius - 1));
|
108
|
-
|
109
|
-
> thead:first-child,
|
110
|
-
> tbody:first-child {
|
111
|
-
> tr:first-child {
|
112
|
-
td:first-child,
|
113
|
-
th:first-child {
|
114
|
-
border-top-left-radius: ($panel-border-radius - 1);
|
115
|
-
}
|
116
|
-
td:last-child,
|
117
|
-
th:last-child {
|
118
|
-
border-top-right-radius: ($panel-border-radius - 1);
|
119
|
-
}
|
120
|
-
}
|
121
|
-
}
|
122
|
-
}
|
123
|
-
// Add border bottom radius for last one
|
124
|
-
> .table:last-child,
|
125
|
-
> .table-responsive:last-child > .table:last-child {
|
126
|
-
@include border-bottom-radius(($panel-border-radius - 1));
|
127
|
-
|
128
|
-
> tbody:last-child,
|
129
|
-
> tfoot:last-child {
|
130
|
-
> tr:last-child {
|
131
|
-
td:first-child,
|
132
|
-
th:first-child {
|
133
|
-
border-bottom-left-radius: ($panel-border-radius - 1);
|
134
|
-
}
|
135
|
-
td:last-child,
|
136
|
-
th:last-child {
|
137
|
-
border-bottom-right-radius: ($panel-border-radius - 1);
|
138
|
-
}
|
139
|
-
}
|
140
|
-
}
|
141
|
-
}
|
142
|
-
> .panel-body + .table,
|
143
|
-
> .panel-body + .table-responsive {
|
144
|
-
border-top: 1px solid $table-border-color;
|
145
|
-
}
|
146
|
-
> .table > tbody:first-child > tr:first-child th,
|
147
|
-
> .table > tbody:first-child > tr:first-child td {
|
148
|
-
border-top: 0;
|
149
|
-
}
|
150
|
-
> .table-bordered,
|
151
|
-
> .table-responsive > .table-bordered {
|
152
|
-
border: 0;
|
153
|
-
> thead,
|
154
|
-
> tbody,
|
155
|
-
> tfoot {
|
156
|
-
> tr {
|
157
|
-
> th:first-child,
|
158
|
-
> td:first-child {
|
159
|
-
border-left: 0;
|
160
|
-
}
|
161
|
-
> th:last-child,
|
162
|
-
> td:last-child {
|
163
|
-
border-right: 0;
|
164
|
-
}
|
165
|
-
}
|
166
|
-
}
|
167
|
-
> thead,
|
168
|
-
> tbody {
|
169
|
-
> tr:first-child {
|
170
|
-
> td,
|
171
|
-
> th {
|
172
|
-
border-bottom: 0;
|
173
|
-
}
|
174
|
-
}
|
175
|
-
}
|
176
|
-
> tbody,
|
177
|
-
> tfoot {
|
178
|
-
> tr:last-child {
|
179
|
-
> td,
|
180
|
-
> th {
|
181
|
-
border-bottom: 0;
|
182
|
-
}
|
183
|
-
}
|
184
|
-
}
|
185
|
-
}
|
186
|
-
> .table-responsive {
|
187
|
-
border: 0;
|
188
|
-
margin-bottom: 0;
|
189
|
-
}
|
190
|
-
}
|
191
|
-
|
192
|
-
|
193
|
-
// Collapsable panels (aka, accordion)
|
194
|
-
//
|
195
|
-
// Wrap a series of panels in `.panel-group` to turn them into an accordion with
|
196
|
-
// the help of our collapse JavaScript plugin.
|
197
|
-
|
198
|
-
.panel-group {
|
199
|
-
margin-bottom: $line-height-computed;
|
200
|
-
|
201
|
-
// Tighten up margin so it's only between panels
|
202
|
-
.panel {
|
203
|
-
margin-bottom: 0;
|
204
|
-
border-radius: $panel-border-radius;
|
205
|
-
+ .panel {
|
206
|
-
margin-top: 5px;
|
207
|
-
}
|
208
|
-
}
|
209
|
-
|
210
|
-
.panel-heading {
|
211
|
-
border-bottom: 0;
|
212
|
-
+ .panel-collapse > .panel-body {
|
213
|
-
border-top: 1px solid $panel-inner-border;
|
214
|
-
}
|
215
|
-
}
|
216
|
-
.panel-footer {
|
217
|
-
border-top: 0;
|
218
|
-
+ .panel-collapse .panel-body {
|
219
|
-
border-bottom: 1px solid $panel-inner-border;
|
220
|
-
}
|
221
|
-
}
|
222
|
-
}
|
223
|
-
|
224
|
-
|
225
|
-
// Contextual variations
|
226
|
-
.panel-default {
|
227
|
-
@include panel-variant($panel-default-border, $panel-default-text, $panel-default-heading-bg, $panel-default-border);
|
228
|
-
}
|
229
|
-
.panel-primary {
|
230
|
-
@include panel-variant($panel-primary-border, $panel-primary-text, $panel-primary-heading-bg, $panel-primary-border);
|
231
|
-
}
|
232
|
-
.panel-success {
|
233
|
-
@include panel-variant($panel-success-border, $panel-success-text, $panel-success-heading-bg, $panel-success-border);
|
234
|
-
}
|
235
|
-
.panel-info {
|
236
|
-
@include panel-variant($panel-info-border, $panel-info-text, $panel-info-heading-bg, $panel-info-border);
|
237
|
-
}
|
238
|
-
.panel-warning {
|
239
|
-
@include panel-variant($panel-warning-border, $panel-warning-text, $panel-warning-heading-bg, $panel-warning-border);
|
240
|
-
}
|
241
|
-
.panel-danger {
|
242
|
-
@include panel-variant($panel-danger-border, $panel-danger-text, $panel-danger-heading-bg, $panel-danger-border);
|
243
|
-
}
|
@@ -1,133 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Popovers
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
.popover {
|
7
|
-
position: absolute;
|
8
|
-
top: 0;
|
9
|
-
left: 0;
|
10
|
-
z-index: $zindex-popover;
|
11
|
-
display: none;
|
12
|
-
max-width: $popover-max-width;
|
13
|
-
padding: 1px;
|
14
|
-
text-align: left; // Reset given new insertion method
|
15
|
-
background-color: $popover-bg;
|
16
|
-
background-clip: padding-box;
|
17
|
-
border: 1px solid $popover-fallback-border-color;
|
18
|
-
border: 1px solid $popover-border-color;
|
19
|
-
border-radius: $border-radius-large;
|
20
|
-
@include box-shadow(0 5px 10px rgba(0,0,0,.2));
|
21
|
-
|
22
|
-
// Overrides for proper insertion
|
23
|
-
white-space: normal;
|
24
|
-
|
25
|
-
// Offset the popover to account for the popover arrow
|
26
|
-
&.top { margin-top: -$popover-arrow-width; }
|
27
|
-
&.right { margin-left: $popover-arrow-width; }
|
28
|
-
&.bottom { margin-top: $popover-arrow-width; }
|
29
|
-
&.left { margin-left: -$popover-arrow-width; }
|
30
|
-
}
|
31
|
-
|
32
|
-
.popover-title {
|
33
|
-
margin: 0; // reset heading margin
|
34
|
-
padding: 8px 14px;
|
35
|
-
font-size: $font-size-base;
|
36
|
-
font-weight: normal;
|
37
|
-
line-height: 18px;
|
38
|
-
background-color: $popover-title-bg;
|
39
|
-
border-bottom: 1px solid darken($popover-title-bg, 5%);
|
40
|
-
border-radius: ($border-radius-large - 1) ($border-radius-large - 1) 0 0;
|
41
|
-
}
|
42
|
-
|
43
|
-
.popover-content {
|
44
|
-
padding: 9px 14px;
|
45
|
-
}
|
46
|
-
|
47
|
-
// Arrows
|
48
|
-
//
|
49
|
-
// .arrow is outer, .arrow:after is inner
|
50
|
-
|
51
|
-
.popover > .arrow {
|
52
|
-
&,
|
53
|
-
&:after {
|
54
|
-
position: absolute;
|
55
|
-
display: block;
|
56
|
-
width: 0;
|
57
|
-
height: 0;
|
58
|
-
border-color: transparent;
|
59
|
-
border-style: solid;
|
60
|
-
}
|
61
|
-
}
|
62
|
-
.popover > .arrow {
|
63
|
-
border-width: $popover-arrow-outer-width;
|
64
|
-
}
|
65
|
-
.popover > .arrow:after {
|
66
|
-
border-width: $popover-arrow-width;
|
67
|
-
content: "";
|
68
|
-
}
|
69
|
-
|
70
|
-
.popover {
|
71
|
-
&.top > .arrow {
|
72
|
-
left: 50%;
|
73
|
-
margin-left: -$popover-arrow-outer-width;
|
74
|
-
border-bottom-width: 0;
|
75
|
-
border-top-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
76
|
-
border-top-color: $popover-arrow-outer-color;
|
77
|
-
bottom: -$popover-arrow-outer-width;
|
78
|
-
&:after {
|
79
|
-
content: " ";
|
80
|
-
bottom: 1px;
|
81
|
-
margin-left: -$popover-arrow-width;
|
82
|
-
border-bottom-width: 0;
|
83
|
-
border-top-color: $popover-arrow-color;
|
84
|
-
}
|
85
|
-
}
|
86
|
-
&.right > .arrow {
|
87
|
-
top: 50%;
|
88
|
-
left: -$popover-arrow-outer-width;
|
89
|
-
margin-top: -$popover-arrow-outer-width;
|
90
|
-
border-left-width: 0;
|
91
|
-
border-right-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
92
|
-
border-right-color: $popover-arrow-outer-color;
|
93
|
-
&:after {
|
94
|
-
content: " ";
|
95
|
-
left: 1px;
|
96
|
-
bottom: -$popover-arrow-width;
|
97
|
-
border-left-width: 0;
|
98
|
-
border-right-color: $popover-arrow-color;
|
99
|
-
}
|
100
|
-
}
|
101
|
-
&.bottom > .arrow {
|
102
|
-
left: 50%;
|
103
|
-
margin-left: -$popover-arrow-outer-width;
|
104
|
-
border-top-width: 0;
|
105
|
-
border-bottom-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
106
|
-
border-bottom-color: $popover-arrow-outer-color;
|
107
|
-
top: -$popover-arrow-outer-width;
|
108
|
-
&:after {
|
109
|
-
content: " ";
|
110
|
-
top: 1px;
|
111
|
-
margin-left: -$popover-arrow-width;
|
112
|
-
border-top-width: 0;
|
113
|
-
border-bottom-color: $popover-arrow-color;
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
&.left > .arrow {
|
118
|
-
top: 50%;
|
119
|
-
right: -$popover-arrow-outer-width;
|
120
|
-
margin-top: -$popover-arrow-outer-width;
|
121
|
-
border-right-width: 0;
|
122
|
-
border-left-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
123
|
-
border-left-color: $popover-arrow-outer-color;
|
124
|
-
&:after {
|
125
|
-
content: " ";
|
126
|
-
right: 1px;
|
127
|
-
border-right-width: 0;
|
128
|
-
border-left-color: $popover-arrow-color;
|
129
|
-
bottom: -$popover-arrow-width;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
}
|