lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
// Pagination
|
2
|
+
|
3
|
+
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $border-radius) {
|
4
|
+
> li {
|
5
|
+
> a,
|
6
|
+
> span {
|
7
|
+
padding: $padding-vertical $padding-horizontal;
|
8
|
+
font-size: $font-size;
|
9
|
+
}
|
10
|
+
&:first-child {
|
11
|
+
> a,
|
12
|
+
> span {
|
13
|
+
@include border-left-radius($border-radius);
|
14
|
+
}
|
15
|
+
}
|
16
|
+
&:last-child {
|
17
|
+
> a,
|
18
|
+
> span {
|
19
|
+
@include border-right-radius($border-radius);
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// Panels
|
2
|
+
|
3
|
+
@mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) {
|
4
|
+
border-color: $border;
|
5
|
+
|
6
|
+
& > .panel-heading {
|
7
|
+
color: $heading-text-color;
|
8
|
+
background-color: $heading-bg-color;
|
9
|
+
border-color: $heading-border;
|
10
|
+
|
11
|
+
+ .panel-collapse > .panel-body {
|
12
|
+
border-top-color: $border;
|
13
|
+
}
|
14
|
+
.badge {
|
15
|
+
color: $heading-bg-color;
|
16
|
+
background-color: $heading-text-color;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
& > .panel-footer {
|
20
|
+
+ .panel-collapse > .panel-body {
|
21
|
+
border-bottom-color: $border;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// Responsive utilities
|
2
|
+
|
3
|
+
//
|
4
|
+
// More easily include all the states for responsive-utilities.less.
|
5
|
+
// [converter] $parent hack
|
6
|
+
@mixin responsive-visibility($parent) {
|
7
|
+
#{$parent} {
|
8
|
+
display: block !important;
|
9
|
+
}
|
10
|
+
table#{$parent} { display: table; }
|
11
|
+
tr#{$parent} { display: table-row !important; }
|
12
|
+
th#{$parent},
|
13
|
+
td#{$parent} { display: table-cell !important; }
|
14
|
+
}
|
15
|
+
|
16
|
+
// [converter] $parent hack
|
17
|
+
@mixin responsive-invisibility($parent) {
|
18
|
+
#{$parent} {
|
19
|
+
display: none !important;
|
20
|
+
}
|
21
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
// Tables
|
2
|
+
|
3
|
+
@mixin table-row-variant($state, $background) {
|
4
|
+
// Exact selectors below required to override `.table-striped` and prevent
|
5
|
+
// inheritance to nested tables.
|
6
|
+
.table > thead > tr,
|
7
|
+
.table > tbody > tr,
|
8
|
+
.table > tfoot > tr {
|
9
|
+
> td.#{$state},
|
10
|
+
> th.#{$state},
|
11
|
+
&.#{$state} > td,
|
12
|
+
&.#{$state} > th {
|
13
|
+
background-color: $background;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
// Hover states for `.table-hover`
|
18
|
+
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
19
|
+
.table-hover > tbody > tr {
|
20
|
+
> td.#{$state}:hover,
|
21
|
+
> th.#{$state}:hover,
|
22
|
+
&.#{$state}:hover > td,
|
23
|
+
&:hover > .#{$state},
|
24
|
+
&.#{$state}:hover > th {
|
25
|
+
background-color: darken($background, 5%);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
@@ -0,0 +1,219 @@
|
|
1
|
+
// Vendor Prefixes
|
2
|
+
//
|
3
|
+
// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
|
4
|
+
// Autoprefixer in our Gruntfile. They will be removed in v4.
|
5
|
+
|
6
|
+
// - Animations
|
7
|
+
// - Backface visibility
|
8
|
+
// - Box shadow
|
9
|
+
// - Box sizing
|
10
|
+
// - Content columns
|
11
|
+
// - Hyphens
|
12
|
+
// - Placeholder text
|
13
|
+
// - Transformations
|
14
|
+
// - Transitions
|
15
|
+
// - User Select
|
16
|
+
|
17
|
+
|
18
|
+
// Animations
|
19
|
+
@mixin animation($animation) {
|
20
|
+
-webkit-animation: $animation;
|
21
|
+
-o-animation: $animation;
|
22
|
+
animation: $animation;
|
23
|
+
}
|
24
|
+
@mixin animation-name($name) {
|
25
|
+
-webkit-animation-name: $name;
|
26
|
+
animation-name: $name;
|
27
|
+
}
|
28
|
+
@mixin animation-duration($duration) {
|
29
|
+
-webkit-animation-duration: $duration;
|
30
|
+
animation-duration: $duration;
|
31
|
+
}
|
32
|
+
@mixin animation-timing-function($timing-function) {
|
33
|
+
-webkit-animation-timing-function: $timing-function;
|
34
|
+
animation-timing-function: $timing-function;
|
35
|
+
}
|
36
|
+
@mixin animation-delay($delay) {
|
37
|
+
-webkit-animation-delay: $delay;
|
38
|
+
animation-delay: $delay;
|
39
|
+
}
|
40
|
+
@mixin animation-iteration-count($iteration-count) {
|
41
|
+
-webkit-animation-iteration-count: $iteration-count;
|
42
|
+
animation-iteration-count: $iteration-count;
|
43
|
+
}
|
44
|
+
@mixin animation-direction($direction) {
|
45
|
+
-webkit-animation-direction: $direction;
|
46
|
+
animation-direction: $direction;
|
47
|
+
}
|
48
|
+
@mixin animation-fill-mode($fill-mode) {
|
49
|
+
-webkit-animation-fill-mode: $fill-mode;
|
50
|
+
animation-fill-mode: $fill-mode;
|
51
|
+
}
|
52
|
+
|
53
|
+
// Backface visibility
|
54
|
+
// Prevent browsers from flickering when using CSS 3D transforms.
|
55
|
+
// Default value is `visible`, but can be changed to `hidden`
|
56
|
+
|
57
|
+
@mixin backface-visibility($visibility){
|
58
|
+
-webkit-backface-visibility: $visibility;
|
59
|
+
-moz-backface-visibility: $visibility;
|
60
|
+
backface-visibility: $visibility;
|
61
|
+
}
|
62
|
+
|
63
|
+
// Drop shadows
|
64
|
+
//
|
65
|
+
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
|
66
|
+
// supported browsers that have box shadow capabilities now support it.
|
67
|
+
|
68
|
+
@mixin box-shadow($shadow...) {
|
69
|
+
-webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
|
70
|
+
box-shadow: $shadow;
|
71
|
+
}
|
72
|
+
|
73
|
+
// Box sizing
|
74
|
+
@mixin box-sizing($boxmodel) {
|
75
|
+
-webkit-box-sizing: $boxmodel;
|
76
|
+
-moz-box-sizing: $boxmodel;
|
77
|
+
box-sizing: $boxmodel;
|
78
|
+
}
|
79
|
+
|
80
|
+
// CSS3 Content Columns
|
81
|
+
@mixin content-columns($column-count, $column-gap: $grid-gutter-width) {
|
82
|
+
-webkit-column-count: $column-count;
|
83
|
+
-moz-column-count: $column-count;
|
84
|
+
column-count: $column-count;
|
85
|
+
-webkit-column-gap: $column-gap;
|
86
|
+
-moz-column-gap: $column-gap;
|
87
|
+
column-gap: $column-gap;
|
88
|
+
}
|
89
|
+
|
90
|
+
// Optional hyphenation
|
91
|
+
@mixin hyphens($mode: auto) {
|
92
|
+
word-wrap: break-word;
|
93
|
+
-webkit-hyphens: $mode;
|
94
|
+
-moz-hyphens: $mode;
|
95
|
+
-ms-hyphens: $mode; // IE10+
|
96
|
+
-o-hyphens: $mode;
|
97
|
+
hyphens: $mode;
|
98
|
+
}
|
99
|
+
|
100
|
+
// Placeholder text
|
101
|
+
@mixin placeholder($color: $input-color-placeholder) {
|
102
|
+
&::-moz-placeholder { color: $color; // Firefox
|
103
|
+
opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
|
104
|
+
&:-ms-input-placeholder { color: $color; } // Internet Explorer 10+
|
105
|
+
&::-webkit-input-placeholder { color: $color; } // Safari and Chrome
|
106
|
+
}
|
107
|
+
|
108
|
+
// Transformations
|
109
|
+
@mixin scale($ratio...) {
|
110
|
+
-webkit-transform: scale($ratio);
|
111
|
+
-ms-transform: scale($ratio); // IE9 only
|
112
|
+
-o-transform: scale($ratio);
|
113
|
+
transform: scale($ratio);
|
114
|
+
}
|
115
|
+
|
116
|
+
@mixin scaleX($ratio) {
|
117
|
+
-webkit-transform: scaleX($ratio);
|
118
|
+
-ms-transform: scaleX($ratio); // IE9 only
|
119
|
+
-o-transform: scaleX($ratio);
|
120
|
+
transform: scaleX($ratio);
|
121
|
+
}
|
122
|
+
@mixin scaleY($ratio) {
|
123
|
+
-webkit-transform: scaleY($ratio);
|
124
|
+
-ms-transform: scaleY($ratio); // IE9 only
|
125
|
+
-o-transform: scaleY($ratio);
|
126
|
+
transform: scaleY($ratio);
|
127
|
+
}
|
128
|
+
@mixin skew($x, $y) {
|
129
|
+
-webkit-transform: skewX($x) skewY($y);
|
130
|
+
-ms-transform: skewX($x) skewY($y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
|
131
|
+
-o-transform: skewX($x) skewY($y);
|
132
|
+
transform: skewX($x) skewY($y);
|
133
|
+
}
|
134
|
+
@mixin translate($x, $y) {
|
135
|
+
-webkit-transform: translate($x, $y);
|
136
|
+
-ms-transform: translate($x, $y); // IE9 only
|
137
|
+
-o-transform: translate($x, $y);
|
138
|
+
transform: translate($x, $y);
|
139
|
+
}
|
140
|
+
@mixin translate3d($x, $y, $z) {
|
141
|
+
-webkit-transform: translate3d($x, $y, $z);
|
142
|
+
transform: translate3d($x, $y, $z);
|
143
|
+
}
|
144
|
+
@mixin rotate($degrees) {
|
145
|
+
-webkit-transform: rotate($degrees);
|
146
|
+
-ms-transform: rotate($degrees); // IE9 only
|
147
|
+
-o-transform: rotate($degrees);
|
148
|
+
transform: rotate($degrees);
|
149
|
+
}
|
150
|
+
@mixin rotateX($degrees) {
|
151
|
+
-webkit-transform: rotateX($degrees);
|
152
|
+
-ms-transform: rotateX($degrees); // IE9 only
|
153
|
+
-o-transform: rotateX($degrees);
|
154
|
+
transform: rotateX($degrees);
|
155
|
+
}
|
156
|
+
@mixin rotateY($degrees) {
|
157
|
+
-webkit-transform: rotateY($degrees);
|
158
|
+
-ms-transform: rotateY($degrees); // IE9 only
|
159
|
+
-o-transform: rotateY($degrees);
|
160
|
+
transform: rotateY($degrees);
|
161
|
+
}
|
162
|
+
@mixin perspective($perspective) {
|
163
|
+
-webkit-perspective: $perspective;
|
164
|
+
-moz-perspective: $perspective;
|
165
|
+
perspective: $perspective;
|
166
|
+
}
|
167
|
+
@mixin perspective-origin($perspective) {
|
168
|
+
-webkit-perspective-origin: $perspective;
|
169
|
+
-moz-perspective-origin: $perspective;
|
170
|
+
perspective-origin: $perspective;
|
171
|
+
}
|
172
|
+
@mixin transform-origin($origin) {
|
173
|
+
-webkit-transform-origin: $origin;
|
174
|
+
-moz-transform-origin: $origin;
|
175
|
+
-ms-transform-origin: $origin; // IE9 only
|
176
|
+
transform-origin: $origin;
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
// Transitions
|
181
|
+
|
182
|
+
@mixin transition($transition...) {
|
183
|
+
-webkit-transition: $transition;
|
184
|
+
-o-transition: $transition;
|
185
|
+
transition: $transition;
|
186
|
+
}
|
187
|
+
@mixin transition-property($transition-property...) {
|
188
|
+
-webkit-transition-property: $transition-property;
|
189
|
+
transition-property: $transition-property;
|
190
|
+
}
|
191
|
+
@mixin transition-delay($transition-delay) {
|
192
|
+
-webkit-transition-delay: $transition-delay;
|
193
|
+
transition-delay: $transition-delay;
|
194
|
+
}
|
195
|
+
@mixin transition-duration($transition-duration...) {
|
196
|
+
-webkit-transition-duration: $transition-duration;
|
197
|
+
transition-duration: $transition-duration;
|
198
|
+
}
|
199
|
+
@mixin transition-timing-function($timing-function) {
|
200
|
+
-webkit-transition-timing-function: $timing-function;
|
201
|
+
transition-timing-function: $timing-function;
|
202
|
+
}
|
203
|
+
@mixin transition-transform($transition...) {
|
204
|
+
-webkit-transition: -webkit-transform $transition;
|
205
|
+
-moz-transition: -moz-transform $transition;
|
206
|
+
-o-transition: -o-transform $transition;
|
207
|
+
transition: transform $transition;
|
208
|
+
}
|
209
|
+
|
210
|
+
|
211
|
+
// User select
|
212
|
+
// For selecting text on the page
|
213
|
+
|
214
|
+
@mixin user-select($select) {
|
215
|
+
-webkit-user-select: $select;
|
216
|
+
-moz-user-select: $select;
|
217
|
+
-ms-user-select: $select; // IE10+
|
218
|
+
user-select: $select;
|
219
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
//
|
2
|
+
// Here we tear down bootstrap's grid system
|
3
|
+
// to remove the media queries and replace with our
|
4
|
+
// own event based class switcher
|
5
|
+
// --------------------------------------------------
|
6
|
+
|
7
|
+
|
8
|
+
// Container widths
|
9
|
+
//
|
10
|
+
// Set the container width, and override it for fixed navbars in media queries.
|
11
|
+
|
12
|
+
/* .container { */
|
13
|
+
/* @include container-fixed(); */
|
14
|
+
|
15
|
+
/* @media (min-width: $screen-sm-min) { */
|
16
|
+
/* width: $container-sm; */
|
17
|
+
/* } */
|
18
|
+
/* @media (min-width: $screen-md-min) { */
|
19
|
+
/* width: $container-md; */
|
20
|
+
/* } */
|
21
|
+
/* @media (min-width: $screen-lg-min) { */
|
22
|
+
/* width: $container-lg; */
|
23
|
+
/* } */
|
24
|
+
/* } */
|
25
|
+
|
26
|
+
|
27
|
+
// Fluid container
|
28
|
+
//
|
29
|
+
// Utilizes the mixin meant for fixed width containers, but without any defined
|
30
|
+
// width for fluid, full width layouts.
|
31
|
+
|
32
|
+
.container-fluid {
|
33
|
+
@include container-fixed();
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
// Row
|
38
|
+
//
|
39
|
+
// Rows contain and clear the floats of your columns.
|
40
|
+
|
41
|
+
.row {
|
42
|
+
@include make-row();
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
// Columns
|
47
|
+
//
|
48
|
+
// Common styles for small and large grid columns
|
49
|
+
|
50
|
+
@include make-grid-columns();
|
51
|
+
|
52
|
+
|
53
|
+
// Extra small grid
|
54
|
+
//
|
55
|
+
// Columns, offsets, pushes, and pulls for extra small devices like
|
56
|
+
// smartphones.
|
57
|
+
|
58
|
+
@include make-grid(xs);
|
59
|
+
|
60
|
+
|
61
|
+
// Small grid
|
62
|
+
//
|
63
|
+
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
64
|
+
// to tablets.
|
65
|
+
.page-content.sm,.modal-dialog.sm, .modal-dialog.md, .popover-content {
|
66
|
+
//@media (min-width: $screen-sm-min) {
|
67
|
+
@include make-grid(sm);
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
// Medium grid
|
72
|
+
//
|
73
|
+
// Columns, offsets, pushes, and pulls for the desktop device range.
|
74
|
+
.page-content.md, .modal-dialog.lg {
|
75
|
+
//@media (min-width: $screen-md-min) {
|
76
|
+
@include make-grid(md);
|
77
|
+
}
|
78
|
+
|
79
|
+
// Large grid
|
80
|
+
//
|
81
|
+
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
82
|
+
.page-content.lg {
|
83
|
+
/* @media (min-width: $screen-lg-min) { */
|
84
|
+
@include make-grid(lg);
|
85
|
+
}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
//
|
2
|
+
// Modals
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// .modal-open - body class for killing the scroll
|
6
|
+
// .modal - container to scroll within
|
7
|
+
// .modal-dialog - positioning shell for the actual modal
|
8
|
+
// .modal-content - actual modal w/ bg and corners and shit
|
9
|
+
|
10
|
+
// Kill the scroll on the body
|
11
|
+
.modal-open {
|
12
|
+
overflow: hidden;
|
13
|
+
}
|
14
|
+
|
15
|
+
// Container that the modal scrolls within
|
16
|
+
.modal {
|
17
|
+
display: none;
|
18
|
+
overflow: hidden;
|
19
|
+
position: fixed;
|
20
|
+
top: 0;
|
21
|
+
right: 0;
|
22
|
+
bottom: 0;
|
23
|
+
left: 0;
|
24
|
+
z-index: $zindex-modal;
|
25
|
+
-webkit-overflow-scrolling: touch;
|
26
|
+
|
27
|
+
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
28
|
+
// https://github.com/twbs/bootstrap/pull/10951.
|
29
|
+
outline: 0;
|
30
|
+
|
31
|
+
// When fading in the modal, animate it to slide down
|
32
|
+
&.fade .modal-dialog {
|
33
|
+
@include translate3d(0, -25%, 0);
|
34
|
+
@include transition-transform(0.3s ease-out);
|
35
|
+
}
|
36
|
+
&.in .modal-dialog { @include translate3d(0, 0, 0) }
|
37
|
+
}
|
38
|
+
.modal-open .modal {
|
39
|
+
overflow-x: hidden;
|
40
|
+
overflow-y: auto;
|
41
|
+
}
|
42
|
+
|
43
|
+
// Shell div to position the modal with bottom padding
|
44
|
+
.modal-dialog {
|
45
|
+
position: relative;
|
46
|
+
width: auto;
|
47
|
+
margin: 10px;
|
48
|
+
}
|
49
|
+
|
50
|
+
// Actual modal
|
51
|
+
.modal-content {
|
52
|
+
position: relative;
|
53
|
+
background-color: $modal-content-bg;
|
54
|
+
border: 1px solid $modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
|
55
|
+
border: 1px solid $modal-content-border-color;
|
56
|
+
border-radius: $border-radius-large;
|
57
|
+
@include box-shadow(0 3px 9px rgba(0,0,0,.5));
|
58
|
+
background-clip: padding-box;
|
59
|
+
// Remove focus outline from opened modal
|
60
|
+
outline: 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
// Modal background
|
64
|
+
.modal-backdrop {
|
65
|
+
position: fixed;
|
66
|
+
top: 0;
|
67
|
+
right: 0;
|
68
|
+
bottom: 0;
|
69
|
+
left: 0;
|
70
|
+
z-index: $zindex-modal-background;
|
71
|
+
background-color: $modal-backdrop-bg;
|
72
|
+
// Fade for backdrop
|
73
|
+
&.fade { @include opacity(0); }
|
74
|
+
&.in { @include opacity($modal-backdrop-opacity); }
|
75
|
+
}
|
76
|
+
|
77
|
+
// Modal header
|
78
|
+
// Top section of the modal w/ title and dismiss
|
79
|
+
.modal-header {
|
80
|
+
padding: $modal-title-padding;
|
81
|
+
border-bottom: 1px solid $modal-header-border-color;
|
82
|
+
min-height: ($modal-title-padding + $modal-title-line-height);
|
83
|
+
}
|
84
|
+
// Close icon
|
85
|
+
.modal-header .close {
|
86
|
+
margin-top: -2px;
|
87
|
+
}
|
88
|
+
|
89
|
+
// Title text within header
|
90
|
+
.modal-title {
|
91
|
+
margin: 0;
|
92
|
+
line-height: $modal-title-line-height;
|
93
|
+
}
|
94
|
+
|
95
|
+
// Modal body
|
96
|
+
// Where all modal content resides (sibling of .modal-header and .modal-footer)
|
97
|
+
.modal-body {
|
98
|
+
position: relative;
|
99
|
+
padding: $modal-inner-padding;
|
100
|
+
}
|
101
|
+
|
102
|
+
// Footer (for actions)
|
103
|
+
.modal-footer {
|
104
|
+
padding: $modal-inner-padding;
|
105
|
+
text-align: right; // right align buttons
|
106
|
+
border-top: 1px solid $modal-footer-border-color;
|
107
|
+
@include clearfix(); // clear it in case folks use .pull-* classes on buttons
|
108
|
+
|
109
|
+
// Properly space out buttons
|
110
|
+
.btn + .btn {
|
111
|
+
margin-left: 5px;
|
112
|
+
margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
|
113
|
+
}
|
114
|
+
// but override that for button groups
|
115
|
+
.btn-group .btn + .btn {
|
116
|
+
margin-left: -1px;
|
117
|
+
}
|
118
|
+
// and override it for block buttons as well
|
119
|
+
.btn-block + .btn-block {
|
120
|
+
margin-left: 0;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
// Measure scrollbar width for padding body during modal show/hide
|
125
|
+
.modal-scrollbar-measure {
|
126
|
+
position: absolute;
|
127
|
+
top: -9999px;
|
128
|
+
width: 50px;
|
129
|
+
height: 50px;
|
130
|
+
overflow: scroll;
|
131
|
+
}
|
132
|
+
|
133
|
+
// Scale up the modal
|
134
|
+
@media (min-width: $screen-sm-min) {
|
135
|
+
// Automatically set modal's width for larger viewports
|
136
|
+
.modal-dialog {
|
137
|
+
width: $modal-md;
|
138
|
+
margin: 30px auto;
|
139
|
+
}
|
140
|
+
.modal-content {
|
141
|
+
@include box-shadow(0 5px 15px rgba(0,0,0,.5));
|
142
|
+
}
|
143
|
+
|
144
|
+
// Modal sizes
|
145
|
+
.modal-sm { width: $modal-sm; }
|
146
|
+
}
|
147
|
+
|
148
|
+
@media (min-width: $screen-md-min) {
|
149
|
+
.modal-lg { width: $modal-lg; }
|
150
|
+
}
|