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,258 @@
|
|
1
|
+
|
2
|
+
//
|
3
|
+
// Load core variables and mixins
|
4
|
+
// --------------------------------------------------
|
5
|
+
|
6
|
+
@import "variables";
|
7
|
+
@import "mixins";
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
//
|
12
|
+
// Buttons
|
13
|
+
// --------------------------------------------------
|
14
|
+
|
15
|
+
// Common styles
|
16
|
+
.btn-default,
|
17
|
+
.btn-primary,
|
18
|
+
.btn-success,
|
19
|
+
.btn-info,
|
20
|
+
.btn-warning,
|
21
|
+
.btn-danger {
|
22
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
|
23
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
|
24
|
+
@include box-shadow($shadow);
|
25
|
+
|
26
|
+
// Reset the shadow
|
27
|
+
&:active,
|
28
|
+
&.active {
|
29
|
+
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
// Mixin for generating new styles
|
34
|
+
@mixin btn-styles($btn-color: #555) {
|
35
|
+
@include gradient-vertical($start-color: $btn-color, $end-color: darken($btn-color, 12%));
|
36
|
+
@include reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
|
37
|
+
background-repeat: repeat-x;
|
38
|
+
border-color: darken($btn-color, 14%);
|
39
|
+
|
40
|
+
&:hover,
|
41
|
+
&:focus {
|
42
|
+
background-color: darken($btn-color, 12%);
|
43
|
+
background-position: 0 -15px;
|
44
|
+
}
|
45
|
+
|
46
|
+
&:active,
|
47
|
+
&.active {
|
48
|
+
background-color: darken($btn-color, 12%);
|
49
|
+
border-color: darken($btn-color, 14%);
|
50
|
+
}
|
51
|
+
|
52
|
+
&:disabled,
|
53
|
+
&[disabled] {
|
54
|
+
background-color: darken($btn-color, 12%);
|
55
|
+
background-image: none;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
// Common styles
|
60
|
+
.btn {
|
61
|
+
// Remove the gradient for the pressed/active state
|
62
|
+
&:active,
|
63
|
+
&.active {
|
64
|
+
background-image: none;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
// Apply the mixin to the buttons
|
69
|
+
.btn-default { @include btn-styles($btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
|
70
|
+
.btn-primary { @include btn-styles($btn-primary-bg); }
|
71
|
+
.btn-success { @include btn-styles($btn-success-bg); }
|
72
|
+
.btn-info { @include btn-styles($btn-info-bg); }
|
73
|
+
.btn-warning { @include btn-styles($btn-warning-bg); }
|
74
|
+
.btn-danger { @include btn-styles($btn-danger-bg); }
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
//
|
79
|
+
// Images
|
80
|
+
// --------------------------------------------------
|
81
|
+
|
82
|
+
.thumbnail,
|
83
|
+
.img-thumbnail {
|
84
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.075));
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
//
|
90
|
+
// Dropdowns
|
91
|
+
// --------------------------------------------------
|
92
|
+
|
93
|
+
.dropdown-menu > li > a:hover,
|
94
|
+
.dropdown-menu > li > a:focus {
|
95
|
+
@include gradient-vertical($start-color: $dropdown-link-hover-bg, $end-color: darken($dropdown-link-hover-bg, 5%));
|
96
|
+
background-color: darken($dropdown-link-hover-bg, 5%);
|
97
|
+
}
|
98
|
+
.dropdown-menu > .active > a,
|
99
|
+
.dropdown-menu > .active > a:hover,
|
100
|
+
.dropdown-menu > .active > a:focus {
|
101
|
+
@include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
|
102
|
+
background-color: darken($dropdown-link-active-bg, 5%);
|
103
|
+
}
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
//
|
108
|
+
// Navbar
|
109
|
+
// --------------------------------------------------
|
110
|
+
|
111
|
+
// Default navbar
|
112
|
+
.navbar-default {
|
113
|
+
@include gradient-vertical($start-color: lighten($navbar-default-bg, 10%), $end-color: $navbar-default-bg);
|
114
|
+
@include reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
115
|
+
border-radius: $navbar-border-radius;
|
116
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
|
117
|
+
@include box-shadow($shadow);
|
118
|
+
|
119
|
+
.navbar-nav > .active > a {
|
120
|
+
@include gradient-vertical($start-color: darken($navbar-default-bg, 5%), $end-color: darken($navbar-default-bg, 2%));
|
121
|
+
@include box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
|
122
|
+
}
|
123
|
+
}
|
124
|
+
.navbar-brand,
|
125
|
+
.navbar-nav > li > a {
|
126
|
+
text-shadow: 0 1px 0 rgba(255,255,255,.25);
|
127
|
+
}
|
128
|
+
|
129
|
+
// Inverted navbar
|
130
|
+
.navbar-inverse {
|
131
|
+
@include gradient-vertical($start-color: lighten($navbar-inverse-bg, 10%), $end-color: $navbar-inverse-bg);
|
132
|
+
@include reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
133
|
+
|
134
|
+
.navbar-nav > .active > a {
|
135
|
+
@include gradient-vertical($start-color: $navbar-inverse-bg, $end-color: lighten($navbar-inverse-bg, 2.5%));
|
136
|
+
@include box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
|
137
|
+
}
|
138
|
+
|
139
|
+
.navbar-brand,
|
140
|
+
.navbar-nav > li > a {
|
141
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
// Undo rounded corners in static and fixed navbars
|
146
|
+
.navbar-static-top,
|
147
|
+
.navbar-fixed-top,
|
148
|
+
.navbar-fixed-bottom {
|
149
|
+
border-radius: 0;
|
150
|
+
}
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
//
|
155
|
+
// Alerts
|
156
|
+
// --------------------------------------------------
|
157
|
+
|
158
|
+
// Common styles
|
159
|
+
.alert {
|
160
|
+
text-shadow: 0 1px 0 rgba(255,255,255,.2);
|
161
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
|
162
|
+
@include box-shadow($shadow);
|
163
|
+
}
|
164
|
+
|
165
|
+
// Mixin for generating new styles
|
166
|
+
@mixin alert-styles($color) {
|
167
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 7.5%));
|
168
|
+
border-color: darken($color, 15%);
|
169
|
+
}
|
170
|
+
|
171
|
+
// Apply the mixin to the alerts
|
172
|
+
.alert-success { @include alert-styles($alert-success-bg); }
|
173
|
+
.alert-info { @include alert-styles($alert-info-bg); }
|
174
|
+
.alert-warning { @include alert-styles($alert-warning-bg); }
|
175
|
+
.alert-danger { @include alert-styles($alert-danger-bg); }
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
//
|
180
|
+
// Progress bars
|
181
|
+
// --------------------------------------------------
|
182
|
+
|
183
|
+
// Give the progress background some depth
|
184
|
+
.progress {
|
185
|
+
@include gradient-vertical($start-color: darken($progress-bg, 4%), $end-color: $progress-bg)
|
186
|
+
}
|
187
|
+
|
188
|
+
// Mixin for generating new styles
|
189
|
+
@mixin progress-bar-styles($color) {
|
190
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 10%));
|
191
|
+
}
|
192
|
+
|
193
|
+
// Apply the mixin to the progress bars
|
194
|
+
.progress-bar { @include progress-bar-styles($progress-bar-bg); }
|
195
|
+
.progress-bar-success { @include progress-bar-styles($progress-bar-success-bg); }
|
196
|
+
.progress-bar-info { @include progress-bar-styles($progress-bar-info-bg); }
|
197
|
+
.progress-bar-warning { @include progress-bar-styles($progress-bar-warning-bg); }
|
198
|
+
.progress-bar-danger { @include progress-bar-styles($progress-bar-danger-bg); }
|
199
|
+
|
200
|
+
// Reset the striped class because our mixins don't do multiple gradients and
|
201
|
+
// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
|
202
|
+
.progress-bar-striped {
|
203
|
+
@include gradient-striped();
|
204
|
+
}
|
205
|
+
|
206
|
+
|
207
|
+
//
|
208
|
+
// List groups
|
209
|
+
// --------------------------------------------------
|
210
|
+
|
211
|
+
.list-group {
|
212
|
+
border-radius: $border-radius-base;
|
213
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.075));
|
214
|
+
}
|
215
|
+
.list-group-item.active,
|
216
|
+
.list-group-item.active:hover,
|
217
|
+
.list-group-item.active:focus {
|
218
|
+
text-shadow: 0 -1px 0 darken($list-group-active-bg, 10%);
|
219
|
+
@include gradient-vertical($start-color: $list-group-active-bg, $end-color: darken($list-group-active-bg, 7.5%));
|
220
|
+
border-color: darken($list-group-active-border, 7.5%);
|
221
|
+
}
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
//
|
226
|
+
// Panels
|
227
|
+
// --------------------------------------------------
|
228
|
+
|
229
|
+
// Common styles
|
230
|
+
.panel {
|
231
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.05));
|
232
|
+
}
|
233
|
+
|
234
|
+
// Mixin for generating new styles
|
235
|
+
@mixin panel-heading-styles($color) {
|
236
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 5%));
|
237
|
+
}
|
238
|
+
|
239
|
+
// Apply the mixin to the panel headings only
|
240
|
+
.panel-default > .panel-heading { @include panel-heading-styles($panel-default-heading-bg); }
|
241
|
+
.panel-primary > .panel-heading { @include panel-heading-styles($panel-primary-heading-bg); }
|
242
|
+
.panel-success > .panel-heading { @include panel-heading-styles($panel-success-heading-bg); }
|
243
|
+
.panel-info > .panel-heading { @include panel-heading-styles($panel-info-heading-bg); }
|
244
|
+
.panel-warning > .panel-heading { @include panel-heading-styles($panel-warning-heading-bg); }
|
245
|
+
.panel-danger > .panel-heading { @include panel-heading-styles($panel-danger-heading-bg); }
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
//
|
250
|
+
// Wells
|
251
|
+
// --------------------------------------------------
|
252
|
+
|
253
|
+
.well {
|
254
|
+
@include gradient-vertical($start-color: darken($well-bg, 5%), $end-color: $well-bg);
|
255
|
+
border-color: darken($well-bg, 10%);
|
256
|
+
$shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
|
257
|
+
@include box-shadow($shadow);
|
258
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//
|
2
|
+
// Thumbnails
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Mixin and adjust the regular image class
|
7
|
+
.thumbnail {
|
8
|
+
display: block;
|
9
|
+
padding: $thumbnail-padding;
|
10
|
+
margin-bottom: $line-height-computed;
|
11
|
+
line-height: $line-height-base;
|
12
|
+
background-color: $thumbnail-bg;
|
13
|
+
border: 1px solid $thumbnail-border;
|
14
|
+
border-radius: $thumbnail-border-radius;
|
15
|
+
@include transition(all .2s ease-in-out);
|
16
|
+
|
17
|
+
> img,
|
18
|
+
a > img {
|
19
|
+
@include img-responsive();
|
20
|
+
margin-left: auto;
|
21
|
+
margin-right: auto;
|
22
|
+
}
|
23
|
+
|
24
|
+
// [converter] extracted a&:hover, a&:focus, a&.active to a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active
|
25
|
+
|
26
|
+
// Image captions
|
27
|
+
.caption {
|
28
|
+
padding: $thumbnail-caption-padding;
|
29
|
+
color: $thumbnail-caption-color;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
// Add a hover state for linked versions only
|
34
|
+
a.thumbnail:hover,
|
35
|
+
a.thumbnail:focus,
|
36
|
+
a.thumbnail.active {
|
37
|
+
border-color: $link-color;
|
38
|
+
}
|
@@ -0,0 +1,95 @@
|
|
1
|
+
//
|
2
|
+
// Tooltips
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.tooltip {
|
8
|
+
position: absolute;
|
9
|
+
z-index: $zindex-tooltip;
|
10
|
+
display: block;
|
11
|
+
visibility: visible;
|
12
|
+
font-size: $font-size-small;
|
13
|
+
line-height: 1.4;
|
14
|
+
@include opacity(0);
|
15
|
+
|
16
|
+
&.in { @include opacity($tooltip-opacity); }
|
17
|
+
&.top { margin-top: -3px; padding: $tooltip-arrow-width 0; }
|
18
|
+
&.right { margin-left: 3px; padding: 0 $tooltip-arrow-width; }
|
19
|
+
&.bottom { margin-top: 3px; padding: $tooltip-arrow-width 0; }
|
20
|
+
&.left { margin-left: -3px; padding: 0 $tooltip-arrow-width; }
|
21
|
+
}
|
22
|
+
|
23
|
+
// Wrapper for the tooltip content
|
24
|
+
.tooltip-inner {
|
25
|
+
max-width: $tooltip-max-width;
|
26
|
+
padding: 3px 8px;
|
27
|
+
color: $tooltip-color;
|
28
|
+
text-align: center;
|
29
|
+
text-decoration: none;
|
30
|
+
background-color: $tooltip-bg;
|
31
|
+
border-radius: $border-radius-base;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Arrows
|
35
|
+
.tooltip-arrow {
|
36
|
+
position: absolute;
|
37
|
+
width: 0;
|
38
|
+
height: 0;
|
39
|
+
border-color: transparent;
|
40
|
+
border-style: solid;
|
41
|
+
}
|
42
|
+
.tooltip {
|
43
|
+
&.top .tooltip-arrow {
|
44
|
+
bottom: 0;
|
45
|
+
left: 50%;
|
46
|
+
margin-left: -$tooltip-arrow-width;
|
47
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
48
|
+
border-top-color: $tooltip-arrow-color;
|
49
|
+
}
|
50
|
+
&.top-left .tooltip-arrow {
|
51
|
+
bottom: 0;
|
52
|
+
left: $tooltip-arrow-width;
|
53
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
54
|
+
border-top-color: $tooltip-arrow-color;
|
55
|
+
}
|
56
|
+
&.top-right .tooltip-arrow {
|
57
|
+
bottom: 0;
|
58
|
+
right: $tooltip-arrow-width;
|
59
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
60
|
+
border-top-color: $tooltip-arrow-color;
|
61
|
+
}
|
62
|
+
&.right .tooltip-arrow {
|
63
|
+
top: 50%;
|
64
|
+
left: 0;
|
65
|
+
margin-top: -$tooltip-arrow-width;
|
66
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width $tooltip-arrow-width 0;
|
67
|
+
border-right-color: $tooltip-arrow-color;
|
68
|
+
}
|
69
|
+
&.left .tooltip-arrow {
|
70
|
+
top: 50%;
|
71
|
+
right: 0;
|
72
|
+
margin-top: -$tooltip-arrow-width;
|
73
|
+
border-width: $tooltip-arrow-width 0 $tooltip-arrow-width $tooltip-arrow-width;
|
74
|
+
border-left-color: $tooltip-arrow-color;
|
75
|
+
}
|
76
|
+
&.bottom .tooltip-arrow {
|
77
|
+
top: 0;
|
78
|
+
left: 50%;
|
79
|
+
margin-left: -$tooltip-arrow-width;
|
80
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
81
|
+
border-bottom-color: $tooltip-arrow-color;
|
82
|
+
}
|
83
|
+
&.bottom-left .tooltip-arrow {
|
84
|
+
top: 0;
|
85
|
+
left: $tooltip-arrow-width;
|
86
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
87
|
+
border-bottom-color: $tooltip-arrow-color;
|
88
|
+
}
|
89
|
+
&.bottom-right .tooltip-arrow {
|
90
|
+
top: 0;
|
91
|
+
right: $tooltip-arrow-width;
|
92
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
93
|
+
border-bottom-color: $tooltip-arrow-color;
|
94
|
+
}
|
95
|
+
}
|
@@ -0,0 +1,304 @@
|
|
1
|
+
//
|
2
|
+
// Typography
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Headings
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
h1, h2, h3, h4, h5, h6,
|
10
|
+
.h1, .h2, .h3, .h4, .h5, .h6 {
|
11
|
+
font-family: $headings-font-family;
|
12
|
+
font-weight: $headings-font-weight;
|
13
|
+
line-height: $headings-line-height;
|
14
|
+
color: $headings-color;
|
15
|
+
|
16
|
+
small,
|
17
|
+
.small {
|
18
|
+
font-weight: normal;
|
19
|
+
line-height: 1;
|
20
|
+
color: $headings-small-color;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
h1, .h1,
|
25
|
+
h2, .h2,
|
26
|
+
h3, .h3 {
|
27
|
+
margin-top: $line-height-computed;
|
28
|
+
margin-bottom: ($line-height-computed / 2);
|
29
|
+
|
30
|
+
small,
|
31
|
+
.small {
|
32
|
+
font-size: 65%;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
h4, .h4,
|
36
|
+
h5, .h5,
|
37
|
+
h6, .h6 {
|
38
|
+
margin-top: ($line-height-computed / 2);
|
39
|
+
margin-bottom: ($line-height-computed / 2);
|
40
|
+
|
41
|
+
small,
|
42
|
+
.small {
|
43
|
+
font-size: 75%;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
h1, .h1 { font-size: $font-size-h1; }
|
48
|
+
h2, .h2 { font-size: $font-size-h2; }
|
49
|
+
h3, .h3 { font-size: $font-size-h3; }
|
50
|
+
h4, .h4 { font-size: $font-size-h4; }
|
51
|
+
h5, .h5 { font-size: $font-size-h5; }
|
52
|
+
h6, .h6 { font-size: $font-size-h6; }
|
53
|
+
|
54
|
+
|
55
|
+
// Body text
|
56
|
+
// -------------------------
|
57
|
+
|
58
|
+
p {
|
59
|
+
margin: 0 0 ($line-height-computed / 2);
|
60
|
+
}
|
61
|
+
|
62
|
+
.lead {
|
63
|
+
margin-bottom: $line-height-computed;
|
64
|
+
font-size: floor(($font-size-base * 1.15));
|
65
|
+
font-weight: 300;
|
66
|
+
line-height: 1.4;
|
67
|
+
|
68
|
+
@media (min-width: $screen-sm-min) {
|
69
|
+
font-size: ($font-size-base * 1.5);
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
// Emphasis & misc
|
75
|
+
// -------------------------
|
76
|
+
|
77
|
+
// Ex: (12px small font / 14px base font) * 100% = about 85%
|
78
|
+
small,
|
79
|
+
.small {
|
80
|
+
font-size: floor((100% * $font-size-small / $font-size-base));
|
81
|
+
}
|
82
|
+
|
83
|
+
// Undo browser default styling
|
84
|
+
cite {
|
85
|
+
font-style: normal;
|
86
|
+
}
|
87
|
+
|
88
|
+
mark,
|
89
|
+
.mark {
|
90
|
+
background-color: $state-warning-bg;
|
91
|
+
padding: .2em;
|
92
|
+
}
|
93
|
+
|
94
|
+
// Alignment
|
95
|
+
.text-left { text-align: left; }
|
96
|
+
.text-right { text-align: right; }
|
97
|
+
.text-center { text-align: center; }
|
98
|
+
.text-justify { text-align: justify; }
|
99
|
+
.text-nowrap { white-space: nowrap; }
|
100
|
+
|
101
|
+
// Transformation
|
102
|
+
.text-lowercase { text-transform: lowercase; }
|
103
|
+
.text-uppercase { text-transform: uppercase; }
|
104
|
+
.text-capitalize { text-transform: capitalize; }
|
105
|
+
|
106
|
+
// Contextual colors
|
107
|
+
.text-muted {
|
108
|
+
color: $text-muted;
|
109
|
+
}
|
110
|
+
|
111
|
+
@include text-emphasis-variant('.text-primary', $brand-primary);
|
112
|
+
|
113
|
+
@include text-emphasis-variant('.text-success', $state-success-text);
|
114
|
+
|
115
|
+
@include text-emphasis-variant('.text-info', $state-info-text);
|
116
|
+
|
117
|
+
@include text-emphasis-variant('.text-warning', $state-warning-text);
|
118
|
+
|
119
|
+
@include text-emphasis-variant('.text-danger', $state-danger-text);
|
120
|
+
|
121
|
+
// Contextual backgrounds
|
122
|
+
// For now we'll leave these alongside the text classes until v4 when we can
|
123
|
+
// safely shift things around (per SemVer rules).
|
124
|
+
.bg-primary {
|
125
|
+
// Given the contrast here, this is the only class to have its color inverted
|
126
|
+
// automatically.
|
127
|
+
color: #fff;
|
128
|
+
}
|
129
|
+
@include bg-variant('.bg-primary', $brand-primary);
|
130
|
+
|
131
|
+
@include bg-variant('.bg-success', $state-success-bg);
|
132
|
+
|
133
|
+
@include bg-variant('.bg-info', $state-info-bg);
|
134
|
+
|
135
|
+
@include bg-variant('.bg-warning', $state-warning-bg);
|
136
|
+
|
137
|
+
@include bg-variant('.bg-danger', $state-danger-bg);
|
138
|
+
|
139
|
+
|
140
|
+
// Page header
|
141
|
+
// -------------------------
|
142
|
+
|
143
|
+
.page-header {
|
144
|
+
padding-bottom: (($line-height-computed / 2) - 1);
|
145
|
+
margin: ($line-height-computed * 2) 0 $line-height-computed;
|
146
|
+
border-bottom: 1px solid $page-header-border-color;
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
// Lists
|
151
|
+
// -------------------------
|
152
|
+
|
153
|
+
// Unordered and Ordered lists
|
154
|
+
ul,
|
155
|
+
ol {
|
156
|
+
margin-top: 0;
|
157
|
+
margin-bottom: ($line-height-computed / 2);
|
158
|
+
ul,
|
159
|
+
ol {
|
160
|
+
margin-bottom: 0;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
// List options
|
165
|
+
|
166
|
+
// Unstyled keeps list items block level, just removes default browser padding and list-style
|
167
|
+
.list-unstyled {
|
168
|
+
padding-left: 0;
|
169
|
+
list-style: none;
|
170
|
+
}
|
171
|
+
|
172
|
+
// Inline turns list items into inline-block
|
173
|
+
.list-inline {
|
174
|
+
@extend .list-unstyled;
|
175
|
+
margin-left: -5px;
|
176
|
+
|
177
|
+
> li {
|
178
|
+
display: inline-block;
|
179
|
+
padding-left: 5px;
|
180
|
+
padding-right: 5px;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
// Description Lists
|
185
|
+
dl {
|
186
|
+
margin-top: 0; // Remove browser default
|
187
|
+
margin-bottom: $line-height-computed;
|
188
|
+
}
|
189
|
+
dt,
|
190
|
+
dd {
|
191
|
+
line-height: $line-height-base;
|
192
|
+
}
|
193
|
+
dt {
|
194
|
+
font-weight: bold;
|
195
|
+
}
|
196
|
+
dd {
|
197
|
+
margin-left: 0; // Undo browser default
|
198
|
+
}
|
199
|
+
|
200
|
+
// Horizontal description lists
|
201
|
+
//
|
202
|
+
// Defaults to being stacked without any of the below styles applied, until the
|
203
|
+
// grid breakpoint is reached (default of ~768px).
|
204
|
+
|
205
|
+
.dl-horizontal {
|
206
|
+
dd {
|
207
|
+
@include clearfix(); // Clear the floated `dt` if an empty `dd` is present
|
208
|
+
}
|
209
|
+
|
210
|
+
@media (min-width: $grid-float-breakpoint) {
|
211
|
+
dt {
|
212
|
+
float: left;
|
213
|
+
width: ($dl-horizontal-offset - 20);
|
214
|
+
clear: left;
|
215
|
+
text-align: right;
|
216
|
+
@include text-overflow();
|
217
|
+
}
|
218
|
+
dd {
|
219
|
+
margin-left: $dl-horizontal-offset;
|
220
|
+
}
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
|
225
|
+
// Misc
|
226
|
+
// -------------------------
|
227
|
+
|
228
|
+
// Abbreviations and acronyms
|
229
|
+
abbr[title],
|
230
|
+
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
|
231
|
+
abbr[data-original-title] {
|
232
|
+
cursor: help;
|
233
|
+
border-bottom: 1px dotted $abbr-border-color;
|
234
|
+
}
|
235
|
+
.initialism {
|
236
|
+
font-size: 90%;
|
237
|
+
text-transform: uppercase;
|
238
|
+
}
|
239
|
+
|
240
|
+
// Blockquotes
|
241
|
+
blockquote {
|
242
|
+
padding: ($line-height-computed / 2) $line-height-computed;
|
243
|
+
margin: 0 0 $line-height-computed;
|
244
|
+
font-size: $blockquote-font-size;
|
245
|
+
border-left: 5px solid $blockquote-border-color;
|
246
|
+
|
247
|
+
p,
|
248
|
+
ul,
|
249
|
+
ol {
|
250
|
+
&:last-child {
|
251
|
+
margin-bottom: 0;
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
// Note: Deprecated small and .small as of v3.1.0
|
256
|
+
// Context: https://github.com/twbs/bootstrap/issues/11660
|
257
|
+
footer,
|
258
|
+
small,
|
259
|
+
.small {
|
260
|
+
display: block;
|
261
|
+
font-size: 80%; // back to default font-size
|
262
|
+
line-height: $line-height-base;
|
263
|
+
color: $blockquote-small-color;
|
264
|
+
|
265
|
+
&:before {
|
266
|
+
content: '\2014 \00A0'; // em dash, nbsp
|
267
|
+
}
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
// Opposite alignment of blockquote
|
272
|
+
//
|
273
|
+
// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
|
274
|
+
.blockquote-reverse,
|
275
|
+
blockquote.pull-right {
|
276
|
+
padding-right: 15px;
|
277
|
+
padding-left: 0;
|
278
|
+
border-right: 5px solid $blockquote-border-color;
|
279
|
+
border-left: 0;
|
280
|
+
text-align: right;
|
281
|
+
|
282
|
+
// Account for citation
|
283
|
+
footer,
|
284
|
+
small,
|
285
|
+
.small {
|
286
|
+
&:before { content: ''; }
|
287
|
+
&:after {
|
288
|
+
content: '\00A0 \2014'; // nbsp, em dash
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
// Quotes
|
294
|
+
blockquote:before,
|
295
|
+
blockquote:after {
|
296
|
+
content: "";
|
297
|
+
}
|
298
|
+
|
299
|
+
// Addresses
|
300
|
+
address {
|
301
|
+
margin-bottom: $line-height-computed;
|
302
|
+
font-style: normal;
|
303
|
+
line-height: $line-height-base;
|
304
|
+
}
|