ext_yarn 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +125 -0
- data/.ruby-version +1 -0
- data/Gemfile +21 -0
- data/Gemfile.lock +78 -0
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/bin/yarn +12 -0
- data/ext_yarn.gemspec +23 -0
- data/lib/ext_yarn/engine.rb +21 -0
- data/lib/ext_yarn/version.rb +3 -0
- data/lib/ext_yarn.rb +5 -0
- data/node_modules/.yarn-integrity +64 -0
- data/node_modules/bootstrap-sass/LICENSE +22 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js +162 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js +94 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js +125 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js +237 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js +212 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js +165 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js +339 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js +108 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js +172 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js +155 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js +520 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js +59 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap.js +2377 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss +56 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_badges.scss +68 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_buttons.scss +168 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_carousel.scss +270 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_forms.scss +617 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_input-groups.scss +171 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_jumbotron.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_list-group.scss +130 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_media.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_mixins.scss +40 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_modals.scss +150 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss +662 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navs.scss +242 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_normalize.scss +424 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pagination.scss +89 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_panels.scss +271 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_popovers.scss +131 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_print.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_theme.scss +291 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_utilities.scss +55 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss +874 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_buttons.scss +65 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/node_modules/bootstrap-sass/package.json +44 -0
- data/node_modules/bootswatch/cerulean/_bootswatch.scss +131 -0
- data/node_modules/bootswatch/cerulean/_variables.scss +870 -0
- data/node_modules/bootswatch/cosmo/_bootswatch.scss +262 -0
- data/node_modules/bootswatch/cosmo/_variables.scss +870 -0
- data/node_modules/bootswatch/cyborg/_bootswatch.scss +243 -0
- data/node_modules/bootswatch/cyborg/_variables.scss +870 -0
- data/node_modules/bootswatch/darkly/_bootswatch.scss +351 -0
- data/node_modules/bootswatch/darkly/_variables.scss +870 -0
- data/node_modules/bootswatch/flatly/_bootswatch.scss +330 -0
- data/node_modules/bootswatch/flatly/_variables.scss +870 -0
- data/node_modules/bootswatch/journal/_bootswatch.scss +145 -0
- data/node_modules/bootswatch/journal/_variables.scss +870 -0
- data/node_modules/bootswatch/lumen/_bootswatch.scss +523 -0
- data/node_modules/bootswatch/lumen/_variables.scss +870 -0
- data/node_modules/bootswatch/package.json +26 -0
- data/node_modules/bootswatch/paper/_bootswatch.scss +620 -0
- data/node_modules/bootswatch/paper/_variables.scss +870 -0
- data/node_modules/bootswatch/readable/_bootswatch.scss +183 -0
- data/node_modules/bootswatch/readable/_variables.scss +870 -0
- data/node_modules/bootswatch/sandstone/_bootswatch.scss +196 -0
- data/node_modules/bootswatch/sandstone/_variables.scss +870 -0
- data/node_modules/bootswatch/simplex/_bootswatch.scss +170 -0
- data/node_modules/bootswatch/simplex/_variables.scss +870 -0
- data/node_modules/bootswatch/slate/_bootswatch.scss +448 -0
- data/node_modules/bootswatch/slate/_variables.scss +870 -0
- data/node_modules/bootswatch/spacelab/_bootswatch.scss +142 -0
- data/node_modules/bootswatch/spacelab/_variables.scss +870 -0
- data/node_modules/bootswatch/superhero/_bootswatch.scss +360 -0
- data/node_modules/bootswatch/superhero/_variables.scss +870 -0
- data/node_modules/bootswatch/united/_bootswatch.scss +56 -0
- data/node_modules/bootswatch/united/_variables.scss +870 -0
- data/node_modules/bootswatch/yeti/_bootswatch.scss +445 -0
- data/node_modules/bootswatch/yeti/_variables.scss +870 -0
- data/node_modules/chart.js/dist/Chart.bundle.js +18919 -0
- data/node_modules/chart.js/dist/Chart.js +14384 -0
- data/node_modules/chart.js/package.json +57 -0
- data/node_modules/chartkick/chartkick.js +1853 -0
- data/node_modules/chartkick/package.json +25 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/package.json +51 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +2636 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/_bootstrap-datetimepicker.scss +344 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/bootstrap-datetimepicker-build.scss +16 -0
- data/node_modules/file-saver/FileSaver.js +188 -0
- data/node_modules/file-saver/package.json +28 -0
- data/node_modules/font-awesome-sass/LICENSE.txt +22 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg +2671 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome.scss +18 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss +34 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss +25 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss +12 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss +6 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss +789 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss +13 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss +19 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss +60 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss +14 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_screen-reader.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss +802 -0
- data/node_modules/font-awesome-sass/package.json +19 -0
- data/node_modules/jquery/dist/jquery.js +10253 -0
- data/node_modules/jquery/dist/jquery.slim.js +8160 -0
- data/node_modules/jquery/package.json +97 -0
- data/node_modules/jquery-pjax/jquery.pjax.js +903 -0
- data/node_modules/jquery-pjax/package.json +18 -0
- data/node_modules/jquery-ui/package.json +74 -0
- data/node_modules/jquery-ui/themes/base/accordion.css +23 -0
- data/node_modules/jquery-ui/themes/base/all.css +12 -0
- data/node_modules/jquery-ui/themes/base/autocomplete.css +16 -0
- data/node_modules/jquery-ui/themes/base/base.css +30 -0
- data/node_modules/jquery-ui/themes/base/button.css +82 -0
- data/node_modules/jquery-ui/themes/base/checkboxradio.css +34 -0
- data/node_modules/jquery-ui/themes/base/controlgroup.css +65 -0
- data/node_modules/jquery-ui/themes/base/core.css +97 -0
- data/node_modules/jquery-ui/themes/base/datepicker.css +185 -0
- data/node_modules/jquery-ui/themes/base/dialog.css +101 -0
- data/node_modules/jquery-ui/themes/base/draggable.css +12 -0
- data/node_modules/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_555555_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777620_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777777_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/menu.css +64 -0
- data/node_modules/jquery-ui/themes/base/progressbar.css +28 -0
- data/node_modules/jquery-ui/themes/base/resizable.css +78 -0
- data/node_modules/jquery-ui/themes/base/selectable.css +17 -0
- data/node_modules/jquery-ui/themes/base/selectmenu.css +50 -0
- data/node_modules/jquery-ui/themes/base/slider.css +75 -0
- data/node_modules/jquery-ui/themes/base/sortable.css +12 -0
- data/node_modules/jquery-ui/themes/base/spinner.css +52 -0
- data/node_modules/jquery-ui/themes/base/tabs.css +51 -0
- data/node_modules/jquery-ui/themes/base/theme.css +443 -0
- data/node_modules/jquery-ui/themes/base/tooltip.css +19 -0
- data/node_modules/jquery-ui/ui/core.js +21 -0
- data/node_modules/jquery-ui/ui/data.js +39 -0
- data/node_modules/jquery-ui/ui/disable-selection.js +46 -0
- data/node_modules/jquery-ui/ui/effect.js +1635 -0
- data/node_modules/jquery-ui/ui/effects/effect-blind.js +70 -0
- data/node_modules/jquery-ui/ui/effects/effect-bounce.js +110 -0
- data/node_modules/jquery-ui/ui/effects/effect-clip.js +65 -0
- data/node_modules/jquery-ui/ui/effects/effect-drop.js +69 -0
- data/node_modules/jquery-ui/ui/effects/effect-explode.js +111 -0
- data/node_modules/jquery-ui/ui/effects/effect-fade.js +47 -0
- data/node_modules/jquery-ui/ui/effects/effect-fold.js +89 -0
- data/node_modules/jquery-ui/ui/effects/effect-highlight.js +57 -0
- data/node_modules/jquery-ui/ui/effects/effect-puff.js +42 -0
- data/node_modules/jquery-ui/ui/effects/effect-pulsate.js +64 -0
- data/node_modules/jquery-ui/ui/effects/effect-scale.js +56 -0
- data/node_modules/jquery-ui/ui/effects/effect-shake.js +74 -0
- data/node_modules/jquery-ui/ui/effects/effect-size.js +191 -0
- data/node_modules/jquery-ui/ui/effects/effect-slide.js +76 -0
- data/node_modules/jquery-ui/ui/effects/effect-transfer.js +40 -0
- data/node_modules/jquery-ui/ui/escape-selector.js +21 -0
- data/node_modules/jquery-ui/ui/focusable.js +84 -0
- data/node_modules/jquery-ui/ui/form-reset-mixin.js +77 -0
- data/node_modules/jquery-ui/ui/form.js +20 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-af.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-az.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-be.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bg.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ca.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-da.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-de.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-el.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eo.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-es.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-et.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fa.js +73 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fo.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-gl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-he.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hy.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-id.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-is.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ja.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ka.js +48 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-kk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-km.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ko.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ky.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lb.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lt.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lv.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-mk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ml.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ms.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nb.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nn.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-no.js +50 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt.js +44 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-rm.js +61 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ro.js +40 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ru.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sl.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sq.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sv.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ta.js +53 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-th.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tj.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-uk.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-vi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js +37 -0
- data/node_modules/jquery-ui/ui/ie.js +15 -0
- data/node_modules/jquery-ui/ui/jquery-1-7.js +89 -0
- data/node_modules/jquery-ui/ui/keycode.js +45 -0
- data/node_modules/jquery-ui/ui/labels.js +62 -0
- data/node_modules/jquery-ui/ui/plugin.js +44 -0
- data/node_modules/jquery-ui/ui/position.js +498 -0
- data/node_modules/jquery-ui/ui/safe-active-element.js +40 -0
- data/node_modules/jquery-ui/ui/safe-blur.js +21 -0
- data/node_modules/jquery-ui/ui/scroll-parent.js +45 -0
- data/node_modules/jquery-ui/ui/tabbable.js +35 -0
- data/node_modules/jquery-ui/ui/unique-id.js +49 -0
- data/node_modules/jquery-ui/ui/version.js +17 -0
- data/node_modules/jquery-ui/ui/widget.js +733 -0
- data/node_modules/jquery-ui/ui/widgets/accordion.js +613 -0
- data/node_modules/jquery-ui/ui/widgets/autocomplete.js +682 -0
- data/node_modules/jquery-ui/ui/widgets/button.js +386 -0
- data/node_modules/jquery-ui/ui/widgets/checkboxradio.js +286 -0
- data/node_modules/jquery-ui/ui/widgets/controlgroup.js +298 -0
- data/node_modules/jquery-ui/ui/widgets/datepicker.js +2120 -0
- data/node_modules/jquery-ui/ui/widgets/dialog.js +940 -0
- data/node_modules/jquery-ui/ui/widgets/draggable.js +1250 -0
- data/node_modules/jquery-ui/ui/widgets/droppable.js +497 -0
- data/node_modules/jquery-ui/ui/widgets/menu.js +673 -0
- data/node_modules/jquery-ui/ui/widgets/mouse.js +226 -0
- data/node_modules/jquery-ui/ui/widgets/progressbar.js +178 -0
- data/node_modules/jquery-ui/ui/widgets/resizable.js +1201 -0
- data/node_modules/jquery-ui/ui/widgets/selectable.js +310 -0
- data/node_modules/jquery-ui/ui/widgets/selectmenu.js +687 -0
- data/node_modules/jquery-ui/ui/widgets/slider.js +752 -0
- data/node_modules/jquery-ui/ui/widgets/sortable.js +1554 -0
- data/node_modules/jquery-ui/ui/widgets/spinner.js +575 -0
- data/node_modules/jquery-ui/ui/widgets/tabs.js +924 -0
- data/node_modules/jquery-ui/ui/widgets/tooltip.js +520 -0
- data/node_modules/jquery-ujs/package.json +26 -0
- data/node_modules/jquery-ujs/src/rails.js +555 -0
- data/node_modules/js-cookie/package.json +49 -0
- data/node_modules/js-cookie/src/js.cookie.js +165 -0
- data/node_modules/jstz/dist/jstz.js +1428 -0
- data/node_modules/jstz/package.json +57 -0
- data/node_modules/lodash/core.js +3836 -0
- data/node_modules/lodash/lodash.js +17084 -0
- data/node_modules/lodash/package.json +17 -0
- data/node_modules/moment/locale/af.js +74 -0
- data/node_modules/moment/locale/ar-dz.js +60 -0
- data/node_modules/moment/locale/ar-kw.js +60 -0
- data/node_modules/moment/locale/ar-ly.js +127 -0
- data/node_modules/moment/locale/ar-ma.js +61 -0
- data/node_modules/moment/locale/ar-sa.js +106 -0
- data/node_modules/moment/locale/ar-tn.js +60 -0
- data/node_modules/moment/locale/ar.js +143 -0
- data/node_modules/moment/locale/az.js +106 -0
- data/node_modules/moment/locale/be.js +135 -0
- data/node_modules/moment/locale/bg.js +91 -0
- data/node_modules/moment/locale/bm.js +60 -0
- data/node_modules/moment/locale/bn.js +120 -0
- data/node_modules/moment/locale/bo.js +120 -0
- data/node_modules/moment/locale/br.js +109 -0
- data/node_modules/moment/locale/bs.js +153 -0
- data/node_modules/moment/locale/ca.js +89 -0
- data/node_modules/moment/locale/cs.js +180 -0
- data/node_modules/moment/locale/cv.js +64 -0
- data/node_modules/moment/locale/cy.js +82 -0
- data/node_modules/moment/locale/da.js +61 -0
- data/node_modules/moment/locale/de-at.js +80 -0
- data/node_modules/moment/locale/de-ch.js +79 -0
- data/node_modules/moment/locale/de.js +79 -0
- data/node_modules/moment/locale/dv.js +101 -0
- data/node_modules/moment/locale/el.js +101 -0
- data/node_modules/moment/locale/en-au.js +68 -0
- data/node_modules/moment/locale/en-ca.js +64 -0
- data/node_modules/moment/locale/en-gb.js +68 -0
- data/node_modules/moment/locale/en-ie.js +68 -0
- data/node_modules/moment/locale/en-nz.js +68 -0
- data/node_modules/moment/locale/eo.js +74 -0
- data/node_modules/moment/locale/es-do.js +92 -0
- data/node_modules/moment/locale/es-us.js +84 -0
- data/node_modules/moment/locale/es.js +93 -0
- data/node_modules/moment/locale/et.js +82 -0
- data/node_modules/moment/locale/eu.js +67 -0
- data/node_modules/moment/locale/fa.js +108 -0
- data/node_modules/moment/locale/fi.js +110 -0
- data/node_modules/moment/locale/fo.js +61 -0
- data/node_modules/moment/locale/fr-ca.js +75 -0
- data/node_modules/moment/locale/fr-ch.js +79 -0
- data/node_modules/moment/locale/fr.js +84 -0
- data/node_modules/moment/locale/fy.js +76 -0
- data/node_modules/moment/locale/gd.js +77 -0
- data/node_modules/moment/locale/gl.js +78 -0
- data/node_modules/moment/locale/gom-latn.js +124 -0
- data/node_modules/moment/locale/gu.js +125 -0
- data/node_modules/moment/locale/he.js +100 -0
- data/node_modules/moment/locale/hi.js +125 -0
- data/node_modules/moment/locale/hr.js +155 -0
- data/node_modules/moment/locale/hu.js +111 -0
- data/node_modules/moment/locale/hy-am.js +96 -0
- data/node_modules/moment/locale/id.js +84 -0
- data/node_modules/moment/locale/is.js +133 -0
- data/node_modules/moment/locale/it.js +71 -0
- data/node_modules/moment/locale/ja.js +81 -0
- data/node_modules/moment/locale/jv.js +84 -0
- data/node_modules/moment/locale/ka.js +90 -0
- data/node_modules/moment/locale/kk.js +88 -0
- data/node_modules/moment/locale/km.js +59 -0
- data/node_modules/moment/locale/kn.js +127 -0
- data/node_modules/moment/locale/ko.js +83 -0
- data/node_modules/moment/locale/ky.js +89 -0
- data/node_modules/moment/locale/lb.js +138 -0
- data/node_modules/moment/locale/lo.js +71 -0
- data/node_modules/moment/locale/lt.js +119 -0
- data/node_modules/moment/locale/lv.js +99 -0
- data/node_modules/moment/locale/me.js +113 -0
- data/node_modules/moment/locale/mi.js +65 -0
- data/node_modules/moment/locale/mk.js +91 -0
- data/node_modules/moment/locale/ml.js +82 -0
- data/node_modules/moment/locale/mr.js +162 -0
- data/node_modules/moment/locale/ms-my.js +84 -0
- data/node_modules/moment/locale/ms.js +83 -0
- data/node_modules/moment/locale/mt.js +61 -0
- data/node_modules/moment/locale/my.js +97 -0
- data/node_modules/moment/locale/nb.js +64 -0
- data/node_modules/moment/locale/ne.js +124 -0
- data/node_modules/moment/locale/nl-be.js +89 -0
- data/node_modules/moment/locale/nl.js +89 -0
- data/node_modules/moment/locale/nn.js +61 -0
- data/node_modules/moment/locale/pa-in.js +125 -0
- data/node_modules/moment/locale/pl.js +127 -0
- data/node_modules/moment/locale/pt-br.js +62 -0
- data/node_modules/moment/locale/pt.js +66 -0
- data/node_modules/moment/locale/ro.js +77 -0
- data/node_modules/moment/locale/ru.js +185 -0
- data/node_modules/moment/locale/sd.js +99 -0
- data/node_modules/moment/locale/se.js +62 -0
- data/node_modules/moment/locale/si.js +72 -0
- data/node_modules/moment/locale/sk.js +158 -0
- data/node_modules/moment/locale/sl.js +174 -0
- data/node_modules/moment/locale/sq.js +71 -0
- data/node_modules/moment/locale/sr-cyrl.js +112 -0
- data/node_modules/moment/locale/sr.js +112 -0
- data/node_modules/moment/locale/ss.js +90 -0
- data/node_modules/moment/locale/sv.js +70 -0
- data/node_modules/moment/locale/sw.js +60 -0
- data/node_modules/moment/locale/ta.js +131 -0
- data/node_modules/moment/locale/te.js +90 -0
- data/node_modules/moment/locale/tet.js +69 -0
- data/node_modules/moment/locale/th.js +68 -0
- data/node_modules/moment/locale/tl-ph.js +63 -0
- data/node_modules/moment/locale/tlh.js +123 -0
- data/node_modules/moment/locale/tr.js +91 -0
- data/node_modules/moment/locale/tzl.js +93 -0
- data/node_modules/moment/locale/tzm-latn.js +59 -0
- data/node_modules/moment/locale/tzm.js +59 -0
- data/node_modules/moment/locale/uk.js +153 -0
- data/node_modules/moment/locale/ur.js +100 -0
- data/node_modules/moment/locale/uz-latn.js +59 -0
- data/node_modules/moment/locale/uz.js +59 -0
- data/node_modules/moment/locale/vi.js +80 -0
- data/node_modules/moment/locale/x-pseudo.js +69 -0
- data/node_modules/moment/locale/yo.js +61 -0
- data/node_modules/moment/locale/zh-cn.js +112 -0
- data/node_modules/moment/locale/zh-hk.js +106 -0
- data/node_modules/moment/locale/zh-tw.js +105 -0
- data/node_modules/moment/min/locales.js +9769 -0
- data/node_modules/moment/min/moment-with-locales.js +14289 -0
- data/node_modules/moment/moment.js +4535 -0
- data/node_modules/moment/package.json +99 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js +1204 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data.js +1204 -0
- data/node_modules/moment-timezone/moment-timezone-utils.js +316 -0
- data/node_modules/moment-timezone/moment-timezone.js +605 -0
- data/node_modules/moment-timezone/package.json +50 -0
- data/node_modules/nprogress/nprogress.css +74 -0
- data/node_modules/nprogress/nprogress.js +480 -0
- data/node_modules/nprogress/package.json +47 -0
- data/node_modules/nprogress/support/extras.css +4 -0
- data/node_modules/roboto-fontface/css/mixins.scss +36 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss +12 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface.scss +6 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface.scss +4 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.svg +10968 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.svg +11086 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.svg +11010 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.svg +11096 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.svg +10564 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.svg +10646 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.svg +10999 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.svg +11100 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.svg +10520 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.svg +10629 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.svg +10617 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.svg +10726 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.svg +679 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/package.json +28 -0
- data/node_modules/signature_pad/dist/signature_pad.js +610 -0
- data/node_modules/signature_pad/package.json +41 -0
- data/package.json +25 -0
- data/yarn.lock +126 -0
- metadata +708 -0
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Carousel
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Wrapper for the slide container and indicators
|
|
7
|
+
.carousel {
|
|
8
|
+
position: relative;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.carousel-inner {
|
|
12
|
+
position: relative;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
width: 100%;
|
|
15
|
+
|
|
16
|
+
> .item {
|
|
17
|
+
display: none;
|
|
18
|
+
position: relative;
|
|
19
|
+
@include transition(.6s ease-in-out left);
|
|
20
|
+
|
|
21
|
+
// Account for jankitude on images
|
|
22
|
+
> img,
|
|
23
|
+
> a > img {
|
|
24
|
+
@include img-responsive;
|
|
25
|
+
line-height: 1;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// WebKit CSS3 transforms for supported devices
|
|
29
|
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
|
30
|
+
@include transition-transform(0.6s ease-in-out);
|
|
31
|
+
@include backface-visibility(hidden);
|
|
32
|
+
@include perspective(1000px);
|
|
33
|
+
|
|
34
|
+
&.next,
|
|
35
|
+
&.active.right {
|
|
36
|
+
@include translate3d(100%, 0, 0);
|
|
37
|
+
left: 0;
|
|
38
|
+
}
|
|
39
|
+
&.prev,
|
|
40
|
+
&.active.left {
|
|
41
|
+
@include translate3d(-100%, 0, 0);
|
|
42
|
+
left: 0;
|
|
43
|
+
}
|
|
44
|
+
&.next.left,
|
|
45
|
+
&.prev.right,
|
|
46
|
+
&.active {
|
|
47
|
+
@include translate3d(0, 0, 0);
|
|
48
|
+
left: 0;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
> .active,
|
|
54
|
+
> .next,
|
|
55
|
+
> .prev {
|
|
56
|
+
display: block;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
> .active {
|
|
60
|
+
left: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
> .next,
|
|
64
|
+
> .prev {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 0;
|
|
67
|
+
width: 100%;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
> .next {
|
|
71
|
+
left: 100%;
|
|
72
|
+
}
|
|
73
|
+
> .prev {
|
|
74
|
+
left: -100%;
|
|
75
|
+
}
|
|
76
|
+
> .next.left,
|
|
77
|
+
> .prev.right {
|
|
78
|
+
left: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
> .active.left {
|
|
82
|
+
left: -100%;
|
|
83
|
+
}
|
|
84
|
+
> .active.right {
|
|
85
|
+
left: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Left/right controls for nav
|
|
91
|
+
// ---------------------------
|
|
92
|
+
|
|
93
|
+
.carousel-control {
|
|
94
|
+
position: absolute;
|
|
95
|
+
top: 0;
|
|
96
|
+
left: 0;
|
|
97
|
+
bottom: 0;
|
|
98
|
+
width: $carousel-control-width;
|
|
99
|
+
@include opacity($carousel-control-opacity);
|
|
100
|
+
font-size: $carousel-control-font-size;
|
|
101
|
+
color: $carousel-control-color;
|
|
102
|
+
text-align: center;
|
|
103
|
+
text-shadow: $carousel-text-shadow;
|
|
104
|
+
background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
|
|
105
|
+
// We can't have this transition here because WebKit cancels the carousel
|
|
106
|
+
// animation if you trip this while in the middle of another animation.
|
|
107
|
+
|
|
108
|
+
// Set gradients for backgrounds
|
|
109
|
+
&.left {
|
|
110
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001));
|
|
111
|
+
}
|
|
112
|
+
&.right {
|
|
113
|
+
left: auto;
|
|
114
|
+
right: 0;
|
|
115
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5));
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// Hover/focus state
|
|
119
|
+
&:hover,
|
|
120
|
+
&:focus {
|
|
121
|
+
outline: 0;
|
|
122
|
+
color: $carousel-control-color;
|
|
123
|
+
text-decoration: none;
|
|
124
|
+
@include opacity(.9);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Toggles
|
|
128
|
+
.icon-prev,
|
|
129
|
+
.icon-next,
|
|
130
|
+
.glyphicon-chevron-left,
|
|
131
|
+
.glyphicon-chevron-right {
|
|
132
|
+
position: absolute;
|
|
133
|
+
top: 50%;
|
|
134
|
+
margin-top: -10px;
|
|
135
|
+
z-index: 5;
|
|
136
|
+
display: inline-block;
|
|
137
|
+
}
|
|
138
|
+
.icon-prev,
|
|
139
|
+
.glyphicon-chevron-left {
|
|
140
|
+
left: 50%;
|
|
141
|
+
margin-left: -10px;
|
|
142
|
+
}
|
|
143
|
+
.icon-next,
|
|
144
|
+
.glyphicon-chevron-right {
|
|
145
|
+
right: 50%;
|
|
146
|
+
margin-right: -10px;
|
|
147
|
+
}
|
|
148
|
+
.icon-prev,
|
|
149
|
+
.icon-next {
|
|
150
|
+
width: 20px;
|
|
151
|
+
height: 20px;
|
|
152
|
+
line-height: 1;
|
|
153
|
+
font-family: serif;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
.icon-prev {
|
|
158
|
+
&:before {
|
|
159
|
+
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
.icon-next {
|
|
163
|
+
&:before {
|
|
164
|
+
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// Optional indicator pips
|
|
170
|
+
//
|
|
171
|
+
// Add an unordered list with the following class and add a list item for each
|
|
172
|
+
// slide your carousel holds.
|
|
173
|
+
|
|
174
|
+
.carousel-indicators {
|
|
175
|
+
position: absolute;
|
|
176
|
+
bottom: 10px;
|
|
177
|
+
left: 50%;
|
|
178
|
+
z-index: 15;
|
|
179
|
+
width: 60%;
|
|
180
|
+
margin-left: -30%;
|
|
181
|
+
padding-left: 0;
|
|
182
|
+
list-style: none;
|
|
183
|
+
text-align: center;
|
|
184
|
+
|
|
185
|
+
li {
|
|
186
|
+
display: inline-block;
|
|
187
|
+
width: 10px;
|
|
188
|
+
height: 10px;
|
|
189
|
+
margin: 1px;
|
|
190
|
+
text-indent: -999px;
|
|
191
|
+
border: 1px solid $carousel-indicator-border-color;
|
|
192
|
+
border-radius: 10px;
|
|
193
|
+
cursor: pointer;
|
|
194
|
+
|
|
195
|
+
// IE8-9 hack for event handling
|
|
196
|
+
//
|
|
197
|
+
// Internet Explorer 8-9 does not support clicks on elements without a set
|
|
198
|
+
// `background-color`. We cannot use `filter` since that's not viewed as a
|
|
199
|
+
// background color by the browser. Thus, a hack is needed.
|
|
200
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
|
|
201
|
+
//
|
|
202
|
+
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
|
203
|
+
// set alpha transparency for the best results possible.
|
|
204
|
+
background-color: #000 \9; // IE8
|
|
205
|
+
background-color: rgba(0,0,0,0); // IE9
|
|
206
|
+
}
|
|
207
|
+
.active {
|
|
208
|
+
margin: 0;
|
|
209
|
+
width: 12px;
|
|
210
|
+
height: 12px;
|
|
211
|
+
background-color: $carousel-indicator-active-bg;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// Optional captions
|
|
216
|
+
// -----------------------------
|
|
217
|
+
// Hidden by default for smaller viewports
|
|
218
|
+
.carousel-caption {
|
|
219
|
+
position: absolute;
|
|
220
|
+
left: 15%;
|
|
221
|
+
right: 15%;
|
|
222
|
+
bottom: 20px;
|
|
223
|
+
z-index: 10;
|
|
224
|
+
padding-top: 20px;
|
|
225
|
+
padding-bottom: 20px;
|
|
226
|
+
color: $carousel-caption-color;
|
|
227
|
+
text-align: center;
|
|
228
|
+
text-shadow: $carousel-text-shadow;
|
|
229
|
+
& .btn {
|
|
230
|
+
text-shadow: none; // No shadow for button elements in carousel-caption
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
// Scale up controls for tablets and up
|
|
236
|
+
@media screen and (min-width: $screen-sm-min) {
|
|
237
|
+
|
|
238
|
+
// Scale up the controls a smidge
|
|
239
|
+
.carousel-control {
|
|
240
|
+
.glyphicon-chevron-left,
|
|
241
|
+
.glyphicon-chevron-right,
|
|
242
|
+
.icon-prev,
|
|
243
|
+
.icon-next {
|
|
244
|
+
width: ($carousel-control-font-size * 1.5);
|
|
245
|
+
height: ($carousel-control-font-size * 1.5);
|
|
246
|
+
margin-top: ($carousel-control-font-size / -2);
|
|
247
|
+
font-size: ($carousel-control-font-size * 1.5);
|
|
248
|
+
}
|
|
249
|
+
.glyphicon-chevron-left,
|
|
250
|
+
.icon-prev {
|
|
251
|
+
margin-left: ($carousel-control-font-size / -2);
|
|
252
|
+
}
|
|
253
|
+
.glyphicon-chevron-right,
|
|
254
|
+
.icon-next {
|
|
255
|
+
margin-right: ($carousel-control-font-size / -2);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
// Show and left align the captions
|
|
260
|
+
.carousel-caption {
|
|
261
|
+
left: 20%;
|
|
262
|
+
right: 20%;
|
|
263
|
+
padding-bottom: 30px;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// Move up the indicators
|
|
267
|
+
.carousel-indicators {
|
|
268
|
+
bottom: 20px;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Close icons
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.close {
|
|
7
|
+
float: right;
|
|
8
|
+
font-size: ($font-size-base * 1.5);
|
|
9
|
+
font-weight: $close-font-weight;
|
|
10
|
+
line-height: 1;
|
|
11
|
+
color: $close-color;
|
|
12
|
+
text-shadow: $close-text-shadow;
|
|
13
|
+
@include opacity(.2);
|
|
14
|
+
|
|
15
|
+
&:hover,
|
|
16
|
+
&:focus {
|
|
17
|
+
color: $close-color;
|
|
18
|
+
text-decoration: none;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
@include opacity(.5);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// [converter] extracted button& to button.close
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Additional properties for button version
|
|
27
|
+
// iOS requires the button element instead of an anchor tag.
|
|
28
|
+
// If you want the anchor version, it requires `href="#"`.
|
|
29
|
+
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
|
30
|
+
button.close {
|
|
31
|
+
padding: 0;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
background: transparent;
|
|
34
|
+
border: 0;
|
|
35
|
+
-webkit-appearance: none;
|
|
36
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Code (inline and block)
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Inline and block code styles
|
|
7
|
+
code,
|
|
8
|
+
kbd,
|
|
9
|
+
pre,
|
|
10
|
+
samp {
|
|
11
|
+
font-family: $font-family-monospace;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Inline code
|
|
15
|
+
code {
|
|
16
|
+
padding: 2px 4px;
|
|
17
|
+
font-size: 90%;
|
|
18
|
+
color: $code-color;
|
|
19
|
+
background-color: $code-bg;
|
|
20
|
+
border-radius: $border-radius-base;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// User input typically entered via keyboard
|
|
24
|
+
kbd {
|
|
25
|
+
padding: 2px 4px;
|
|
26
|
+
font-size: 90%;
|
|
27
|
+
color: $kbd-color;
|
|
28
|
+
background-color: $kbd-bg;
|
|
29
|
+
border-radius: $border-radius-small;
|
|
30
|
+
box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
|
|
31
|
+
|
|
32
|
+
kbd {
|
|
33
|
+
padding: 0;
|
|
34
|
+
font-size: 100%;
|
|
35
|
+
font-weight: bold;
|
|
36
|
+
box-shadow: none;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Blocks of code
|
|
41
|
+
pre {
|
|
42
|
+
display: block;
|
|
43
|
+
padding: (($line-height-computed - 1) / 2);
|
|
44
|
+
margin: 0 0 ($line-height-computed / 2);
|
|
45
|
+
font-size: ($font-size-base - 1); // 14px to 13px
|
|
46
|
+
line-height: $line-height-base;
|
|
47
|
+
word-break: break-all;
|
|
48
|
+
word-wrap: break-word;
|
|
49
|
+
color: $pre-color;
|
|
50
|
+
background-color: $pre-bg;
|
|
51
|
+
border: 1px solid $pre-border-color;
|
|
52
|
+
border-radius: $border-radius-base;
|
|
53
|
+
|
|
54
|
+
// Account for some code outputs that place code tags in pre tags
|
|
55
|
+
code {
|
|
56
|
+
padding: 0;
|
|
57
|
+
font-size: inherit;
|
|
58
|
+
color: inherit;
|
|
59
|
+
white-space: pre-wrap;
|
|
60
|
+
background-color: transparent;
|
|
61
|
+
border-radius: 0;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// Enable scrollable blocks of code
|
|
66
|
+
.pre-scrollable {
|
|
67
|
+
max-height: $pre-scrollable-max-height;
|
|
68
|
+
overflow-y: scroll;
|
|
69
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Component animations
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
// Heads up!
|
|
6
|
+
//
|
|
7
|
+
// We don't use the `.opacity()` mixin here since it causes a bug with text
|
|
8
|
+
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
|
|
9
|
+
|
|
10
|
+
.fade {
|
|
11
|
+
opacity: 0;
|
|
12
|
+
@include transition(opacity .15s linear);
|
|
13
|
+
&.in {
|
|
14
|
+
opacity: 1;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.collapse {
|
|
19
|
+
display: none;
|
|
20
|
+
|
|
21
|
+
&.in { display: block; }
|
|
22
|
+
// [converter] extracted tr&.in to tr.collapse.in
|
|
23
|
+
// [converter] extracted tbody&.in to tbody.collapse.in
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
tr.collapse.in { display: table-row; }
|
|
27
|
+
|
|
28
|
+
tbody.collapse.in { display: table-row-group; }
|
|
29
|
+
|
|
30
|
+
.collapsing {
|
|
31
|
+
position: relative;
|
|
32
|
+
height: 0;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
@include transition-property(height, visibility);
|
|
35
|
+
@include transition-duration(.35s);
|
|
36
|
+
@include transition-timing-function(ease);
|
|
37
|
+
}
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Dropdown menus
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Dropdown arrow/caret
|
|
7
|
+
.caret {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
width: 0;
|
|
10
|
+
height: 0;
|
|
11
|
+
margin-left: 2px;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
border-top: $caret-width-base dashed;
|
|
14
|
+
border-top: $caret-width-base solid \9; // IE8
|
|
15
|
+
border-right: $caret-width-base solid transparent;
|
|
16
|
+
border-left: $caret-width-base solid transparent;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// The dropdown wrapper (div)
|
|
20
|
+
.dropup,
|
|
21
|
+
.dropdown {
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Prevent the focus on the dropdown toggle when closing dropdowns
|
|
26
|
+
.dropdown-toggle:focus {
|
|
27
|
+
outline: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// The dropdown menu (ul)
|
|
31
|
+
.dropdown-menu {
|
|
32
|
+
position: absolute;
|
|
33
|
+
top: 100%;
|
|
34
|
+
left: 0;
|
|
35
|
+
z-index: $zindex-dropdown;
|
|
36
|
+
display: none; // none by default, but block on "open" of the menu
|
|
37
|
+
float: left;
|
|
38
|
+
min-width: 160px;
|
|
39
|
+
padding: 5px 0;
|
|
40
|
+
margin: 2px 0 0; // override default ul
|
|
41
|
+
list-style: none;
|
|
42
|
+
font-size: $font-size-base;
|
|
43
|
+
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
44
|
+
background-color: $dropdown-bg;
|
|
45
|
+
border: 1px solid $dropdown-fallback-border; // IE8 fallback
|
|
46
|
+
border: 1px solid $dropdown-border;
|
|
47
|
+
border-radius: $border-radius-base;
|
|
48
|
+
@include box-shadow(0 6px 12px rgba(0,0,0,.175));
|
|
49
|
+
background-clip: padding-box;
|
|
50
|
+
|
|
51
|
+
// Aligns the dropdown menu to right
|
|
52
|
+
//
|
|
53
|
+
// Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
|
|
54
|
+
&.pull-right {
|
|
55
|
+
right: 0;
|
|
56
|
+
left: auto;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Dividers (basically an hr) within the dropdown
|
|
60
|
+
.divider {
|
|
61
|
+
@include nav-divider($dropdown-divider-bg);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Links within the dropdown menu
|
|
65
|
+
> li > a {
|
|
66
|
+
display: block;
|
|
67
|
+
padding: 3px 20px;
|
|
68
|
+
clear: both;
|
|
69
|
+
font-weight: normal;
|
|
70
|
+
line-height: $line-height-base;
|
|
71
|
+
color: $dropdown-link-color;
|
|
72
|
+
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// Hover/Focus state
|
|
77
|
+
.dropdown-menu > li > a {
|
|
78
|
+
&:hover,
|
|
79
|
+
&:focus {
|
|
80
|
+
text-decoration: none;
|
|
81
|
+
color: $dropdown-link-hover-color;
|
|
82
|
+
background-color: $dropdown-link-hover-bg;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// Active state
|
|
87
|
+
.dropdown-menu > .active > a {
|
|
88
|
+
&,
|
|
89
|
+
&:hover,
|
|
90
|
+
&:focus {
|
|
91
|
+
color: $dropdown-link-active-color;
|
|
92
|
+
text-decoration: none;
|
|
93
|
+
outline: 0;
|
|
94
|
+
background-color: $dropdown-link-active-bg;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// Disabled state
|
|
99
|
+
//
|
|
100
|
+
// Gray out text and ensure the hover/focus state remains gray
|
|
101
|
+
|
|
102
|
+
.dropdown-menu > .disabled > a {
|
|
103
|
+
&,
|
|
104
|
+
&:hover,
|
|
105
|
+
&:focus {
|
|
106
|
+
color: $dropdown-link-disabled-color;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Nuke hover/focus effects
|
|
110
|
+
&:hover,
|
|
111
|
+
&:focus {
|
|
112
|
+
text-decoration: none;
|
|
113
|
+
background-color: transparent;
|
|
114
|
+
background-image: none; // Remove CSS gradient
|
|
115
|
+
@include reset-filter;
|
|
116
|
+
cursor: $cursor-disabled;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Open state for the dropdown
|
|
121
|
+
.open {
|
|
122
|
+
// Show the menu
|
|
123
|
+
> .dropdown-menu {
|
|
124
|
+
display: block;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Remove the outline when :focus is triggered
|
|
128
|
+
> a {
|
|
129
|
+
outline: 0;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// Menu positioning
|
|
134
|
+
//
|
|
135
|
+
// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
|
|
136
|
+
// menu with the parent.
|
|
137
|
+
.dropdown-menu-right {
|
|
138
|
+
left: auto; // Reset the default from `.dropdown-menu`
|
|
139
|
+
right: 0;
|
|
140
|
+
}
|
|
141
|
+
// With v3, we enabled auto-flipping if you have a dropdown within a right
|
|
142
|
+
// aligned nav component. To enable the undoing of that, we provide an override
|
|
143
|
+
// to restore the default dropdown menu alignment.
|
|
144
|
+
//
|
|
145
|
+
// This is only for left-aligning a dropdown menu within a `.navbar-right` or
|
|
146
|
+
// `.pull-right` nav component.
|
|
147
|
+
.dropdown-menu-left {
|
|
148
|
+
left: 0;
|
|
149
|
+
right: auto;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// Dropdown section headers
|
|
153
|
+
.dropdown-header {
|
|
154
|
+
display: block;
|
|
155
|
+
padding: 3px 20px;
|
|
156
|
+
font-size: $font-size-small;
|
|
157
|
+
line-height: $line-height-base;
|
|
158
|
+
color: $dropdown-header-color;
|
|
159
|
+
white-space: nowrap; // as with > li > a
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// Backdrop to catch body clicks on mobile, etc.
|
|
163
|
+
.dropdown-backdrop {
|
|
164
|
+
position: fixed;
|
|
165
|
+
left: 0;
|
|
166
|
+
right: 0;
|
|
167
|
+
bottom: 0;
|
|
168
|
+
top: 0;
|
|
169
|
+
z-index: ($zindex-dropdown - 10);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// Right aligned dropdowns
|
|
173
|
+
.pull-right > .dropdown-menu {
|
|
174
|
+
right: 0;
|
|
175
|
+
left: auto;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
179
|
+
//
|
|
180
|
+
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
|
181
|
+
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
|
182
|
+
|
|
183
|
+
.dropup,
|
|
184
|
+
.navbar-fixed-bottom .dropdown {
|
|
185
|
+
// Reverse the caret
|
|
186
|
+
.caret {
|
|
187
|
+
border-top: 0;
|
|
188
|
+
border-bottom: $caret-width-base dashed;
|
|
189
|
+
border-bottom: $caret-width-base solid \9; // IE8
|
|
190
|
+
content: "";
|
|
191
|
+
}
|
|
192
|
+
// Different positioning for bottom up menu
|
|
193
|
+
.dropdown-menu {
|
|
194
|
+
top: auto;
|
|
195
|
+
bottom: 100%;
|
|
196
|
+
margin-bottom: 2px;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
// Component alignment
|
|
202
|
+
//
|
|
203
|
+
// Reiterate per navbar.less and the modified component alignment there.
|
|
204
|
+
|
|
205
|
+
@media (min-width: $grid-float-breakpoint) {
|
|
206
|
+
.navbar-right {
|
|
207
|
+
.dropdown-menu {
|
|
208
|
+
right: 0; left: auto;
|
|
209
|
+
}
|
|
210
|
+
// Necessary for overrides of the default right aligned menu.
|
|
211
|
+
// Will remove come v4 in all likelihood.
|
|
212
|
+
.dropdown-menu-left {
|
|
213
|
+
left: 0; right: auto;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|