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,538 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Forms
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Normalize non-controls
|
7
|
-
//
|
8
|
-
// Restyle and baseline non-control form elements.
|
9
|
-
|
10
|
-
fieldset {
|
11
|
-
padding: 0;
|
12
|
-
margin: 0;
|
13
|
-
border: 0;
|
14
|
-
// Chrome and Firefox set a `min-width: min-content;` on fieldsets,
|
15
|
-
// so we reset that to ensure it behaves more like a standard block element.
|
16
|
-
// See https://github.com/twbs/bootstrap/issues/12359.
|
17
|
-
min-width: 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
legend {
|
21
|
-
display: block;
|
22
|
-
width: 100%;
|
23
|
-
padding: 0;
|
24
|
-
margin-bottom: $line-height-computed;
|
25
|
-
font-size: ($font-size-base * 1.5);
|
26
|
-
line-height: inherit;
|
27
|
-
color: $legend-color;
|
28
|
-
border: 0;
|
29
|
-
border-bottom: 1px solid $legend-border-color;
|
30
|
-
}
|
31
|
-
|
32
|
-
label {
|
33
|
-
display: inline-block;
|
34
|
-
max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
|
35
|
-
margin-bottom: 5px;
|
36
|
-
font-weight: bold;
|
37
|
-
}
|
38
|
-
|
39
|
-
|
40
|
-
// Normalize form controls
|
41
|
-
//
|
42
|
-
// While most of our form styles require extra classes, some basic normalization
|
43
|
-
// is required to ensure optimum display with or without those classes to better
|
44
|
-
// address browser inconsistencies.
|
45
|
-
|
46
|
-
// Override content-box in Normalize (* isn't specific enough)
|
47
|
-
input[type="search"] {
|
48
|
-
@include box-sizing(border-box);
|
49
|
-
}
|
50
|
-
|
51
|
-
// Position radios and checkboxes better
|
52
|
-
input[type="radio"],
|
53
|
-
input[type="checkbox"] {
|
54
|
-
margin: 4px 0 0;
|
55
|
-
margin-top: 1px \9; // IE8-9
|
56
|
-
line-height: normal;
|
57
|
-
}
|
58
|
-
|
59
|
-
// Set the height of file controls to match text inputs
|
60
|
-
input[type="file"] {
|
61
|
-
display: block;
|
62
|
-
}
|
63
|
-
|
64
|
-
// Make range inputs behave like textual form controls
|
65
|
-
input[type="range"] {
|
66
|
-
display: block;
|
67
|
-
width: 100%;
|
68
|
-
}
|
69
|
-
|
70
|
-
// Make multiple select elements height not fixed
|
71
|
-
select[multiple],
|
72
|
-
select[size] {
|
73
|
-
height: auto;
|
74
|
-
}
|
75
|
-
|
76
|
-
// Focus for file, radio, and checkbox
|
77
|
-
input[type="file"]:focus,
|
78
|
-
input[type="radio"]:focus,
|
79
|
-
input[type="checkbox"]:focus {
|
80
|
-
@include tab-focus();
|
81
|
-
}
|
82
|
-
|
83
|
-
// Adjust output element
|
84
|
-
output {
|
85
|
-
display: block;
|
86
|
-
padding-top: ($padding-base-vertical + 1);
|
87
|
-
font-size: $font-size-base;
|
88
|
-
line-height: $line-height-base;
|
89
|
-
color: $input-color;
|
90
|
-
}
|
91
|
-
|
92
|
-
|
93
|
-
// Common form controls
|
94
|
-
//
|
95
|
-
// Shared size and type resets for form controls. Apply `.form-control` to any
|
96
|
-
// of the following form controls:
|
97
|
-
//
|
98
|
-
// select
|
99
|
-
// textarea
|
100
|
-
// input[type="text"]
|
101
|
-
// input[type="password"]
|
102
|
-
// input[type="datetime"]
|
103
|
-
// input[type="datetime-local"]
|
104
|
-
// input[type="date"]
|
105
|
-
// input[type="month"]
|
106
|
-
// input[type="time"]
|
107
|
-
// input[type="week"]
|
108
|
-
// input[type="number"]
|
109
|
-
// input[type="email"]
|
110
|
-
// input[type="url"]
|
111
|
-
// input[type="search"]
|
112
|
-
// input[type="tel"]
|
113
|
-
// input[type="color"]
|
114
|
-
|
115
|
-
.form-control {
|
116
|
-
display: block;
|
117
|
-
width: 100%;
|
118
|
-
height: $input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
119
|
-
padding: $padding-base-vertical $padding-base-horizontal;
|
120
|
-
font-size: $font-size-base;
|
121
|
-
line-height: $line-height-base;
|
122
|
-
color: $input-color;
|
123
|
-
background-color: $input-bg;
|
124
|
-
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
125
|
-
border: 1px solid $input-border;
|
126
|
-
border-radius: $input-border-radius;
|
127
|
-
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
128
|
-
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
|
129
|
-
|
130
|
-
// Customize the `:focus` state to imitate native WebKit styles.
|
131
|
-
@include form-control-focus();
|
132
|
-
|
133
|
-
// Placeholder
|
134
|
-
@include placeholder();
|
135
|
-
|
136
|
-
// Disabled and read-only inputs
|
137
|
-
//
|
138
|
-
// HTML5 says that controls under a fieldset > legend:first-child won't be
|
139
|
-
// disabled if the fieldset is disabled. Due to implementation difficulty, we
|
140
|
-
// don't honor that edge case; we style them as disabled anyway.
|
141
|
-
&[disabled],
|
142
|
-
&[readonly],
|
143
|
-
fieldset[disabled] & {
|
144
|
-
cursor: not-allowed;
|
145
|
-
background-color: $input-bg-disabled;
|
146
|
-
opacity: 1; // iOS fix for unreadable disabled content
|
147
|
-
}
|
148
|
-
|
149
|
-
// [converter] extracted textarea& to textarea.form-control
|
150
|
-
}
|
151
|
-
|
152
|
-
// Reset height for `textarea`s
|
153
|
-
textarea.form-control {
|
154
|
-
height: auto;
|
155
|
-
}
|
156
|
-
|
157
|
-
|
158
|
-
// Search inputs in iOS
|
159
|
-
//
|
160
|
-
// This overrides the extra rounded corners on search inputs in iOS so that our
|
161
|
-
// `.form-control` class can properly style them. Note that this cannot simply
|
162
|
-
// be added to `.form-control` as it's not specific enough. For details, see
|
163
|
-
// https://github.com/twbs/bootstrap/issues/11586.
|
164
|
-
|
165
|
-
input[type="search"] {
|
166
|
-
-webkit-appearance: none;
|
167
|
-
}
|
168
|
-
|
169
|
-
|
170
|
-
// Special styles for iOS temporal inputs
|
171
|
-
//
|
172
|
-
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
173
|
-
// text within the input to become vertically misaligned.
|
174
|
-
// As a workaround, we set a pixel line-height that matches the
|
175
|
-
// given height of the input. Since this fucks up everything else, we have to
|
176
|
-
// appropriately reset it for Internet Explorer and the size variations.
|
177
|
-
|
178
|
-
input[type="date"],
|
179
|
-
input[type="time"],
|
180
|
-
input[type="datetime-local"],
|
181
|
-
input[type="month"] {
|
182
|
-
line-height: $input-height-base;
|
183
|
-
// IE8+ misaligns the text within date inputs, so we reset
|
184
|
-
line-height: $line-height-base #{\0};
|
185
|
-
|
186
|
-
&.input-sm {
|
187
|
-
line-height: $input-height-small;
|
188
|
-
}
|
189
|
-
&.input-lg {
|
190
|
-
line-height: $input-height-large;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
|
194
|
-
|
195
|
-
// Form groups
|
196
|
-
//
|
197
|
-
// Designed to help with the organization and spacing of vertical forms. For
|
198
|
-
// horizontal forms, use the predefined grid classes.
|
199
|
-
|
200
|
-
.form-group {
|
201
|
-
margin-bottom: 15px;
|
202
|
-
}
|
203
|
-
|
204
|
-
|
205
|
-
// Checkboxes and radios
|
206
|
-
//
|
207
|
-
// Indent the labels to position radios/checkboxes as hanging controls.
|
208
|
-
|
209
|
-
.radio,
|
210
|
-
.checkbox {
|
211
|
-
position: relative;
|
212
|
-
display: block;
|
213
|
-
min-height: $line-height-computed; // clear the floating input if there is no label text
|
214
|
-
margin-top: 10px;
|
215
|
-
margin-bottom: 10px;
|
216
|
-
|
217
|
-
label {
|
218
|
-
padding-left: 20px;
|
219
|
-
margin-bottom: 0;
|
220
|
-
font-weight: normal;
|
221
|
-
cursor: pointer;
|
222
|
-
}
|
223
|
-
}
|
224
|
-
.radio input[type="radio"],
|
225
|
-
.radio-inline input[type="radio"],
|
226
|
-
.checkbox input[type="checkbox"],
|
227
|
-
.checkbox-inline input[type="checkbox"] {
|
228
|
-
position: absolute;
|
229
|
-
margin-left: -20px;
|
230
|
-
margin-top: 4px \9;
|
231
|
-
}
|
232
|
-
|
233
|
-
.radio + .radio,
|
234
|
-
.checkbox + .checkbox {
|
235
|
-
margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
|
236
|
-
}
|
237
|
-
|
238
|
-
// Radios and checkboxes on same line
|
239
|
-
.radio-inline,
|
240
|
-
.checkbox-inline {
|
241
|
-
display: inline-block;
|
242
|
-
padding-left: 20px;
|
243
|
-
margin-bottom: 0;
|
244
|
-
vertical-align: middle;
|
245
|
-
font-weight: normal;
|
246
|
-
cursor: pointer;
|
247
|
-
}
|
248
|
-
.radio-inline + .radio-inline,
|
249
|
-
.checkbox-inline + .checkbox-inline {
|
250
|
-
margin-top: 0;
|
251
|
-
margin-left: 10px; // space out consecutive inline controls
|
252
|
-
}
|
253
|
-
|
254
|
-
// Apply same disabled cursor tweak as for inputs
|
255
|
-
// Some special care is needed because <label>s don't inherit their parent's `cursor`.
|
256
|
-
//
|
257
|
-
// Note: Neither radios nor checkboxes can be readonly.
|
258
|
-
input[type="radio"],
|
259
|
-
input[type="checkbox"] {
|
260
|
-
&[disabled],
|
261
|
-
&.disabled,
|
262
|
-
fieldset[disabled] & {
|
263
|
-
cursor: not-allowed;
|
264
|
-
}
|
265
|
-
}
|
266
|
-
// These classes are used directly on <label>s
|
267
|
-
.radio-inline,
|
268
|
-
.checkbox-inline {
|
269
|
-
&.disabled,
|
270
|
-
fieldset[disabled] & {
|
271
|
-
cursor: not-allowed;
|
272
|
-
}
|
273
|
-
}
|
274
|
-
// These classes are used on elements with <label> descendants
|
275
|
-
.radio,
|
276
|
-
.checkbox {
|
277
|
-
&.disabled,
|
278
|
-
fieldset[disabled] & {
|
279
|
-
label {
|
280
|
-
cursor: not-allowed;
|
281
|
-
}
|
282
|
-
}
|
283
|
-
}
|
284
|
-
|
285
|
-
|
286
|
-
// Static form control text
|
287
|
-
//
|
288
|
-
// Apply class to a `p` element to make any string of text align with labels in
|
289
|
-
// a horizontal form layout.
|
290
|
-
|
291
|
-
.form-control-static {
|
292
|
-
// Size it appropriately next to real form controls
|
293
|
-
padding-top: ($padding-base-vertical + 1);
|
294
|
-
padding-bottom: ($padding-base-vertical + 1);
|
295
|
-
// Remove default margin from `p`
|
296
|
-
margin-bottom: 0;
|
297
|
-
|
298
|
-
&.input-lg,
|
299
|
-
&.input-sm {
|
300
|
-
padding-left: 0;
|
301
|
-
padding-right: 0;
|
302
|
-
}
|
303
|
-
}
|
304
|
-
|
305
|
-
|
306
|
-
// Form control sizing
|
307
|
-
//
|
308
|
-
// Build on `.form-control` with modifier classes to decrease or increase the
|
309
|
-
// height and font-size of form controls.
|
310
|
-
|
311
|
-
@include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
312
|
-
|
313
|
-
@include input-size('.input-lg', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large);
|
314
|
-
|
315
|
-
|
316
|
-
// Form control feedback states
|
317
|
-
//
|
318
|
-
// Apply contextual and semantic states to individual form controls.
|
319
|
-
|
320
|
-
.has-feedback {
|
321
|
-
// Enable absolute positioning
|
322
|
-
position: relative;
|
323
|
-
|
324
|
-
// Ensure icons don't overlap text
|
325
|
-
.form-control {
|
326
|
-
padding-right: ($input-height-base * 1.25);
|
327
|
-
}
|
328
|
-
}
|
329
|
-
// Feedback icon (requires .glyphicon classes)
|
330
|
-
.form-control-feedback {
|
331
|
-
position: absolute;
|
332
|
-
top: ($line-height-computed + 5); // Height of the `label` and its margin
|
333
|
-
right: 0;
|
334
|
-
z-index: 2; // Ensure icon is above input groups
|
335
|
-
display: block;
|
336
|
-
width: $input-height-base;
|
337
|
-
height: $input-height-base;
|
338
|
-
line-height: $input-height-base;
|
339
|
-
text-align: center;
|
340
|
-
}
|
341
|
-
.input-lg + .form-control-feedback {
|
342
|
-
width: $input-height-large;
|
343
|
-
height: $input-height-large;
|
344
|
-
line-height: $input-height-large;
|
345
|
-
}
|
346
|
-
.input-sm + .form-control-feedback {
|
347
|
-
width: $input-height-small;
|
348
|
-
height: $input-height-small;
|
349
|
-
line-height: $input-height-small;
|
350
|
-
}
|
351
|
-
|
352
|
-
// Feedback states
|
353
|
-
.has-success {
|
354
|
-
@include form-control-validation($state-success-text, $state-success-text, $state-success-bg);
|
355
|
-
}
|
356
|
-
.has-warning {
|
357
|
-
@include form-control-validation($state-warning-text, $state-warning-text, $state-warning-bg);
|
358
|
-
}
|
359
|
-
.has-error {
|
360
|
-
@include form-control-validation($state-danger-text, $state-danger-text, $state-danger-bg);
|
361
|
-
}
|
362
|
-
|
363
|
-
|
364
|
-
// Reposition feedback icon if label is hidden with "screenreader only" state
|
365
|
-
.has-feedback label.sr-only ~ .form-control-feedback {
|
366
|
-
top: 0;
|
367
|
-
}
|
368
|
-
|
369
|
-
|
370
|
-
// Help text
|
371
|
-
//
|
372
|
-
// Apply to any element you wish to create light text for placement immediately
|
373
|
-
// below a form control. Use for general help, formatting, or instructional text.
|
374
|
-
|
375
|
-
.help-block {
|
376
|
-
display: block; // account for any element using help-block
|
377
|
-
margin-top: 5px;
|
378
|
-
margin-bottom: 10px;
|
379
|
-
color: lighten($text-color, 25%); // lighten the text some for contrast
|
380
|
-
}
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
// Inline forms
|
385
|
-
//
|
386
|
-
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
387
|
-
// forms begin stacked on extra small (mobile) devices and then go inline when
|
388
|
-
// viewports reach <768px.
|
389
|
-
//
|
390
|
-
// Requires wrapping inputs and labels with `.form-group` for proper display of
|
391
|
-
// default HTML form controls and our custom form controls (e.g., input groups).
|
392
|
-
//
|
393
|
-
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
|
394
|
-
|
395
|
-
.form-inline {
|
396
|
-
|
397
|
-
// Kick in the inline
|
398
|
-
@media (min-width: $screen-sm-min) {
|
399
|
-
// Inline-block all the things for "inline"
|
400
|
-
.form-group {
|
401
|
-
display: inline-block;
|
402
|
-
margin-bottom: 0;
|
403
|
-
vertical-align: middle;
|
404
|
-
}
|
405
|
-
|
406
|
-
// In navbar-form, allow folks to *not* use `.form-group`
|
407
|
-
.form-control {
|
408
|
-
display: inline-block;
|
409
|
-
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
410
|
-
vertical-align: middle;
|
411
|
-
}
|
412
|
-
|
413
|
-
.input-group {
|
414
|
-
display: inline-table;
|
415
|
-
vertical-align: middle;
|
416
|
-
|
417
|
-
.input-group-addon,
|
418
|
-
.input-group-btn,
|
419
|
-
.form-control {
|
420
|
-
width: auto;
|
421
|
-
}
|
422
|
-
}
|
423
|
-
|
424
|
-
// Input groups need that 100% width though
|
425
|
-
.input-group > .form-control {
|
426
|
-
width: 100%;
|
427
|
-
}
|
428
|
-
|
429
|
-
.control-label {
|
430
|
-
margin-bottom: 0;
|
431
|
-
vertical-align: middle;
|
432
|
-
}
|
433
|
-
|
434
|
-
// Remove default margin on radios/checkboxes that were used for stacking, and
|
435
|
-
// then undo the floating of radios and checkboxes to match (which also avoids
|
436
|
-
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
437
|
-
.radio,
|
438
|
-
.checkbox {
|
439
|
-
display: inline-block;
|
440
|
-
margin-top: 0;
|
441
|
-
margin-bottom: 0;
|
442
|
-
vertical-align: middle;
|
443
|
-
|
444
|
-
label {
|
445
|
-
padding-left: 0;
|
446
|
-
}
|
447
|
-
}
|
448
|
-
.radio input[type="radio"],
|
449
|
-
.checkbox input[type="checkbox"] {
|
450
|
-
position: relative;
|
451
|
-
margin-left: 0;
|
452
|
-
}
|
453
|
-
|
454
|
-
// Validation states
|
455
|
-
//
|
456
|
-
// Reposition the icon because it's now within a grid column and columns have
|
457
|
-
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
458
|
-
.has-feedback .form-control-feedback {
|
459
|
-
top: 0;
|
460
|
-
}
|
461
|
-
}
|
462
|
-
}
|
463
|
-
|
464
|
-
|
465
|
-
// Horizontal forms
|
466
|
-
//
|
467
|
-
// Horizontal forms are built on grid classes and allow you to create forms with
|
468
|
-
// labels on the left and inputs on the right.
|
469
|
-
|
470
|
-
.form-horizontal {
|
471
|
-
|
472
|
-
// Consistent vertical alignment of radios and checkboxes
|
473
|
-
//
|
474
|
-
// Labels also get some reset styles, but that is scoped to a media query below.
|
475
|
-
.radio,
|
476
|
-
.checkbox,
|
477
|
-
.radio-inline,
|
478
|
-
.checkbox-inline {
|
479
|
-
margin-top: 0;
|
480
|
-
margin-bottom: 0;
|
481
|
-
padding-top: ($padding-base-vertical + 1); // Default padding plus a border
|
482
|
-
}
|
483
|
-
// Account for padding we're adding to ensure the alignment and of help text
|
484
|
-
// and other content below items
|
485
|
-
.radio,
|
486
|
-
.checkbox {
|
487
|
-
min-height: ($line-height-computed + ($padding-base-vertical + 1));
|
488
|
-
}
|
489
|
-
|
490
|
-
// Make form groups behave like rows
|
491
|
-
.form-group {
|
492
|
-
@include make-row();
|
493
|
-
}
|
494
|
-
|
495
|
-
// Reset spacing and right align labels, but scope to media queries so that
|
496
|
-
// labels on narrow viewports stack the same as a default form example.
|
497
|
-
@media (min-width: $screen-sm-min) {
|
498
|
-
.control-label {
|
499
|
-
text-align: right;
|
500
|
-
margin-bottom: 0;
|
501
|
-
padding-top: ($padding-base-vertical + 1); // Default padding plus a border
|
502
|
-
}
|
503
|
-
}
|
504
|
-
|
505
|
-
// Validation states
|
506
|
-
//
|
507
|
-
// Reposition the icon because it's now within a grid column and columns have
|
508
|
-
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
509
|
-
.has-feedback .form-control-feedback {
|
510
|
-
top: 0;
|
511
|
-
right: ($grid-gutter-width / 2);
|
512
|
-
}
|
513
|
-
|
514
|
-
// Form group sizes
|
515
|
-
//
|
516
|
-
// Quick utility class for applying `.input-lg` and `.input-sm` styles to the
|
517
|
-
// inputs and labels within a `.form-group`.
|
518
|
-
.form-group-lg {
|
519
|
-
@media (min-width: $screen-sm-min) {
|
520
|
-
.control-label {
|
521
|
-
padding-top: (($padding-large-vertical * $line-height-large) + 1);
|
522
|
-
}
|
523
|
-
}
|
524
|
-
.form-control {
|
525
|
-
@extend .input-lg;
|
526
|
-
}
|
527
|
-
}
|
528
|
-
.form-group-sm {
|
529
|
-
@media (min-width: $screen-sm-min) {
|
530
|
-
.control-label {
|
531
|
-
padding-top: ($padding-small-vertical + 1);
|
532
|
-
}
|
533
|
-
}
|
534
|
-
.form-control {
|
535
|
-
@extend .input-sm;
|
536
|
-
}
|
537
|
-
}
|
538
|
-
}
|