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,850 +0,0 @@
|
|
1
|
-
// a flag to toggle asset pipeline / compass integration
|
2
|
-
// defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
|
3
|
-
// in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
|
4
|
-
$bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
|
5
|
-
//
|
6
|
-
// Variables
|
7
|
-
// --------------------------------------------------
|
8
|
-
|
9
|
-
|
10
|
-
//== Colors
|
11
|
-
//
|
12
|
-
//## Gray and brand colors for use across Bootstrap.
|
13
|
-
|
14
|
-
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
15
|
-
$gray-dark: lighten(#000, 20%) !default; // #333
|
16
|
-
$gray: lighten(#000, 33.5%) !default; // #555
|
17
|
-
$gray-light: lighten(#000, 46.7%) !default; // #777
|
18
|
-
$gray-lighter: lighten(#000, 93.5%) !default; // #eee
|
19
|
-
|
20
|
-
$brand-primary: #428bca !default;
|
21
|
-
$brand-success: #5cb85c !default;
|
22
|
-
$brand-info: #5bc0de !default;
|
23
|
-
$brand-warning: #f0ad4e !default;
|
24
|
-
$brand-danger: #d9534f !default;
|
25
|
-
|
26
|
-
|
27
|
-
//== Scaffolding
|
28
|
-
//
|
29
|
-
//## Settings for some of the most global styles.
|
30
|
-
|
31
|
-
//** Background color for `<body>`.
|
32
|
-
$body-bg: #fff !default;
|
33
|
-
//** Global text color on `<body>`.
|
34
|
-
$text-color: $gray-dark !default;
|
35
|
-
|
36
|
-
//** Global textual link color.
|
37
|
-
$link-color: $brand-primary !default;
|
38
|
-
//** Link hover color set via `darken()` function.
|
39
|
-
$link-hover-color: darken($link-color, 15%) !default;
|
40
|
-
|
41
|
-
|
42
|
-
//== Typography
|
43
|
-
//
|
44
|
-
//## Font, line-height, and color for body text, headings, and more.
|
45
|
-
|
46
|
-
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
47
|
-
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
|
48
|
-
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
49
|
-
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
50
|
-
$font-family-base: $font-family-sans-serif !default;
|
51
|
-
|
52
|
-
$font-size-base: 14px !default;
|
53
|
-
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
|
54
|
-
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
|
55
|
-
|
56
|
-
$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
|
57
|
-
$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
|
58
|
-
$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
|
59
|
-
$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
|
60
|
-
$font-size-h5: $font-size-base !default;
|
61
|
-
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
|
62
|
-
|
63
|
-
//** Unit-less `line-height` for use in components like buttons.
|
64
|
-
$line-height-base: 1.428571429 !default; // 20/14
|
65
|
-
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
66
|
-
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
|
67
|
-
|
68
|
-
//** By default, this inherits from the `<body>`.
|
69
|
-
$headings-font-family: inherit !default;
|
70
|
-
$headings-font-weight: 500 !default;
|
71
|
-
$headings-line-height: 1.1 !default;
|
72
|
-
$headings-color: inherit !default;
|
73
|
-
|
74
|
-
|
75
|
-
//== Iconography
|
76
|
-
//
|
77
|
-
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
78
|
-
|
79
|
-
//** Load fonts from this directory.
|
80
|
-
$icon-font-path: "bootstrap/" !default;
|
81
|
-
//** File name for all font files.
|
82
|
-
$icon-font-name: "glyphicons-halflings-regular" !default;
|
83
|
-
//** Element ID within SVG icon file.
|
84
|
-
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
85
|
-
|
86
|
-
|
87
|
-
//== Components
|
88
|
-
//
|
89
|
-
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
90
|
-
|
91
|
-
$padding-base-vertical: 6px !default;
|
92
|
-
$padding-base-horizontal: 12px !default;
|
93
|
-
|
94
|
-
$padding-large-vertical: 10px !default;
|
95
|
-
$padding-large-horizontal: 16px !default;
|
96
|
-
|
97
|
-
$padding-small-vertical: 5px !default;
|
98
|
-
$padding-small-horizontal: 10px !default;
|
99
|
-
|
100
|
-
$padding-xs-vertical: 1px !default;
|
101
|
-
$padding-xs-horizontal: 5px !default;
|
102
|
-
|
103
|
-
$line-height-large: 1.33 !default;
|
104
|
-
$line-height-small: 1.5 !default;
|
105
|
-
|
106
|
-
$border-radius-base: 4px !default;
|
107
|
-
$border-radius-large: 6px !default;
|
108
|
-
$border-radius-small: 3px !default;
|
109
|
-
|
110
|
-
//** Global color for active items (e.g., navs or dropdowns).
|
111
|
-
$component-active-color: #fff !default;
|
112
|
-
//** Global background color for active items (e.g., navs or dropdowns).
|
113
|
-
$component-active-bg: $brand-primary !default;
|
114
|
-
|
115
|
-
//** Width of the `border` for generating carets that indicator dropdowns.
|
116
|
-
$caret-width-base: 4px !default;
|
117
|
-
//** Carets increase slightly in size for larger components.
|
118
|
-
$caret-width-large: 5px !default;
|
119
|
-
|
120
|
-
|
121
|
-
//== Tables
|
122
|
-
//
|
123
|
-
//## Customizes the `.table` component with basic values, each used across all table variations.
|
124
|
-
|
125
|
-
//** Padding for `<th>`s and `<td>`s.
|
126
|
-
$table-cell-padding: 8px !default;
|
127
|
-
//** Padding for cells in `.table-condensed`.
|
128
|
-
$table-condensed-cell-padding: 5px !default;
|
129
|
-
|
130
|
-
//** Default background color used for all tables.
|
131
|
-
$table-bg: transparent !default;
|
132
|
-
//** Background color used for `.table-striped`.
|
133
|
-
$table-bg-accent: #f9f9f9 !default;
|
134
|
-
//** Background color used for `.table-hover`.
|
135
|
-
$table-bg-hover: #f5f5f5 !default;
|
136
|
-
$table-bg-active: $table-bg-hover !default;
|
137
|
-
|
138
|
-
//** Border color for table and cell borders.
|
139
|
-
$table-border-color: #ddd !default;
|
140
|
-
|
141
|
-
|
142
|
-
//== Buttons
|
143
|
-
//
|
144
|
-
//## For each of Bootstrap's buttons, define text, background and border color.
|
145
|
-
|
146
|
-
$btn-font-weight: normal !default;
|
147
|
-
|
148
|
-
$btn-default-color: #333 !default;
|
149
|
-
$btn-default-bg: #fff !default;
|
150
|
-
$btn-default-border: #ccc !default;
|
151
|
-
|
152
|
-
$btn-primary-color: #fff !default;
|
153
|
-
$btn-primary-bg: $brand-primary !default;
|
154
|
-
$btn-primary-border: darken($btn-primary-bg, 5%) !default;
|
155
|
-
|
156
|
-
$btn-success-color: #fff !default;
|
157
|
-
$btn-success-bg: $brand-success !default;
|
158
|
-
$btn-success-border: darken($btn-success-bg, 5%) !default;
|
159
|
-
|
160
|
-
$btn-info-color: #fff !default;
|
161
|
-
$btn-info-bg: $brand-info !default;
|
162
|
-
$btn-info-border: darken($btn-info-bg, 5%) !default;
|
163
|
-
|
164
|
-
$btn-warning-color: #fff !default;
|
165
|
-
$btn-warning-bg: $brand-warning !default;
|
166
|
-
$btn-warning-border: darken($btn-warning-bg, 5%) !default;
|
167
|
-
|
168
|
-
$btn-danger-color: #fff !default;
|
169
|
-
$btn-danger-bg: $brand-danger !default;
|
170
|
-
$btn-danger-border: darken($btn-danger-bg, 5%) !default;
|
171
|
-
|
172
|
-
$btn-link-disabled-color: $gray-light !default;
|
173
|
-
|
174
|
-
|
175
|
-
//== Forms
|
176
|
-
//
|
177
|
-
//##
|
178
|
-
|
179
|
-
//** `<input>` background color
|
180
|
-
$input-bg: #fff !default;
|
181
|
-
//** `<input disabled>` background color
|
182
|
-
$input-bg-disabled: $gray-lighter !default;
|
183
|
-
|
184
|
-
//** Text color for `<input>`s
|
185
|
-
$input-color: $gray !default;
|
186
|
-
//** `<input>` border color
|
187
|
-
$input-border: #ccc !default;
|
188
|
-
//** `<input>` border radius
|
189
|
-
$input-border-radius: $border-radius-base !default;
|
190
|
-
//** Border color for inputs on focus
|
191
|
-
$input-border-focus: #66afe9 !default;
|
192
|
-
|
193
|
-
//** Placeholder text color
|
194
|
-
$input-color-placeholder: $gray-light !default;
|
195
|
-
|
196
|
-
//** Default `.form-control` height
|
197
|
-
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
198
|
-
//** Large `.form-control` height
|
199
|
-
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
200
|
-
//** Small `.form-control` height
|
201
|
-
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
202
|
-
|
203
|
-
$legend-color: $gray-dark !default;
|
204
|
-
$legend-border-color: #e5e5e5 !default;
|
205
|
-
|
206
|
-
//** Background color for textual input addons
|
207
|
-
$input-group-addon-bg: $gray-lighter !default;
|
208
|
-
//** Border color for textual input addons
|
209
|
-
$input-group-addon-border-color: $input-border !default;
|
210
|
-
|
211
|
-
|
212
|
-
//== Dropdowns
|
213
|
-
//
|
214
|
-
//## Dropdown menu container and contents.
|
215
|
-
|
216
|
-
//** Background for the dropdown menu.
|
217
|
-
$dropdown-bg: #fff !default;
|
218
|
-
//** Dropdown menu `border-color`.
|
219
|
-
$dropdown-border: rgba(0,0,0,.15) !default;
|
220
|
-
//** Dropdown menu `border-color` **for IE8**.
|
221
|
-
$dropdown-fallback-border: #ccc !default;
|
222
|
-
//** Divider color for between dropdown items.
|
223
|
-
$dropdown-divider-bg: #e5e5e5 !default;
|
224
|
-
|
225
|
-
//** Dropdown link text color.
|
226
|
-
$dropdown-link-color: $gray-dark !default;
|
227
|
-
//** Hover color for dropdown links.
|
228
|
-
$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
|
229
|
-
//** Hover background for dropdown links.
|
230
|
-
$dropdown-link-hover-bg: #f5f5f5 !default;
|
231
|
-
|
232
|
-
//** Active dropdown menu item text color.
|
233
|
-
$dropdown-link-active-color: $component-active-color !default;
|
234
|
-
//** Active dropdown menu item background color.
|
235
|
-
$dropdown-link-active-bg: $component-active-bg !default;
|
236
|
-
|
237
|
-
//** Disabled dropdown menu item background color.
|
238
|
-
$dropdown-link-disabled-color: $gray-light !default;
|
239
|
-
|
240
|
-
//** Text color for headers within dropdown menus.
|
241
|
-
$dropdown-header-color: $gray-light !default;
|
242
|
-
|
243
|
-
//** Deprecated `$dropdown-caret-color` as of v3.1.0
|
244
|
-
$dropdown-caret-color: #000 !default;
|
245
|
-
|
246
|
-
|
247
|
-
//-- Z-index master list
|
248
|
-
//
|
249
|
-
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
250
|
-
// of components dependent on the z-axis and are designed to all work together.
|
251
|
-
//
|
252
|
-
// Note: These variables are not generated into the Customizer.
|
253
|
-
|
254
|
-
$zindex-navbar: 1000 !default;
|
255
|
-
$zindex-dropdown: 1000 !default;
|
256
|
-
$zindex-popover: 1060 !default;
|
257
|
-
$zindex-tooltip: 1070 !default;
|
258
|
-
$zindex-navbar-fixed: 1030 !default;
|
259
|
-
$zindex-modal-background: 1040 !default;
|
260
|
-
$zindex-modal: 1050 !default;
|
261
|
-
|
262
|
-
|
263
|
-
//== Media queries breakpoints
|
264
|
-
//
|
265
|
-
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
266
|
-
|
267
|
-
// Extra small screen / phone
|
268
|
-
//** Deprecated `$screen-xs` as of v3.0.1
|
269
|
-
$screen-xs: 480px !default;
|
270
|
-
//** Deprecated `$screen-xs-min` as of v3.2.0
|
271
|
-
$screen-xs-min: $screen-xs !default;
|
272
|
-
//** Deprecated `$screen-phone` as of v3.0.1
|
273
|
-
$screen-phone: $screen-xs-min !default;
|
274
|
-
|
275
|
-
// Small screen / tablet
|
276
|
-
//** Deprecated `$screen-sm` as of v3.0.1
|
277
|
-
$screen-sm: 768px !default;
|
278
|
-
$screen-sm-min: $screen-sm !default;
|
279
|
-
//** Deprecated `$screen-tablet` as of v3.0.1
|
280
|
-
$screen-tablet: $screen-sm-min !default;
|
281
|
-
|
282
|
-
// Medium screen / desktop
|
283
|
-
//** Deprecated `$screen-md` as of v3.0.1
|
284
|
-
$screen-md: 992px !default;
|
285
|
-
$screen-md-min: $screen-md !default;
|
286
|
-
//** Deprecated `$screen-desktop` as of v3.0.1
|
287
|
-
$screen-desktop: $screen-md-min !default;
|
288
|
-
|
289
|
-
// Large screen / wide desktop
|
290
|
-
//** Deprecated `$screen-lg` as of v3.0.1
|
291
|
-
$screen-lg: 1200px !default;
|
292
|
-
$screen-lg-min: $screen-lg !default;
|
293
|
-
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
294
|
-
$screen-lg-desktop: $screen-lg-min !default;
|
295
|
-
|
296
|
-
// So media queries don't overlap when required, provide a maximum
|
297
|
-
$screen-xs-max: ($screen-sm-min - 1) !default;
|
298
|
-
$screen-sm-max: ($screen-md-min - 1) !default;
|
299
|
-
$screen-md-max: ($screen-lg-min - 1) !default;
|
300
|
-
|
301
|
-
|
302
|
-
//== Grid system
|
303
|
-
//
|
304
|
-
//## Define your custom responsive grid.
|
305
|
-
|
306
|
-
//** Number of columns in the grid.
|
307
|
-
$grid-columns: 12 !default;
|
308
|
-
//** Padding between columns. Gets divided in half for the left and right.
|
309
|
-
$grid-gutter-width: 30px !default;
|
310
|
-
// Navbar collapse
|
311
|
-
//** Point at which the navbar becomes uncollapsed.
|
312
|
-
$grid-float-breakpoint: $screen-sm-min !default;
|
313
|
-
//** Point at which the navbar begins collapsing.
|
314
|
-
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
315
|
-
|
316
|
-
|
317
|
-
//== Container sizes
|
318
|
-
//
|
319
|
-
//## Define the maximum width of `.container` for different screen sizes.
|
320
|
-
|
321
|
-
// Small screen / tablet
|
322
|
-
$container-tablet: ((720px + $grid-gutter-width)) !default;
|
323
|
-
//** For `$screen-sm-min` and up.
|
324
|
-
$container-sm: $container-tablet !default;
|
325
|
-
|
326
|
-
// Medium screen / desktop
|
327
|
-
$container-desktop: ((940px + $grid-gutter-width)) !default;
|
328
|
-
//** For `$screen-md-min` and up.
|
329
|
-
$container-md: $container-desktop !default;
|
330
|
-
|
331
|
-
// Large screen / wide desktop
|
332
|
-
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
333
|
-
//** For `$screen-lg-min` and up.
|
334
|
-
$container-lg: $container-large-desktop !default;
|
335
|
-
|
336
|
-
|
337
|
-
//== Navbar
|
338
|
-
//
|
339
|
-
//##
|
340
|
-
|
341
|
-
// Basics of a navbar
|
342
|
-
$navbar-height: 50px !default;
|
343
|
-
$navbar-margin-bottom: $line-height-computed !default;
|
344
|
-
$navbar-border-radius: $border-radius-base !default;
|
345
|
-
$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
346
|
-
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
347
|
-
$navbar-collapse-max-height: 340px !default;
|
348
|
-
|
349
|
-
$navbar-default-color: #777 !default;
|
350
|
-
$navbar-default-bg: #f8f8f8 !default;
|
351
|
-
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
352
|
-
|
353
|
-
// Navbar links
|
354
|
-
$navbar-default-link-color: #777 !default;
|
355
|
-
$navbar-default-link-hover-color: #333 !default;
|
356
|
-
$navbar-default-link-hover-bg: transparent !default;
|
357
|
-
$navbar-default-link-active-color: #555 !default;
|
358
|
-
$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
|
359
|
-
$navbar-default-link-disabled-color: #ccc !default;
|
360
|
-
$navbar-default-link-disabled-bg: transparent !default;
|
361
|
-
|
362
|
-
// Navbar brand label
|
363
|
-
$navbar-default-brand-color: $navbar-default-link-color !default;
|
364
|
-
$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
|
365
|
-
$navbar-default-brand-hover-bg: transparent !default;
|
366
|
-
|
367
|
-
// Navbar toggle
|
368
|
-
$navbar-default-toggle-hover-bg: #ddd !default;
|
369
|
-
$navbar-default-toggle-icon-bar-bg: #888 !default;
|
370
|
-
$navbar-default-toggle-border-color: #ddd !default;
|
371
|
-
|
372
|
-
|
373
|
-
// Inverted navbar
|
374
|
-
// Reset inverted navbar basics
|
375
|
-
$navbar-inverse-color: $gray-light !default;
|
376
|
-
$navbar-inverse-bg: #222 !default;
|
377
|
-
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
|
378
|
-
|
379
|
-
// Inverted navbar links
|
380
|
-
$navbar-inverse-link-color: $gray-light !default;
|
381
|
-
$navbar-inverse-link-hover-color: #fff !default;
|
382
|
-
$navbar-inverse-link-hover-bg: transparent !default;
|
383
|
-
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
384
|
-
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
|
385
|
-
$navbar-inverse-link-disabled-color: #444 !default;
|
386
|
-
$navbar-inverse-link-disabled-bg: transparent !default;
|
387
|
-
|
388
|
-
// Inverted navbar brand label
|
389
|
-
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
390
|
-
$navbar-inverse-brand-hover-color: #fff !default;
|
391
|
-
$navbar-inverse-brand-hover-bg: transparent !default;
|
392
|
-
|
393
|
-
// Inverted navbar toggle
|
394
|
-
$navbar-inverse-toggle-hover-bg: #333 !default;
|
395
|
-
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
396
|
-
$navbar-inverse-toggle-border-color: #333 !default;
|
397
|
-
|
398
|
-
|
399
|
-
//== Navs
|
400
|
-
//
|
401
|
-
//##
|
402
|
-
|
403
|
-
//=== Shared nav styles
|
404
|
-
$nav-link-padding: 10px 15px !default;
|
405
|
-
$nav-link-hover-bg: $gray-lighter !default;
|
406
|
-
|
407
|
-
$nav-disabled-link-color: $gray-light !default;
|
408
|
-
$nav-disabled-link-hover-color: $gray-light !default;
|
409
|
-
|
410
|
-
$nav-open-link-hover-color: #fff !default;
|
411
|
-
|
412
|
-
//== Tabs
|
413
|
-
$nav-tabs-border-color: #ddd !default;
|
414
|
-
|
415
|
-
$nav-tabs-link-hover-border-color: $gray-lighter !default;
|
416
|
-
|
417
|
-
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
418
|
-
$nav-tabs-active-link-hover-color: $gray !default;
|
419
|
-
$nav-tabs-active-link-hover-border-color: #ddd !default;
|
420
|
-
|
421
|
-
$nav-tabs-justified-link-border-color: #ddd !default;
|
422
|
-
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
423
|
-
|
424
|
-
//== Pills
|
425
|
-
$nav-pills-border-radius: $border-radius-base !default;
|
426
|
-
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
427
|
-
$nav-pills-active-link-hover-color: $component-active-color !default;
|
428
|
-
|
429
|
-
|
430
|
-
//== Pagination
|
431
|
-
//
|
432
|
-
//##
|
433
|
-
|
434
|
-
$pagination-color: $link-color !default;
|
435
|
-
$pagination-bg: #fff !default;
|
436
|
-
$pagination-border: #ddd !default;
|
437
|
-
|
438
|
-
$pagination-hover-color: $link-hover-color !default;
|
439
|
-
$pagination-hover-bg: $gray-lighter !default;
|
440
|
-
$pagination-hover-border: #ddd !default;
|
441
|
-
|
442
|
-
$pagination-active-color: #fff !default;
|
443
|
-
$pagination-active-bg: $brand-primary !default;
|
444
|
-
$pagination-active-border: $brand-primary !default;
|
445
|
-
|
446
|
-
$pagination-disabled-color: $gray-light !default;
|
447
|
-
$pagination-disabled-bg: #fff !default;
|
448
|
-
$pagination-disabled-border: #ddd !default;
|
449
|
-
|
450
|
-
|
451
|
-
//== Pager
|
452
|
-
//
|
453
|
-
//##
|
454
|
-
|
455
|
-
$pager-bg: $pagination-bg !default;
|
456
|
-
$pager-border: $pagination-border !default;
|
457
|
-
$pager-border-radius: 15px !default;
|
458
|
-
|
459
|
-
$pager-hover-bg: $pagination-hover-bg !default;
|
460
|
-
|
461
|
-
$pager-active-bg: $pagination-active-bg !default;
|
462
|
-
$pager-active-color: $pagination-active-color !default;
|
463
|
-
|
464
|
-
$pager-disabled-color: $pagination-disabled-color !default;
|
465
|
-
|
466
|
-
|
467
|
-
//== Jumbotron
|
468
|
-
//
|
469
|
-
//##
|
470
|
-
|
471
|
-
$jumbotron-padding: 30px !default;
|
472
|
-
$jumbotron-color: inherit !default;
|
473
|
-
$jumbotron-bg: $gray-lighter !default;
|
474
|
-
$jumbotron-heading-color: inherit !default;
|
475
|
-
$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
|
476
|
-
|
477
|
-
|
478
|
-
//== Form states and alerts
|
479
|
-
//
|
480
|
-
//## Define colors for form feedback states and, by default, alerts.
|
481
|
-
|
482
|
-
$state-success-text: #3c763d !default;
|
483
|
-
$state-success-bg: #dff0d8 !default;
|
484
|
-
$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
|
485
|
-
|
486
|
-
$state-info-text: #31708f !default;
|
487
|
-
$state-info-bg: #d9edf7 !default;
|
488
|
-
$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
|
489
|
-
|
490
|
-
$state-warning-text: #8a6d3b !default;
|
491
|
-
$state-warning-bg: #fcf8e3 !default;
|
492
|
-
$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
|
493
|
-
|
494
|
-
$state-danger-text: #a94442 !default;
|
495
|
-
$state-danger-bg: #f2dede !default;
|
496
|
-
$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
|
497
|
-
|
498
|
-
|
499
|
-
//== Tooltips
|
500
|
-
//
|
501
|
-
//##
|
502
|
-
|
503
|
-
//** Tooltip max width
|
504
|
-
$tooltip-max-width: 200px !default;
|
505
|
-
//** Tooltip text color
|
506
|
-
$tooltip-color: #fff !default;
|
507
|
-
//** Tooltip background color
|
508
|
-
$tooltip-bg: #000 !default;
|
509
|
-
$tooltip-opacity: .9 !default;
|
510
|
-
|
511
|
-
//** Tooltip arrow width
|
512
|
-
$tooltip-arrow-width: 5px !default;
|
513
|
-
//** Tooltip arrow color
|
514
|
-
$tooltip-arrow-color: $tooltip-bg !default;
|
515
|
-
|
516
|
-
|
517
|
-
//== Popovers
|
518
|
-
//
|
519
|
-
//##
|
520
|
-
|
521
|
-
//** Popover body background color
|
522
|
-
$popover-bg: #fff !default;
|
523
|
-
//** Popover maximum width
|
524
|
-
$popover-max-width: 276px !default;
|
525
|
-
//** Popover border color
|
526
|
-
$popover-border-color: rgba(0,0,0,.2) !default;
|
527
|
-
//** Popover fallback border color
|
528
|
-
$popover-fallback-border-color: #ccc !default;
|
529
|
-
|
530
|
-
//** Popover title background color
|
531
|
-
$popover-title-bg: darken($popover-bg, 3%) !default;
|
532
|
-
|
533
|
-
//** Popover arrow width
|
534
|
-
$popover-arrow-width: 10px !default;
|
535
|
-
//** Popover arrow color
|
536
|
-
$popover-arrow-color: #fff !default;
|
537
|
-
|
538
|
-
//** Popover outer arrow width
|
539
|
-
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
540
|
-
//** Popover outer arrow color
|
541
|
-
$popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
|
542
|
-
//** Popover outer arrow fallback color
|
543
|
-
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
544
|
-
|
545
|
-
|
546
|
-
//== Labels
|
547
|
-
//
|
548
|
-
//##
|
549
|
-
|
550
|
-
//** Default label background color
|
551
|
-
$label-default-bg: $gray-light !default;
|
552
|
-
//** Primary label background color
|
553
|
-
$label-primary-bg: $brand-primary !default;
|
554
|
-
//** Success label background color
|
555
|
-
$label-success-bg: $brand-success !default;
|
556
|
-
//** Info label background color
|
557
|
-
$label-info-bg: $brand-info !default;
|
558
|
-
//** Warning label background color
|
559
|
-
$label-warning-bg: $brand-warning !default;
|
560
|
-
//** Danger label background color
|
561
|
-
$label-danger-bg: $brand-danger !default;
|
562
|
-
|
563
|
-
//** Default label text color
|
564
|
-
$label-color: #fff !default;
|
565
|
-
//** Default text color of a linked label
|
566
|
-
$label-link-hover-color: #fff !default;
|
567
|
-
|
568
|
-
|
569
|
-
//== Modals
|
570
|
-
//
|
571
|
-
//##
|
572
|
-
|
573
|
-
//** Padding applied to the modal body
|
574
|
-
$modal-inner-padding: 15px !default;
|
575
|
-
|
576
|
-
//** Padding applied to the modal title
|
577
|
-
$modal-title-padding: 15px !default;
|
578
|
-
//** Modal title line-height
|
579
|
-
$modal-title-line-height: $line-height-base !default;
|
580
|
-
|
581
|
-
//** Background color of modal content area
|
582
|
-
$modal-content-bg: #fff !default;
|
583
|
-
//** Modal content border color
|
584
|
-
$modal-content-border-color: rgba(0,0,0,.2) !default;
|
585
|
-
//** Modal content border color **for IE8**
|
586
|
-
$modal-content-fallback-border-color: #999 !default;
|
587
|
-
|
588
|
-
//** Modal backdrop background color
|
589
|
-
$modal-backdrop-bg: #000 !default;
|
590
|
-
//** Modal backdrop opacity
|
591
|
-
$modal-backdrop-opacity: .5 !default;
|
592
|
-
//** Modal header border color
|
593
|
-
$modal-header-border-color: #e5e5e5 !default;
|
594
|
-
//** Modal footer border color
|
595
|
-
$modal-footer-border-color: $modal-header-border-color !default;
|
596
|
-
|
597
|
-
$modal-lg: 900px !default;
|
598
|
-
$modal-md: 600px !default;
|
599
|
-
$modal-sm: 300px !default;
|
600
|
-
|
601
|
-
|
602
|
-
//== Alerts
|
603
|
-
//
|
604
|
-
//## Define alert colors, border radius, and padding.
|
605
|
-
|
606
|
-
$alert-padding: 15px !default;
|
607
|
-
$alert-border-radius: $border-radius-base !default;
|
608
|
-
$alert-link-font-weight: bold !default;
|
609
|
-
|
610
|
-
$alert-success-bg: $state-success-bg !default;
|
611
|
-
$alert-success-text: $state-success-text !default;
|
612
|
-
$alert-success-border: $state-success-border !default;
|
613
|
-
|
614
|
-
$alert-info-bg: $state-info-bg !default;
|
615
|
-
$alert-info-text: $state-info-text !default;
|
616
|
-
$alert-info-border: $state-info-border !default;
|
617
|
-
|
618
|
-
$alert-warning-bg: $state-warning-bg !default;
|
619
|
-
$alert-warning-text: $state-warning-text !default;
|
620
|
-
$alert-warning-border: $state-warning-border !default;
|
621
|
-
|
622
|
-
$alert-danger-bg: $state-danger-bg !default;
|
623
|
-
$alert-danger-text: $state-danger-text !default;
|
624
|
-
$alert-danger-border: $state-danger-border !default;
|
625
|
-
|
626
|
-
|
627
|
-
//== Progress bars
|
628
|
-
//
|
629
|
-
//##
|
630
|
-
|
631
|
-
//** Background color of the whole progress component
|
632
|
-
$progress-bg: #f5f5f5 !default;
|
633
|
-
//** Progress bar text color
|
634
|
-
$progress-bar-color: #fff !default;
|
635
|
-
|
636
|
-
//** Default progress bar color
|
637
|
-
$progress-bar-bg: $brand-primary !default;
|
638
|
-
//** Success progress bar color
|
639
|
-
$progress-bar-success-bg: $brand-success !default;
|
640
|
-
//** Warning progress bar color
|
641
|
-
$progress-bar-warning-bg: $brand-warning !default;
|
642
|
-
//** Danger progress bar color
|
643
|
-
$progress-bar-danger-bg: $brand-danger !default;
|
644
|
-
//** Info progress bar color
|
645
|
-
$progress-bar-info-bg: $brand-info !default;
|
646
|
-
|
647
|
-
|
648
|
-
//== List group
|
649
|
-
//
|
650
|
-
//##
|
651
|
-
|
652
|
-
//** Background color on `.list-group-item`
|
653
|
-
$list-group-bg: #fff !default;
|
654
|
-
//** `.list-group-item` border color
|
655
|
-
$list-group-border: #ddd !default;
|
656
|
-
//** List group border radius
|
657
|
-
$list-group-border-radius: $border-radius-base !default;
|
658
|
-
|
659
|
-
//** Background color of single list items on hover
|
660
|
-
$list-group-hover-bg: #f5f5f5 !default;
|
661
|
-
//** Text color of active list items
|
662
|
-
$list-group-active-color: $component-active-color !default;
|
663
|
-
//** Background color of active list items
|
664
|
-
$list-group-active-bg: $component-active-bg !default;
|
665
|
-
//** Border color of active list elements
|
666
|
-
$list-group-active-border: $list-group-active-bg !default;
|
667
|
-
//** Text color for content within active list items
|
668
|
-
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
669
|
-
|
670
|
-
//** Text color of disabled list items
|
671
|
-
$list-group-disabled-color: $gray-light !default;
|
672
|
-
//** Background color of disabled list items
|
673
|
-
$list-group-disabled-bg: $gray-lighter !default;
|
674
|
-
//** Text color for content within disabled list items
|
675
|
-
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
676
|
-
|
677
|
-
$list-group-link-color: #555 !default;
|
678
|
-
$list-group-link-hover-color: $list-group-link-color !default;
|
679
|
-
$list-group-link-heading-color: #333 !default;
|
680
|
-
|
681
|
-
|
682
|
-
//== Panels
|
683
|
-
//
|
684
|
-
//##
|
685
|
-
|
686
|
-
$panel-bg: #fff !default;
|
687
|
-
$panel-body-padding: 15px !default;
|
688
|
-
$panel-heading-padding: 10px 15px !default;
|
689
|
-
$panel-footer-padding: $panel-heading-padding !default;
|
690
|
-
$panel-border-radius: $border-radius-base !default;
|
691
|
-
|
692
|
-
//** Border color for elements within panels
|
693
|
-
$panel-inner-border: #ddd !default;
|
694
|
-
$panel-footer-bg: #f5f5f5 !default;
|
695
|
-
|
696
|
-
$panel-default-text: $gray-dark !default;
|
697
|
-
$panel-default-border: #ddd !default;
|
698
|
-
$panel-default-heading-bg: #f5f5f5 !default;
|
699
|
-
|
700
|
-
$panel-primary-text: #fff !default;
|
701
|
-
$panel-primary-border: $brand-primary !default;
|
702
|
-
$panel-primary-heading-bg: $brand-primary !default;
|
703
|
-
|
704
|
-
$panel-success-text: $state-success-text !default;
|
705
|
-
$panel-success-border: $state-success-border !default;
|
706
|
-
$panel-success-heading-bg: $state-success-bg !default;
|
707
|
-
|
708
|
-
$panel-info-text: $state-info-text !default;
|
709
|
-
$panel-info-border: $state-info-border !default;
|
710
|
-
$panel-info-heading-bg: $state-info-bg !default;
|
711
|
-
|
712
|
-
$panel-warning-text: $state-warning-text !default;
|
713
|
-
$panel-warning-border: $state-warning-border !default;
|
714
|
-
$panel-warning-heading-bg: $state-warning-bg !default;
|
715
|
-
|
716
|
-
$panel-danger-text: $state-danger-text !default;
|
717
|
-
$panel-danger-border: $state-danger-border !default;
|
718
|
-
$panel-danger-heading-bg: $state-danger-bg !default;
|
719
|
-
|
720
|
-
|
721
|
-
//== Thumbnails
|
722
|
-
//
|
723
|
-
//##
|
724
|
-
|
725
|
-
//** Padding around the thumbnail image
|
726
|
-
$thumbnail-padding: 4px !default;
|
727
|
-
//** Thumbnail background color
|
728
|
-
$thumbnail-bg: $body-bg !default;
|
729
|
-
//** Thumbnail border color
|
730
|
-
$thumbnail-border: #ddd !default;
|
731
|
-
//** Thumbnail border radius
|
732
|
-
$thumbnail-border-radius: $border-radius-base !default;
|
733
|
-
|
734
|
-
//** Custom text color for thumbnail captions
|
735
|
-
$thumbnail-caption-color: $text-color !default;
|
736
|
-
//** Padding around the thumbnail caption
|
737
|
-
$thumbnail-caption-padding: 9px !default;
|
738
|
-
|
739
|
-
|
740
|
-
//== Wells
|
741
|
-
//
|
742
|
-
//##
|
743
|
-
|
744
|
-
$well-bg: #f5f5f5 !default;
|
745
|
-
$well-border: darken($well-bg, 7%) !default;
|
746
|
-
|
747
|
-
|
748
|
-
//== Badges
|
749
|
-
//
|
750
|
-
//##
|
751
|
-
|
752
|
-
$badge-color: #fff !default;
|
753
|
-
//** Linked badge text color on hover
|
754
|
-
$badge-link-hover-color: #fff !default;
|
755
|
-
$badge-bg: $gray-light !default;
|
756
|
-
|
757
|
-
//** Badge text color in active nav link
|
758
|
-
$badge-active-color: $link-color !default;
|
759
|
-
//** Badge background color in active nav link
|
760
|
-
$badge-active-bg: #fff !default;
|
761
|
-
|
762
|
-
$badge-font-weight: bold !default;
|
763
|
-
$badge-line-height: 1 !default;
|
764
|
-
$badge-border-radius: 10px !default;
|
765
|
-
|
766
|
-
|
767
|
-
//== Breadcrumbs
|
768
|
-
//
|
769
|
-
//##
|
770
|
-
|
771
|
-
$breadcrumb-padding-vertical: 8px !default;
|
772
|
-
$breadcrumb-padding-horizontal: 15px !default;
|
773
|
-
//** Breadcrumb background color
|
774
|
-
$breadcrumb-bg: #f5f5f5 !default;
|
775
|
-
//** Breadcrumb text color
|
776
|
-
$breadcrumb-color: #ccc !default;
|
777
|
-
//** Text color of current page in the breadcrumb
|
778
|
-
$breadcrumb-active-color: $gray-light !default;
|
779
|
-
//** Textual separator for between breadcrumb elements
|
780
|
-
$breadcrumb-separator: "/" !default;
|
781
|
-
|
782
|
-
|
783
|
-
//== Carousel
|
784
|
-
//
|
785
|
-
//##
|
786
|
-
|
787
|
-
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
|
788
|
-
|
789
|
-
$carousel-control-color: #fff !default;
|
790
|
-
$carousel-control-width: 15% !default;
|
791
|
-
$carousel-control-opacity: .5 !default;
|
792
|
-
$carousel-control-font-size: 20px !default;
|
793
|
-
|
794
|
-
$carousel-indicator-active-bg: #fff !default;
|
795
|
-
$carousel-indicator-border-color: #fff !default;
|
796
|
-
|
797
|
-
$carousel-caption-color: #fff !default;
|
798
|
-
|
799
|
-
|
800
|
-
//== Close
|
801
|
-
//
|
802
|
-
//##
|
803
|
-
|
804
|
-
$close-font-weight: bold !default;
|
805
|
-
$close-color: #000 !default;
|
806
|
-
$close-text-shadow: 0 1px 0 #fff !default;
|
807
|
-
|
808
|
-
|
809
|
-
//== Code
|
810
|
-
//
|
811
|
-
//##
|
812
|
-
|
813
|
-
$code-color: #c7254e !default;
|
814
|
-
$code-bg: #f9f2f4 !default;
|
815
|
-
|
816
|
-
$kbd-color: #fff !default;
|
817
|
-
$kbd-bg: #333 !default;
|
818
|
-
|
819
|
-
$pre-bg: #f5f5f5 !default;
|
820
|
-
$pre-color: $gray-dark !default;
|
821
|
-
$pre-border-color: #ccc !default;
|
822
|
-
$pre-scrollable-max-height: 340px !default;
|
823
|
-
|
824
|
-
|
825
|
-
//== Type
|
826
|
-
//
|
827
|
-
//##
|
828
|
-
|
829
|
-
//** Horizontal offset for forms and lists.
|
830
|
-
$component-offset-horizontal: 180px !default;
|
831
|
-
//** Text muted color
|
832
|
-
$text-muted: $gray-light !default;
|
833
|
-
//** Abbreviations and acronyms border color
|
834
|
-
$abbr-border-color: $gray-light !default;
|
835
|
-
//** Headings small color
|
836
|
-
$headings-small-color: $gray-light !default;
|
837
|
-
//** Blockquote small color
|
838
|
-
$blockquote-small-color: $gray-light !default;
|
839
|
-
//** Blockquote font size
|
840
|
-
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
841
|
-
//** Blockquote border color
|
842
|
-
$blockquote-border-color: $gray-lighter !default;
|
843
|
-
//** Page header border color
|
844
|
-
$page-header-border-color: $gray-lighter !default;
|
845
|
-
//** Width of horizontal description list titles
|
846
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
847
|
-
//** Horizontal line color.
|
848
|
-
$hr-border: $gray-lighter !default;
|
849
|
-
|
850
|
-
|