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,272 @@
|
|
1
|
+
.header-top {
|
2
|
+
@extend .navbar;
|
3
|
+
@extend .navbar-inverse;
|
4
|
+
@extend .navbar-fixed-top;
|
5
|
+
z-index: 20;
|
6
|
+
height: 50px;
|
7
|
+
border-radius: 0;
|
8
|
+
margin: 0;
|
9
|
+
border: 0;
|
10
|
+
position:relative;
|
11
|
+
|
12
|
+
.navbar-header {
|
13
|
+
position: relative;
|
14
|
+
min-width: 203px;
|
15
|
+
width: 100%;
|
16
|
+
height: 50px;
|
17
|
+
margin-left: 0;
|
18
|
+
@media (max-width: 767px) {
|
19
|
+
float: right;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.logo {
|
24
|
+
display: inline-block;
|
25
|
+
height: 48px;
|
26
|
+
width: 150px;
|
27
|
+
margin: 2px;
|
28
|
+
background: url(asset_path('logo-sm.png')) no-repeat;
|
29
|
+
}
|
30
|
+
|
31
|
+
.navbar-toggle, .screens-menu-toggle {
|
32
|
+
color: #fff;
|
33
|
+
display: block;
|
34
|
+
float: left;
|
35
|
+
color: #fff;
|
36
|
+
border: 0;
|
37
|
+
padding: 6px 7px 7px;
|
38
|
+
line-height: 1;
|
39
|
+
background-color: rgba(0, 0, 0, 0.2);
|
40
|
+
margin: 12px 0 12px 0px;
|
41
|
+
border-radius: 0;
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
&.with-screen-menu{
|
46
|
+
.screens-menu-toggle {
|
47
|
+
display: none;
|
48
|
+
}
|
49
|
+
.navbar-toggle {
|
50
|
+
margin-right: 10px;
|
51
|
+
float: right;
|
52
|
+
}
|
53
|
+
.logo {
|
54
|
+
display: none;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
&.no-screen-menu .navbar-toggle {
|
58
|
+
display: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
.screens-menu {
|
62
|
+
width: 100%;
|
63
|
+
|
64
|
+
.navigation > li.active {
|
65
|
+
ul {
|
66
|
+
display: block;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
|
72
|
+
}
|
73
|
+
|
74
|
+
.page-content {
|
75
|
+
@extend .container-fluid;
|
76
|
+
position: relative;
|
77
|
+
min-height: 500px;
|
78
|
+
transition: all 0.15s ease-in-out 0s;
|
79
|
+
margin-left: 240px;
|
80
|
+
padding: 0px;
|
81
|
+
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
|
86
|
+
.page-container {
|
87
|
+
.screens-menu {
|
88
|
+
width: 240px;
|
89
|
+
z-index: 26;
|
90
|
+
left: 0;
|
91
|
+
top: 50px;
|
92
|
+
position: absolute;
|
93
|
+
bottom: 0;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
.screens-menu {
|
98
|
+
|
99
|
+
background-color: $navbar-inverse-bg;
|
100
|
+
|
101
|
+
.navigation {
|
102
|
+
border-bottom: 1px solid $navbar-inverse-border;
|
103
|
+
list-style: none outside none;
|
104
|
+
margin: 0 0 10px;
|
105
|
+
padding: 0;
|
106
|
+
a {
|
107
|
+
color: $navbar-inverse-link-color;
|
108
|
+
}
|
109
|
+
li {
|
110
|
+
position: relative;
|
111
|
+
> a {
|
112
|
+
text-decoration: none;
|
113
|
+
border-left: 3px solid transparent;
|
114
|
+
color: $navbar-inverse-link-color;
|
115
|
+
display: block;
|
116
|
+
padding: 13px 40px 14px 14px;
|
117
|
+
> i {
|
118
|
+
opacity: 0.5;
|
119
|
+
position: absolute;
|
120
|
+
right: 14px;
|
121
|
+
top: 13px;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
> li {
|
126
|
+
border-top: 1px solid #49565d;
|
127
|
+
position: relative;
|
128
|
+
font-size: 15px;
|
129
|
+
&.active {
|
130
|
+
&:focus > a,
|
131
|
+
&:hover > a {
|
132
|
+
color: $navbar-inverse-link-active-color;
|
133
|
+
background-color: $navbar-inverse-link-active-bg;
|
134
|
+
}
|
135
|
+
> a {
|
136
|
+
color: $navbar-inverse-link-active-color;
|
137
|
+
background-color: $navbar-inverse-link-active-bg;
|
138
|
+
span {
|
139
|
+
&:after {
|
140
|
+
font-family: 'skr-icon';
|
141
|
+
color: #339900;
|
142
|
+
content: "\00a0\00a0\f067";
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
&:hover > a {
|
148
|
+
border-left: 3px solid $navbar-inverse-link-active-bg;
|
149
|
+
color: $navbar-inverse-link-hover-color;
|
150
|
+
background-color: $navbar-default-link-hover-color;
|
151
|
+
}
|
152
|
+
ul {
|
153
|
+
background-color: lighten($navbar-inverse-bg,20%);
|
154
|
+
display: none;
|
155
|
+
font-size: 13px;
|
156
|
+
list-style: none outside none;
|
157
|
+
margin: 0;
|
158
|
+
padding: 0;
|
159
|
+
> li {
|
160
|
+
border-top: 1px solid #35454b;
|
161
|
+
&:first-child {
|
162
|
+
border-top: 0 none;
|
163
|
+
}
|
164
|
+
> a {
|
165
|
+
color: #fff;
|
166
|
+
display: block;
|
167
|
+
padding: 13px 14px 14px 24px;
|
168
|
+
padding-left: 30px;
|
169
|
+
|
170
|
+
&:hover {
|
171
|
+
background: none repeat scroll 0 0 #27353a;
|
172
|
+
text-decoration: none;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
.logout>a {
|
181
|
+
border-bottom: 2px solid #49565d;
|
182
|
+
i {
|
183
|
+
font-size: 30px;
|
184
|
+
top: 6px;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
.menu-hidden {
|
192
|
+
.page-content {
|
193
|
+
margin-left: 0px;
|
194
|
+
}
|
195
|
+
.screens-menu {
|
196
|
+
display: none;
|
197
|
+
}
|
198
|
+
}
|
199
|
+
|
200
|
+
.menu-wide {
|
201
|
+
|
202
|
+
.screens-menu {
|
203
|
+
overflow-x: visible;
|
204
|
+
overflow-y: auto;
|
205
|
+
width: 240px;
|
206
|
+
}
|
207
|
+
.navigation > li.active {
|
208
|
+
ul {
|
209
|
+
display: block;
|
210
|
+
}
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
.menu-narrow {
|
215
|
+
.screens-menu {
|
216
|
+
background-color: $navbar-inverse-bg;
|
217
|
+
width: 60px;
|
218
|
+
}
|
219
|
+
.navigation > li {
|
220
|
+
> a {
|
221
|
+
> {
|
222
|
+
span {
|
223
|
+
display: none;
|
224
|
+
}
|
225
|
+
i {
|
226
|
+
display: block;
|
227
|
+
position: static;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
padding: 17px 3px 18px 0;
|
231
|
+
text-align: center;
|
232
|
+
width: 100%;
|
233
|
+
}
|
234
|
+
|
235
|
+
ul {
|
236
|
+
list-style: none outside none;
|
237
|
+
margin: 0;
|
238
|
+
padding: 0;
|
239
|
+
}
|
240
|
+
> ul {
|
241
|
+
border-left: 1px solid rgba(255, 255, 255, 0.1);
|
242
|
+
border-radius: 0 2px 2px 0;
|
243
|
+
display: none;
|
244
|
+
left: 100%;
|
245
|
+
margin-left: -1px;
|
246
|
+
position: absolute;
|
247
|
+
top: 0;
|
248
|
+
width: 220px;
|
249
|
+
}
|
250
|
+
> ul > li {
|
251
|
+
&:first-child {
|
252
|
+
border-top: 0 none;
|
253
|
+
> a {
|
254
|
+
border-radius: 2px 2px 0 0;
|
255
|
+
}
|
256
|
+
}
|
257
|
+
&:last-child > a {
|
258
|
+
border-radius: 0 0 2px 2px;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
&:hover > ul {
|
262
|
+
display: block;
|
263
|
+
}
|
264
|
+
&.expand > ul {
|
265
|
+
display: block;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
.page-content {
|
270
|
+
margin-left: 60px;
|
271
|
+
}
|
272
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
.overlay {
|
2
|
+
position: absolute;
|
3
|
+
z-index: 31;
|
4
|
+
.mask {
|
5
|
+
background-color: white;
|
6
|
+
height: 100%;
|
7
|
+
left: 0;
|
8
|
+
opacity: 0.8;
|
9
|
+
position: absolute;
|
10
|
+
top: 0;
|
11
|
+
width: 100%;
|
12
|
+
}
|
13
|
+
.message {
|
14
|
+
min-width: 100px;
|
15
|
+
min-height: 65px;
|
16
|
+
line-height: 1.35;
|
17
|
+
border: 2px solid $well-border;
|
18
|
+
margin-left: auto;
|
19
|
+
margin-right: auto;
|
20
|
+
position: relative;
|
21
|
+
top: 25%;
|
22
|
+
border-radius: $border-radius-large;
|
23
|
+
padding: 10px;
|
24
|
+
box-shadow: 6px 7px 5px $gray-light;
|
25
|
+
background-color: $body-bg;
|
26
|
+
width: 70%;
|
27
|
+
i {
|
28
|
+
display: inline-block;
|
29
|
+
font-size: 3.2rem;
|
30
|
+
float: left;
|
31
|
+
&.loading-spinner {
|
32
|
+
background:url(asset_path('ajax-loader.gif')) no-repeat;
|
33
|
+
height: 32px;
|
34
|
+
margin-top: 10px;
|
35
|
+
width: 32px;
|
36
|
+
}
|
37
|
+
&.icon-success {
|
38
|
+
color: darkgreen;
|
39
|
+
}
|
40
|
+
&.icon-warning {
|
41
|
+
color: darkred;
|
42
|
+
}
|
43
|
+
|
44
|
+
}
|
45
|
+
p {
|
46
|
+
display: inline;
|
47
|
+
margin: 0;
|
48
|
+
font-size: $font-size-large;
|
49
|
+
color: $gray-darker;
|
50
|
+
}
|
51
|
+
&.short {
|
52
|
+
width: 250px;
|
53
|
+
padding: 5px;
|
54
|
+
p {
|
55
|
+
position: relative;
|
56
|
+
top: 15px;
|
57
|
+
left: 5px;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
}
|
62
|
+
|
63
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
.resize-triggers {
|
2
|
+
visibility: hidden;
|
3
|
+
}
|
4
|
+
|
5
|
+
.resize-triggers, .resize-triggers > div, .contract-trigger:before {
|
6
|
+
content: " ";
|
7
|
+
display: block;
|
8
|
+
position: absolute;
|
9
|
+
top: 0;
|
10
|
+
left: 0;
|
11
|
+
height: 100%;
|
12
|
+
width: 100%;
|
13
|
+
overflow: hidden;
|
14
|
+
}
|
15
|
+
|
16
|
+
.resize-triggers > div {
|
17
|
+
background: #eee;
|
18
|
+
overflow: auto;
|
19
|
+
}
|
20
|
+
|
21
|
+
.contract-trigger:before {
|
22
|
+
width: 200%;
|
23
|
+
height: 200%;
|
24
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
.screen {
|
2
|
+
padding: 5px;
|
3
|
+
overflow: hidden;
|
4
|
+
.toolbar {
|
5
|
+
margin-top: 10px;
|
6
|
+
}
|
7
|
+
|
8
|
+
.toolbar{
|
9
|
+
@extend .navbar;
|
10
|
+
@extend .navbar-default;
|
11
|
+
|
12
|
+
.btn {
|
13
|
+
@extend .btn-default;
|
14
|
+
@extend .navbar-btn;
|
15
|
+
}
|
16
|
+
|
17
|
+
.arrow {
|
18
|
+
border-style: solid;
|
19
|
+
|
20
|
+
border-left-color: transparent;
|
21
|
+
border-right-color: transparent;
|
22
|
+
|
23
|
+
border-bottom-color: $popover-title-bg;
|
24
|
+
border-top-color: $popover-title-bg !important;
|
25
|
+
|
26
|
+
border-width: 0 9px 9px;
|
27
|
+
height: 0;
|
28
|
+
left: 7px;
|
29
|
+
margin-top: 10px;
|
30
|
+
opacity: 1;
|
31
|
+
position: absolute;
|
32
|
+
top: -18px;
|
33
|
+
transition: all 0.25s ease 0s;
|
34
|
+
width: 0;
|
35
|
+
z-index: 10;
|
36
|
+
}
|
37
|
+
.navbar-left {
|
38
|
+
float: left;
|
39
|
+
}
|
40
|
+
.navbar-right{
|
41
|
+
float: right;
|
42
|
+
.arrow {
|
43
|
+
left: unset;
|
44
|
+
right: 10px;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
.dropdown-toggle {
|
49
|
+
.badge{
|
50
|
+
padding: 2px 2px 0;
|
51
|
+
position: relative;
|
52
|
+
font-size: 70%;
|
53
|
+
top: -6px;
|
54
|
+
right: 5px;
|
55
|
+
}
|
56
|
+
position: relative;
|
57
|
+
padding-right: 2px;
|
58
|
+
i {
|
59
|
+
/* position: absolute; */
|
60
|
+
/* left: 0px; */
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
}
|
65
|
+
|
66
|
+
}
|
@@ -0,0 +1,148 @@
|
|
1
|
+
.active-screens .nav a {
|
2
|
+
background-color: $gray-dark;
|
3
|
+
}
|
4
|
+
|
5
|
+
.header-top {
|
6
|
+
|
7
|
+
|
8
|
+
.menu-container {
|
9
|
+
position:absolute;
|
10
|
+
left: 0;
|
11
|
+
position: absolute;
|
12
|
+
overflow-x: visible;
|
13
|
+
overflow-y: auto;
|
14
|
+
border: 0;
|
15
|
+
top: 5px;
|
16
|
+
transition: all 0.15s ease-in-out 0s;
|
17
|
+
overflow-x: visible;
|
18
|
+
overflow-y: auto;
|
19
|
+
left: 200px;
|
20
|
+
right: 35px;
|
21
|
+
}
|
22
|
+
|
23
|
+
&.with-screen-menu {
|
24
|
+
.menu-container {
|
25
|
+
left: 0px;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
&.no-screen-menu {
|
30
|
+
.active-screens {
|
31
|
+
display: inline-block;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.menu-container {
|
36
|
+
.active-screens {
|
37
|
+
width: 100%;
|
38
|
+
.wrapper{
|
39
|
+
position:relative;
|
40
|
+
margin:0 auto;
|
41
|
+
overflow:hidden;
|
42
|
+
padding:5px;
|
43
|
+
height:45px;
|
44
|
+
|
45
|
+
}
|
46
|
+
.nav {
|
47
|
+
position:absolute;
|
48
|
+
left:0px;
|
49
|
+
top: 1px;
|
50
|
+
min-width:3000px;
|
51
|
+
/* margin-left:12px; */
|
52
|
+
margin-top:0px;
|
53
|
+
|
54
|
+
li {
|
55
|
+
display:table-cell;
|
56
|
+
position:relative;
|
57
|
+
text-align:center;
|
58
|
+
cursor:grab;
|
59
|
+
cursor:-webkit-grab;
|
60
|
+
color:#efefef;
|
61
|
+
vertical-align:middle;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
.scroller {
|
66
|
+
text-align:center;
|
67
|
+
cursor:pointer;
|
68
|
+
visibility: hidden;
|
69
|
+
padding:7px;
|
70
|
+
padding-top:11px;
|
71
|
+
white-space:no-wrap;
|
72
|
+
vertical-align:middle;
|
73
|
+
color: $link-color;
|
74
|
+
&:hover{
|
75
|
+
color: $link-hover-color;
|
76
|
+
}
|
77
|
+
&.enabled {
|
78
|
+
visibility: visible;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
.scroller-right{
|
83
|
+
float:right;
|
84
|
+
&:before {
|
85
|
+
@extend .font-icon-display;
|
86
|
+
@extend .icon-arrow-right:before;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
.scroller-left {
|
91
|
+
float:left;
|
92
|
+
&:before {
|
93
|
+
@extend .font-icon-display;
|
94
|
+
@extend .icon-arrow-left:before;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
|
101
|
+
&.screen-menu-hidden {
|
102
|
+
.menu-container {
|
103
|
+
max-height: 45px;
|
104
|
+
overflow: hidden;
|
105
|
+
}
|
106
|
+
.screens-menu {
|
107
|
+
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
&.screen-menu-visible {
|
112
|
+
.menu-container {
|
113
|
+
top: 50px;
|
114
|
+
left: 0px;
|
115
|
+
right: 0px;
|
116
|
+
/* bottom: unset; */
|
117
|
+
max-height: 300px;
|
118
|
+
}
|
119
|
+
.active-screens {
|
120
|
+
display: none;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
.active-screens {
|
125
|
+
|
126
|
+
height: 45px;
|
127
|
+
padding: 0 5px;
|
128
|
+
|
129
|
+
.nav-tabs {
|
130
|
+
border-bottom: 0;
|
131
|
+
position: absolute;
|
132
|
+
bottom: 0px;
|
133
|
+
}
|
134
|
+
|
135
|
+
.close {
|
136
|
+
position: absolute;
|
137
|
+
right: 7px;
|
138
|
+
top: 0px;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* a { */
|
142
|
+
/* white-space: nowrap; */
|
143
|
+
/* } */
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
|
148
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
//
|
2
|
+
// Alerts
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base styles
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
.alert {
|
10
|
+
padding: $alert-padding;
|
11
|
+
margin-bottom: $line-height-computed;
|
12
|
+
border: 1px solid transparent;
|
13
|
+
border-radius: $alert-border-radius;
|
14
|
+
|
15
|
+
// Headings for larger alerts
|
16
|
+
h4 {
|
17
|
+
margin-top: 0;
|
18
|
+
// Specified for the h4 to prevent conflicts of changing $headings-color
|
19
|
+
color: inherit;
|
20
|
+
}
|
21
|
+
// Provide class for links that match alerts
|
22
|
+
.alert-link {
|
23
|
+
font-weight: $alert-link-font-weight;
|
24
|
+
}
|
25
|
+
|
26
|
+
// Improve alignment and spacing of inner content
|
27
|
+
> p,
|
28
|
+
> ul {
|
29
|
+
margin-bottom: 0;
|
30
|
+
}
|
31
|
+
> p + p {
|
32
|
+
margin-top: 5px;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
// Dismissible alerts
|
37
|
+
//
|
38
|
+
// Expand the right padding and account for the close button's positioning.
|
39
|
+
|
40
|
+
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
|
41
|
+
.alert-dismissible {
|
42
|
+
padding-right: ($alert-padding + 20);
|
43
|
+
|
44
|
+
// Adjust close link position
|
45
|
+
.close {
|
46
|
+
position: relative;
|
47
|
+
top: -2px;
|
48
|
+
right: -21px;
|
49
|
+
color: inherit;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// Alternate styles
|
54
|
+
//
|
55
|
+
// Generate contextual modifier classes for colorizing the alert.
|
56
|
+
|
57
|
+
.alert-success {
|
58
|
+
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
|
59
|
+
}
|
60
|
+
.alert-info {
|
61
|
+
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
|
62
|
+
}
|
63
|
+
.alert-warning {
|
64
|
+
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
|
65
|
+
}
|
66
|
+
.alert-danger {
|
67
|
+
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
|
68
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
//
|
2
|
+
// Badges
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.badge {
|
8
|
+
display: inline-block;
|
9
|
+
min-width: 10px;
|
10
|
+
padding: 3px 7px;
|
11
|
+
font-size: $font-size-small;
|
12
|
+
font-weight: $badge-font-weight;
|
13
|
+
color: $badge-color;
|
14
|
+
line-height: $badge-line-height;
|
15
|
+
vertical-align: baseline;
|
16
|
+
white-space: nowrap;
|
17
|
+
text-align: center;
|
18
|
+
background-color: $badge-bg;
|
19
|
+
border-radius: $badge-border-radius;
|
20
|
+
|
21
|
+
// Empty badges collapse automatically (not available in IE8)
|
22
|
+
&:empty {
|
23
|
+
display: none;
|
24
|
+
}
|
25
|
+
|
26
|
+
// Quick fix for badges in buttons
|
27
|
+
.btn & {
|
28
|
+
position: relative;
|
29
|
+
top: -1px;
|
30
|
+
}
|
31
|
+
.btn-xs & {
|
32
|
+
top: 0;
|
33
|
+
padding: 1px 5px;
|
34
|
+
}
|
35
|
+
|
36
|
+
// [converter] extracted a& to a.badge
|
37
|
+
|
38
|
+
// Account for badges in navs
|
39
|
+
a.list-group-item.active > &,
|
40
|
+
.nav-pills > .active > a > & {
|
41
|
+
color: $badge-active-color;
|
42
|
+
background-color: $badge-active-bg;
|
43
|
+
}
|
44
|
+
.nav-pills > li > a > & {
|
45
|
+
margin-left: 3px;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
// Hover state, but only for links
|
50
|
+
a.badge {
|
51
|
+
&:hover,
|
52
|
+
&:focus {
|
53
|
+
color: $badge-link-hover-color;
|
54
|
+
text-decoration: none;
|
55
|
+
cursor: pointer;
|
56
|
+
}
|
57
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
//
|
2
|
+
// Breadcrumbs
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.breadcrumb {
|
7
|
+
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
|
8
|
+
margin-bottom: $line-height-computed;
|
9
|
+
list-style: none;
|
10
|
+
background-color: $breadcrumb-bg;
|
11
|
+
border-radius: $border-radius-base;
|
12
|
+
|
13
|
+
> li {
|
14
|
+
display: inline-block;
|
15
|
+
|
16
|
+
+ li:before {
|
17
|
+
content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
18
|
+
padding: 0 5px;
|
19
|
+
color: $breadcrumb-color;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
> .active {
|
24
|
+
color: $breadcrumb-active-color;
|
25
|
+
}
|
26
|
+
}
|