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
@@ -1,67 +0,0 @@
|
|
1
|
-
.pagination {
|
2
|
-
display: flex;
|
3
|
-
// 1-2: Disable browser default list styles
|
4
|
-
padding-left: 0; // 1
|
5
|
-
list-style: none; // 2
|
6
|
-
@include border-radius();
|
7
|
-
}
|
8
|
-
|
9
|
-
.page-item {
|
10
|
-
&:first-child {
|
11
|
-
.page-link {
|
12
|
-
margin-left: 0;
|
13
|
-
@include border-left-radius($border-radius);
|
14
|
-
}
|
15
|
-
}
|
16
|
-
&:last-child {
|
17
|
-
.page-link {
|
18
|
-
@include border-right-radius($border-radius);
|
19
|
-
}
|
20
|
-
}
|
21
|
-
|
22
|
-
&.active .page-link {
|
23
|
-
z-index: 2;
|
24
|
-
color: $pagination-active-color;
|
25
|
-
background-color: $pagination-active-bg;
|
26
|
-
border-color: $pagination-active-border;
|
27
|
-
}
|
28
|
-
|
29
|
-
&.disabled .page-link {
|
30
|
-
color: $pagination-disabled-color;
|
31
|
-
pointer-events: none;
|
32
|
-
cursor: $cursor-disabled; // While `pointer-events: none` removes the cursor in modern browsers, we provide a disabled cursor as a fallback.
|
33
|
-
background-color: $pagination-disabled-bg;
|
34
|
-
border-color: $pagination-disabled-border;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
.page-link {
|
39
|
-
position: relative;
|
40
|
-
display: block;
|
41
|
-
padding: $pagination-padding-y $pagination-padding-x;
|
42
|
-
margin-left: -1px;
|
43
|
-
line-height: $pagination-line-height;
|
44
|
-
color: $pagination-color;
|
45
|
-
background-color: $pagination-bg;
|
46
|
-
border: $pagination-border-width solid $pagination-border-color;
|
47
|
-
|
48
|
-
@include hover-focus {
|
49
|
-
color: $pagination-hover-color;
|
50
|
-
text-decoration: none;
|
51
|
-
background-color: $pagination-hover-bg;
|
52
|
-
border-color: $pagination-hover-border;
|
53
|
-
}
|
54
|
-
}
|
55
|
-
|
56
|
-
|
57
|
-
//
|
58
|
-
// Sizing
|
59
|
-
//
|
60
|
-
|
61
|
-
.pagination-lg {
|
62
|
-
@include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);
|
63
|
-
}
|
64
|
-
|
65
|
-
.pagination-sm {
|
66
|
-
@include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);
|
67
|
-
}
|
@@ -1,171 +0,0 @@
|
|
1
|
-
.popover {
|
2
|
-
position: absolute;
|
3
|
-
top: 0;
|
4
|
-
left: 0;
|
5
|
-
z-index: $zindex-popover;
|
6
|
-
display: block;
|
7
|
-
max-width: $popover-max-width;
|
8
|
-
padding: $popover-inner-padding;
|
9
|
-
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
10
|
-
// So reset our font and text properties to avoid inheriting weird values.
|
11
|
-
@include reset-text();
|
12
|
-
font-size: $font-size-sm;
|
13
|
-
// Allow breaking very long words so they don't overflow the popover's bounds
|
14
|
-
word-wrap: break-word;
|
15
|
-
background-color: $popover-bg;
|
16
|
-
background-clip: padding-box;
|
17
|
-
border: $popover-border-width solid $popover-border-color;
|
18
|
-
@include border-radius($border-radius-lg);
|
19
|
-
@include box-shadow($popover-box-shadow);
|
20
|
-
|
21
|
-
|
22
|
-
// Popover directions
|
23
|
-
|
24
|
-
&.popover-top,
|
25
|
-
&.bs-tether-element-attached-bottom {
|
26
|
-
margin-top: -$popover-arrow-width;
|
27
|
-
|
28
|
-
&::before,
|
29
|
-
&::after {
|
30
|
-
left: 50%;
|
31
|
-
border-bottom-width: 0;
|
32
|
-
}
|
33
|
-
|
34
|
-
&::before {
|
35
|
-
bottom: -$popover-arrow-outer-width;
|
36
|
-
margin-left: -$popover-arrow-outer-width;
|
37
|
-
border-top-color: $popover-arrow-outer-color;
|
38
|
-
}
|
39
|
-
|
40
|
-
&::after {
|
41
|
-
bottom: -($popover-arrow-outer-width - 1);
|
42
|
-
margin-left: -$popover-arrow-width;
|
43
|
-
border-top-color: $popover-arrow-color;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
&.popover-right,
|
48
|
-
&.bs-tether-element-attached-left {
|
49
|
-
margin-left: $popover-arrow-width;
|
50
|
-
|
51
|
-
&::before,
|
52
|
-
&::after {
|
53
|
-
top: 50%;
|
54
|
-
border-left-width: 0;
|
55
|
-
}
|
56
|
-
|
57
|
-
&::before {
|
58
|
-
left: -$popover-arrow-outer-width;
|
59
|
-
margin-top: -$popover-arrow-outer-width;
|
60
|
-
border-right-color: $popover-arrow-outer-color;
|
61
|
-
}
|
62
|
-
|
63
|
-
&::after {
|
64
|
-
left: -($popover-arrow-outer-width - 1);
|
65
|
-
margin-top: -($popover-arrow-outer-width - 1);
|
66
|
-
border-right-color: $popover-arrow-color;
|
67
|
-
}
|
68
|
-
}
|
69
|
-
|
70
|
-
&.popover-bottom,
|
71
|
-
&.bs-tether-element-attached-top {
|
72
|
-
margin-top: $popover-arrow-width;
|
73
|
-
|
74
|
-
&::before,
|
75
|
-
&::after {
|
76
|
-
left: 50%;
|
77
|
-
border-top-width: 0;
|
78
|
-
}
|
79
|
-
|
80
|
-
&::before {
|
81
|
-
top: -$popover-arrow-outer-width;
|
82
|
-
margin-left: -$popover-arrow-outer-width;
|
83
|
-
border-bottom-color: $popover-arrow-outer-color;
|
84
|
-
}
|
85
|
-
|
86
|
-
&::after {
|
87
|
-
top: -($popover-arrow-outer-width - 1);
|
88
|
-
margin-left: -$popover-arrow-width;
|
89
|
-
border-bottom-color: $popover-title-bg;
|
90
|
-
}
|
91
|
-
|
92
|
-
// This will remove the popover-title's border just below the arrow
|
93
|
-
.popover-title::before {
|
94
|
-
position: absolute;
|
95
|
-
top: 0;
|
96
|
-
left: 50%;
|
97
|
-
display: block;
|
98
|
-
width: 20px;
|
99
|
-
margin-left: -10px;
|
100
|
-
content: "";
|
101
|
-
border-bottom: 1px solid $popover-title-bg;
|
102
|
-
}
|
103
|
-
}
|
104
|
-
|
105
|
-
&.popover-left,
|
106
|
-
&.bs-tether-element-attached-right {
|
107
|
-
margin-left: -$popover-arrow-width;
|
108
|
-
|
109
|
-
&::before,
|
110
|
-
&::after {
|
111
|
-
top: 50%;
|
112
|
-
border-right-width: 0;
|
113
|
-
}
|
114
|
-
|
115
|
-
&::before {
|
116
|
-
right: -$popover-arrow-outer-width;
|
117
|
-
margin-top: -$popover-arrow-outer-width;
|
118
|
-
border-left-color: $popover-arrow-outer-color;
|
119
|
-
}
|
120
|
-
|
121
|
-
&::after {
|
122
|
-
right: -($popover-arrow-outer-width - 1);
|
123
|
-
margin-top: -($popover-arrow-outer-width - 1);
|
124
|
-
border-left-color: $popover-arrow-color;
|
125
|
-
}
|
126
|
-
}
|
127
|
-
}
|
128
|
-
|
129
|
-
|
130
|
-
// Offset the popover to account for the popover arrow
|
131
|
-
.popover-title {
|
132
|
-
padding: $popover-title-padding-y $popover-title-padding-x;
|
133
|
-
margin-bottom: 0; // Reset the default from Reboot
|
134
|
-
font-size: $font-size-base;
|
135
|
-
background-color: $popover-title-bg;
|
136
|
-
border-bottom: $popover-border-width solid darken($popover-title-bg, 5%);
|
137
|
-
$offset-border-width: calc(#{$border-radius-lg} - #{$popover-border-width});
|
138
|
-
@include border-top-radius($offset-border-width);
|
139
|
-
|
140
|
-
&:empty {
|
141
|
-
display: none;
|
142
|
-
}
|
143
|
-
}
|
144
|
-
|
145
|
-
.popover-content {
|
146
|
-
padding: $popover-content-padding-y $popover-content-padding-x;
|
147
|
-
}
|
148
|
-
|
149
|
-
|
150
|
-
// Arrows
|
151
|
-
//
|
152
|
-
// .popover-arrow is outer, .popover-arrow::after is inner
|
153
|
-
|
154
|
-
.popover::before,
|
155
|
-
.popover::after {
|
156
|
-
position: absolute;
|
157
|
-
display: block;
|
158
|
-
width: 0;
|
159
|
-
height: 0;
|
160
|
-
border-color: transparent;
|
161
|
-
border-style: solid;
|
162
|
-
}
|
163
|
-
|
164
|
-
.popover::before {
|
165
|
-
content: "";
|
166
|
-
border-width: $popover-arrow-outer-width;
|
167
|
-
}
|
168
|
-
.popover::after {
|
169
|
-
content: "";
|
170
|
-
border-width: $popover-arrow-width;
|
171
|
-
}
|
@@ -1,119 +0,0 @@
|
|
1
|
-
// scss-lint:disable QualifyingElement
|
2
|
-
|
3
|
-
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css
|
4
|
-
|
5
|
-
// ==========================================================================
|
6
|
-
// Print styles.
|
7
|
-
// Inlined to avoid the additional HTTP request:
|
8
|
-
// http://www.phpied.com/delay-loading-your-print-css/
|
9
|
-
// ==========================================================================
|
10
|
-
|
11
|
-
@if $enable-print-styles {
|
12
|
-
@media print {
|
13
|
-
*,
|
14
|
-
*::before,
|
15
|
-
*::after,
|
16
|
-
p::first-letter,
|
17
|
-
div::first-letter,
|
18
|
-
blockquote::first-letter,
|
19
|
-
li::first-letter,
|
20
|
-
p::first-line,
|
21
|
-
div::first-line,
|
22
|
-
blockquote::first-line,
|
23
|
-
li::first-line {
|
24
|
-
// Bootstrap specific; comment out `color` and `background`
|
25
|
-
//color: #000 !important; // Black prints faster:
|
26
|
-
// http://www.sanbeiji.com/archives/953
|
27
|
-
text-shadow: none !important;
|
28
|
-
//background: transparent !important;
|
29
|
-
box-shadow: none !important;
|
30
|
-
}
|
31
|
-
|
32
|
-
a,
|
33
|
-
a:visited {
|
34
|
-
text-decoration: underline;
|
35
|
-
}
|
36
|
-
|
37
|
-
// Bootstrap specific; comment the following selector out
|
38
|
-
//a[href]::after {
|
39
|
-
// content: " (" attr(href) ")";
|
40
|
-
//}
|
41
|
-
|
42
|
-
abbr[title]::after {
|
43
|
-
content: " (" attr(title) ")";
|
44
|
-
}
|
45
|
-
|
46
|
-
// Bootstrap specific; comment the following selector out
|
47
|
-
//
|
48
|
-
// Don't show links that are fragment identifiers,
|
49
|
-
// or use the `javascript:` pseudo protocol
|
50
|
-
//
|
51
|
-
|
52
|
-
//a[href^="#"]::after,
|
53
|
-
//a[href^="javascript:"]::after {
|
54
|
-
// content: "";
|
55
|
-
//}
|
56
|
-
|
57
|
-
pre {
|
58
|
-
white-space: pre-wrap !important;
|
59
|
-
}
|
60
|
-
pre,
|
61
|
-
blockquote {
|
62
|
-
border: $border-width solid #999; // Bootstrap custom code; using `$border-width` instead of 1px
|
63
|
-
page-break-inside: avoid;
|
64
|
-
}
|
65
|
-
|
66
|
-
//
|
67
|
-
// Printing Tables:
|
68
|
-
// http://css-discuss.incutio.com/wiki/Printing_Tables
|
69
|
-
//
|
70
|
-
|
71
|
-
thead {
|
72
|
-
display: table-header-group;
|
73
|
-
}
|
74
|
-
|
75
|
-
tr,
|
76
|
-
img {
|
77
|
-
page-break-inside: avoid;
|
78
|
-
}
|
79
|
-
|
80
|
-
p,
|
81
|
-
h2,
|
82
|
-
h3 {
|
83
|
-
orphans: 3;
|
84
|
-
widows: 3;
|
85
|
-
}
|
86
|
-
|
87
|
-
h2,
|
88
|
-
h3 {
|
89
|
-
page-break-after: avoid;
|
90
|
-
}
|
91
|
-
|
92
|
-
// Bootstrap specific changes start
|
93
|
-
|
94
|
-
// Bootstrap components
|
95
|
-
.navbar {
|
96
|
-
display: none;
|
97
|
-
}
|
98
|
-
.badge {
|
99
|
-
border: $border-width solid #000;
|
100
|
-
}
|
101
|
-
|
102
|
-
.table {
|
103
|
-
border-collapse: collapse !important;
|
104
|
-
|
105
|
-
td,
|
106
|
-
th {
|
107
|
-
background-color: #fff !important;
|
108
|
-
}
|
109
|
-
}
|
110
|
-
.table-bordered {
|
111
|
-
th,
|
112
|
-
td {
|
113
|
-
border: 1px solid #ddd !important;
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
// Bootstrap specific changes end
|
118
|
-
}
|
119
|
-
}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
// Progress animations
|
2
|
-
@keyframes progress-bar-stripes {
|
3
|
-
from { background-position: $progress-height 0; }
|
4
|
-
to { background-position: 0 0; }
|
5
|
-
}
|
6
|
-
|
7
|
-
// Basic progress bar
|
8
|
-
.progress {
|
9
|
-
display: flex;
|
10
|
-
overflow: hidden; // force rounded corners by cropping it
|
11
|
-
font-size: $progress-font-size;
|
12
|
-
line-height: $progress-height;
|
13
|
-
text-align: center;
|
14
|
-
background-color: $progress-bg;
|
15
|
-
@include border-radius($progress-border-radius);
|
16
|
-
}
|
17
|
-
.progress-bar {
|
18
|
-
height: $progress-height;
|
19
|
-
color: $progress-bar-color;
|
20
|
-
background-color: $progress-bar-bg;
|
21
|
-
}
|
22
|
-
|
23
|
-
// Striped
|
24
|
-
.progress-bar-striped {
|
25
|
-
@include gradient-striped();
|
26
|
-
background-size: $progress-height $progress-height;
|
27
|
-
}
|
28
|
-
|
29
|
-
// Animated
|
30
|
-
.progress-bar-animated {
|
31
|
-
animation: progress-bar-stripes $progress-bar-animation-timing;
|
32
|
-
}
|
@@ -1,389 +0,0 @@
|
|
1
|
-
// scss-lint:disable QualifyingElement, DuplicateProperty
|
2
|
-
|
3
|
-
// Reboot
|
4
|
-
//
|
5
|
-
// Global resets to common HTML elements and more for easier usage by Bootstrap.
|
6
|
-
// Adds additional rules on top of Normalize.css, including several overrides.
|
7
|
-
|
8
|
-
|
9
|
-
// Reset the box-sizing
|
10
|
-
//
|
11
|
-
// Change from `box-sizing: content-box` to `border-box` so that when you add
|
12
|
-
// `padding` or `border`s to an element, the overall declared `width` does not
|
13
|
-
// change. For example, `width: 100px;` will always be `100px` despite the
|
14
|
-
// `border: 10px solid red;` and `padding: 20px;`.
|
15
|
-
//
|
16
|
-
// Heads up! This reset may cause conflicts with some third-party widgets. For
|
17
|
-
// recommendations on resolving such conflicts, see
|
18
|
-
// https://getbootstrap.com/getting-started/#third-box-sizing.
|
19
|
-
//
|
20
|
-
// Credit: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
|
21
|
-
|
22
|
-
html {
|
23
|
-
box-sizing: border-box;
|
24
|
-
}
|
25
|
-
|
26
|
-
*,
|
27
|
-
*::before,
|
28
|
-
*::after {
|
29
|
-
box-sizing: inherit;
|
30
|
-
}
|
31
|
-
|
32
|
-
|
33
|
-
// Make viewport responsive
|
34
|
-
//
|
35
|
-
// @viewport is needed because IE 10+ doesn't honor <meta name="viewport"> in
|
36
|
-
// some cases. See https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/.
|
37
|
-
// Eventually @viewport will replace <meta name="viewport">.
|
38
|
-
//
|
39
|
-
// However, `device-width` is broken on IE 10 on Windows (Phone) 8,
|
40
|
-
// (see https://timkadlec.com/2013/01/windows-phone-8-and-device-width/ and https://github.com/twbs/bootstrap/issues/10497)
|
41
|
-
// and the fix for that involves a snippet of JavaScript to sniff the user agent
|
42
|
-
// and apply some conditional CSS.
|
43
|
-
//
|
44
|
-
// See https://getbootstrap.com/getting-started/#support-ie10-width for the relevant hack.
|
45
|
-
//
|
46
|
-
// Wrap `@viewport` with `@at-root` for when folks do a nested import (e.g.,
|
47
|
-
// `.class-name { @import "bootstrap"; }`).
|
48
|
-
@at-root {
|
49
|
-
@-ms-viewport { width: device-width; }
|
50
|
-
}
|
51
|
-
|
52
|
-
|
53
|
-
//
|
54
|
-
// Reset HTML, body, and more
|
55
|
-
//
|
56
|
-
|
57
|
-
html {
|
58
|
-
// We assume no initial pixel `font-size` for accessibility reasons. This
|
59
|
-
// allows web visitors to customize their browser default font-size, making
|
60
|
-
// your project more inclusive and accessible to everyone.
|
61
|
-
|
62
|
-
// As a side-effect of setting the @viewport above,
|
63
|
-
// IE11 & Edge make the scrollbar overlap the content and automatically hide itself when not in use.
|
64
|
-
// Unfortunately, the auto-showing of the scrollbar is sometimes too sensitive,
|
65
|
-
// thus making it hard to click on stuff near the right edge of the page.
|
66
|
-
// So we add this style to force IE11 & Edge to use a "normal", non-overlapping, non-auto-hiding scrollbar.
|
67
|
-
// See https://github.com/twbs/bootstrap/issues/18543
|
68
|
-
// and https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7165383/
|
69
|
-
-ms-overflow-style: scrollbar;
|
70
|
-
|
71
|
-
// Changes the default tap highlight to be completely transparent in iOS.
|
72
|
-
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
73
|
-
}
|
74
|
-
|
75
|
-
body {
|
76
|
-
font-family: $font-family-base;
|
77
|
-
font-size: $font-size-base;
|
78
|
-
font-weight: $font-weight-base;
|
79
|
-
line-height: $line-height-base;
|
80
|
-
// Go easy on the eyes and use something other than `#000` for text
|
81
|
-
color: $body-color;
|
82
|
-
// By default, `<body>` has no `background-color` so we set one as a best practice.
|
83
|
-
background-color: $body-bg;
|
84
|
-
}
|
85
|
-
|
86
|
-
// Suppress the focus outline on elements that cannot be accessed via keyboard.
|
87
|
-
// This prevents an unwanted focus outline from appearing around elements that
|
88
|
-
// might still respond to pointer events.
|
89
|
-
//
|
90
|
-
// Credit: https://github.com/suitcss/base
|
91
|
-
[tabindex="-1"]:focus {
|
92
|
-
outline: none !important;
|
93
|
-
}
|
94
|
-
|
95
|
-
|
96
|
-
//
|
97
|
-
// Typography
|
98
|
-
//
|
99
|
-
|
100
|
-
// Remove top margins from headings
|
101
|
-
//
|
102
|
-
// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
|
103
|
-
// margin for easier control within type scales as it avoids margin collapsing.
|
104
|
-
h1, h2, h3, h4, h5, h6 {
|
105
|
-
margin-top: 0;
|
106
|
-
margin-bottom: .5rem;
|
107
|
-
}
|
108
|
-
|
109
|
-
// Reset margins on paragraphs
|
110
|
-
//
|
111
|
-
// Similarly, the top margin on `<p>`s get reset. However, we also reset the
|
112
|
-
// bottom margin to use `rem` units instead of `em`.
|
113
|
-
p {
|
114
|
-
margin-top: 0;
|
115
|
-
margin-bottom: 1rem;
|
116
|
-
}
|
117
|
-
|
118
|
-
// Abbreviations
|
119
|
-
abbr[title],
|
120
|
-
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
|
121
|
-
abbr[data-original-title] {
|
122
|
-
cursor: help;
|
123
|
-
}
|
124
|
-
|
125
|
-
address {
|
126
|
-
margin-bottom: 1rem;
|
127
|
-
font-style: normal;
|
128
|
-
line-height: inherit;
|
129
|
-
}
|
130
|
-
|
131
|
-
ol,
|
132
|
-
ul,
|
133
|
-
dl {
|
134
|
-
margin-top: 0;
|
135
|
-
margin-bottom: 1rem;
|
136
|
-
}
|
137
|
-
|
138
|
-
ol ol,
|
139
|
-
ul ul,
|
140
|
-
ol ul,
|
141
|
-
ul ol {
|
142
|
-
margin-bottom: 0;
|
143
|
-
}
|
144
|
-
|
145
|
-
dt {
|
146
|
-
font-weight: $dt-font-weight;
|
147
|
-
}
|
148
|
-
|
149
|
-
dd {
|
150
|
-
margin-bottom: .5rem;
|
151
|
-
margin-left: 0; // Undo browser default
|
152
|
-
}
|
153
|
-
|
154
|
-
blockquote {
|
155
|
-
margin: 0 0 1rem;
|
156
|
-
}
|
157
|
-
|
158
|
-
|
159
|
-
//
|
160
|
-
// Links
|
161
|
-
//
|
162
|
-
|
163
|
-
a {
|
164
|
-
color: $link-color;
|
165
|
-
text-decoration: $link-decoration;
|
166
|
-
|
167
|
-
@include hover-focus {
|
168
|
-
color: $link-hover-color;
|
169
|
-
text-decoration: $link-hover-decoration;
|
170
|
-
}
|
171
|
-
}
|
172
|
-
|
173
|
-
// And undo these styles for placeholder links/named anchors (without href)
|
174
|
-
// which have not been made explicitly keyboard-focusable (without tabindex).
|
175
|
-
// It would be more straightforward to just use a[href] in previous block, but that
|
176
|
-
// causes specificity issues in many other styles that are too complex to fix.
|
177
|
-
// See https://github.com/twbs/bootstrap/issues/19402
|
178
|
-
|
179
|
-
a:not([href]):not([tabindex]) {
|
180
|
-
color: inherit;
|
181
|
-
text-decoration: none;
|
182
|
-
|
183
|
-
@include hover-focus {
|
184
|
-
color: inherit;
|
185
|
-
text-decoration: none;
|
186
|
-
}
|
187
|
-
|
188
|
-
&:focus {
|
189
|
-
outline: 0;
|
190
|
-
}
|
191
|
-
}
|
192
|
-
|
193
|
-
|
194
|
-
//
|
195
|
-
// Code
|
196
|
-
//
|
197
|
-
|
198
|
-
pre {
|
199
|
-
// Remove browser default top margin
|
200
|
-
margin-top: 0;
|
201
|
-
// Reset browser default of `1em` to use `rem`s
|
202
|
-
margin-bottom: 1rem;
|
203
|
-
// Normalize v4 removed this property, causing `<pre>` content to break out of wrapping code snippets
|
204
|
-
overflow: auto;
|
205
|
-
}
|
206
|
-
|
207
|
-
|
208
|
-
//
|
209
|
-
// Figures
|
210
|
-
//
|
211
|
-
|
212
|
-
figure {
|
213
|
-
// Normalize adds `margin` to `figure`s as browsers apply it inconsistently.
|
214
|
-
// We reset that to create a better flow in-page.
|
215
|
-
margin: 0 0 1rem;
|
216
|
-
}
|
217
|
-
|
218
|
-
|
219
|
-
//
|
220
|
-
// Images
|
221
|
-
//
|
222
|
-
|
223
|
-
img {
|
224
|
-
// By default, `<img>`s are `inline-block`. This assumes that, and vertically
|
225
|
-
// centers them. This won't apply should you reset them to `block` level.
|
226
|
-
vertical-align: middle;
|
227
|
-
// Note: `<img>`s are deliberately not made responsive by default.
|
228
|
-
// For the rationale behind this, see the comments on the `.img-fluid` class.
|
229
|
-
}
|
230
|
-
|
231
|
-
|
232
|
-
// iOS "clickable elements" fix for role="button"
|
233
|
-
//
|
234
|
-
// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
|
235
|
-
// for traditionally non-focusable elements with role="button"
|
236
|
-
// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
237
|
-
|
238
|
-
[role="button"] {
|
239
|
-
cursor: pointer;
|
240
|
-
}
|
241
|
-
|
242
|
-
|
243
|
-
// Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
|
244
|
-
//
|
245
|
-
// In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11
|
246
|
-
// DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present.
|
247
|
-
// However, they DO support removing the click delay via `touch-action: manipulation`.
|
248
|
-
// See:
|
249
|
-
// * https://v4-alpha.getbootstrap.com/content/reboot/#click-delay-optimization-for-touch
|
250
|
-
// * http://caniuse.com/#feat=css-touch-action
|
251
|
-
// * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
|
252
|
-
|
253
|
-
a,
|
254
|
-
area,
|
255
|
-
button,
|
256
|
-
[role="button"],
|
257
|
-
input,
|
258
|
-
label,
|
259
|
-
select,
|
260
|
-
summary,
|
261
|
-
textarea {
|
262
|
-
touch-action: manipulation;
|
263
|
-
}
|
264
|
-
|
265
|
-
|
266
|
-
//
|
267
|
-
// Tables
|
268
|
-
//
|
269
|
-
|
270
|
-
table {
|
271
|
-
// No longer part of Normalize since v4
|
272
|
-
border-collapse: collapse;
|
273
|
-
// Reset for nesting within parents with `background-color`.
|
274
|
-
background-color: $table-bg;
|
275
|
-
}
|
276
|
-
|
277
|
-
caption {
|
278
|
-
padding-top: $table-cell-padding;
|
279
|
-
padding-bottom: $table-cell-padding;
|
280
|
-
color: $text-muted;
|
281
|
-
text-align: left;
|
282
|
-
caption-side: bottom;
|
283
|
-
}
|
284
|
-
|
285
|
-
th {
|
286
|
-
// Centered by default, but left-align-ed to match the `td`s below.
|
287
|
-
text-align: left;
|
288
|
-
}
|
289
|
-
|
290
|
-
|
291
|
-
//
|
292
|
-
// Forms
|
293
|
-
//
|
294
|
-
|
295
|
-
label {
|
296
|
-
// Allow labels to use `margin` for spacing.
|
297
|
-
display: inline-block;
|
298
|
-
margin-bottom: .5rem;
|
299
|
-
}
|
300
|
-
|
301
|
-
// Work around a Firefox/IE bug where the transparent `button` background
|
302
|
-
// results in a loss of the default `button` focus styles.
|
303
|
-
//
|
304
|
-
// Credit: https://github.com/suitcss/base/
|
305
|
-
button:focus {
|
306
|
-
outline: 1px dotted;
|
307
|
-
outline: 5px auto -webkit-focus-ring-color;
|
308
|
-
}
|
309
|
-
|
310
|
-
input,
|
311
|
-
button,
|
312
|
-
select,
|
313
|
-
textarea {
|
314
|
-
// Normalize includes `font: inherit;`, so `font-family`. `font-size`, etc are
|
315
|
-
// properly inherited. However, `line-height` isn't inherited there.
|
316
|
-
line-height: inherit;
|
317
|
-
}
|
318
|
-
|
319
|
-
input[type="radio"],
|
320
|
-
input[type="checkbox"] {
|
321
|
-
// Apply a disabled cursor for radios and checkboxes.
|
322
|
-
//
|
323
|
-
// Note: Neither radios nor checkboxes can be readonly.
|
324
|
-
&:disabled {
|
325
|
-
cursor: $cursor-disabled;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
|
-
input[type="date"],
|
331
|
-
input[type="time"],
|
332
|
-
input[type="datetime-local"],
|
333
|
-
input[type="month"] {
|
334
|
-
// Remove the default appearance of temporal inputs to avoid a Mobile Safari
|
335
|
-
// bug where setting a custom line-height prevents text from being vertically
|
336
|
-
// centered within the input.
|
337
|
-
// See https://bugs.webkit.org/show_bug.cgi?id=139848
|
338
|
-
// and https://github.com/twbs/bootstrap/issues/11266
|
339
|
-
-webkit-appearance: listbox;
|
340
|
-
}
|
341
|
-
|
342
|
-
textarea {
|
343
|
-
// Textareas should really only resize vertically so they don't break their (horizontal) containers.
|
344
|
-
resize: vertical;
|
345
|
-
}
|
346
|
-
|
347
|
-
fieldset {
|
348
|
-
// Browsers set a default `min-width: min-content;` on fieldsets,
|
349
|
-
// unlike e.g. `<div>`s, which have `min-width: 0;` by default.
|
350
|
-
// So we reset that to ensure fieldsets behave more like a standard block element.
|
351
|
-
// See https://github.com/twbs/bootstrap/issues/12359
|
352
|
-
// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
|
353
|
-
min-width: 0;
|
354
|
-
// Reset the default outline behavior of fieldsets so they don't affect page layout.
|
355
|
-
padding: 0;
|
356
|
-
margin: 0;
|
357
|
-
border: 0;
|
358
|
-
}
|
359
|
-
|
360
|
-
legend {
|
361
|
-
// Reset the entire legend element to match the `fieldset`
|
362
|
-
display: block;
|
363
|
-
width: 100%;
|
364
|
-
padding: 0;
|
365
|
-
margin-bottom: .5rem;
|
366
|
-
font-size: 1.5rem;
|
367
|
-
line-height: inherit;
|
368
|
-
}
|
369
|
-
|
370
|
-
input[type="search"] {
|
371
|
-
// This overrides the extra rounded corners on search inputs in iOS so that our
|
372
|
-
// `.form-control` class can properly style them. Note that this cannot simply
|
373
|
-
// be added to `.form-control` as it's not specific enough. For details, see
|
374
|
-
// https://github.com/twbs/bootstrap/issues/11586.
|
375
|
-
-webkit-appearance: none;
|
376
|
-
}
|
377
|
-
|
378
|
-
// todo: needed?
|
379
|
-
output {
|
380
|
-
display: inline-block;
|
381
|
-
// font-size: $font-size-base;
|
382
|
-
// line-height: $line-height;
|
383
|
-
// color: $input-color;
|
384
|
-
}
|
385
|
-
|
386
|
-
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
|
387
|
-
[hidden] {
|
388
|
-
display: none !important;
|
389
|
-
}
|