card 1.92.2 → 1.93.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +3 -3
- data/VERSION +1 -1
- data/card.gemspec +1 -1
- data/config/initializers/01_core_extensions/array.rb +1 -1
- data/config/initializers/01_core_extensions/object.rb +9 -0
- data/config/initializers/01_core_extensions/persistent_identifiers.rb +1 -1
- data/config/initializers/02_patches/action_dispatch.rb +1 -0
- data/config/initializers/02_patches/active_record.rb +42 -0
- data/config/initializers/02_patches/active_support.rb +13 -0
- data/config/initializers/deck_config.rb +3 -0
- data/config/initializers/patches.rb +37 -6
- data/config/locales/de.yml +1 -3
- data/config/locales/en.yml +1 -3
- data/db/migrate_core_cards/20120611203506_rails_inflection_updates.rb +3 -3
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +1 -1
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +1 -1
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +4 -4
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +1 -1
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +1 -1
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +1 -1
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +2 -2
- data/db/migrate_core_cards/20150501010515_responsive_sidebar.rb +1 -1
- data/db/migrate_core_cards/20150610180019_add_recaptcha_key_and_admin_info_cards.rb +2 -2
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +2 -2
- data/db/migrate_core_cards/20160811115836_rename_stats_to_admin.rb +1 -1
- data/db/migrate_core_cards/20160914132636_fix_mod_files.rb +3 -3
- data/db/migrate_core_cards/20170830210517_correct_signup_success_message.rb +2 -2
- data/db/migrate_core_cards/data/cards.yml +2 -2
- data/db/migrate_core_cards/data/cards/*header +1 -1
- data/lib/card.rb +53 -34
- data/lib/card/act_manager.rb +64 -10
- data/lib/card/act_manager/stage_director.rb +13 -2
- data/lib/card/act_manager/stage_director/phases.rb +6 -4
- data/lib/card/auth.rb +3 -1
- data/lib/card/cache.rb +8 -2
- data/lib/card/cache/persistent.rb +23 -10
- data/lib/card/codename.rb +59 -18
- data/lib/card/dirty.rb +39 -0
- data/lib/card/env/location.rb +1 -1
- data/lib/card/env/location_history.rb +1 -1
- data/lib/card/env/success.rb +1 -1
- data/lib/card/error.rb +3 -0
- data/lib/card/format.rb +55 -21
- data/lib/card/format/content.rb +1 -1
- data/lib/card/format/context_names.rb +2 -2
- data/lib/card/format/nest.rb +2 -2
- data/lib/card/format/nest/fetch.rb +1 -1
- data/lib/card/format/nest/subformat.rb +1 -1
- data/lib/card/format/render.rb +4 -18
- data/lib/card/migration.rb +1 -1
- data/lib/card/migration/import.rb +1 -1
- data/lib/card/migration/import/import_data.rb +5 -12
- data/lib/card/migration/import/import_data/card_attributes.rb +3 -4
- data/lib/card/mod.rb +4 -3
- data/lib/card/mod/dirs.rb +21 -10
- data/lib/card/mod/loader.rb +1 -1
- data/lib/card/model/save_helper.rb +1 -1
- data/lib/card/name.rb +8 -6
- data/lib/card/name/fields_and_traits.rb +5 -10
- data/lib/card/query.rb +1 -1
- data/lib/card/reference.rb +1 -1
- data/lib/card/set.rb +7 -14
- data/lib/card/set/advanced_api.rb +1 -0
- data/lib/card/set/event.rb +19 -109
- data/lib/card/set/event/delayed_event.rb +104 -0
- data/lib/card/set/format.rb +2 -2
- data/lib/card/set_pattern.rb +4 -4
- data/lib/card/subcards.rb +22 -35
- data/lib/card/tasks/card.rake +1 -2
- data/lib/card/view.rb +1 -2
- data/lib/card/view/cache.rb +1 -1
- data/lib/card/view/cache_action.rb +1 -1
- data/lib/card/view/options.rb +1 -1
- data/lib/card/view/stub.rb +5 -1
- data/lib/cardio.rb +50 -22
- data/mod/Modfile +1 -0
- data/mod/account/set/all/account.rb +2 -2
- data/mod/account/set/right/account.rb +4 -2
- data/mod/account/set/right/email.rb +1 -1
- data/mod/account/set/self/account_links.rb +2 -2
- data/mod/account/set/self/signin.rb +3 -3
- data/mod/account/spec/set/right/account_spec.rb +2 -2
- data/mod/account/spec/set/right/email_spec.rb +1 -1
- data/mod/account/spec/set/right/password_spec.rb +1 -1
- data/mod/account/spec/set/right/salt_spec.rb +1 -1
- data/mod/account/spec/set/type/signup_spec.rb +1 -1
- data/mod/basic_formats/format/css_format.rb +1 -2
- data/mod/basic_formats/format/csv_format.rb +1 -1
- data/mod/basic_formats/format/js_format.rb +4 -0
- data/mod/basic_formats/set/all/all_css.rb +3 -3
- data/mod/basic_formats/set/all/all_js.rb +1 -1
- data/mod/basic_formats/set/all/base.rb +5 -5
- data/mod/basic_formats/set/all/json.rb +4 -4
- data/mod/basic_formats/set/all/rss.rb +3 -3
- data/mod/basic_formats/set/self/head.rb +12 -7
- data/mod/bootstrap/db/migrate_cards/20170719163710_update_bootswatch_themes_to_4_beta.rb +115 -0
- data/mod/bootstrap/db/migrate_cards/20170726145012_select2.rb +7 -7
- data/mod/bootstrap/lib/bootstrap/component/panel.rb +1 -1
- data/mod/bootstrap/lib/javascript/script_load_select2.js.coffee +2 -0
- data/mod/bootstrap/lib/stylesheets/bootstrap_cards.scss +2 -8
- data/mod/bootstrap/lib/stylesheets/style_select2_bootstrap.scss +546 -628
- data/mod/bootstrap/set/abstract/bootstrap_code_file.rb +9 -6
- data/mod/bootstrap/set/all/bootstrap/accordion.rb +3 -3
- data/mod/bootstrap/set/all/bootstrap/helper.rb +58 -15
- data/mod/bootstrap/set/all/bootstrap/tabs.rb +2 -2
- data/mod/bootstrap/set/all/bootstrap/wrapper.rb +1 -1
- data/mod/bootstrap/set/self/bootstrap_js.rb +7 -1
- data/mod/bootstrap/set/self/bootswatch_shared.rb +8 -17
- data/mod/bootstrap/set/self/script_select2.rb +9 -0
- data/mod/bootstrap/set/self/style_select2.rb +1 -1
- data/mod/bootstrap/set/self/style_select2_bootstrap.rb +1 -0
- data/mod/bootstrap/vendor/bootstrap/.editorconfig +17 -0
- data/mod/bootstrap/vendor/bootstrap/.gitattributes +15 -0
- data/mod/bootstrap/vendor/bootstrap/.gitignore +41 -0
- data/mod/bootstrap/vendor/bootstrap/.hound.yml +12 -0
- data/mod/bootstrap/vendor/bootstrap/.travis.yml +45 -0
- data/mod/bootstrap/vendor/bootstrap/CHANGELOG.md +5 -0
- data/mod/bootstrap/vendor/bootstrap/CNAME +1 -0
- data/mod/bootstrap/vendor/bootstrap/CONTRIBUTING.md +270 -0
- data/mod/bootstrap/vendor/bootstrap/Gemfile +6 -0
- data/mod/bootstrap/vendor/bootstrap/Gemfile.lock +49 -0
- data/mod/bootstrap/vendor/bootstrap/Gruntfile.js +511 -0
- data/mod/bootstrap/vendor/bootstrap/ISSUE_TEMPLATE.md +22 -0
- data/mod/bootstrap/vendor/bootstrap/LICENSE +21 -0
- data/mod/bootstrap/vendor/bootstrap/README.md +142 -0
- data/mod/bootstrap/vendor/bootstrap/_config.yml +42 -0
- data/mod/bootstrap/vendor/bootstrap/bower.json +34 -0
- data/mod/bootstrap/vendor/bootstrap/composer.json +37 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap-theme.css +587 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap-theme.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap-theme.min.css +6 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap-theme.min.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap.css +6757 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap.min.css +6 -0
- data/mod/bootstrap/vendor/bootstrap/dist/css/bootstrap.min.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +288 -0
- data/mod/bootstrap/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/mod/bootstrap/vendor/bootstrap/dist/js/bootstrap.js +2377 -0
- data/mod/bootstrap/vendor/bootstrap/dist/js/bootstrap.min.js +7 -0
- data/mod/bootstrap/vendor/bootstrap/dist/js/npm.js +13 -0
- data/mod/bootstrap/vendor/bootstrap/docs/LICENSE +319 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/browser-bugs.yml +433 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/browser-features.yml +109 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/core-team.yml +27 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/glyphicons.yml +266 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/sass-team.yml +7 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/showcase.yml +19 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_data/translations.yml +64 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/ads.html +1 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/alerts.html +89 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/badges.html +45 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/breadcrumbs.html +27 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/button-dropdowns.html +321 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/button-groups.html +268 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/dropdowns.html +156 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/glyphicons.html +91 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/input-groups.html +365 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/jumbotron.html +27 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/labels.html +40 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/list-group.html +188 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/media.html +207 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/navbar.html +461 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/navs.html +189 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/page-header.html +15 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/pagination.html +202 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/panels.html +279 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/progress-bars.html +214 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/responsive-embed.html +23 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/thumbnails.html +94 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/components/wells.html +33 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/buttons.html +189 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/code.html +52 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/forms.html +1029 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/grid.html +560 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/helpers.html +207 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/images.html +31 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/less.html +499 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/overview.html +52 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/responsive-utilities.html +258 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/sass.html +52 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/tables.html +467 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/css/type.html +461 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/customizer-variables.html +1892 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/footer.html +67 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/accessibility.html +37 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/browser-device-support.html +237 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/community.html +13 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/disabling-responsiveness.html +22 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/download.html +63 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/examples.html +161 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/grunt.html +35 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/license.html +34 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/template.html +37 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/third-party-support.html +51 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/tools.html +6 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/translations.html +12 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/getting-started/whats-included.html +55 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/header.html +58 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/affix.html +129 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/alerts.html +73 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/buttons.html +139 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/carousel.html +260 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/collapse.html +277 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/dropdowns.html +201 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/modal.html +520 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/overview.html +86 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/popovers.html +309 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/scrollspy.html +151 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/tabs.html +147 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/tooltips.html +276 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/js/transitions.html +15 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/about.html +9 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/components.html +146 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/css.html +136 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/customize.html +47 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/getting-started.html +76 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/javascript.html +124 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/main.html +37 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_includes/nav/migration.html +12 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_layouts/default.html +65 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_layouts/home.html +19 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_plugins/bridge.rb +9 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_plugins/bugify.rb +26 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_pug/customizer-nav.pug +17 -0
- data/mod/bootstrap/vendor/bootstrap/docs/_pug/customizer-variables.pug +25 -0
- data/mod/bootstrap/vendor/bootstrap/docs/about.html +127 -0
- data/mod/bootstrap/vendor/bootstrap/docs/apple-touch-icon.png +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/brand/bootstrap-outline.svg +20 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/brand/bootstrap-punchout.svg +18 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/brand/bootstrap-solid.svg +17 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/css/docs.min.css +11 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/css/docs.min.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/css/ie10-viewport-bug-workaround.css +13 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/css/src/docs.css +1632 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/css/src/pygments-manni.css +66 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/flash/ZeroClipboard.swf +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/components.png +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/devices.png +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/expo-lyft.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/expo-newsweek.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/expo-riot.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/expo-vogue.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/img/sass-less.png +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/customize.min.js +91 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/docs.min.js +26 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/ie-emulation-modes-warning.js +51 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/ie10-viewport-bug-workaround.js +23 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/ie8-responsive-file-warning.js +13 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/raw-files.min.js +8 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/src/application.js +183 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/src/customizer.js +520 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/Blob.js +211 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/FileSaver.js +248 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/ZeroClipboard.min.js +9 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/anchor.min.js +6 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/autoprefixer.js +21114 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/holder.min.js +12 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/jquery.min.js +5 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/jszip.min.js +14 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/less.min.js +16 -0
- data/mod/bootstrap/vendor/bootstrap/docs/assets/js/vendor/uglify.min.js +6 -0
- data/mod/bootstrap/vendor/bootstrap/docs/browser-bugs.html +75 -0
- data/mod/bootstrap/vendor/bootstrap/docs/components.html +29 -0
- data/mod/bootstrap/vendor/bootstrap/docs/css.html +20 -0
- data/mod/bootstrap/vendor/bootstrap/docs/customize.html +385 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap-theme.css +587 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap-theme.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap-theme.min.css +6 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap-theme.min.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap.css +6757 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap.min.css +6 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/css/bootstrap.min.css.map +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.eot +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.svg +288 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/js/bootstrap.js +2377 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/js/bootstrap.min.js +7 -0
- data/mod/bootstrap/vendor/bootstrap/docs/dist/js/npm.js +13 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/blog/blog.css +166 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/blog/index.html +180 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/carousel/carousel.css +134 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/carousel/index.html +220 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/cover/cover.css +163 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/cover/index.html +84 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/dashboard/dashboard.css +105 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/dashboard/index.html +252 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/grid/grid.css +23 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/grid/index.html +156 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/jumbotron-narrow/index.html +88 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/jumbotron-narrow/jumbotron-narrow.css +79 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/jumbotron/index.html +107 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/jumbotron/jumbotron.css +5 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/justified-nav/index.html +92 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/justified-nav/justified-nav.css +88 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar-fixed-top/index.html +99 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar-fixed-top/navbar-fixed-top.css +4 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar-static-top/index.html +100 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar-static-top/navbar-static-top.css +7 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar/index.html +98 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/navbar/navbar.css +8 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/non-responsive/index.html +115 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/non-responsive/non-responsive.css +262 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/offcanvas/index.html +137 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/offcanvas/offcanvas.css +59 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/offcanvas/offcanvas.js +5 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/blog.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/carousel.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/cover.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/dashboard.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/equal-height-columns.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/grid.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/jumbotron-narrow.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/jumbotron.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/justified-nav.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/navbar-fixed.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/navbar-static.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/navbar.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/non-responsive.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/offcanvas.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/sign-in.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/starter-template.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/sticky-footer-navbar.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/sticky-footer.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/screenshots/theme.jpg +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/signin/index.html +58 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/signin/signin.css +40 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/starter-template/index.html +76 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/starter-template/starter-template.css +7 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/sticky-footer-navbar/index.html +95 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css +39 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/sticky-footer/index.html +55 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/sticky-footer/sticky-footer.css +32 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/theme/index.html +644 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/theme/theme.css +18 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/tooltip-viewport/index.html +62 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/tooltip-viewport/tooltip-viewport.css +26 -0
- data/mod/bootstrap/vendor/bootstrap/docs/examples/tooltip-viewport/tooltip-viewport.js +18 -0
- data/mod/bootstrap/vendor/bootstrap/docs/favicon.ico +0 -0
- data/mod/bootstrap/vendor/bootstrap/docs/getting-started.html +28 -0
- data/mod/bootstrap/vendor/bootstrap/docs/index.html +73 -0
- data/mod/bootstrap/vendor/bootstrap/docs/javascript.html +21 -0
- data/mod/bootstrap/vendor/bootstrap/docs/migration.html +445 -0
- data/mod/bootstrap/vendor/bootstrap/docs/robots.txt +9 -0
- data/mod/bootstrap/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- data/mod/bootstrap/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- data/mod/bootstrap/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/mod/bootstrap/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- data/mod/bootstrap/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/.jshintrc +7 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/bs-commonjs-generator.js +30 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/bs-glyphicons-data-generator.js +42 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/bs-lessdoc-parser.js +237 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/bs-raw-files-generator.js +44 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/change-version.js +109 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/configBridge.json +46 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/npm-shrinkwrap.json +2679 -0
- data/mod/bootstrap/vendor/bootstrap/grunt/sauce_browsers.yml +82 -0
- data/mod/bootstrap/vendor/bootstrap/js/.jscsrc +42 -0
- data/mod/bootstrap/vendor/bootstrap/js/.jshintrc +15 -0
- data/mod/bootstrap/vendor/bootstrap/js/affix.js +162 -0
- data/mod/bootstrap/vendor/bootstrap/js/alert.js +94 -0
- data/mod/bootstrap/vendor/bootstrap/js/button.js +125 -0
- data/mod/bootstrap/vendor/bootstrap/js/carousel.js +239 -0
- data/mod/bootstrap/vendor/bootstrap/js/collapse.js +212 -0
- data/mod/bootstrap/vendor/bootstrap/js/dropdown.js +165 -0
- data/mod/bootstrap/vendor/bootstrap/js/modal.js +339 -0
- data/mod/bootstrap/vendor/bootstrap/js/popover.js +108 -0
- data/mod/bootstrap/vendor/bootstrap/js/scrollspy.js +172 -0
- data/mod/bootstrap/vendor/bootstrap/js/tab.js +155 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/README.md +62 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/index.html +169 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/.jshintrc +6 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/affix.js +107 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/alert.js +78 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/button.js +168 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/carousel.js +718 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/collapse.js +443 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/dropdown.js +423 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/modal.js +377 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/phantom.js +72 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/popover.js +290 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/scrollspy.js +278 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/tab.js +216 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/unit/tooltip.js +1325 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/vendor/jquery.min.js +5 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/vendor/qunit.css +305 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/vendor/qunit.js +4204 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/affix-with-sticky-footer.html +317 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/affix.html +306 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/alert.html +48 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/button.html +79 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/carousel.html +58 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/collapse.html +78 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/dropdown.html +108 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/modal.html +205 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/popover.html +54 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/scrollspy.html +109 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/tab.html +172 -0
- data/mod/bootstrap/vendor/bootstrap/js/tests/visual/tooltip.html +50 -0
- data/mod/bootstrap/vendor/bootstrap/js/tooltip.js +520 -0
- data/mod/bootstrap/vendor/bootstrap/js/transition.js +59 -0
- data/mod/bootstrap/vendor/bootstrap/less/.csscomb.json +304 -0
- data/mod/bootstrap/vendor/bootstrap/less/.csslintrc +19 -0
- data/mod/bootstrap/vendor/bootstrap/less/alerts.less +73 -0
- data/mod/bootstrap/vendor/bootstrap/less/badges.less +66 -0
- data/mod/bootstrap/vendor/bootstrap/less/bootstrap.less +56 -0
- data/mod/bootstrap/vendor/bootstrap/less/breadcrumbs.less +26 -0
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/_button-group.scss → vendor/bootstrap/less/button-groups.less} +100 -58
- data/mod/bootstrap/vendor/bootstrap/less/buttons.less +166 -0
- data/mod/bootstrap/vendor/bootstrap/less/carousel.less +270 -0
- data/mod/bootstrap/vendor/bootstrap/less/close.less +34 -0
- data/mod/bootstrap/vendor/bootstrap/less/code.less +69 -0
- data/mod/bootstrap/vendor/bootstrap/less/component-animations.less +33 -0
- data/mod/bootstrap/vendor/bootstrap/less/dropdowns.less +216 -0
- data/mod/bootstrap/vendor/bootstrap/less/forms.less +613 -0
- data/mod/bootstrap/vendor/bootstrap/less/glyphicons.less +305 -0
- data/mod/bootstrap/vendor/bootstrap/less/grid.less +84 -0
- data/mod/bootstrap/vendor/bootstrap/less/input-groups.less +171 -0
- data/mod/bootstrap/vendor/bootstrap/less/jumbotron.less +54 -0
- data/mod/bootstrap/vendor/bootstrap/less/labels.less +64 -0
- data/mod/bootstrap/vendor/bootstrap/less/list-group.less +130 -0
- data/mod/bootstrap/vendor/bootstrap/less/media.less +66 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins.less +40 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/alerts.less +14 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/background-variant.less +9 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/border-radius.less +18 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/buttons.less +65 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/center-block.less +7 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/clearfix.less +22 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/forms.less +85 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/gradients.less +59 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/grid-framework.less +91 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/grid.less +122 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/hide-text.less +21 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/image.less +33 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/labels.less +12 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/list-group.less +30 -0
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/mixins/_nav-divider.scss → vendor/bootstrap/less/mixins/nav-divider.less} +3 -3
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/mixins/_navbar-align.scss → vendor/bootstrap/less/mixins/nav-vertical-align.less} +4 -4
- data/mod/bootstrap/vendor/bootstrap/less/mixins/opacity.less +8 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/pagination.less +24 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/panels.less +24 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/progress-bar.less +10 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/reset-filter.less +8 -0
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/mixins/_reset-text.scss → vendor/bootstrap/less/mixins/reset-text.less} +6 -5
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/mixins/_resize.scss → vendor/bootstrap/less/mixins/resize.less} +2 -2
- data/mod/bootstrap/vendor/bootstrap/less/mixins/responsive-visibility.less +15 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/size.less +10 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/tab-focus.less +9 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/table-row.less +28 -0
- data/mod/bootstrap/vendor/bootstrap/less/mixins/text-emphasis.less +9 -0
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/mixins/_text-truncate.scss → vendor/bootstrap/less/mixins/text-overflow.less} +3 -3
- data/mod/bootstrap/vendor/bootstrap/less/mixins/vendor-prefixes.less +227 -0
- data/mod/bootstrap/vendor/bootstrap/less/modals.less +150 -0
- data/mod/bootstrap/vendor/bootstrap/less/navbar.less +660 -0
- data/mod/bootstrap/vendor/bootstrap/less/navs.less +242 -0
- data/mod/bootstrap/vendor/bootstrap/less/normalize.less +424 -0
- data/mod/bootstrap/vendor/bootstrap/less/pager.less +54 -0
- data/mod/bootstrap/vendor/bootstrap/less/pagination.less +89 -0
- data/mod/bootstrap/vendor/bootstrap/less/panels.less +271 -0
- data/mod/bootstrap/vendor/bootstrap/less/popovers.less +131 -0
- data/mod/bootstrap/vendor/bootstrap/less/print.less +101 -0
- data/mod/bootstrap/vendor/bootstrap/less/progress-bars.less +87 -0
- data/mod/bootstrap/{lib/stylesheets/bootstrap/scss/_responsive-embed.scss → vendor/bootstrap/less/responsive-embed.less} +9 -26
- data/mod/bootstrap/vendor/bootstrap/less/responsive-utilities.less +194 -0
- data/mod/bootstrap/vendor/bootstrap/less/scaffolding.less +161 -0
- data/mod/bootstrap/vendor/bootstrap/less/tables.less +234 -0
- data/mod/bootstrap/vendor/bootstrap/less/theme.less +291 -0
- data/mod/bootstrap/vendor/bootstrap/less/thumbnails.less +36 -0
- data/mod/bootstrap/vendor/bootstrap/less/tooltip.less +101 -0
- data/mod/bootstrap/vendor/bootstrap/less/type.less +302 -0
- data/mod/bootstrap/vendor/bootstrap/less/utilities.less +55 -0
- data/mod/bootstrap/vendor/bootstrap/less/variables.less +869 -0
- data/mod/bootstrap/vendor/bootstrap/less/wells.less +29 -0
- data/mod/bootstrap/vendor/bootstrap/nuget/MyGet.ps1 +8 -0
- data/mod/bootstrap/vendor/bootstrap/nuget/bootstrap.less.nuspec +28 -0
- data/mod/bootstrap/vendor/bootstrap/nuget/bootstrap.nuspec +28 -0
- data/mod/bootstrap/vendor/bootstrap/package.js +32 -0
- data/mod/bootstrap/vendor/bootstrap/package.json +89 -0
- data/mod/bootstrap/vendor/bootswatch/README.md +63 -0
- data/mod/bootstrap/vendor/bootswatch/swatchmaker/README.md +1 -0
- data/mod/bootstrap/vendor/select2/.editorconfig +6 -0
- data/mod/bootstrap/vendor/select2/.github/CONTRIBUTING.md +203 -0
- data/mod/bootstrap/vendor/select2/.github/ISSUE_TEMPLATE.md +20 -0
- data/mod/bootstrap/vendor/select2/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- data/mod/bootstrap/vendor/select2/.gitignore +3 -0
- data/mod/bootstrap/vendor/select2/.jshintignore +4 -0
- data/mod/bootstrap/vendor/select2/.jshintrc +25 -0
- data/mod/bootstrap/vendor/select2/.travis.yml +22 -0
- data/mod/bootstrap/vendor/select2/CHANGELOG.md +272 -0
- data/mod/bootstrap/vendor/select2/Gruntfile.js +380 -0
- data/mod/bootstrap/vendor/select2/LICENSE.md +21 -0
- data/mod/bootstrap/vendor/select2/README.md +123 -0
- data/mod/bootstrap/vendor/select2/bower.json +13 -0
- data/mod/bootstrap/vendor/select2/component.json +19 -0
- data/mod/bootstrap/vendor/select2/composer.json +25 -0
- data/mod/bootstrap/{lib/stylesheets/style_select2.css → vendor/select2/dist/css/select2.css} +0 -0
- data/mod/bootstrap/{lib/stylesheets → vendor/select2/dist/css}/select2.min.css +0 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/af.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ar.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/az.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/bg.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/bs.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ca.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/cs.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/da.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/de.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/dsb.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/el.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/en.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/es.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/et.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/eu.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/fa.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/fi.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/fr.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/gl.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/he.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/hi.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/hr.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/hsb.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/hu.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/hy.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/id.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/is.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/it.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ja.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/km.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ko.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/lt.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/lv.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/mk.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ms.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/nb.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/nl.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/pl.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ps.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/pt-BR.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/pt.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ro.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/ru.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/sk.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/sl.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/sr-Cyrl.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/sr.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/sv.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/th.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/tr.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/uk.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/vi.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/zh-CN.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/i18n/zh-TW.js +3 -0
- data/mod/bootstrap/vendor/select2/dist/js/select2.full.js +6457 -0
- data/mod/bootstrap/vendor/select2/dist/js/select2.full.min.js +1 -0
- data/mod/bootstrap/{lib/javascript/script_select2.js → vendor/select2/dist/js/select2.js} +90 -69
- data/mod/bootstrap/vendor/select2/dist/js/select2.min.js +1 -0
- data/mod/bootstrap/vendor/select2/docs/README.md +1 -0
- data/mod/bootstrap/vendor/select2/docs/announcements-4.0.html +12 -0
- data/mod/bootstrap/vendor/select2/docs/community.html +12 -0
- data/mod/bootstrap/vendor/select2/docs/examples.html +12 -0
- data/mod/bootstrap/vendor/select2/docs/index.html +12 -0
- data/mod/bootstrap/vendor/select2/docs/options-old.html +12 -0
- data/mod/bootstrap/vendor/select2/docs/options.html +12 -0
- data/mod/bootstrap/vendor/select2/package.json +73 -0
- data/mod/bootstrap/vendor/select2/select2.jquery.json +32 -0
- data/mod/bootstrap/vendor/select2/src/js/banner.end.js +6 -0
- data/mod/bootstrap/vendor/select2/src/js/banner.start.js +6 -0
- data/mod/bootstrap/vendor/select2/src/js/jquery.mousewheel.shim.js +6 -0
- data/mod/bootstrap/vendor/select2/src/js/jquery.select2.js +57 -0
- data/mod/bootstrap/vendor/select2/src/js/jquery.shim.js +14 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/containerCss.js +56 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/dropdownCss.js +56 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/initSelection.js +42 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/inputData.js +127 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/matcher.js +42 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/query.js +26 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/compat/utils.js +43 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/core.js +612 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/ajax.js +109 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/array.js +79 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/base.js +40 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/maximumInputLength.js +31 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/maximumSelectionLength.js +31 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/minimumInputLength.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/select.js +285 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/tags.js +128 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/data/tokenizer.js +116 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/defaults.js +396 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/diacritics.js +847 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown.js +42 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/attachBody.js +222 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/attachContainer.js +18 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/closeOnSelect.js +35 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/hidePlaceholder.js +42 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/infiniteScroll.js +89 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/minimumResultsForSearch.js +39 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/search.js +101 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/selectOnClose.js +50 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/dropdown/stopPropagation.js +38 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/af.js +44 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ar.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/az.js +27 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/bg.js +47 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/bs.js +55 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ca.js +52 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/cs.js +61 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/da.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/de.js +40 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/dsb.js +48 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/el.js +52 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/en.js +44 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/es.js +52 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/et.js +53 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/eu.js +51 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/fa.js +38 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/fi.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/fr.js +33 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/gl.js +39 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/he.js +56 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/hi.js +39 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/hr.js +44 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/hsb.js +48 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/hu.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/hy.js +38 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/id.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/is.js +41 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/it.js +48 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ja.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/km.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ko.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/lt.js +52 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/lv.js +51 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/mk.js +47 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ms.js +30 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/nb.js +32 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/nl.js +43 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/pl.js +45 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ps.js +45 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/pt-BR.js +46 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/pt.js +40 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ro.js +46 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/ru.js +58 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/sk.js +59 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/sl.js +54 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/sr-Cyrl.js +55 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/sr.js +55 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/sv.js +37 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/th.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/tr.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/uk.js +43 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/vi.js +37 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/zh-CN.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/i18n/zh-TW.js +33 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/keys.js +25 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/options.js +122 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/results.js +523 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/allowClear.js +97 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/base.js +158 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/clickMask.js +29 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/eventRelay.js +45 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/multiple.js +109 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/placeholder.js +49 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/search.js +222 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/single.js +99 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/selection/stopPropagation.js +38 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/translation.js +36 -0
- data/mod/bootstrap/vendor/select2/src/js/select2/utils.js +276 -0
- data/mod/bootstrap/vendor/select2/src/js/wrapper.end.js +12 -0
- data/mod/bootstrap/vendor/select2/src/js/wrapper.start.js +38 -0
- data/mod/bootstrap/vendor/select2/src/scss/_dropdown.scss +73 -0
- data/mod/bootstrap/vendor/select2/src/scss/_multiple.scss +35 -0
- data/mod/bootstrap/vendor/select2/src/scss/_single.scss +34 -0
- data/mod/bootstrap/vendor/select2/src/scss/core.scss +48 -0
- data/mod/bootstrap/vendor/select2/src/scss/mixins/_gradients.scss +13 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/classic/_defaults.scss +34 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/classic/_multiple.scss +93 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/classic/_single.scss +124 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/classic/layout.scss +64 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/default/_multiple.scss +98 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/default/_single.scss +83 -0
- data/mod/bootstrap/vendor/select2/src/scss/theme/default/layout.scss +97 -0
- data/mod/bootstrap/vendor/select2/tests/a11y/search-tests.js +51 -0
- data/mod/bootstrap/vendor/select2/tests/a11y/selection-tests.js +154 -0
- data/mod/bootstrap/vendor/select2/tests/data/array-tests.js +318 -0
- data/mod/bootstrap/vendor/select2/tests/data/base-tests.js +29 -0
- data/mod/bootstrap/vendor/select2/tests/data/inputData-tests.js +158 -0
- data/mod/bootstrap/vendor/select2/tests/data/maximumInputLength-tests.js +138 -0
- data/mod/bootstrap/vendor/select2/tests/data/maximumSelectionLength-tests.js +202 -0
- data/mod/bootstrap/vendor/select2/tests/data/minimumInputLength-tests.js +138 -0
- data/mod/bootstrap/vendor/select2/tests/data/select-tests.js +489 -0
- data/mod/bootstrap/vendor/select2/tests/data/tags-tests.js +276 -0
- data/mod/bootstrap/vendor/select2/tests/data/tokenizer-tests.js +219 -0
- data/mod/bootstrap/vendor/select2/tests/dropdown/dropdownCss-tests.js +104 -0
- data/mod/bootstrap/vendor/select2/tests/dropdown/positioning-tests.js +177 -0
- data/mod/bootstrap/vendor/select2/tests/dropdown/selectOnClose-tests.js +137 -0
- data/mod/bootstrap/vendor/select2/tests/dropdown/stopPropagation-tests.js +33 -0
- data/mod/bootstrap/vendor/select2/tests/helpers.js +46 -0
- data/mod/bootstrap/vendor/select2/tests/integration.html +21 -0
- data/mod/bootstrap/vendor/select2/tests/integration/dom-changes.js +257 -0
- data/mod/bootstrap/vendor/select2/tests/integration/jquery-calls.js +30 -0
- data/mod/bootstrap/vendor/select2/tests/integration/select2-methods.js +139 -0
- data/mod/bootstrap/vendor/select2/tests/options/ajax-tests.js +32 -0
- data/mod/bootstrap/vendor/select2/tests/options/data-tests.js +44 -0
- data/mod/bootstrap/vendor/select2/tests/options/deprecated-tests.js +250 -0
- data/mod/bootstrap/vendor/select2/tests/options/translation-tests.js +28 -0
- data/mod/bootstrap/vendor/select2/tests/options/width-tests.js +66 -0
- data/mod/bootstrap/vendor/select2/tests/results/focusing-tests.js +138 -0
- data/mod/bootstrap/vendor/select2/tests/selection/allowClear-tests.js +218 -0
- data/mod/bootstrap/vendor/select2/tests/selection/containerCss-tests.js +104 -0
- data/mod/bootstrap/vendor/select2/tests/selection/multiple-tests.js +149 -0
- data/mod/bootstrap/vendor/select2/tests/selection/placeholder-tests.js +74 -0
- data/mod/bootstrap/vendor/select2/tests/selection/search-tests.js +191 -0
- data/mod/bootstrap/vendor/select2/tests/selection/single-tests.js +117 -0
- data/mod/bootstrap/vendor/select2/tests/selection/stopPropagation-tests.js +33 -0
- data/mod/bootstrap/vendor/select2/tests/unit.html +95 -0
- data/mod/bootstrap/vendor/select2/tests/utils/decorator-tests.js +189 -0
- data/mod/bootstrap/vendor/select2/tests/utils/escapeMarkup-tests.js +36 -0
- data/mod/bootstrap/vendor/select2/tests/vendor/jquery-1.7.2.js +9404 -0
- data/mod/bootstrap/vendor/select2/tests/vendor/qunit-1.23.1.css +305 -0
- data/mod/bootstrap/vendor/select2/tests/vendor/qunit-1.23.1.js +4334 -0
- data/mod/bootstrap/vendor/select2/vendor/jquery-2.1.0.js +9111 -0
- data/mod/carrierwave/lib/carrier_wave/cardmount.rb +6 -1
- data/mod/carrierwave/lib/carrier_wave/file_card_uploader.rb +4 -0
- data/mod/carrierwave/set/abstract/attachment.rb +13 -6
- data/mod/carrierwave/set/abstract/attachment/storage_type.rb +15 -12
- data/mod/carrierwave/set/abstract/attachment/upload_cache.rb +2 -3
- data/mod/carrierwave/set/type/file.rb +17 -17
- data/mod/carrierwave/set/type/image.rb +40 -37
- data/mod/carrierwave/spec/set/type/file_spec.rb +15 -15
- data/mod/carrierwave/spec/set/type/image_spec.rb +3 -3
- data/mod/core/chunk/reference.rb +3 -3
- data/mod/core/chunk/view_stub.rb +12 -4
- data/mod/core/format/html_format.rb +1 -1
- data/mod/core/format/text_format.rb +5 -0
- data/mod/core/set/abstract/code_file.rb +8 -3
- data/mod/core/set/all/actify.rb +8 -50
- data/mod/core/set/all/assign_attributes.rb +1 -1
- data/mod/core/set/all/cache.rb +1 -1
- data/mod/core/set/all/collection.rb +7 -7
- data/mod/core/set/all/content.rb +12 -6
- data/mod/core/set/all/fetch.rb +23 -15
- data/mod/core/set/all/fetch_helper.rb +11 -9
- data/mod/core/set/all/haml.rb +4 -0
- data/mod/core/set/all/initialize.rb +2 -2
- data/mod/core/set/all/mark.rb +17 -35
- data/mod/core/set/all/name.rb +25 -25
- data/mod/core/set/all/name_validations.rb +6 -6
- data/mod/core/set/all/permissions.rb +1 -1
- data/mod/core/set/all/phases.rb +3 -3
- data/mod/core/set/all/references.rb +4 -4
- data/mod/core/set/all/rename.rb +6 -7
- data/mod/core/set/all/rules.rb +2 -2
- data/mod/core/set/all/stages.rb +2 -11
- data/mod/core/set/all/subcards.rb +1 -1
- data/mod/core/set/all/templating.rb +4 -4
- data/mod/core/set/all/type.rb +2 -2
- data/mod/core/set/all/update_read_rules.rb +2 -56
- data/mod/core/set_pattern/04_star.rb +1 -1
- data/mod/core/set_pattern/05_rstar.rb +1 -1
- data/mod/core/set_pattern/06_right.rb +1 -1
- data/mod/core/set_pattern/07_type_plus_right.rb +2 -3
- data/mod/core/spec/format/html_format_spec.rb +4 -4
- data/mod/core/spec/set/all/actify_spec.rb +107 -42
- data/mod/core/spec/set/all/event_conditions_spec.rb +1 -1
- data/mod/core/spec/set/all/fetch_spec.rb +57 -13
- data/mod/core/spec/set/all/name_spec.rb +1 -1
- data/mod/core/spec/set/all/permissions/reader_rules_spec.rb +1 -1
- data/mod/core/spec/set/all/permissions_spec.rb +2 -2
- data/mod/core/spec/set/all/rename_spec.rb +7 -5
- data/mod/core/spec/set/all/templating_spec.rb +5 -5
- data/mod/core/spec/set/all/type_spec.rb +1 -1
- data/mod/developer/set/all/event_viz.rb +1 -3
- data/mod/history/lib/card/act.rb +2 -6
- data/mod/history/lib/card/act/act_renderer.rb +6 -11
- data/mod/history/lib/card/action/action_renderer.rb +1 -1
- data/mod/history/lib/card/change.rb +1 -1
- data/mod/history/set/all/action_view.rb +1 -1
- data/mod/history/set/all/actions.rb +10 -1
- data/mod/history/set/all/content_history.rb +9 -9
- data/mod/history/set/all/history.rb +40 -27
- data/mod/machines/lib/javascript/decko.js.coffee +1 -1
- data/mod/machines/lib/javascript/decko_filter.js.coffee +40 -0
- data/mod/machines/lib/javascript/decko_layout.js.coffee +16 -8
- data/mod/machines/lib/stylesheets/style_cards.scss +9 -0
- data/mod/machines/set/abstract/machine.rb +12 -9
- data/mod/machines/set/abstract/script.rb +4 -0
- data/mod/machines/set/self/script_slot.rb +2 -1
- data/mod/machines/set/type/css.rb +4 -0
- data/mod/machines/spec/set/type/skin_spec.rb +2 -2
- data/mod/machines/spec/shared_examples/machine_input.rb +3 -3
- data/mod/notifications/format/email_html_format.rb +4 -0
- data/mod/notifications/set/all/follow.rb +1 -1
- data/mod/notifications/set/all/send_notifications.rb +18 -17
- data/mod/notifications/set/right/bcc.rb +1 -1
- data/mod/notifications/set/right/follow.rb +3 -3
- data/mod/notifications/set/right/followers.rb +1 -1
- data/mod/notifications/set/right/following.rb +2 -2
- data/mod/notifications/set/right/html_message.rb +0 -5
- data/mod/notifications/set/right/text_message.rb +0 -5
- data/mod/notifications/set/self/follow_defaults.rb +3 -3
- data/mod/notifications/set/type_plus_right/user/follow.rb +1 -1
- data/mod/notifications/spec/set/right/followers_spec.rb +1 -1
- data/mod/pointer/set/abstract/01_paging.rb +1 -1
- data/mod/pointer/set/abstract/02_pointer.rb +2 -2
- data/mod/pointer/set/abstract/02_pointer/edit.rb +10 -8
- data/mod/pointer/set/abstract/code_pointer.rb +1 -1
- data/mod/pointer/set/self/input_options.rb +1 -1
- data/mod/pointer/spec/set/type/pointer_spec.rb +1 -1
- data/mod/prosemirror_editor/set/abstract/prosemirror_editor.rb +1 -1
- data/mod/{standard → search}/set/abstract/01_search_params.rb +0 -0
- data/mod/{standard → search}/set/abstract/search.rb +1 -1
- data/mod/{standard → search}/set/abstract/wql_search.rb +2 -2
- data/mod/search/set/all/filter.rb +12 -0
- data/mod/{standard → search}/set/self/navbox.rb +1 -1
- data/mod/{standard → search}/set/self/recent.rb +1 -1
- data/mod/{standard → search}/set/self/search.rb +2 -2
- data/mod/{standard → search}/set/type/search_type.rb +2 -2
- data/mod/search/spec/set/all/filter_spec.rb +37 -0
- data/mod/{standard → search}/spec/set/self/navbox_spec.rb +0 -0
- data/mod/{standard → search}/spec/set/self/recent_spec.rb +0 -0
- data/mod/{standard → search}/spec/set/self/search_spec.rb +0 -0
- data/mod/search/template/all/filter/_filter_input.haml +8 -0
- data/mod/search/template/all/filter/filter_form.haml +32 -0
- data/mod/settings/lib/card/setting.rb +11 -11
- data/mod/settings/set/abstract/permission.rb +3 -3
- data/mod/settings/set/right/read.rb +56 -0
- data/mod/settings/set/type/setting.rb +1 -1
- data/mod/solid_cache/set/right/solid_cache.rb +1 -1
- data/mod/standard/set/abstract/toolbar_split_button.rb +1 -1
- data/mod/standard/set/all/error.rb +1 -1
- data/mod/standard/set/all/links.rb +3 -3
- data/mod/standard/set/all/list_changes.rb +7 -3
- data/mod/standard/set/all/rich_html/content.rb +17 -17
- data/mod/standard/set/all/rich_html/editing.rb +3 -3
- data/mod/standard/set/all/rich_html/editor.rb +1 -1
- data/mod/standard/set/all/rich_html/form.rb +2 -2
- data/mod/standard/set/all/rich_html/formgroup.rb +1 -1
- data/mod/standard/set/all/rich_html/header.rb +3 -3
- data/mod/standard/set/all/rich_html/menu.rb +7 -7
- data/mod/standard/set/all/rich_html/modal.rb +3 -3
- data/mod/standard/set/all/rich_html/new.rb +3 -3
- data/mod/standard/set/all/rich_html/toolbar.rb +16 -14
- data/mod/standard/set/all/rich_html/wrapper.rb +7 -7
- data/mod/standard/set/rstar/rules.rb +5 -5
- data/mod/standard/set/rstar/rules_editor.rb +5 -5
- data/mod/standard/set/type/cardtype.rb +1 -1
- data/mod/standard/set/type/list.rb +6 -6
- data/mod/standard/set/type/listed_by.rb +29 -24
- data/mod/standard/set/type/session.rb +0 -4
- data/mod/standard/set/type/set.rb +23 -26
- data/mod/standard/set/type/toggle.rb +2 -2
- data/mod/standard/spec/set/all/history_spec.rb +1 -0
- data/mod/standard/spec/set/all/rich_html/editing_spec.rb +1 -1
- data/mod/standard/spec/set/all/rich_html/wrapper_spec.rb +2 -2
- data/mod/standard/spec/set/type/list_spec.rb +7 -3
- data/mod/standard/spec/set/type/listed_by_spec.rb +3 -2
- data/mod/standard/spec/set/type/uri_spec.rb +8 -8
- data/spec/config/initializers/core_extensions_spec.rb +2 -2
- data/spec/lib/card/cache_spec.rb +3 -3
- data/spec/lib/card/codename_spec.rb +40 -2
- data/spec/lib/card/format_spec.rb +6 -6
- data/spec/lib/card/query_spec.rb +0 -2
- data/spec/lib/card/reference_spec.rb +3 -3
- data/spec/lib/card/stage_director_spec.rb +52 -17
- data/spec/lib/card/success_spec.rb +1 -1
- data/spec/models/card/trash_spec.rb +1 -1
- data/spec/models/card_spec.rb +3 -3
- data/spec/support/helper/event_helper.rb +14 -0
- data/spec/support/helper/render_helper.rb +1 -1
- data/spec/support/matchers/card_matchers.rb +7 -9
- metadata +643 -111
- data/lib/active_record/connection_adapters_ext.rb +0 -52
- data/lib/active_support/callbacks_ext.rb +0 -9
- data/lib/card/name/view_name.rb +0 -50
- data/mod/bootstrap/db/migrate_cards/20170719163701_update_bootswatch_themes.rb +0 -80
- data/mod/bootstrap/lib/javascript/bootstrap.js +0 -3535
- data/mod/bootstrap/lib/javascript/bootstrap.min.js +0 -7
- data/mod/bootstrap/lib/javascript/select2.min.js +0 -3
- data/mod/bootstrap/lib/javascript/tether.min.js +0 -1
- data/mod/bootstrap/lib/stylesheets/bootstrap.css +0 -9320
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/.scss-lint.yml +0 -548
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_alert.scss +0 -55
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_badge.scss +0 -77
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_breadcrumb.scss +0 -38
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_buttons.scss +0 -170
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_card.scss +0 -276
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_carousel.scss +0 -178
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_close.scss +0 -31
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_code.scss +0 -64
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_custom-forms.scss +0 -263
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_custom.scss +0 -4
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_dropdown.scss +0 -161
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_forms.scss +0 -388
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_grid.scss +0 -52
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_images.scss +0 -43
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_input-group.scss +0 -178
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_jumbotron.scss +0 -20
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_list-group.scss +0 -141
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_media.scss +0 -8
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_mixins.scss +0 -57
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_modal.scss +0 -142
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_nav.scss +0 -119
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_navbar.scss +0 -268
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_normalize.scss +0 -461
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_pagination.scss +0 -67
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_popover.scss +0 -171
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_print.scss +0 -119
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_progress.scss +0 -32
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_reboot.scss +0 -389
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_tables.scss +0 -153
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_tooltip.scss +0 -90
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_transitions.scss +0 -34
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_type.scss +0 -143
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_utilities.scss +0 -13
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/_variables.scss +0 -961
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/bootstrap-grid.scss +0 -43
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/bootstrap-reboot.scss +0 -10
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/bootstrap.scss +0 -54
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_alert.scss +0 -14
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_background-variant.scss +0 -12
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_badge.scss +0 -11
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_border-radius.scss +0 -35
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_breakpoints.scss +0 -95
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_buttons.scss +0 -86
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_cards.scss +0 -47
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_clearfix.scss +0 -7
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_float.scss +0 -9
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_forms.scss +0 -79
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_gradients.scss +0 -37
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_grid-framework.scss +0 -65
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_grid.scss +0 -100
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_hover.scss +0 -60
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_image.scss +0 -36
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_list-group.scss +0 -28
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_lists.scss +0 -7
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_pagination.scss +0 -21
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_screen-reader.scss +0 -32
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_size.scss +0 -6
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_table-row.scss +0 -30
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_text-emphasis.scss +0 -12
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_text-hide.scss +0 -8
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_transforms.scss +0 -14
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/mixins/_visibility.scss +0 -5
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_align.scss +0 -6
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_background.scss +0 -19
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_borders.scss +0 -37
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_clearfix.scss +0 -3
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_display.scss +0 -18
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_flex.scss +0 -48
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_float.scss +0 -9
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_position.scss +0 -23
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_screenreaders.scss +0 -11
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_sizing.scss +0 -10
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_spacing.scss +0 -43
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_text.scss +0 -61
- data/mod/bootstrap/lib/stylesheets/bootstrap/scss/utilities/_visibility.scss +0 -55
- data/mod/bootstrap/lib/stylesheets/select2-boostrap-v4-alpha-6.scss +0 -828
@@ -0,0 +1,37 @@
|
|
1
|
+
<header class="navbar navbar-static-top bs-docs-nav" id="top">
|
2
|
+
<div class="container">
|
3
|
+
<div class="navbar-header">
|
4
|
+
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#bs-navbar" aria-controls="bs-navbar" aria-expanded="false">
|
5
|
+
<span class="sr-only">Toggle navigation</span>
|
6
|
+
<span class="icon-bar"></span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
</button>
|
10
|
+
<a href="../" class="navbar-brand">Bootstrap</a>
|
11
|
+
</div>
|
12
|
+
<nav id="bs-navbar" class="collapse navbar-collapse">
|
13
|
+
<ul class="nav navbar-nav">
|
14
|
+
<li{% if page.slug == "getting-started" %} class="active"{% endif %}>
|
15
|
+
<a href="../getting-started/">Getting started</a>
|
16
|
+
</li>
|
17
|
+
<li{% if page.slug == "css" %} class="active"{% endif %}>
|
18
|
+
<a href="../css/">CSS</a>
|
19
|
+
</li>
|
20
|
+
<li{% if page.slug == "components" %} class="active"{% endif %}>
|
21
|
+
<a href="../components/">Components</a>
|
22
|
+
</li>
|
23
|
+
<li{% if page.slug == "js" %} class="active"{% endif %}>
|
24
|
+
<a href="../javascript/">JavaScript</a>
|
25
|
+
</li>
|
26
|
+
<li{% if page.slug == "customize" %} class="active"{% endif %}>
|
27
|
+
<a href="../customize/">Customize</a>
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
<ul class="nav navbar-nav navbar-right">
|
31
|
+
<li><a href="{{ site.themes }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Themes')">Themes</a></li>
|
32
|
+
<li><a href="{{ site.expo }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Expo');">Expo</a></li>
|
33
|
+
<li><a href="{{ site.blog }}" onclick="ga('send', 'event', 'Navbar', 'Community links', 'Blog');">Blog</a></li>
|
34
|
+
</ul>
|
35
|
+
</nav>
|
36
|
+
</div>
|
37
|
+
</header>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Meta, title, CSS, favicons, etc. -->
|
5
|
+
{% include header.html %}
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a>
|
9
|
+
<a href="http://blog.getbootstrap.com/2016/07/27/bootstrap-4-alpha-3/" class="v4-tease">Aww yeah, Bootstrap 4 is coming!</a>
|
10
|
+
|
11
|
+
<!-- Docs master nav -->
|
12
|
+
{% include nav/main.html %}
|
13
|
+
|
14
|
+
<!-- Docs page layout -->
|
15
|
+
<div class="bs-docs-header" id="content" tabindex="-1">
|
16
|
+
<div class="container">
|
17
|
+
<h1>{{ page.title }}</h1>
|
18
|
+
<p>{{ page.lead }}</p>
|
19
|
+
{% include ads.html %}
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<div class="container bs-docs-container">
|
24
|
+
|
25
|
+
<div class="row">
|
26
|
+
<div class="col-md-{% if page.fullwidth == true %}12{% else %}9{% endif %}" role="main">
|
27
|
+
{{ content }}
|
28
|
+
</div>
|
29
|
+
{% unless page.fullwidth == true %}
|
30
|
+
<div class="col-md-3" role="complementary">
|
31
|
+
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm">
|
32
|
+
<ul class="nav bs-docs-sidenav">
|
33
|
+
{% if page.slug == "getting-started" %}
|
34
|
+
{% include nav/getting-started.html %}
|
35
|
+
{% elsif page.slug == "css" %}
|
36
|
+
{% include nav/css.html %}
|
37
|
+
{% elsif page.slug == "components" %}
|
38
|
+
{% include nav/components.html %}
|
39
|
+
{% elsif page.slug == "js" %}
|
40
|
+
{% include nav/javascript.html %}
|
41
|
+
{% elsif page.slug == "customize" %}
|
42
|
+
{% include nav/customize.html %}
|
43
|
+
{% elsif page.slug == "about" %}
|
44
|
+
{% include nav/about.html %}
|
45
|
+
{% elsif page.slug == "migration" %}
|
46
|
+
{% include nav/migration.html %}
|
47
|
+
{% endif %}
|
48
|
+
</ul>
|
49
|
+
<a class="back-to-top" href="#top">
|
50
|
+
Back to top
|
51
|
+
</a>
|
52
|
+
{% if page.slug == "css" or page.slug == "components" or page.slug == "js" %}
|
53
|
+
<a href="#" class="bs-docs-theme-toggle" role="button">
|
54
|
+
Preview theme
|
55
|
+
</a>
|
56
|
+
{% endif %}
|
57
|
+
</nav>
|
58
|
+
</div>
|
59
|
+
{% endunless %}
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
|
63
|
+
{% include footer.html %}
|
64
|
+
</body>
|
65
|
+
</html>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Meta, title, CSS, favicons, etc. -->
|
5
|
+
{% include header.html %}
|
6
|
+
</head>
|
7
|
+
<body class="bs-docs-home">
|
8
|
+
<a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a>
|
9
|
+
<a href="http://blog.getbootstrap.com/2016/07/27/bootstrap-4-alpha-3/" class="v4-tease">Aww yeah, Bootstrap 4 is coming!</a>
|
10
|
+
|
11
|
+
<!-- Docs master nav -->
|
12
|
+
{% include nav/main.html %}
|
13
|
+
|
14
|
+
<!-- Page content of course! -->
|
15
|
+
{{ content }}
|
16
|
+
|
17
|
+
{% include footer.html %}
|
18
|
+
</body>
|
19
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Jekyll
|
2
|
+
module BugFilter
|
3
|
+
def bugify(input)
|
4
|
+
upstream_map = {
|
5
|
+
"Bootstrap" => "https://github.com/twbs/bootstrap/issues/",
|
6
|
+
"Edge" => ["https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/", "Edge issue"],
|
7
|
+
"UserVoice" => ["https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/", "Edge UserVoice idea"],
|
8
|
+
"Mozilla" => ["https://bugzilla.mozilla.org/show_bug.cgi?id=", "Mozilla bug"],
|
9
|
+
"Chromium" => ["https://bugs.chromium.org/p/chromium/issues/detail?id=", "Chromium issue"],
|
10
|
+
"WebKit" => ["https://bugs.webkit.org/show_bug.cgi?id=", "WebKit bug"],
|
11
|
+
"Safari" => ["https://openradar.appspot.com/", "Apple Safari Radar"],
|
12
|
+
"Normalize" => ["https://github.com/necolas/normalize.css/issues/", "Normalize"]
|
13
|
+
}
|
14
|
+
|
15
|
+
upstream_map.each do |key, data|
|
16
|
+
url = data.is_a?(Array) ? data[0] : data
|
17
|
+
label = data.is_a?(Array) ? "#{data[1]} " : ""
|
18
|
+
input = input.gsub(/#{key}#(\d+)/, "<a href=\"#{url}\\1\">#{label}#\\1</a>")
|
19
|
+
end
|
20
|
+
|
21
|
+
return input
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
Liquid::Template.register_filter(Jekyll::BugFilter)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-nav.pug template.
|
2
|
+
li
|
3
|
+
a(href='#import-drop-target') Import
|
4
|
+
li
|
5
|
+
a(href='#less') Less components
|
6
|
+
li
|
7
|
+
a(href='#plugins') jQuery plugins
|
8
|
+
li
|
9
|
+
a(href='#less-variables') Less variables
|
10
|
+
ul.nav
|
11
|
+
each section in sections
|
12
|
+
if section.customizable
|
13
|
+
li
|
14
|
+
a(href='#'+section.id)= section.heading
|
15
|
+
li
|
16
|
+
a(href='#download') Download
|
17
|
+
// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-nav.pug template.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-variables.pug template.
|
2
|
+
each section in sections
|
3
|
+
if section.customizable
|
4
|
+
h2(id=section.id)= section.heading
|
5
|
+
if section.docstring
|
6
|
+
p!= section.docstring.html
|
7
|
+
each subsection in section.subsections
|
8
|
+
if subsection.heading
|
9
|
+
h3(id=subsection.id)= subsection.heading
|
10
|
+
div.row
|
11
|
+
each variable, index in subsection.variables
|
12
|
+
if index > 0 && index % 3 === 0
|
13
|
+
div.clearfix
|
14
|
+
div.col-xs-4
|
15
|
+
label(for="input-" + variable.name)= variable.name
|
16
|
+
- var helpId = "help-block-" + variable.name
|
17
|
+
input.form-control(
|
18
|
+
id="input-" + variable.name
|
19
|
+
type="text"
|
20
|
+
aria-describedby=variable.docstring ? helpId : undefined
|
21
|
+
value=variable.defaultValue
|
22
|
+
data-var=variable.name)
|
23
|
+
if variable.docstring
|
24
|
+
p.help-block(id=helpId)!= variable.docstring.html
|
25
|
+
// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-variables.pug template.
|
@@ -0,0 +1,127 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
title: About
|
4
|
+
slug: about
|
5
|
+
lead: "Learn about the project's history, meet the maintaining teams, and find out how to use the Bootstrap brand."
|
6
|
+
---
|
7
|
+
|
8
|
+
|
9
|
+
<!-- History
|
10
|
+
================================================== -->
|
11
|
+
<div class="bs-docs-section">
|
12
|
+
<h1 id="history" class="page-header">History</h1>
|
13
|
+
|
14
|
+
<p class="lead">Originally created by a designer and a developer at Twitter, Bootstrap has become one of the most popular front-end frameworks and open source projects in the world.</p>
|
15
|
+
<p>Bootstrap was created at Twitter in mid-2010 by <a href="https://twitter.com/mdo">@mdo</a> and <a href="https://twitter.com/fat">@fat</a>. Prior to being an open-sourced framework, Bootstrap was known as <em>Twitter Blueprint</em>. A few months into development, Twitter held its <a href="https://blog.twitter.com/2010/hack-week">first Hack Week</a> and the project exploded as developers of all skill levels jumped in without any external guidance. It served as the style guide for internal tools development at the company for over a year before its public release, and continues to do so today.</p>
|
16
|
+
<p>Originally <a href="https://blog.twitter.com/2011/bootstrap-twitter">released</a> on <a href="https://twitter.com/mdo/statuses/104620039650557952"><time datetime="2011-08-19 11:25">Friday, August 19, 2011</time></a>, we've since had over <a href="https://github.com/twbs/bootstrap/releases">twenty releases</a>, including two major rewrites with v2 and v3. With Bootstrap 2, we added responsive functionality to the entire framework as an optional stylesheet. Building on that with Bootstrap 3, we rewrote the library once more to make it responsive by default with a mobile first approach.</p>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
|
20
|
+
<!-- Team
|
21
|
+
================================================== -->
|
22
|
+
<div class="bs-docs-section">
|
23
|
+
<h1 id="team" class="page-header">Team</h1>
|
24
|
+
|
25
|
+
<p class="lead">Bootstrap is maintained by the founding team and a small group of invaluable core contributors, with the massive support and involvement of our community.</p>
|
26
|
+
|
27
|
+
<h2 id="team-core">Core team</h2>
|
28
|
+
<div class="list-group bs-team">
|
29
|
+
{% for member in site.data.core-team %}
|
30
|
+
<div class="list-group-item">
|
31
|
+
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user={{ member.user }}&type=follow"></iframe>
|
32
|
+
<a class="team-member" href="https://github.com/{{ member.user }}">
|
33
|
+
<img src="https://secure.gravatar.com/avatar/{{ member.gravatar }}.jpg?s=32" alt="@{{ member.user }} avatar" width="32" height="32">
|
34
|
+
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
|
35
|
+
</a>
|
36
|
+
</div>
|
37
|
+
{% endfor %}
|
38
|
+
</div>
|
39
|
+
<p>Get involved with Bootstrap development by <a href="https://github.com/twbs/bootstrap/issues/new">opening an issue</a> or submitting a pull request. Read our <a href="https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md">contributing guidelines</a> for information on how we develop.</p>
|
40
|
+
|
41
|
+
<h2 id="team-sass">Sass team</h2>
|
42
|
+
<div class="list-group bs-team">
|
43
|
+
{% for member in site.data.sass-team %}
|
44
|
+
<div class="list-group-item">
|
45
|
+
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user={{ member.user }}&type=follow"></iframe>
|
46
|
+
<a class="team-member" href="https://github.com/{{ member.user }}">
|
47
|
+
<img src="https://secure.gravatar.com/avatar/{{ member.gravatar }}.jpg?s=32" alt="@{{ member.user }} avatar" width="32" height="32">
|
48
|
+
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
|
49
|
+
</a>
|
50
|
+
</div>
|
51
|
+
{% endfor %}
|
52
|
+
</div>
|
53
|
+
<p>The <a href="{{ site.sass_repo }}">official Sass port of Bootstrap</a> was created and is maintained by this team. It became part of Bootstrap's organization with v3.1.0. Read the Sass <a href="https://github.com/twbs/bootstrap-sass/blob/master/CONTRIBUTING.md">contributing guidelines</a> for information on how the Sass port is developed.</p>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
|
57
|
+
<!-- Brand
|
58
|
+
================================================== -->
|
59
|
+
<div class="bs-docs-section">
|
60
|
+
<h1 id="brand" class="page-header">Brand guidelines</h1>
|
61
|
+
|
62
|
+
<p class="lead">Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's <a href="http://mailchimp.com/about/brand-assets/" target="_blank">Brand Assets</a>.</p>
|
63
|
+
|
64
|
+
<h2>Mark and logo</h2>
|
65
|
+
<p>Use either the Bootstrap mark (a capital <strong>B</strong>) or the standard logo (just <strong>Bootstrap</strong>). It should always appear in Helvetica Neue Bold. <strong>Do not use the Twitter bird</strong> in association with Bootstrap.</p>
|
66
|
+
<div class="bs-brand-logos">
|
67
|
+
<div class="bs-brand-item">
|
68
|
+
<div class="bs-docs-booticon bs-docs-booticon-lg">B</div>
|
69
|
+
</div>
|
70
|
+
<div class="bs-brand-item inverse">
|
71
|
+
<div class="bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-inverse">B</div>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
<div class="bs-brand-logos">
|
75
|
+
<div class="bs-brand-item">
|
76
|
+
<h1>Bootstrap</h1>
|
77
|
+
</div>
|
78
|
+
<div class="bs-brand-item inverse">
|
79
|
+
<h1>Bootstrap</h1>
|
80
|
+
</div>
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<h2>Download mark</h2>
|
84
|
+
<p>Download the Bootstrap mark in one of three styles, each available as an SVG file. Right click, Save as.</p>
|
85
|
+
<div class="bs-brand-logos">
|
86
|
+
<div class="bs-brand-item">
|
87
|
+
<img class="svg" src="../assets/brand/bootstrap-solid.svg" alt="Bootstrap" width="144" height="144">
|
88
|
+
</div>
|
89
|
+
<div class="bs-brand-item inverse">
|
90
|
+
<img class="svg" src="../assets/brand/bootstrap-outline.svg" alt="Bootstrap" width="144" height="144">
|
91
|
+
</div>
|
92
|
+
<div class="bs-brand-item inverse">
|
93
|
+
<img class="svg" src="../assets/brand/bootstrap-punchout.svg" alt="Bootstrap" width="144" height="144">
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
|
97
|
+
<h2>Name</h2>
|
98
|
+
<p>The project and framework should always be referred to as <strong>Bootstrap</strong>. No Twitter before it, no capital <em>s</em>, and no abbreviations except for one, a capital <strong>B</strong>.</p>
|
99
|
+
<div class="bs-brand-logos">
|
100
|
+
<div class="bs-brand-item">
|
101
|
+
<h3>Bootstrap</h3>
|
102
|
+
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
|
103
|
+
<span class="sr-only">(correct)</span>
|
104
|
+
</div>
|
105
|
+
<div class="bs-brand-item">
|
106
|
+
<h3 class="text-muted">BootStrap</h3>
|
107
|
+
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
|
108
|
+
<span class="sr-only">(incorrect)</span>
|
109
|
+
</div>
|
110
|
+
<div class="bs-brand-item">
|
111
|
+
<h3 class="text-muted">Twitter Bootstrap</h3>
|
112
|
+
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
|
113
|
+
<span class="sr-only">(incorrect)</span>
|
114
|
+
</div>
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<h2>Colors</h2>
|
118
|
+
<p>Our docs and branding use a handful of primary colors to differentiate what <em>is</em> Bootstrap from what <em>is in</em> Bootstrap. In other words, if it's purple, it's representative of Bootstrap.</p>
|
119
|
+
<div class="bs-brand">
|
120
|
+
<div class="color-swatches">
|
121
|
+
<div class="color-swatch bs-purple"></div>
|
122
|
+
<div class="color-swatch bs-purple-light"></div>
|
123
|
+
<div class="color-swatch bs-purple-lighter"></div>
|
124
|
+
<div class="color-swatch bs-gray"></div>
|
125
|
+
</div>
|
126
|
+
</div>
|
127
|
+
</div>
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
viewBox="0 180 612 612" enable-background="new 0 180 612 612" xml:space="preserve">
|
6
|
+
<g id="outline" sodipodi:docname="twitter_bootstrap_logo.svg" inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
7
|
+
<g id="bg_1_">
|
8
|
+
<path fill="#FFFFFF" d="M510,186c25.5,0,49.6,10,67.8,28.2S606,256.5,606,282v408c0,25.5-10,49.6-28.2,67.8S535.5,786,510,786H102
|
9
|
+
c-25.5,0-49.6-10-67.8-28.2S6,715.5,6,690V282c0-25.5,10-49.6,28.2-67.8S76.5,186,102,186H510 M510,180H102
|
10
|
+
C45.9,180,0,225.9,0,282v408c0,56.1,45.9,102,102,102h408c56.1,0,102-45.9,102-102V282C612,225.9,566.1,180,510,180L510,180z"/>
|
11
|
+
</g>
|
12
|
+
<g id="B_2_" enable-background="new ">
|
13
|
+
<path fill="#FFFFFF" d="M166.3,313h173.5c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2
|
14
|
+
c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2c11.3,16.2,17,36.4,17,60.8c0,14-2.5,27.1-7.5,39.2
|
15
|
+
c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164L166.3,313L166.3,313z M228.8,462.5h102
|
16
|
+
c15,0,27.5-4.2,37.5-12.8s15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102L228.8,462.5L228.8,462.5z M228.8,619h110.5
|
17
|
+
c19,0,33.8-4.9,44.2-14.8c10.5-9.8,15.8-23.8,15.8-41.8c0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V619z"/>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</svg>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
viewBox="0 180 612 612" enable-background="new 0 180 612 612" xml:space="preserve">
|
6
|
+
<g id="punchout" sodipodi:docname="twitter_bootstrap_logo.svg" inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
7
|
+
<g>
|
8
|
+
<path fill="#FFFFFF" d="M383.5,521.8c-10.5-9.5-25.2-14.2-44.2-14.2H228.8V619h110.5c19,0,33.8-4.9,44.2-14.8
|
9
|
+
c10.5-9.8,15.8-23.8,15.8-41.8C399.2,544.8,394,531.2,383.5,521.8z"/>
|
10
|
+
<path fill="#FFFFFF" d="M368.2,449.8c10-8.5,15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102v98.5h102
|
11
|
+
C345.7,462.5,358.2,458.2,368.2,449.8z"/>
|
12
|
+
<path fill="#FFFFFF" d="M510,180H102C45.9,180,0,225.9,0,282v408c0,56.1,45.9,102,102,102h408c56.1,0,102-45.9,102-102V282
|
13
|
+
C612,225.9,566.1,180,510,180z M454.2,609.8c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164V313h173.5
|
14
|
+
c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2
|
15
|
+
c11.3,16.2,17,36.4,17,60.8C461.7,584.5,459.2,597.6,454.2,609.8z"/>
|
16
|
+
</g>
|
17
|
+
</g>
|
18
|
+
</svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
viewBox="0 0 612 612" enable-background="new 0 0 612 612" xml:space="preserve">
|
6
|
+
<g id="solid" sodipodi:docname="twitter_bootstrap_logo.svg" inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
7
|
+
<path id="bg" fill="#563D7C" d="M612,510c0,56.1-45.9,102-102,102H102C45.9,612,0,566.1,0,510V102C0,45.9,45.9,0,102,0h408
|
8
|
+
c56.1,0,102,45.9,102,102V510z"/>
|
9
|
+
<g id="B" enable-background="new ">
|
10
|
+
<path fill="#FFFFFF" d="M166.3,133h173.5c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2
|
11
|
+
c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2c11.3,16.2,17,36.4,17,60.8c0,14-2.5,27.1-7.5,39.2
|
12
|
+
c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164L166.3,133L166.3,133z M228.8,282.5h102
|
13
|
+
c15,0,27.5-4.2,37.5-12.8s15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102L228.8,282.5L228.8,282.5z M228.8,439h110.5
|
14
|
+
c19,0,33.8-4.9,44.2-14.8c10.5-9.8,15.8-23.8,15.8-41.8c0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V439z"/>
|
15
|
+
</g>
|
16
|
+
</g>
|
17
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*!
|
2
|
+
* IE10 viewport hack for Surface/desktop Windows 8 bug
|
3
|
+
* Copyright 2014-2015 Twitter, Inc.
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
|
+
*/@-ms-viewport{width:device-width}@-o-viewport{width:device-width}@viewport{width:device-width}.hll{background-color:#ffc}.c{color:#999}.err{color:#A00;background-color:#FAA}.k{color:#069}.o{color:#555}.cm{color:#999}.cp{color:#099}.c1{color:#999}.cs{color:#999}.gd{background-color:#FCC;border:1px solid #C00}.ge{font-style:italic}.gr{color:red}.gh{color:#030}.gi{background-color:#CFC;border:1px solid #0C0}.go{color:#AAA}.gp{color:#009}.gu{color:#030}.gt{color:#9C6}.kc{color:#069}.kd{color:#069}.kn{color:#069}.kp{color:#069}.kr{color:#069}.kt{color:#078}.m{color:#F60}.s{color:#d44950}.na{color:#4f9fcf}.nb{color:#366}.nc{color:#0A8}.no{color:#360}.nd{color:#99F}.ni{color:#999}.ne{color:#C00}.nf{color:#C0F}.nl{color:#99F}.nn{color:#0CF}.nt{color:#2f6f9f}.nv{color:#033}.ow{color:#000}.w{color:#bbb}.mf{color:#F60}.mh{color:#F60}.mi{color:#F60}.mo{color:#F60}.sb{color:#C30}.sc{color:#C30}.sd{color:#C30;font-style:italic}.s2{color:#C30}.se{color:#C30}.sh{color:#C30}.si{color:#A00}.sx{color:#C30}.sr{color:#3AA}.s1{color:#C30}.ss{color:#FC3}.bp{color:#366}.vc{color:#033}.vg{color:#033}.vi{color:#033}.il{color:#F60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}/*!
|
6
|
+
* Bootstrap Docs (http://getbootstrap.com)
|
7
|
+
* Copyright 2011-2016 Twitter, Inc.
|
8
|
+
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
9
|
+
* details, see https://creativecommons.org/licenses/by/3.0/.
|
10
|
+
*/body{position:relative}.table code{font-size:13px;font-weight:400}h2 code,h3 code,h4 code{background-color:inherit}.btn-outline{color:#563d7c;background-color:transparent;border-color:#563d7c}.btn-outline:active,.btn-outline:focus,.btn-outline:hover{color:#fff;background-color:#563d7c;border-color:#563d7c}.btn-outline-inverse{color:#fff;background-color:transparent;border-color:#cdbfe3}.btn-outline-inverse:active,.btn-outline-inverse:focus,.btn-outline-inverse:hover{color:#563d7c;text-shadow:none;background-color:#fff;border-color:#fff}.bs-docs-booticon{display:block;font-weight:500;color:#fff;text-align:center;cursor:default;background-color:#563d7c;border-radius:15%}.bs-docs-booticon-sm{width:30px;height:30px;font-size:20px;line-height:28px}.bs-docs-booticon-lg{width:144px;height:144px;font-size:108px;line-height:140px}.bs-docs-booticon-inverse{color:#563d7c;background-color:#fff}.bs-docs-booticon-outline{background-color:transparent;border:1px solid #cdbfe3}#skippy{display:block;padding:1em;color:#fff;background-color:#6f5499;outline:0}#skippy .skiplink-text{padding:.5em;outline:1px dotted}#content:focus{outline:0}.bs-docs-nav{margin-bottom:0;background-color:#fff;border-bottom:0}.bs-home-nav .bs-nav-b{display:none}.bs-docs-nav .navbar-brand,.bs-docs-nav .navbar-nav>li>a{font-weight:500;color:#563d7c}.bs-docs-nav .navbar-nav>.active>a,.bs-docs-nav .navbar-nav>.active>a:hover,.bs-docs-nav .navbar-nav>li>a:hover{color:#463265;background-color:#f9f9f9}.bs-docs-nav .navbar-toggle .icon-bar{background-color:#563d7c}.bs-docs-nav .navbar-header .navbar-toggle{border-color:#fff}.bs-docs-nav .navbar-header .navbar-toggle:focus,.bs-docs-nav .navbar-header .navbar-toggle:hover{background-color:#f9f9f9;border-color:#f9f9f9}.bs-docs-footer{padding-top:50px;padding-bottom:50px;margin-top:100px;color:#99979c;text-align:center;background-color:#2a2730}.bs-docs-footer a{color:#fff}.bs-docs-footer-links{padding-left:0;margin-bottom:20px}.bs-docs-footer-links li{display:inline-block}.bs-docs-footer-links li+li{margin-left:15px}@media (min-width:768px){.bs-docs-footer{text-align:left}.bs-docs-footer p{margin-bottom:0}}.bs-docs-header,.bs-docs-masthead{position:relative;padding:30px 0;color:#cdbfe3;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.1);background-color:#6f5499;background-image:-webkit-gradient(linear,left top,left bottom,from(#563d7c),to(#6f5499));background-image:-webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);background-image:-o-linear-gradient(top,#563d7c 0,#6f5499 100%);background-image:linear-gradient(to bottom,#563d7c 0,#6f5499 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);background-repeat:repeat-x}.bs-docs-masthead .bs-docs-booticon{margin:0 auto 30px}.bs-docs-masthead h1{font-weight:300;line-height:1;color:#fff}.bs-docs-masthead .lead{margin:0 auto 30px;font-size:20px;color:#fff}.bs-docs-masthead .version{margin-top:-15px;margin-bottom:30px;color:#9783b9}.bs-docs-masthead .btn{width:100%;padding:15px 30px;font-size:20px}@media (min-width:480px){.bs-docs-masthead .btn{width:auto}}@media (min-width:768px){.bs-docs-masthead{padding:80px 0}.bs-docs-masthead h1{font-size:60px}.bs-docs-masthead .lead{font-size:24px}}@media (min-width:992px){.bs-docs-masthead .lead{width:80%;font-size:30px}}.bs-docs-header{margin-bottom:40px;font-size:20px}.bs-docs-header h1{margin-top:0;color:#fff}.bs-docs-header p{margin-bottom:0;font-weight:300;line-height:1.4}.bs-docs-header .container{position:relative}@media (min-width:768px){.bs-docs-header{padding-top:60px;padding-bottom:60px;font-size:24px;text-align:left}.bs-docs-header h1{font-size:60px;line-height:1}}@media (min-width:992px){.bs-docs-header h1,.bs-docs-header p{margin-right:380px}}.carbonad{width:auto!important;height:auto!important;padding:20px!important;margin:30px -15px -31px!important;overflow:hidden;font-size:13px!important;line-height:16px!important;text-align:left;background:0 0!important;border:solid #866ab3!important;border-width:1px 0!important}.carbonad-img{margin:0!important}.carbonad-tag,.carbonad-text{display:block!important;float:none!important;width:auto!important;height:auto!important;margin-left:145px!important;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important}.carbonad-text{padding-top:0!important}.carbonad-tag{color:inherit!important;text-align:left!important}.carbonad-tag a,.carbonad-text a{color:#fff!important}.carbonad #azcarbon>img{display:none}@media (min-width:480px){.carbonad{width:330px!important;margin:20px auto!important;border-width:1px!important;border-radius:4px}.bs-docs-masthead .carbonad{margin:50px auto 0!important}}@media (min-width:768px){.carbonad{margin-right:0!important;margin-left:0!important}}@media (min-width:992px){.carbonad{position:absolute;top:0;right:15px;width:330px!important;padding:15px!important;margin:0!important}.bs-docs-masthead .carbonad{position:static}}.bs-docs-featurette{padding-top:40px;padding-bottom:40px;font-size:16px;line-height:1.5;color:#555;text-align:center;background-color:#fff;border-bottom:1px solid #e5e5e5}.bs-docs-featurette+.bs-docs-footer{margin-top:0;border-top:0}.bs-docs-featurette-title{margin-bottom:5px;font-size:30px;font-weight:400;color:#333}.half-rule{width:100px;margin:40px auto}.bs-docs-featurette h3{margin-bottom:5px;font-weight:400;color:#333}.bs-docs-featurette-img{display:block;margin-bottom:20px;color:#333}.bs-docs-featurette-img:hover{color:#337ab7;text-decoration:none}.bs-docs-featurette-img img{display:block;margin-bottom:15px}@media (min-width:480px){.bs-docs-featurette .img-responsive{margin-top:30px}}@media (min-width:768px){.bs-docs-featurette{padding-top:100px;padding-bottom:100px}.bs-docs-featurette-title{font-size:40px}.bs-docs-featurette .lead{max-width:80%;margin-right:auto;margin-left:auto}.bs-docs-featurette .img-responsive{margin-top:0}}.bs-docs-featured-sites{margin-right:-1px;margin-left:-1px}.bs-docs-featured-sites .col-xs-6{padding:1px}.bs-docs-featured-sites .img-responsive{margin-top:0}@media (min-width:768px){.bs-docs-featured-sites .col-sm-3:first-child img{border-top-left-radius:4px;border-bottom-left-radius:4px}.bs-docs-featured-sites .col-sm-3:last-child img{border-top-right-radius:4px;border-bottom-right-radius:4px}}.bs-examples .thumbnail{margin-bottom:10px}.bs-examples h4{margin-bottom:5px}.bs-examples p{margin-bottom:20px}@media (max-width:480px){.bs-examples{margin-right:-10px;margin-left:-10px}.bs-examples>[class^=col-]{padding-right:10px;padding-left:10px}}.bs-docs-sidebar.affix{position:static}@media (min-width:768px){.bs-docs-sidebar{padding-left:20px}}.bs-docs-sidenav{margin-top:20px;margin-bottom:20px}.bs-docs-sidebar .nav>li>a{display:block;padding:4px 20px;font-size:13px;font-weight:500;color:#767676}.bs-docs-sidebar .nav>li>a:focus,.bs-docs-sidebar .nav>li>a:hover{padding-left:19px;color:#563d7c;text-decoration:none;background-color:transparent;border-left:1px solid #563d7c}.bs-docs-sidebar .nav>.active:focus>a,.bs-docs-sidebar .nav>.active:hover>a,.bs-docs-sidebar .nav>.active>a{padding-left:18px;font-weight:700;color:#563d7c;background-color:transparent;border-left:2px solid #563d7c}.bs-docs-sidebar .nav .nav{display:none;padding-bottom:10px}.bs-docs-sidebar .nav .nav>li>a{padding-top:1px;padding-bottom:1px;padding-left:30px;font-size:12px;font-weight:400}.bs-docs-sidebar .nav .nav>li>a:focus,.bs-docs-sidebar .nav .nav>li>a:hover{padding-left:29px}.bs-docs-sidebar .nav .nav>.active:focus>a,.bs-docs-sidebar .nav .nav>.active:hover>a,.bs-docs-sidebar .nav .nav>.active>a{padding-left:28px;font-weight:500}.back-to-top,.bs-docs-theme-toggle{display:none;padding:4px 10px;margin-top:10px;margin-left:10px;font-size:12px;font-weight:500;color:#999}.back-to-top:hover,.bs-docs-theme-toggle:hover{color:#563d7c;text-decoration:none}.bs-docs-theme-toggle{margin-top:0}@media (min-width:768px){.back-to-top,.bs-docs-theme-toggle{display:block}}@media (min-width:992px){.bs-docs-sidebar .nav>.active>ul{display:block}.bs-docs-sidebar.affix,.bs-docs-sidebar.affix-bottom{width:213px}.bs-docs-sidebar.affix{position:fixed;top:20px}.bs-docs-sidebar.affix-bottom{position:absolute}.bs-docs-sidebar.affix .bs-docs-sidenav,.bs-docs-sidebar.affix-bottom .bs-docs-sidenav{margin-top:0;margin-bottom:0}}@media (min-width:1200px){.bs-docs-sidebar.affix,.bs-docs-sidebar.affix-bottom{width:263px}}.bs-docs-section{margin-bottom:60px}.bs-docs-section:last-child{margin-bottom:0}h1[id]{padding-top:20px;margin-top:0}.bs-callout{padding:20px;margin:20px 0;border:1px solid #eee;border-left-width:5px;border-radius:3px}.bs-callout h4{margin-top:0;margin-bottom:5px}.bs-callout p:last-child{margin-bottom:0}.bs-callout code{border-radius:3px}.bs-callout+.bs-callout{margin-top:-5px}.bs-callout-danger{border-left-color:#ce4844}.bs-callout-danger h4{color:#ce4844}.bs-callout-warning{border-left-color:#aa6708}.bs-callout-warning h4{color:#aa6708}.bs-callout-info{border-left-color:#1b809e}.bs-callout-info h4{color:#1b809e}.color-swatches{margin:0 -5px;overflow:hidden}.color-swatch{float:left;width:60px;height:60px;margin:0 5px;border-radius:3px}@media (min-width:768px){.color-swatch{width:100px;height:100px}}.color-swatches .gray-darker{background-color:#222}.color-swatches .gray-dark{background-color:#333}.color-swatches .gray{background-color:#555}.color-swatches .gray-light{background-color:#999}.color-swatches .gray-lighter{background-color:#eee}.color-swatches .brand-primary{background-color:#337ab7}.color-swatches .brand-success{background-color:#5cb85c}.color-swatches .brand-warning{background-color:#f0ad4e}.color-swatches .brand-danger{background-color:#d9534f}.color-swatches .brand-info{background-color:#5bc0de}.color-swatches .bs-purple{background-color:#563d7c}.color-swatches .bs-purple-light{background-color:#c7bfd3}.color-swatches .bs-purple-lighter{background-color:#e5e1ea}.color-swatches .bs-gray{background-color:#f9f9f9}.bs-team .team-member{line-height:32px;color:#555}.bs-team .team-member:hover{color:#333;text-decoration:none}.bs-team .github-btn{float:right;width:180px;height:20px;margin-top:6px;border:none}.bs-team img{float:left;width:32px;margin-right:10px;border-radius:4px}.bs-docs-browser-bugs td p{margin-bottom:0}.bs-docs-browser-bugs th:first-child{width:18%}.show-grid{margin-bottom:15px}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;background-color:#eee;background-color:rgba(86,61,124,.15);border:1px solid #ddd;border:1px solid rgba(86,61,124,.2)}.bs-example{position:relative;padding:45px 15px 15px;margin:0 -15px 15px;border-color:#e5e5e5 #eee #eee;border-style:solid;border-width:1px 0;-webkit-box-shadow:inset 0 3px 6px rgba(0,0,0,.05);box-shadow:inset 0 3px 6px rgba(0,0,0,.05)}.bs-example:after{position:absolute;top:15px;left:15px;font-size:12px;font-weight:700;color:#959595;text-transform:uppercase;letter-spacing:1px;content:"Example"}.bs-example-padded-bottom{padding-bottom:24px}.bs-example+.highlight,.bs-example+.zero-clipboard+.highlight{margin:-15px -15px 15px;border-width:0 0 1px;border-radius:0}@media (min-width:768px){.bs-example{margin-right:0;margin-left:0;background-color:#fff;border-color:#ddd;border-width:1px;border-radius:4px 4px 0 0;-webkit-box-shadow:none;box-shadow:none}.bs-example+.highlight,.bs-example+.zero-clipboard+.highlight{margin-top:-16px;margin-right:0;margin-left:0;border-width:1px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.bs-example-standalone{border-radius:4px}}.bs-example .container{width:auto}.bs-example>.alert:last-child,.bs-example>.form-control:last-child,.bs-example>.jumbotron:last-child,.bs-example>.list-group:last-child,.bs-example>.navbar:last-child,.bs-example>.panel:last-child,.bs-example>.progress:last-child,.bs-example>.table-responsive:last-child>.table,.bs-example>.table:last-child,.bs-example>.well:last-child,.bs-example>blockquote:last-child,.bs-example>ol:last-child,.bs-example>p:last-child,.bs-example>ul:last-child{margin-bottom:0}.bs-example>p>.close{float:none}.bs-example-type .table .type-info{color:#767676;vertical-align:middle}.bs-example-type .table td{padding:15px 0;border-color:#eee}.bs-example-type .table tr:first-child td{border-top:0}.bs-example-type h1,.bs-example-type h2,.bs-example-type h3,.bs-example-type h4,.bs-example-type h5,.bs-example-type h6{margin:0}.bs-example-bg-classes p{padding:15px}.bs-example>.img-circle,.bs-example>.img-rounded,.bs-example>.img-thumbnail{margin:5px}.bs-example>.table-responsive>.table{background-color:#fff}.bs-example>.btn,.bs-example>.btn-group{margin-top:5px;margin-bottom:5px}.bs-example>.btn-toolbar+.btn-toolbar{margin-top:10px}.bs-example-control-sizing input[type=text]+input[type=text],.bs-example-control-sizing select{margin-top:10px}.bs-example-form .input-group{margin-bottom:10px}.bs-example>textarea.form-control{resize:vertical}.bs-example>.list-group{max-width:400px}.bs-example .navbar:last-child{margin-bottom:0}.bs-navbar-bottom-example,.bs-navbar-top-example{z-index:1;padding:0;overflow:hidden}.bs-navbar-bottom-example .navbar-header,.bs-navbar-top-example .navbar-header{margin-left:0}.bs-navbar-bottom-example .navbar-fixed-bottom,.bs-navbar-top-example .navbar-fixed-top{position:relative;margin-right:0;margin-left:0}.bs-navbar-top-example{padding-bottom:45px}.bs-navbar-top-example:after{top:auto;bottom:15px}.bs-navbar-top-example .navbar-fixed-top{top:-1px}.bs-navbar-bottom-example{padding-top:45px}.bs-navbar-bottom-example .navbar-fixed-bottom{bottom:-1px}.bs-navbar-bottom-example .navbar{margin-bottom:0}@media (min-width:768px){.bs-navbar-bottom-example .navbar-fixed-bottom,.bs-navbar-top-example .navbar-fixed-top{position:absolute}}.bs-example .pagination{margin-top:10px;margin-bottom:10px}.bs-example>.pager{margin-top:0}.bs-example-modal{background-color:#f5f5f5}.bs-example-modal .modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.bs-example-modal .modal-dialog{left:auto;margin-right:auto;margin-left:auto}.bs-example>.dropdown>.dropdown-toggle{float:left}.bs-example>.dropdown>.dropdown-menu{position:static;display:block;margin-bottom:5px;clear:left}.bs-example-tabs .nav-tabs{margin-bottom:15px}.bs-example-tooltips{text-align:center}.bs-example-tooltips>.btn{margin-top:5px;margin-bottom:5px}.bs-example-tooltip .tooltip{position:relative;display:inline-block;margin:10px 20px;opacity:1}.bs-example-popover{padding-bottom:24px;background-color:#f9f9f9}.bs-example-popover .popover{position:relative;display:block;float:left;width:260px;margin:20px}.scrollspy-example{position:relative;height:200px;margin-top:10px;overflow:auto}.bs-example>.nav-pills-stacked-example{max-width:300px}#collapseExample .well{margin-bottom:0}.bs-events-table>tbody>tr>td:first-child,.bs-events-table>thead>tr>th:first-child{white-space:nowrap}.bs-events-table>thead>tr>th:first-child{width:150px}.js-options-table>thead>tr>th:nth-child(1),.js-options-table>thead>tr>th:nth-child(2){width:100px}.js-options-table>thead>tr>th:nth-child(3){width:50px}.highlight{padding:9px 14px;margin-bottom:14px;background-color:#f7f7f9;border:1px solid #e1e1e8;border-radius:4px}.highlight pre{padding:0;margin-top:0;margin-bottom:0;word-break:normal;white-space:nowrap;background-color:transparent;border:0}.highlight pre code{font-size:inherit;color:#333}.highlight pre code:first-child{display:inline-block;padding-right:45px}.table-responsive .highlight pre{white-space:normal}.bs-table th small,.responsive-utilities th small{display:block;font-weight:400;color:#999}.responsive-utilities tbody th{font-weight:400}.responsive-utilities td{text-align:center}.responsive-utilities td.is-visible{color:#468847;background-color:#dff0d8!important}.responsive-utilities td.is-hidden{color:#ccc;background-color:#f9f9f9!important}.responsive-utilities-test{margin-top:5px}.responsive-utilities-test .col-xs-6{margin-bottom:10px}.responsive-utilities-test span{display:block;padding:15px 10px;font-size:14px;font-weight:700;line-height:1.1;text-align:center;border-radius:4px}.hidden-on .col-xs-6 .hidden-lg,.hidden-on .col-xs-6 .hidden-md,.hidden-on .col-xs-6 .hidden-sm,.hidden-on .col-xs-6 .hidden-xs,.visible-on .col-xs-6 .hidden-lg,.visible-on .col-xs-6 .hidden-md,.visible-on .col-xs-6 .hidden-sm,.visible-on .col-xs-6 .hidden-xs{color:#999;border:1px solid #ddd}.hidden-on .col-xs-6 .visible-lg-block,.hidden-on .col-xs-6 .visible-md-block,.hidden-on .col-xs-6 .visible-sm-block,.hidden-on .col-xs-6 .visible-xs-block,.visible-on .col-xs-6 .visible-lg-block,.visible-on .col-xs-6 .visible-md-block,.visible-on .col-xs-6 .visible-sm-block,.visible-on .col-xs-6 .visible-xs-block{color:#468847;background-color:#dff0d8;border:1px solid #d6e9c6}.bs-glyphicons{margin:0 -10px 20px;overflow:hidden}.bs-glyphicons-list{padding-left:0;list-style:none}.bs-glyphicons li{float:left;width:25%;height:115px;padding:10px;font-size:10px;line-height:1.4;text-align:center;background-color:#f9f9f9;border:1px solid #fff}.bs-glyphicons .glyphicon{margin-top:5px;margin-bottom:10px;font-size:24px}.bs-glyphicons .glyphicon-class{display:block;text-align:center;word-wrap:break-word}.bs-glyphicons li:hover{color:#fff;background-color:#563d7c}@media (min-width:768px){.bs-glyphicons{margin-right:0;margin-left:0}.bs-glyphicons li{width:12.5%;font-size:12px}}.bs-customizer .toggle{float:right;margin-top:25px}.bs-customizer label{margin-top:10px;font-weight:500;color:#555}.bs-customizer h2{padding-top:30px;margin-top:0;margin-bottom:5px}.bs-customizer h3{margin-bottom:0}.bs-customizer h4{margin-top:15px;margin-bottom:0}.bs-customizer .bs-callout h4{margin-top:0;margin-bottom:5px}.bs-customizer input[type=text]{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;background-color:#fafafa}.bs-customizer .help-block{margin-bottom:5px;font-size:12px}#less-section label{font-weight:400}.bs-customize-download .btn-outline{padding:20px}.bs-customizer-alert{position:fixed;top:0;right:0;left:0;z-index:1030;padding:15px 0;color:#fff;background-color:#d9534f;border-bottom:1px solid #b94441;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25);box-shadow:inset 0 1px 0 rgba(255,255,255,.25)}.bs-customizer-alert .close{margin-top:-4px;font-size:24px}.bs-customizer-alert p{margin-bottom:0}.bs-customizer-alert .glyphicon{margin-right:5px}.bs-customizer-alert pre{margin:10px 0 0;color:#fff;background-color:#a83c3a;border-color:#973634;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}.bs-dropzone{position:relative;padding:20px;margin-bottom:20px;color:#777;text-align:center;border:2px dashed #eee;border-radius:4px}.bs-dropzone .import-header{margin-bottom:5px}.bs-dropzone .glyphicon-download-alt{font-size:40px}.bs-dropzone hr{width:100px}.bs-dropzone .lead{margin-bottom:10px;font-weight:400;color:#333}#import-manual-trigger{cursor:pointer}.bs-dropzone p:last-child{margin-bottom:0}.bs-brand-logos{display:table;width:100%;margin-bottom:15px;overflow:hidden;color:#563d7c;background-color:#f9f9f9;border-radius:4px}.bs-brand-item{padding:60px 0;text-align:center}.bs-brand-item+.bs-brand-item{border-top:1px solid #fff}.bs-brand-logos .inverse{color:#fff;background-color:#563d7c}.bs-brand-item h1,.bs-brand-item h3{margin-top:0;margin-bottom:0}.bs-brand-item .bs-docs-booticon{margin-right:auto;margin-left:auto}.bs-brand-item .glyphicon{width:30px;height:30px;margin:10px auto -10px;line-height:30px;color:#fff;border-radius:50%}.bs-brand-item .glyphicon-ok{background-color:#5cb85c}.bs-brand-item .glyphicon-remove{background-color:#d9534f}@media (min-width:768px){.bs-brand-item{display:table-cell;width:1%}.bs-brand-item+.bs-brand-item{border-top:0;border-left:1px solid #fff}.bs-brand-item h1{font-size:60px}}.zero-clipboard{position:relative;display:none}.btn-clipboard{position:absolute;top:0;right:0;z-index:10;display:block;padding:5px 8px;font-size:12px;color:#767676;cursor:pointer;background-color:#fff;border:1px solid #e1e1e8;border-radius:0 4px 0 4px}.btn-clipboard-hover{color:#fff;background-color:#563d7c;border-color:#563d7c}@media (min-width:768px){.zero-clipboard{display:block}.bs-example+.zero-clipboard .btn-clipboard{top:-16px;border-top-right-radius:0}}.anchorjs-link{color:inherit}@media (max-width:480px){.anchorjs-link{display:none}}:hover>.anchorjs-link{opacity:.75;-webkit-transition:color .16s linear;-o-transition:color .16s linear;transition:color .16s linear}.anchorjs-link:focus,:hover>.anchorjs-link:hover{text-decoration:none;opacity:1}#focusedInput{border-color:#ccc;border-color:rgba(82,168,236,.8);outline:0;outline:thin dotted\9;-webkit-box-shadow:0 0 8px rgba(82,168,236,.6);box-shadow:0 0 8px rgba(82,168,236,.6)}.v4-tease{display:block;padding:15px 20px;font-weight:700;color:#fff;text-align:center;background-color:#0275d8}.v4-tease:hover{color:#fff;text-decoration:none;background-color:#0269c2}@media print{a[href]:after{content:""!important}}
|
11
|
+
/*# sourceMappingURL=docs.min.css.map */
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*!
|
2
|
+
* IE10 viewport hack for Surface/desktop Windows 8 bug
|
3
|
+
* Copyright 2014-2015 Twitter, Inc.
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
|
+
*/
|
6
|
+
|
7
|
+
/*
|
8
|
+
* See the Getting Started docs for more information:
|
9
|
+
* http://getbootstrap.com/getting-started/#support-ie10-width
|
10
|
+
*/
|
11
|
+
@-ms-viewport { width: device-width; }
|
12
|
+
@-o-viewport { width: device-width; }
|
13
|
+
@viewport { width: device-width; }
|
@@ -0,0 +1,1632 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap Docs (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2016 Twitter, Inc.
|
4
|
+
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
5
|
+
* details, see https://creativecommons.org/licenses/by/3.0/.
|
6
|
+
*/
|
7
|
+
|
8
|
+
|
9
|
+
/*
|
10
|
+
* Bootstrap Documentation
|
11
|
+
* Special styles for presenting Bootstrap's documentation and code examples.
|
12
|
+
*/
|
13
|
+
|
14
|
+
|
15
|
+
/*
|
16
|
+
* Scaffolding
|
17
|
+
*
|
18
|
+
* Update the basics of our documents to prep for docs content.
|
19
|
+
*/
|
20
|
+
|
21
|
+
body {
|
22
|
+
position: relative; /* For scrollspy */
|
23
|
+
}
|
24
|
+
|
25
|
+
/* Keep code small in tables on account of limited space */
|
26
|
+
.table code {
|
27
|
+
font-size: 13px;
|
28
|
+
font-weight: normal;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* Inline code within headings retain the heading's background-color */
|
32
|
+
h2 code,
|
33
|
+
h3 code,
|
34
|
+
h4 code {
|
35
|
+
background-color: inherit;
|
36
|
+
}
|
37
|
+
|
38
|
+
/* Outline button for use within the docs */
|
39
|
+
.btn-outline {
|
40
|
+
color: #563d7c;
|
41
|
+
background-color: transparent;
|
42
|
+
border-color: #563d7c;
|
43
|
+
}
|
44
|
+
.btn-outline:hover,
|
45
|
+
.btn-outline:focus,
|
46
|
+
.btn-outline:active {
|
47
|
+
color: #fff;
|
48
|
+
background-color: #563d7c;
|
49
|
+
border-color: #563d7c;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* Inverted outline button (white on dark) */
|
53
|
+
.btn-outline-inverse {
|
54
|
+
color: #fff;
|
55
|
+
background-color: transparent;
|
56
|
+
border-color: #cdbfe3;
|
57
|
+
}
|
58
|
+
.btn-outline-inverse:hover,
|
59
|
+
.btn-outline-inverse:focus,
|
60
|
+
.btn-outline-inverse:active {
|
61
|
+
color: #563d7c;
|
62
|
+
text-shadow: none;
|
63
|
+
background-color: #fff;
|
64
|
+
border-color: #fff;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* Bootstrap "B" icon */
|
68
|
+
.bs-docs-booticon {
|
69
|
+
display: block;
|
70
|
+
font-weight: 500;
|
71
|
+
color: #fff;
|
72
|
+
text-align: center;
|
73
|
+
cursor: default;
|
74
|
+
background-color: #563d7c;
|
75
|
+
border-radius: 15%;
|
76
|
+
}
|
77
|
+
.bs-docs-booticon-sm {
|
78
|
+
width: 30px;
|
79
|
+
height: 30px;
|
80
|
+
font-size: 20px;
|
81
|
+
line-height: 28px;
|
82
|
+
}
|
83
|
+
.bs-docs-booticon-lg {
|
84
|
+
width: 144px;
|
85
|
+
height: 144px;
|
86
|
+
font-size: 108px;
|
87
|
+
line-height: 140px;
|
88
|
+
}
|
89
|
+
.bs-docs-booticon-inverse {
|
90
|
+
color: #563d7c;
|
91
|
+
background-color: #fff;
|
92
|
+
}
|
93
|
+
.bs-docs-booticon-outline {
|
94
|
+
background-color: transparent;
|
95
|
+
border: 1px solid #cdbfe3;
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
/*
|
100
|
+
* Fancy skip link
|
101
|
+
*
|
102
|
+
* Make it look a bit less "bare bones"
|
103
|
+
* Also includes focus suppression for the Chrome tabindex="-1" workaround
|
104
|
+
*/
|
105
|
+
|
106
|
+
#skippy {
|
107
|
+
display: block;
|
108
|
+
padding: 1em;
|
109
|
+
color: #fff;
|
110
|
+
background-color: #6f5499;
|
111
|
+
outline: 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
#skippy .skiplink-text {
|
115
|
+
padding: .5em;
|
116
|
+
outline: 1px dotted;
|
117
|
+
}
|
118
|
+
|
119
|
+
#content:focus {
|
120
|
+
outline: none;
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
/*
|
125
|
+
* Main navigation
|
126
|
+
*
|
127
|
+
* Turn the `.navbar` at the top of the docs purple.
|
128
|
+
*/
|
129
|
+
|
130
|
+
.bs-docs-nav {
|
131
|
+
margin-bottom: 0;
|
132
|
+
background-color: #fff;
|
133
|
+
border-bottom: 0;
|
134
|
+
}
|
135
|
+
.bs-home-nav .bs-nav-b {
|
136
|
+
display: none;
|
137
|
+
}
|
138
|
+
.bs-docs-nav .navbar-brand,
|
139
|
+
.bs-docs-nav .navbar-nav > li > a {
|
140
|
+
font-weight: 500;
|
141
|
+
color: #563d7c;
|
142
|
+
}
|
143
|
+
.bs-docs-nav .navbar-nav > li > a:hover,
|
144
|
+
.bs-docs-nav .navbar-nav > .active > a,
|
145
|
+
.bs-docs-nav .navbar-nav > .active > a:hover {
|
146
|
+
color: #463265;
|
147
|
+
background-color: #f9f9f9;
|
148
|
+
}
|
149
|
+
.bs-docs-nav .navbar-toggle .icon-bar {
|
150
|
+
background-color: #563d7c;
|
151
|
+
}
|
152
|
+
.bs-docs-nav .navbar-header .navbar-toggle {
|
153
|
+
border-color: #fff;
|
154
|
+
}
|
155
|
+
.bs-docs-nav .navbar-header .navbar-toggle:hover,
|
156
|
+
.bs-docs-nav .navbar-header .navbar-toggle:focus {
|
157
|
+
background-color: #f9f9f9;
|
158
|
+
border-color: #f9f9f9;
|
159
|
+
}
|
160
|
+
|
161
|
+
|
162
|
+
/*
|
163
|
+
* Footer
|
164
|
+
*
|
165
|
+
* Separated section of content at the bottom of all pages, save the homepage.
|
166
|
+
*/
|
167
|
+
|
168
|
+
.bs-docs-footer {
|
169
|
+
padding-top: 50px;
|
170
|
+
padding-bottom: 50px;
|
171
|
+
margin-top: 100px;
|
172
|
+
color: #99979c;
|
173
|
+
text-align: center;
|
174
|
+
background-color: #2a2730;
|
175
|
+
}
|
176
|
+
.bs-docs-footer a {
|
177
|
+
color: #fff;
|
178
|
+
}
|
179
|
+
.bs-docs-footer-links {
|
180
|
+
padding-left: 0;
|
181
|
+
margin-bottom: 20px;
|
182
|
+
}
|
183
|
+
.bs-docs-footer-links li {
|
184
|
+
display: inline-block;
|
185
|
+
}
|
186
|
+
.bs-docs-footer-links li + li {
|
187
|
+
margin-left: 15px;
|
188
|
+
}
|
189
|
+
|
190
|
+
@media (min-width: 768px) {
|
191
|
+
.bs-docs-footer {
|
192
|
+
text-align: left;
|
193
|
+
}
|
194
|
+
.bs-docs-footer p {
|
195
|
+
margin-bottom: 0;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
/*
|
201
|
+
* Homepage
|
202
|
+
*
|
203
|
+
* Tweaks to the custom homepage and the masthead (main jumbotron).
|
204
|
+
*/
|
205
|
+
|
206
|
+
/* Share masthead with page headers */
|
207
|
+
.bs-docs-masthead,
|
208
|
+
.bs-docs-header {
|
209
|
+
position: relative;
|
210
|
+
padding: 30px 0;
|
211
|
+
color: #cdbfe3;
|
212
|
+
text-align: center;
|
213
|
+
text-shadow: 0 1px 0 rgba(0,0,0,.1);
|
214
|
+
background-color: #6f5499;
|
215
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#563d7c), to(#6f5499));
|
216
|
+
background-image: -webkit-linear-gradient(top, #563d7c 0%, #6f5499 100%);
|
217
|
+
background-image: -o-linear-gradient(top, #563d7c 0%, #6f5499 100%);
|
218
|
+
background-image: linear-gradient(to bottom, #563d7c 0%, #6f5499 100%);
|
219
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
|
220
|
+
background-repeat: repeat-x;
|
221
|
+
}
|
222
|
+
|
223
|
+
/* Masthead (headings and download button) */
|
224
|
+
.bs-docs-masthead .bs-docs-booticon {
|
225
|
+
margin: 0 auto 30px;
|
226
|
+
}
|
227
|
+
.bs-docs-masthead h1 {
|
228
|
+
font-weight: 300;
|
229
|
+
line-height: 1;
|
230
|
+
color: #fff;
|
231
|
+
}
|
232
|
+
.bs-docs-masthead .lead {
|
233
|
+
margin: 0 auto 30px;
|
234
|
+
font-size: 20px;
|
235
|
+
color: #fff;
|
236
|
+
}
|
237
|
+
.bs-docs-masthead .version {
|
238
|
+
margin-top: -15px;
|
239
|
+
margin-bottom: 30px;
|
240
|
+
color: #9783b9;
|
241
|
+
}
|
242
|
+
.bs-docs-masthead .btn {
|
243
|
+
width: 100%;
|
244
|
+
padding: 15px 30px;
|
245
|
+
font-size: 20px;
|
246
|
+
}
|
247
|
+
|
248
|
+
@media (min-width: 480px) {
|
249
|
+
.bs-docs-masthead .btn {
|
250
|
+
width: auto;
|
251
|
+
}
|
252
|
+
}
|
253
|
+
|
254
|
+
@media (min-width: 768px) {
|
255
|
+
.bs-docs-masthead {
|
256
|
+
padding: 80px 0;
|
257
|
+
}
|
258
|
+
.bs-docs-masthead h1 {
|
259
|
+
font-size: 60px;
|
260
|
+
}
|
261
|
+
.bs-docs-masthead .lead {
|
262
|
+
font-size: 24px;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
@media (min-width: 992px) {
|
267
|
+
.bs-docs-masthead .lead {
|
268
|
+
width: 80%;
|
269
|
+
font-size: 30px;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
/*
|
275
|
+
* Page headers
|
276
|
+
*
|
277
|
+
* Jumbotron-esque headers at the top of every page that's not the homepage.
|
278
|
+
*/
|
279
|
+
|
280
|
+
/* Page headers */
|
281
|
+
.bs-docs-header {
|
282
|
+
margin-bottom: 40px;
|
283
|
+
font-size: 20px;
|
284
|
+
}
|
285
|
+
.bs-docs-header h1 {
|
286
|
+
margin-top: 0;
|
287
|
+
color: #fff;
|
288
|
+
}
|
289
|
+
.bs-docs-header p {
|
290
|
+
margin-bottom: 0;
|
291
|
+
font-weight: 300;
|
292
|
+
line-height: 1.4;
|
293
|
+
}
|
294
|
+
.bs-docs-header .container {
|
295
|
+
position: relative;
|
296
|
+
}
|
297
|
+
|
298
|
+
@media (min-width: 768px) {
|
299
|
+
.bs-docs-header {
|
300
|
+
padding-top: 60px;
|
301
|
+
padding-bottom: 60px;
|
302
|
+
font-size: 24px;
|
303
|
+
text-align: left;
|
304
|
+
}
|
305
|
+
.bs-docs-header h1 {
|
306
|
+
font-size: 60px;
|
307
|
+
line-height: 1;
|
308
|
+
}
|
309
|
+
}
|
310
|
+
|
311
|
+
@media (min-width: 992px) {
|
312
|
+
.bs-docs-header h1,
|
313
|
+
.bs-docs-header p {
|
314
|
+
margin-right: 380px;
|
315
|
+
}
|
316
|
+
}
|
317
|
+
|
318
|
+
|
319
|
+
/*
|
320
|
+
* Carbon ads
|
321
|
+
*
|
322
|
+
* Single display ad that shows on all pages (except homepage) in page headers.
|
323
|
+
* The hella `!important` is required for any pre-set property.
|
324
|
+
*/
|
325
|
+
|
326
|
+
.carbonad {
|
327
|
+
width: auto !important;
|
328
|
+
height: auto !important;
|
329
|
+
padding: 20px !important;
|
330
|
+
margin: 30px -15px -31px !important;
|
331
|
+
overflow: hidden; /* clearfix */
|
332
|
+
font-size: 13px !important;
|
333
|
+
line-height: 16px !important;
|
334
|
+
text-align: left;
|
335
|
+
background: transparent !important;
|
336
|
+
border: solid #866ab3 !important;
|
337
|
+
border-width: 1px 0 !important;
|
338
|
+
}
|
339
|
+
.carbonad-img {
|
340
|
+
margin: 0 !important;
|
341
|
+
}
|
342
|
+
.carbonad-text,
|
343
|
+
.carbonad-tag {
|
344
|
+
display: block !important;
|
345
|
+
float: none !important;
|
346
|
+
width: auto !important;
|
347
|
+
height: auto !important;
|
348
|
+
margin-left: 145px !important;
|
349
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
|
350
|
+
}
|
351
|
+
.carbonad-text {
|
352
|
+
padding-top: 0 !important;
|
353
|
+
}
|
354
|
+
.carbonad-tag {
|
355
|
+
color: inherit !important;
|
356
|
+
text-align: left !important;
|
357
|
+
}
|
358
|
+
.carbonad-text a,
|
359
|
+
.carbonad-tag a {
|
360
|
+
color: #fff !important;
|
361
|
+
}
|
362
|
+
.carbonad #azcarbon > img {
|
363
|
+
display: none; /* hide what I assume are tracking images */
|
364
|
+
}
|
365
|
+
|
366
|
+
@media (min-width: 480px) {
|
367
|
+
.carbonad {
|
368
|
+
width: 330px !important;
|
369
|
+
margin: 20px auto !important;
|
370
|
+
border-width: 1px !important;
|
371
|
+
border-radius: 4px;
|
372
|
+
}
|
373
|
+
.bs-docs-masthead .carbonad {
|
374
|
+
margin: 50px auto 0 !important;
|
375
|
+
}
|
376
|
+
}
|
377
|
+
|
378
|
+
@media (min-width: 768px) {
|
379
|
+
.carbonad {
|
380
|
+
margin-right: 0 !important;
|
381
|
+
margin-left: 0 !important;
|
382
|
+
}
|
383
|
+
}
|
384
|
+
|
385
|
+
@media (min-width: 992px) {
|
386
|
+
.carbonad {
|
387
|
+
position: absolute;
|
388
|
+
top: 0;
|
389
|
+
right: 15px; /* 15px instead of 0 since box-sizing */
|
390
|
+
width: 330px !important;
|
391
|
+
padding: 15px !important;
|
392
|
+
margin: 0 !important;
|
393
|
+
}
|
394
|
+
.bs-docs-masthead .carbonad {
|
395
|
+
position: static;
|
396
|
+
}
|
397
|
+
}
|
398
|
+
|
399
|
+
|
400
|
+
/*
|
401
|
+
* Homepage featurettes
|
402
|
+
*
|
403
|
+
* Reasons to use Bootstrap, entries from the Expo, and more.
|
404
|
+
*/
|
405
|
+
|
406
|
+
.bs-docs-featurette {
|
407
|
+
padding-top: 40px;
|
408
|
+
padding-bottom: 40px;
|
409
|
+
font-size: 16px;
|
410
|
+
line-height: 1.5;
|
411
|
+
color: #555;
|
412
|
+
text-align: center;
|
413
|
+
background-color: #fff;
|
414
|
+
border-bottom: 1px solid #e5e5e5;
|
415
|
+
}
|
416
|
+
.bs-docs-featurette + .bs-docs-footer {
|
417
|
+
margin-top: 0;
|
418
|
+
border-top: 0;
|
419
|
+
}
|
420
|
+
|
421
|
+
.bs-docs-featurette-title {
|
422
|
+
margin-bottom: 5px;
|
423
|
+
font-size: 30px;
|
424
|
+
font-weight: normal;
|
425
|
+
color: #333;
|
426
|
+
}
|
427
|
+
.half-rule {
|
428
|
+
width: 100px;
|
429
|
+
margin: 40px auto;
|
430
|
+
}
|
431
|
+
.bs-docs-featurette h3 {
|
432
|
+
margin-bottom: 5px;
|
433
|
+
font-weight: normal;
|
434
|
+
color: #333;
|
435
|
+
}
|
436
|
+
.bs-docs-featurette-img {
|
437
|
+
display: block;
|
438
|
+
margin-bottom: 20px;
|
439
|
+
color: #333;
|
440
|
+
}
|
441
|
+
.bs-docs-featurette-img:hover {
|
442
|
+
color: #337ab7;
|
443
|
+
text-decoration: none;
|
444
|
+
}
|
445
|
+
.bs-docs-featurette-img img {
|
446
|
+
display: block;
|
447
|
+
margin-bottom: 15px;
|
448
|
+
}
|
449
|
+
|
450
|
+
@media (min-width: 480px) {
|
451
|
+
.bs-docs-featurette .img-responsive {
|
452
|
+
margin-top: 30px;
|
453
|
+
}
|
454
|
+
}
|
455
|
+
@media (min-width: 768px) {
|
456
|
+
.bs-docs-featurette {
|
457
|
+
padding-top: 100px;
|
458
|
+
padding-bottom: 100px;
|
459
|
+
}
|
460
|
+
.bs-docs-featurette-title {
|
461
|
+
font-size: 40px;
|
462
|
+
}
|
463
|
+
.bs-docs-featurette .lead {
|
464
|
+
max-width: 80%;
|
465
|
+
margin-right: auto;
|
466
|
+
margin-left: auto;
|
467
|
+
}
|
468
|
+
.bs-docs-featurette .img-responsive {
|
469
|
+
margin-top: 0;
|
470
|
+
}
|
471
|
+
}
|
472
|
+
|
473
|
+
|
474
|
+
/*
|
475
|
+
* Featured sites
|
476
|
+
*
|
477
|
+
* Homepage thumbnails from the Expo.
|
478
|
+
*/
|
479
|
+
|
480
|
+
.bs-docs-featured-sites {
|
481
|
+
margin-right: -1px;
|
482
|
+
margin-left: -1px;
|
483
|
+
}
|
484
|
+
.bs-docs-featured-sites .col-xs-6 {
|
485
|
+
padding: 1px;
|
486
|
+
}
|
487
|
+
.bs-docs-featured-sites .img-responsive {
|
488
|
+
margin-top: 0;
|
489
|
+
}
|
490
|
+
|
491
|
+
@media (min-width: 768px) {
|
492
|
+
.bs-docs-featured-sites .col-sm-3:first-child img {
|
493
|
+
border-top-left-radius: 4px;
|
494
|
+
border-bottom-left-radius: 4px;
|
495
|
+
}
|
496
|
+
.bs-docs-featured-sites .col-sm-3:last-child img {
|
497
|
+
border-top-right-radius: 4px;
|
498
|
+
border-bottom-right-radius: 4px;
|
499
|
+
}
|
500
|
+
}
|
501
|
+
|
502
|
+
|
503
|
+
/*
|
504
|
+
* Examples
|
505
|
+
*
|
506
|
+
* Linked docs examples.
|
507
|
+
*/
|
508
|
+
|
509
|
+
.bs-examples .thumbnail {
|
510
|
+
margin-bottom: 10px;
|
511
|
+
}
|
512
|
+
.bs-examples h4 {
|
513
|
+
margin-bottom: 5px;
|
514
|
+
}
|
515
|
+
.bs-examples p {
|
516
|
+
margin-bottom: 20px;
|
517
|
+
}
|
518
|
+
|
519
|
+
@media (max-width: 480px) {
|
520
|
+
.bs-examples {
|
521
|
+
margin-right: -10px;
|
522
|
+
margin-left: -10px;
|
523
|
+
}
|
524
|
+
.bs-examples > [class^="col-"] {
|
525
|
+
padding-right: 10px;
|
526
|
+
padding-left: 10px;
|
527
|
+
}
|
528
|
+
}
|
529
|
+
|
530
|
+
|
531
|
+
/*
|
532
|
+
* Side navigation
|
533
|
+
*
|
534
|
+
* Scrollspy and affixed enhanced navigation to highlight sections and secondary
|
535
|
+
* sections of docs content.
|
536
|
+
*/
|
537
|
+
|
538
|
+
/* By default it's not affixed in mobile views, so undo that */
|
539
|
+
.bs-docs-sidebar.affix {
|
540
|
+
position: static;
|
541
|
+
}
|
542
|
+
@media (min-width: 768px) {
|
543
|
+
.bs-docs-sidebar {
|
544
|
+
padding-left: 20px;
|
545
|
+
}
|
546
|
+
}
|
547
|
+
|
548
|
+
/* First level of nav */
|
549
|
+
.bs-docs-sidenav {
|
550
|
+
margin-top: 20px;
|
551
|
+
margin-bottom: 20px;
|
552
|
+
}
|
553
|
+
|
554
|
+
/* All levels of nav */
|
555
|
+
.bs-docs-sidebar .nav > li > a {
|
556
|
+
display: block;
|
557
|
+
padding: 4px 20px;
|
558
|
+
font-size: 13px;
|
559
|
+
font-weight: 500;
|
560
|
+
color: #767676;
|
561
|
+
}
|
562
|
+
.bs-docs-sidebar .nav > li > a:hover,
|
563
|
+
.bs-docs-sidebar .nav > li > a:focus {
|
564
|
+
padding-left: 19px;
|
565
|
+
color: #563d7c;
|
566
|
+
text-decoration: none;
|
567
|
+
background-color: transparent;
|
568
|
+
border-left: 1px solid #563d7c;
|
569
|
+
}
|
570
|
+
.bs-docs-sidebar .nav > .active > a,
|
571
|
+
.bs-docs-sidebar .nav > .active:hover > a,
|
572
|
+
.bs-docs-sidebar .nav > .active:focus > a {
|
573
|
+
padding-left: 18px;
|
574
|
+
font-weight: bold;
|
575
|
+
color: #563d7c;
|
576
|
+
background-color: transparent;
|
577
|
+
border-left: 2px solid #563d7c;
|
578
|
+
}
|
579
|
+
|
580
|
+
/* Nav: second level (shown on .active) */
|
581
|
+
.bs-docs-sidebar .nav .nav {
|
582
|
+
display: none; /* Hide by default, but at >768px, show it */
|
583
|
+
padding-bottom: 10px;
|
584
|
+
}
|
585
|
+
.bs-docs-sidebar .nav .nav > li > a {
|
586
|
+
padding-top: 1px;
|
587
|
+
padding-bottom: 1px;
|
588
|
+
padding-left: 30px;
|
589
|
+
font-size: 12px;
|
590
|
+
font-weight: normal;
|
591
|
+
}
|
592
|
+
.bs-docs-sidebar .nav .nav > li > a:hover,
|
593
|
+
.bs-docs-sidebar .nav .nav > li > a:focus {
|
594
|
+
padding-left: 29px;
|
595
|
+
}
|
596
|
+
.bs-docs-sidebar .nav .nav > .active > a,
|
597
|
+
.bs-docs-sidebar .nav .nav > .active:hover > a,
|
598
|
+
.bs-docs-sidebar .nav .nav > .active:focus > a {
|
599
|
+
padding-left: 28px;
|
600
|
+
font-weight: 500;
|
601
|
+
}
|
602
|
+
|
603
|
+
/* Back to top (hidden on mobile) */
|
604
|
+
.back-to-top,
|
605
|
+
.bs-docs-theme-toggle {
|
606
|
+
display: none;
|
607
|
+
padding: 4px 10px;
|
608
|
+
margin-top: 10px;
|
609
|
+
margin-left: 10px;
|
610
|
+
font-size: 12px;
|
611
|
+
font-weight: 500;
|
612
|
+
color: #999;
|
613
|
+
}
|
614
|
+
.back-to-top:hover,
|
615
|
+
.bs-docs-theme-toggle:hover {
|
616
|
+
color: #563d7c;
|
617
|
+
text-decoration: none;
|
618
|
+
}
|
619
|
+
.bs-docs-theme-toggle {
|
620
|
+
margin-top: 0;
|
621
|
+
}
|
622
|
+
|
623
|
+
@media (min-width: 768px) {
|
624
|
+
.back-to-top,
|
625
|
+
.bs-docs-theme-toggle {
|
626
|
+
display: block;
|
627
|
+
}
|
628
|
+
}
|
629
|
+
|
630
|
+
/* Show and affix the side nav when space allows it */
|
631
|
+
@media (min-width: 992px) {
|
632
|
+
.bs-docs-sidebar .nav > .active > ul {
|
633
|
+
display: block;
|
634
|
+
}
|
635
|
+
/* Widen the fixed sidebar */
|
636
|
+
.bs-docs-sidebar.affix,
|
637
|
+
.bs-docs-sidebar.affix-bottom {
|
638
|
+
width: 213px;
|
639
|
+
}
|
640
|
+
.bs-docs-sidebar.affix {
|
641
|
+
position: fixed; /* Undo the static from mobile first approach */
|
642
|
+
top: 20px;
|
643
|
+
}
|
644
|
+
.bs-docs-sidebar.affix-bottom {
|
645
|
+
position: absolute; /* Undo the static from mobile first approach */
|
646
|
+
}
|
647
|
+
.bs-docs-sidebar.affix-bottom .bs-docs-sidenav,
|
648
|
+
.bs-docs-sidebar.affix .bs-docs-sidenav {
|
649
|
+
margin-top: 0;
|
650
|
+
margin-bottom: 0;
|
651
|
+
}
|
652
|
+
}
|
653
|
+
@media (min-width: 1200px) {
|
654
|
+
/* Widen the fixed sidebar again */
|
655
|
+
.bs-docs-sidebar.affix-bottom,
|
656
|
+
.bs-docs-sidebar.affix {
|
657
|
+
width: 263px;
|
658
|
+
}
|
659
|
+
}
|
660
|
+
|
661
|
+
|
662
|
+
/*
|
663
|
+
* Docs sections
|
664
|
+
*
|
665
|
+
* Content blocks for each component or feature.
|
666
|
+
*/
|
667
|
+
|
668
|
+
/* Space things out */
|
669
|
+
.bs-docs-section {
|
670
|
+
margin-bottom: 60px;
|
671
|
+
}
|
672
|
+
.bs-docs-section:last-child {
|
673
|
+
margin-bottom: 0;
|
674
|
+
}
|
675
|
+
|
676
|
+
h1[id] {
|
677
|
+
padding-top: 20px;
|
678
|
+
margin-top: 0;
|
679
|
+
}
|
680
|
+
|
681
|
+
|
682
|
+
/*
|
683
|
+
* Callouts
|
684
|
+
*
|
685
|
+
* Not quite alerts, but custom and helpful notes for folks reading the docs.
|
686
|
+
* Requires a base and modifier class.
|
687
|
+
*/
|
688
|
+
|
689
|
+
/* Common styles for all types */
|
690
|
+
.bs-callout {
|
691
|
+
padding: 20px;
|
692
|
+
margin: 20px 0;
|
693
|
+
border: 1px solid #eee;
|
694
|
+
border-left-width: 5px;
|
695
|
+
border-radius: 3px;
|
696
|
+
}
|
697
|
+
.bs-callout h4 {
|
698
|
+
margin-top: 0;
|
699
|
+
margin-bottom: 5px;
|
700
|
+
}
|
701
|
+
.bs-callout p:last-child {
|
702
|
+
margin-bottom: 0;
|
703
|
+
}
|
704
|
+
.bs-callout code {
|
705
|
+
border-radius: 3px;
|
706
|
+
}
|
707
|
+
|
708
|
+
/* Tighten up space between multiple callouts */
|
709
|
+
.bs-callout + .bs-callout {
|
710
|
+
margin-top: -5px;
|
711
|
+
}
|
712
|
+
|
713
|
+
/* Variations */
|
714
|
+
.bs-callout-danger {
|
715
|
+
border-left-color: #ce4844;
|
716
|
+
}
|
717
|
+
.bs-callout-danger h4 {
|
718
|
+
color: #ce4844;
|
719
|
+
}
|
720
|
+
.bs-callout-warning {
|
721
|
+
border-left-color: #aa6708;
|
722
|
+
}
|
723
|
+
.bs-callout-warning h4 {
|
724
|
+
color: #aa6708;
|
725
|
+
}
|
726
|
+
.bs-callout-info {
|
727
|
+
border-left-color: #1b809e;
|
728
|
+
}
|
729
|
+
.bs-callout-info h4 {
|
730
|
+
color: #1b809e;
|
731
|
+
}
|
732
|
+
|
733
|
+
|
734
|
+
/*
|
735
|
+
* Color swatches
|
736
|
+
*
|
737
|
+
* Color swatches and associated values for our grayscale and brand colors.
|
738
|
+
*/
|
739
|
+
|
740
|
+
.color-swatches {
|
741
|
+
margin: 0 -5px;
|
742
|
+
overflow: hidden; /* clearfix */
|
743
|
+
}
|
744
|
+
.color-swatch {
|
745
|
+
float: left;
|
746
|
+
width: 60px;
|
747
|
+
height: 60px;
|
748
|
+
margin: 0 5px;
|
749
|
+
border-radius: 3px;
|
750
|
+
}
|
751
|
+
|
752
|
+
@media (min-width: 768px) {
|
753
|
+
.color-swatch {
|
754
|
+
width: 100px;
|
755
|
+
height: 100px;
|
756
|
+
}
|
757
|
+
}
|
758
|
+
|
759
|
+
/* Framework colors */
|
760
|
+
.color-swatches .gray-darker {
|
761
|
+
background-color: #222;
|
762
|
+
}
|
763
|
+
.color-swatches .gray-dark {
|
764
|
+
background-color: #333;
|
765
|
+
}
|
766
|
+
.color-swatches .gray {
|
767
|
+
background-color: #555;
|
768
|
+
}
|
769
|
+
.color-swatches .gray-light {
|
770
|
+
background-color: #999;
|
771
|
+
}
|
772
|
+
.color-swatches .gray-lighter {
|
773
|
+
background-color: #eee;
|
774
|
+
}
|
775
|
+
.color-swatches .brand-primary {
|
776
|
+
background-color: #337ab7;
|
777
|
+
}
|
778
|
+
.color-swatches .brand-success {
|
779
|
+
background-color: #5cb85c;
|
780
|
+
}
|
781
|
+
.color-swatches .brand-warning {
|
782
|
+
background-color: #f0ad4e;
|
783
|
+
}
|
784
|
+
.color-swatches .brand-danger {
|
785
|
+
background-color: #d9534f;
|
786
|
+
}
|
787
|
+
.color-swatches .brand-info {
|
788
|
+
background-color: #5bc0de;
|
789
|
+
}
|
790
|
+
|
791
|
+
/* Docs colors */
|
792
|
+
.color-swatches .bs-purple {
|
793
|
+
background-color: #563d7c;
|
794
|
+
}
|
795
|
+
.color-swatches .bs-purple-light {
|
796
|
+
background-color: #c7bfd3;
|
797
|
+
}
|
798
|
+
.color-swatches .bs-purple-lighter {
|
799
|
+
background-color: #e5e1ea;
|
800
|
+
}
|
801
|
+
.color-swatches .bs-gray {
|
802
|
+
background-color: #f9f9f9;
|
803
|
+
}
|
804
|
+
|
805
|
+
|
806
|
+
/*
|
807
|
+
* Team members
|
808
|
+
*
|
809
|
+
* Avatars, names, and usernames for core team.
|
810
|
+
*/
|
811
|
+
|
812
|
+
.bs-team .team-member {
|
813
|
+
line-height: 32px;
|
814
|
+
color: #555;
|
815
|
+
}
|
816
|
+
.bs-team .team-member:hover {
|
817
|
+
color: #333;
|
818
|
+
text-decoration: none;
|
819
|
+
}
|
820
|
+
.bs-team .github-btn {
|
821
|
+
float: right;
|
822
|
+
width: 180px;
|
823
|
+
height: 20px;
|
824
|
+
margin-top: 6px;
|
825
|
+
border: none;
|
826
|
+
}
|
827
|
+
.bs-team img {
|
828
|
+
float: left;
|
829
|
+
width: 32px;
|
830
|
+
margin-right: 10px;
|
831
|
+
border-radius: 4px;
|
832
|
+
}
|
833
|
+
|
834
|
+
|
835
|
+
/*
|
836
|
+
* Wall of Browser Bugs
|
837
|
+
*
|
838
|
+
* Better display for the responsive table on the Wall of Browser Bugs.
|
839
|
+
*/
|
840
|
+
|
841
|
+
.bs-docs-browser-bugs td p {
|
842
|
+
margin-bottom: 0;
|
843
|
+
}
|
844
|
+
|
845
|
+
.bs-docs-browser-bugs th:first-child {
|
846
|
+
width: 18%;
|
847
|
+
}
|
848
|
+
|
849
|
+
|
850
|
+
/*
|
851
|
+
* Grid examples
|
852
|
+
*
|
853
|
+
* Highlight the grid columns within the docs so folks can see their padding,
|
854
|
+
* alignment, sizing, etc.
|
855
|
+
*/
|
856
|
+
|
857
|
+
.show-grid {
|
858
|
+
margin-bottom: 15px;
|
859
|
+
}
|
860
|
+
.show-grid [class^="col-"] {
|
861
|
+
padding-top: 10px;
|
862
|
+
padding-bottom: 10px;
|
863
|
+
background-color: #eee;
|
864
|
+
background-color: rgba(86,61,124,.15);
|
865
|
+
border: 1px solid #ddd;
|
866
|
+
border: 1px solid rgba(86,61,124,.2);
|
867
|
+
}
|
868
|
+
|
869
|
+
|
870
|
+
/*
|
871
|
+
* Examples
|
872
|
+
*
|
873
|
+
* Isolated sections of example content for each component or feature. Usually
|
874
|
+
* followed by a code snippet.
|
875
|
+
*/
|
876
|
+
|
877
|
+
.bs-example {
|
878
|
+
position: relative;
|
879
|
+
padding: 45px 15px 15px;
|
880
|
+
margin: 0 -15px 15px;
|
881
|
+
border-color: #e5e5e5 #eee #eee;
|
882
|
+
border-style: solid;
|
883
|
+
border-width: 1px 0;
|
884
|
+
-webkit-box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
885
|
+
box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
886
|
+
}
|
887
|
+
/* Echo out a label for the example */
|
888
|
+
.bs-example:after {
|
889
|
+
position: absolute;
|
890
|
+
top: 15px;
|
891
|
+
left: 15px;
|
892
|
+
font-size: 12px;
|
893
|
+
font-weight: bold;
|
894
|
+
color: #959595;
|
895
|
+
text-transform: uppercase;
|
896
|
+
letter-spacing: 1px;
|
897
|
+
content: "Example";
|
898
|
+
}
|
899
|
+
|
900
|
+
.bs-example-padded-bottom {
|
901
|
+
padding-bottom: 24px;
|
902
|
+
}
|
903
|
+
|
904
|
+
/* Tweak display of the code snippets when following an example */
|
905
|
+
.bs-example + .highlight,
|
906
|
+
.bs-example + .zero-clipboard + .highlight {
|
907
|
+
margin: -15px -15px 15px;
|
908
|
+
border-width: 0 0 1px;
|
909
|
+
border-radius: 0;
|
910
|
+
}
|
911
|
+
|
912
|
+
/* Make the examples and snippets not full-width */
|
913
|
+
@media (min-width: 768px) {
|
914
|
+
.bs-example {
|
915
|
+
margin-right: 0;
|
916
|
+
margin-left: 0;
|
917
|
+
background-color: #fff;
|
918
|
+
border-color: #ddd;
|
919
|
+
border-width: 1px;
|
920
|
+
border-radius: 4px 4px 0 0;
|
921
|
+
-webkit-box-shadow: none;
|
922
|
+
box-shadow: none;
|
923
|
+
}
|
924
|
+
.bs-example + .highlight,
|
925
|
+
.bs-example + .zero-clipboard + .highlight {
|
926
|
+
margin-top: -16px;
|
927
|
+
margin-right: 0;
|
928
|
+
margin-left: 0;
|
929
|
+
border-width: 1px;
|
930
|
+
border-bottom-right-radius: 4px;
|
931
|
+
border-bottom-left-radius: 4px;
|
932
|
+
}
|
933
|
+
.bs-example-standalone {
|
934
|
+
border-radius: 4px;
|
935
|
+
}
|
936
|
+
}
|
937
|
+
|
938
|
+
/* Undo width of container */
|
939
|
+
.bs-example .container {
|
940
|
+
width: auto;
|
941
|
+
}
|
942
|
+
|
943
|
+
/* Tweak content of examples for optimum awesome */
|
944
|
+
.bs-example > p:last-child,
|
945
|
+
.bs-example > ul:last-child,
|
946
|
+
.bs-example > ol:last-child,
|
947
|
+
.bs-example > blockquote:last-child,
|
948
|
+
.bs-example > .form-control:last-child,
|
949
|
+
.bs-example > .table:last-child,
|
950
|
+
.bs-example > .navbar:last-child,
|
951
|
+
.bs-example > .jumbotron:last-child,
|
952
|
+
.bs-example > .alert:last-child,
|
953
|
+
.bs-example > .panel:last-child,
|
954
|
+
.bs-example > .list-group:last-child,
|
955
|
+
.bs-example > .well:last-child,
|
956
|
+
.bs-example > .progress:last-child,
|
957
|
+
.bs-example > .table-responsive:last-child > .table {
|
958
|
+
margin-bottom: 0;
|
959
|
+
}
|
960
|
+
.bs-example > p > .close {
|
961
|
+
float: none;
|
962
|
+
}
|
963
|
+
|
964
|
+
/* Typography */
|
965
|
+
.bs-example-type .table .type-info {
|
966
|
+
color: #767676;
|
967
|
+
vertical-align: middle;
|
968
|
+
}
|
969
|
+
.bs-example-type .table td {
|
970
|
+
padding: 15px 0;
|
971
|
+
border-color: #eee;
|
972
|
+
}
|
973
|
+
.bs-example-type .table tr:first-child td {
|
974
|
+
border-top: 0;
|
975
|
+
}
|
976
|
+
.bs-example-type h1,
|
977
|
+
.bs-example-type h2,
|
978
|
+
.bs-example-type h3,
|
979
|
+
.bs-example-type h4,
|
980
|
+
.bs-example-type h5,
|
981
|
+
.bs-example-type h6 {
|
982
|
+
margin: 0;
|
983
|
+
}
|
984
|
+
|
985
|
+
/* Contextual background colors */
|
986
|
+
.bs-example-bg-classes p {
|
987
|
+
padding: 15px;
|
988
|
+
}
|
989
|
+
|
990
|
+
/* Images */
|
991
|
+
.bs-example > .img-circle,
|
992
|
+
.bs-example > .img-rounded,
|
993
|
+
.bs-example > .img-thumbnail {
|
994
|
+
margin: 5px;
|
995
|
+
}
|
996
|
+
|
997
|
+
/* Tables */
|
998
|
+
.bs-example > .table-responsive > .table {
|
999
|
+
background-color: #fff;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
/* Buttons */
|
1003
|
+
.bs-example > .btn,
|
1004
|
+
.bs-example > .btn-group {
|
1005
|
+
margin-top: 5px;
|
1006
|
+
margin-bottom: 5px;
|
1007
|
+
}
|
1008
|
+
.bs-example > .btn-toolbar + .btn-toolbar {
|
1009
|
+
margin-top: 10px;
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
/* Forms */
|
1013
|
+
.bs-example-control-sizing select,
|
1014
|
+
.bs-example-control-sizing input[type="text"] + input[type="text"] {
|
1015
|
+
margin-top: 10px;
|
1016
|
+
}
|
1017
|
+
.bs-example-form .input-group {
|
1018
|
+
margin-bottom: 10px;
|
1019
|
+
}
|
1020
|
+
.bs-example > textarea.form-control {
|
1021
|
+
resize: vertical;
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
/* List groups */
|
1025
|
+
.bs-example > .list-group {
|
1026
|
+
max-width: 400px;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
/* Navbars */
|
1030
|
+
.bs-example .navbar:last-child {
|
1031
|
+
margin-bottom: 0;
|
1032
|
+
}
|
1033
|
+
.bs-navbar-top-example,
|
1034
|
+
.bs-navbar-bottom-example {
|
1035
|
+
z-index: 1;
|
1036
|
+
padding: 0;
|
1037
|
+
overflow: hidden; /* cut the drop shadows off */
|
1038
|
+
}
|
1039
|
+
.bs-navbar-top-example .navbar-header,
|
1040
|
+
.bs-navbar-bottom-example .navbar-header {
|
1041
|
+
margin-left: 0;
|
1042
|
+
}
|
1043
|
+
.bs-navbar-top-example .navbar-fixed-top,
|
1044
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
1045
|
+
position: relative;
|
1046
|
+
margin-right: 0;
|
1047
|
+
margin-left: 0;
|
1048
|
+
}
|
1049
|
+
.bs-navbar-top-example {
|
1050
|
+
padding-bottom: 45px;
|
1051
|
+
}
|
1052
|
+
.bs-navbar-top-example:after {
|
1053
|
+
top: auto;
|
1054
|
+
bottom: 15px;
|
1055
|
+
}
|
1056
|
+
.bs-navbar-top-example .navbar-fixed-top {
|
1057
|
+
top: -1px;
|
1058
|
+
}
|
1059
|
+
.bs-navbar-bottom-example {
|
1060
|
+
padding-top: 45px;
|
1061
|
+
}
|
1062
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
1063
|
+
bottom: -1px;
|
1064
|
+
}
|
1065
|
+
.bs-navbar-bottom-example .navbar {
|
1066
|
+
margin-bottom: 0;
|
1067
|
+
}
|
1068
|
+
@media (min-width: 768px) {
|
1069
|
+
.bs-navbar-top-example .navbar-fixed-top,
|
1070
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
1071
|
+
position: absolute;
|
1072
|
+
}
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
/* Pagination */
|
1076
|
+
.bs-example .pagination {
|
1077
|
+
margin-top: 10px;
|
1078
|
+
margin-bottom: 10px;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/* Pager */
|
1082
|
+
.bs-example > .pager {
|
1083
|
+
margin-top: 0;
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
/* Example modals */
|
1087
|
+
.bs-example-modal {
|
1088
|
+
background-color: #f5f5f5;
|
1089
|
+
}
|
1090
|
+
.bs-example-modal .modal {
|
1091
|
+
position: relative;
|
1092
|
+
top: auto;
|
1093
|
+
right: auto;
|
1094
|
+
bottom: auto;
|
1095
|
+
left: auto;
|
1096
|
+
z-index: 1;
|
1097
|
+
display: block;
|
1098
|
+
}
|
1099
|
+
.bs-example-modal .modal-dialog {
|
1100
|
+
left: auto;
|
1101
|
+
margin-right: auto;
|
1102
|
+
margin-left: auto;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
/* Example dropdowns */
|
1106
|
+
.bs-example > .dropdown > .dropdown-toggle {
|
1107
|
+
float: left;
|
1108
|
+
}
|
1109
|
+
.bs-example > .dropdown > .dropdown-menu {
|
1110
|
+
position: static;
|
1111
|
+
display: block;
|
1112
|
+
margin-bottom: 5px;
|
1113
|
+
clear: left;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
/* Example tabbable tabs */
|
1117
|
+
.bs-example-tabs .nav-tabs {
|
1118
|
+
margin-bottom: 15px;
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
/* Tooltips */
|
1122
|
+
.bs-example-tooltips {
|
1123
|
+
text-align: center;
|
1124
|
+
}
|
1125
|
+
.bs-example-tooltips > .btn {
|
1126
|
+
margin-top: 5px;
|
1127
|
+
margin-bottom: 5px;
|
1128
|
+
}
|
1129
|
+
.bs-example-tooltip .tooltip {
|
1130
|
+
position: relative;
|
1131
|
+
display: inline-block;
|
1132
|
+
margin: 10px 20px;
|
1133
|
+
opacity: 1;
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
/* Popovers */
|
1137
|
+
.bs-example-popover {
|
1138
|
+
padding-bottom: 24px;
|
1139
|
+
background-color: #f9f9f9;
|
1140
|
+
}
|
1141
|
+
.bs-example-popover .popover {
|
1142
|
+
position: relative;
|
1143
|
+
display: block;
|
1144
|
+
float: left;
|
1145
|
+
width: 260px;
|
1146
|
+
margin: 20px;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
/* Scrollspy demo on fixed height div */
|
1150
|
+
.scrollspy-example {
|
1151
|
+
position: relative;
|
1152
|
+
height: 200px;
|
1153
|
+
margin-top: 10px;
|
1154
|
+
overflow: auto;
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.bs-example > .nav-pills-stacked-example {
|
1158
|
+
max-width: 300px;
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
/* Simple collapse example */
|
1162
|
+
#collapseExample .well {
|
1163
|
+
margin-bottom: 0;
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
/* Don't wrap event names in Events tables in JS plugin docs */
|
1167
|
+
.bs-events-table > thead > tr > th:first-child,
|
1168
|
+
.bs-events-table > tbody > tr > td:first-child {
|
1169
|
+
white-space: nowrap;
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
.bs-events-table > thead > tr > th:first-child {
|
1173
|
+
width: 150px;
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
.js-options-table > thead > tr > th:nth-child(1),
|
1177
|
+
.js-options-table > thead > tr > th:nth-child(2) {
|
1178
|
+
width: 100px;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.js-options-table > thead > tr > th:nth-child(3) {
|
1182
|
+
width: 50px;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
/*
|
1186
|
+
* Code snippets
|
1187
|
+
*
|
1188
|
+
* Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS.
|
1189
|
+
*/
|
1190
|
+
|
1191
|
+
.highlight {
|
1192
|
+
padding: 9px 14px;
|
1193
|
+
margin-bottom: 14px;
|
1194
|
+
background-color: #f7f7f9;
|
1195
|
+
border: 1px solid #e1e1e8;
|
1196
|
+
border-radius: 4px;
|
1197
|
+
}
|
1198
|
+
.highlight pre {
|
1199
|
+
padding: 0;
|
1200
|
+
margin-top: 0;
|
1201
|
+
margin-bottom: 0;
|
1202
|
+
word-break: normal;
|
1203
|
+
white-space: nowrap;
|
1204
|
+
background-color: transparent;
|
1205
|
+
border: 0;
|
1206
|
+
}
|
1207
|
+
.highlight pre code {
|
1208
|
+
font-size: inherit;
|
1209
|
+
color: #333; /* Effectively the base text color */
|
1210
|
+
}
|
1211
|
+
.highlight pre code:first-child {
|
1212
|
+
display: inline-block;
|
1213
|
+
padding-right: 45px;
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
|
1217
|
+
/*
|
1218
|
+
* Responsive tests
|
1219
|
+
*
|
1220
|
+
* Generate a set of tests to show the responsive utilities in action.
|
1221
|
+
*/
|
1222
|
+
|
1223
|
+
/* Responsive (scrollable) doc tables */
|
1224
|
+
.table-responsive .highlight pre {
|
1225
|
+
white-space: normal;
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
/* Utility classes table */
|
1229
|
+
.bs-table th small,
|
1230
|
+
.responsive-utilities th small {
|
1231
|
+
display: block;
|
1232
|
+
font-weight: normal;
|
1233
|
+
color: #999;
|
1234
|
+
}
|
1235
|
+
.responsive-utilities tbody th {
|
1236
|
+
font-weight: normal;
|
1237
|
+
}
|
1238
|
+
.responsive-utilities td {
|
1239
|
+
text-align: center;
|
1240
|
+
}
|
1241
|
+
.responsive-utilities td.is-visible {
|
1242
|
+
color: #468847;
|
1243
|
+
background-color: #dff0d8 !important;
|
1244
|
+
}
|
1245
|
+
.responsive-utilities td.is-hidden {
|
1246
|
+
color: #ccc;
|
1247
|
+
background-color: #f9f9f9 !important;
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
/* Responsive tests */
|
1251
|
+
.responsive-utilities-test {
|
1252
|
+
margin-top: 5px;
|
1253
|
+
}
|
1254
|
+
.responsive-utilities-test .col-xs-6 {
|
1255
|
+
margin-bottom: 10px;
|
1256
|
+
}
|
1257
|
+
.responsive-utilities-test span {
|
1258
|
+
display: block;
|
1259
|
+
padding: 15px 10px;
|
1260
|
+
font-size: 14px;
|
1261
|
+
font-weight: bold;
|
1262
|
+
line-height: 1.1;
|
1263
|
+
text-align: center;
|
1264
|
+
border-radius: 4px;
|
1265
|
+
}
|
1266
|
+
.visible-on .col-xs-6 .hidden-xs,
|
1267
|
+
.visible-on .col-xs-6 .hidden-sm,
|
1268
|
+
.visible-on .col-xs-6 .hidden-md,
|
1269
|
+
.visible-on .col-xs-6 .hidden-lg,
|
1270
|
+
.hidden-on .col-xs-6 .hidden-xs,
|
1271
|
+
.hidden-on .col-xs-6 .hidden-sm,
|
1272
|
+
.hidden-on .col-xs-6 .hidden-md,
|
1273
|
+
.hidden-on .col-xs-6 .hidden-lg {
|
1274
|
+
color: #999;
|
1275
|
+
border: 1px solid #ddd;
|
1276
|
+
}
|
1277
|
+
.visible-on .col-xs-6 .visible-xs-block,
|
1278
|
+
.visible-on .col-xs-6 .visible-sm-block,
|
1279
|
+
.visible-on .col-xs-6 .visible-md-block,
|
1280
|
+
.visible-on .col-xs-6 .visible-lg-block,
|
1281
|
+
.hidden-on .col-xs-6 .visible-xs-block,
|
1282
|
+
.hidden-on .col-xs-6 .visible-sm-block,
|
1283
|
+
.hidden-on .col-xs-6 .visible-md-block,
|
1284
|
+
.hidden-on .col-xs-6 .visible-lg-block {
|
1285
|
+
color: #468847;
|
1286
|
+
background-color: #dff0d8;
|
1287
|
+
border: 1px solid #d6e9c6;
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
|
1291
|
+
/*
|
1292
|
+
* Glyphicons
|
1293
|
+
*
|
1294
|
+
* Special styles for displaying the icons and their classes in the docs.
|
1295
|
+
*/
|
1296
|
+
|
1297
|
+
.bs-glyphicons {
|
1298
|
+
margin: 0 -10px 20px;
|
1299
|
+
overflow: hidden;
|
1300
|
+
}
|
1301
|
+
.bs-glyphicons-list {
|
1302
|
+
padding-left: 0;
|
1303
|
+
list-style: none;
|
1304
|
+
}
|
1305
|
+
.bs-glyphicons li {
|
1306
|
+
float: left;
|
1307
|
+
width: 25%;
|
1308
|
+
height: 115px;
|
1309
|
+
padding: 10px;
|
1310
|
+
font-size: 10px;
|
1311
|
+
line-height: 1.4;
|
1312
|
+
text-align: center;
|
1313
|
+
background-color: #f9f9f9;
|
1314
|
+
border: 1px solid #fff;
|
1315
|
+
}
|
1316
|
+
.bs-glyphicons .glyphicon {
|
1317
|
+
margin-top: 5px;
|
1318
|
+
margin-bottom: 10px;
|
1319
|
+
font-size: 24px;
|
1320
|
+
}
|
1321
|
+
.bs-glyphicons .glyphicon-class {
|
1322
|
+
display: block;
|
1323
|
+
text-align: center;
|
1324
|
+
word-wrap: break-word; /* Help out IE10+ with class names */
|
1325
|
+
}
|
1326
|
+
.bs-glyphicons li:hover {
|
1327
|
+
color: #fff;
|
1328
|
+
background-color: #563d7c;
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
@media (min-width: 768px) {
|
1332
|
+
.bs-glyphicons {
|
1333
|
+
margin-right: 0;
|
1334
|
+
margin-left: 0;
|
1335
|
+
}
|
1336
|
+
.bs-glyphicons li {
|
1337
|
+
width: 12.5%;
|
1338
|
+
font-size: 12px;
|
1339
|
+
}
|
1340
|
+
}
|
1341
|
+
|
1342
|
+
|
1343
|
+
/*
|
1344
|
+
* Customizer
|
1345
|
+
*
|
1346
|
+
* Since this is so form control heavy, we have quite a few styles to customize
|
1347
|
+
* the display of inputs, headings, and more. Also included are all the download
|
1348
|
+
* buttons and actions.
|
1349
|
+
*/
|
1350
|
+
|
1351
|
+
.bs-customizer .toggle {
|
1352
|
+
float: right;
|
1353
|
+
margin-top: 25px;
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
/* Headings and form contrls */
|
1357
|
+
.bs-customizer label {
|
1358
|
+
margin-top: 10px;
|
1359
|
+
font-weight: 500;
|
1360
|
+
color: #555;
|
1361
|
+
}
|
1362
|
+
.bs-customizer h2 {
|
1363
|
+
padding-top: 30px;
|
1364
|
+
margin-top: 0;
|
1365
|
+
margin-bottom: 5px;
|
1366
|
+
}
|
1367
|
+
.bs-customizer h3 {
|
1368
|
+
margin-bottom: 0;
|
1369
|
+
}
|
1370
|
+
.bs-customizer h4 {
|
1371
|
+
margin-top: 15px;
|
1372
|
+
margin-bottom: 0;
|
1373
|
+
}
|
1374
|
+
.bs-customizer .bs-callout h4 {
|
1375
|
+
margin-top: 0; /* lame, but due to specificity we have to duplicate */
|
1376
|
+
margin-bottom: 5px;
|
1377
|
+
}
|
1378
|
+
.bs-customizer input[type="text"] {
|
1379
|
+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
1380
|
+
background-color: #fafafa;
|
1381
|
+
}
|
1382
|
+
.bs-customizer .help-block {
|
1383
|
+
margin-bottom: 5px;
|
1384
|
+
font-size: 12px;
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
/* For the variables, use regular weight */
|
1388
|
+
#less-section label {
|
1389
|
+
font-weight: normal;
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
/* Downloads */
|
1393
|
+
.bs-customize-download .btn-outline {
|
1394
|
+
padding: 20px;
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
/* Error handling */
|
1398
|
+
.bs-customizer-alert {
|
1399
|
+
position: fixed;
|
1400
|
+
top: 0;
|
1401
|
+
right: 0;
|
1402
|
+
left: 0;
|
1403
|
+
z-index: 1030;
|
1404
|
+
padding: 15px 0;
|
1405
|
+
color: #fff;
|
1406
|
+
background-color: #d9534f;
|
1407
|
+
border-bottom: 1px solid #b94441;
|
1408
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
|
1409
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
|
1410
|
+
}
|
1411
|
+
.bs-customizer-alert .close {
|
1412
|
+
margin-top: -4px;
|
1413
|
+
font-size: 24px;
|
1414
|
+
}
|
1415
|
+
.bs-customizer-alert p {
|
1416
|
+
margin-bottom: 0;
|
1417
|
+
}
|
1418
|
+
.bs-customizer-alert .glyphicon {
|
1419
|
+
margin-right: 5px;
|
1420
|
+
}
|
1421
|
+
.bs-customizer-alert pre {
|
1422
|
+
margin: 10px 0 0;
|
1423
|
+
color: #fff;
|
1424
|
+
background-color: #a83c3a;
|
1425
|
+
border-color: #973634;
|
1426
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
|
1427
|
+
box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.bs-dropzone {
|
1431
|
+
position: relative;
|
1432
|
+
padding: 20px;
|
1433
|
+
margin-bottom: 20px;
|
1434
|
+
color: #777;
|
1435
|
+
text-align: center;
|
1436
|
+
border: 2px dashed #eee;
|
1437
|
+
border-radius: 4px;
|
1438
|
+
}
|
1439
|
+
.bs-dropzone .import-header {
|
1440
|
+
margin-bottom: 5px;
|
1441
|
+
}
|
1442
|
+
.bs-dropzone .glyphicon-download-alt {
|
1443
|
+
font-size: 40px;
|
1444
|
+
}
|
1445
|
+
.bs-dropzone hr {
|
1446
|
+
width: 100px;
|
1447
|
+
}
|
1448
|
+
.bs-dropzone .lead {
|
1449
|
+
margin-bottom: 10px;
|
1450
|
+
font-weight: normal;
|
1451
|
+
color: #333;
|
1452
|
+
}
|
1453
|
+
/*.bs-dropzone*/ #import-manual-trigger {
|
1454
|
+
cursor: pointer;
|
1455
|
+
}
|
1456
|
+
.bs-dropzone p:last-child {
|
1457
|
+
margin-bottom: 0;
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
/*
|
1461
|
+
* Brand guidelines
|
1462
|
+
*
|
1463
|
+
* Extra styles for displaying wordmarks, logos, etc.
|
1464
|
+
*/
|
1465
|
+
|
1466
|
+
/* Logo series wrapper */
|
1467
|
+
.bs-brand-logos {
|
1468
|
+
display: table;
|
1469
|
+
width: 100%;
|
1470
|
+
margin-bottom: 15px;
|
1471
|
+
overflow: hidden;
|
1472
|
+
color: #563d7c;
|
1473
|
+
background-color: #f9f9f9;
|
1474
|
+
border-radius: 4px;
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
/* Individual items */
|
1478
|
+
.bs-brand-item {
|
1479
|
+
padding: 60px 0;
|
1480
|
+
text-align: center;
|
1481
|
+
}
|
1482
|
+
.bs-brand-item + .bs-brand-item {
|
1483
|
+
border-top: 1px solid #fff;
|
1484
|
+
}
|
1485
|
+
.bs-brand-logos .inverse {
|
1486
|
+
color: #fff;
|
1487
|
+
background-color: #563d7c;
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
/* Heading content within */
|
1491
|
+
.bs-brand-item h1,
|
1492
|
+
.bs-brand-item h3 {
|
1493
|
+
margin-top: 0;
|
1494
|
+
margin-bottom: 0;
|
1495
|
+
}
|
1496
|
+
.bs-brand-item .bs-docs-booticon {
|
1497
|
+
margin-right: auto;
|
1498
|
+
margin-left: auto;
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
/* Make the icons stand out on what is/isn't okay */
|
1502
|
+
.bs-brand-item .glyphicon {
|
1503
|
+
width: 30px;
|
1504
|
+
height: 30px;
|
1505
|
+
margin: 10px auto -10px;
|
1506
|
+
line-height: 30px;
|
1507
|
+
color: #fff;
|
1508
|
+
border-radius: 50%;
|
1509
|
+
}
|
1510
|
+
.bs-brand-item .glyphicon-ok {
|
1511
|
+
background-color: #5cb85c;
|
1512
|
+
}
|
1513
|
+
.bs-brand-item .glyphicon-remove {
|
1514
|
+
background-color: #d9534f;
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
@media (min-width: 768px) {
|
1518
|
+
.bs-brand-item {
|
1519
|
+
display: table-cell;
|
1520
|
+
width: 1%;
|
1521
|
+
}
|
1522
|
+
.bs-brand-item + .bs-brand-item {
|
1523
|
+
border-top: 0;
|
1524
|
+
border-left: 1px solid #fff;
|
1525
|
+
}
|
1526
|
+
.bs-brand-item h1 {
|
1527
|
+
font-size: 60px;
|
1528
|
+
}
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
|
1532
|
+
/*
|
1533
|
+
* ZeroClipboard styles
|
1534
|
+
*/
|
1535
|
+
|
1536
|
+
.zero-clipboard {
|
1537
|
+
position: relative;
|
1538
|
+
display: none;
|
1539
|
+
}
|
1540
|
+
.btn-clipboard {
|
1541
|
+
position: absolute;
|
1542
|
+
top: 0;
|
1543
|
+
right: 0;
|
1544
|
+
z-index: 10;
|
1545
|
+
display: block;
|
1546
|
+
padding: 5px 8px;
|
1547
|
+
font-size: 12px;
|
1548
|
+
color: #767676;
|
1549
|
+
cursor: pointer;
|
1550
|
+
background-color: #fff;
|
1551
|
+
border: 1px solid #e1e1e8;
|
1552
|
+
border-radius: 0 4px 0 4px;
|
1553
|
+
}
|
1554
|
+
.btn-clipboard-hover {
|
1555
|
+
color: #fff;
|
1556
|
+
background-color: #563d7c;
|
1557
|
+
border-color: #563d7c;
|
1558
|
+
}
|
1559
|
+
|
1560
|
+
@media (min-width: 768px) {
|
1561
|
+
.zero-clipboard {
|
1562
|
+
display: block;
|
1563
|
+
}
|
1564
|
+
.bs-example + .zero-clipboard .btn-clipboard {
|
1565
|
+
top: -16px;
|
1566
|
+
border-top-right-radius: 0;
|
1567
|
+
}
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
/*
|
1571
|
+
* AnchorJS Styles
|
1572
|
+
*/
|
1573
|
+
.anchorjs-link {
|
1574
|
+
color: inherit;
|
1575
|
+
}
|
1576
|
+
|
1577
|
+
@media (max-width: 480px) {
|
1578
|
+
.anchorjs-link {
|
1579
|
+
display: none;
|
1580
|
+
}
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
*:hover > .anchorjs-link {
|
1584
|
+
opacity: .75;
|
1585
|
+
-webkit-transition: color .16s linear;
|
1586
|
+
-o-transition: color .16s linear;
|
1587
|
+
transition: color .16s linear;
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
*:hover > .anchorjs-link:hover,
|
1591
|
+
.anchorjs-link:focus {
|
1592
|
+
text-decoration: none;
|
1593
|
+
opacity: 1;
|
1594
|
+
}
|
1595
|
+
|
1596
|
+
/*
|
1597
|
+
* Miscellaneous
|
1598
|
+
*
|
1599
|
+
* Odds and ends for optimum docs display.
|
1600
|
+
*/
|
1601
|
+
|
1602
|
+
/* Pseudo :focus state for showing how it looks in the docs */
|
1603
|
+
#focusedInput {
|
1604
|
+
border-color: rgb(204,204,204); /* Restate unfocused value to make CSSLint happy that there's a pre-CSS3 fallback*/
|
1605
|
+
border-color: rgba(82,168,236,.8);
|
1606
|
+
outline: 0;
|
1607
|
+
outline: thin dotted \9; /* IE6-9 */
|
1608
|
+
-webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
1609
|
+
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
1610
|
+
}
|
1611
|
+
|
1612
|
+
/* v4 notice above main navbar */
|
1613
|
+
.v4-tease {
|
1614
|
+
display: block;
|
1615
|
+
padding: 15px 20px;
|
1616
|
+
font-weight: bold;
|
1617
|
+
color: #fff;
|
1618
|
+
text-align: center;
|
1619
|
+
background-color: #0275d8;
|
1620
|
+
}
|
1621
|
+
.v4-tease:hover {
|
1622
|
+
color: #fff;
|
1623
|
+
text-decoration: none;
|
1624
|
+
background-color: #0269c2;
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
/* Nullify ill-advised printing of hrefs; see #18711 */
|
1628
|
+
@media print {
|
1629
|
+
a[href]:after {
|
1630
|
+
content: "" !important;
|
1631
|
+
}
|
1632
|
+
}
|