locomotivecms_wagon 2.4.1 → 3.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/generators/blank/app/assets/.babelrc +3 -0
- data/generators/blank/app/assets/fonts/.empty_directory +1 -0
- data/generators/blank/app/assets/javascripts/app.js +19 -0
- data/generators/blank/app/assets/javascripts/sections/_manager.js +94 -0
- data/generators/blank/app/assets/javascripts/sections/index.js +5 -0
- data/generators/blank/app/assets/package.json.tt +35 -0
- data/generators/blank/app/assets/postcss.config.js +6 -0
- data/generators/blank/app/assets/stylesheets/app.scss +1 -0
- data/generators/blank/app/assets/webpack.common.js +47 -0
- data/generators/blank/app/assets/webpack.dev.js +7 -0
- data/generators/blank/app/assets/webpack.prod.js +12 -0
- data/generators/blank/app/views/pages/404.liquid +1 -1
- data/generators/blank/app/views/pages/index.liquid +7 -15
- data/generators/blank/app/views/pages/layouts/default.liquid +22 -0
- data/generators/blank/app/views/sections/.empty_directory +1 -0
- data/generators/page/template.liquid.tt +11 -0
- data/generators/section/%type%.js.tt +26 -0
- data/generators/section/template.liquid.tt +183 -0
- data/lib/locomotive/wagon.rb +3 -2
- data/lib/locomotive/wagon/cli.rb +38 -10
- data/lib/locomotive/wagon/commands/clone_command.rb +3 -0
- data/lib/locomotive/wagon/commands/concerns/deploy_file_concern.rb +1 -1
- data/lib/locomotive/wagon/commands/concerns/steam_concern.rb +1 -1
- data/lib/locomotive/wagon/commands/loggers/sync_logger.rb +7 -0
- data/lib/locomotive/wagon/commands/pull_command.rb +1 -1
- data/lib/locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb +19 -10
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_base_command.rb +7 -3
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb +11 -2
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_types_command.rb +1 -1
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb +24 -5
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_translations_command.rb +6 -1
- data/lib/locomotive/wagon/commands/push_command.rb +6 -4
- data/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb +6 -1
- data/lib/locomotive/wagon/commands/push_sub_commands/push_sections_command.rb +23 -0
- data/lib/locomotive/wagon/commands/push_sub_commands/push_site_command.rb +2 -0
- data/lib/locomotive/wagon/commands/serve_command.rb +1 -1
- data/lib/locomotive/wagon/commands/sync_command.rb +1 -1
- data/lib/locomotive/wagon/commands/sync_sub_commands/concerns/base_concern.rb +2 -2
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_pages_command.rb +48 -37
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_site_command.rb +15 -12
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_translations_command.rb +12 -0
- data/lib/locomotive/wagon/decorators/concerns/persist_assets_concern.rb +1 -1
- data/lib/locomotive/wagon/decorators/content_entry_decorator.rb +1 -1
- data/lib/locomotive/wagon/decorators/content_type_decorator.rb +5 -1
- data/lib/locomotive/wagon/decorators/content_type_field_decorator.rb +5 -1
- data/lib/locomotive/wagon/decorators/page_decorator.rb +11 -1
- data/lib/locomotive/wagon/decorators/section_decorator.rb +35 -0
- data/lib/locomotive/wagon/decorators/site_decorator.rb +12 -4
- data/lib/locomotive/wagon/decorators/theme_asset_decorator.rb +2 -2
- data/lib/locomotive/wagon/generators/page.rb +2 -12
- data/lib/locomotive/wagon/generators/section.rb +82 -0
- data/lib/locomotive/wagon/generators/site.rb +0 -3
- data/lib/locomotive/wagon/generators/site/base.rb +11 -28
- data/lib/locomotive/wagon/generators/site/blank.rb +1 -17
- data/lib/locomotive/wagon/generators/site/cloned.rb +1 -4
- data/lib/locomotive/wagon/generators/snippet.rb +3 -11
- data/lib/locomotive/wagon/middlewares/error_page.rb +26 -6
- data/lib/locomotive/wagon/tools/listen.rb +3 -3
- data/lib/locomotive/wagon/version.rb +1 -1
- data/locomotivecms_wagon.gemspec +7 -6
- data/spec/fixtures/cassettes/authenticate.yml +47 -47
- data/spec/fixtures/cassettes/delete.yml +261 -261
- data/spec/fixtures/cassettes/push.yml +4571 -1783
- data/spec/fixtures/cassettes/sync.yml +11483 -0
- data/spec/integration/cli_spec.rb +1 -1
- data/spec/integration/commands/delete_command_spec.rb +1 -2
- data/spec/integration/commands/push_command_spec.rb +4 -4
- data/spec/integration/commands/sync_command_spec.rb +54 -0
- data/spec/integration/generators/page_spec.rb +1 -1
- data/spec/unit/commands/pull_sub_commands/concerns/assets_concern_spec.rb +3 -3
- metadata +55 -306
- data/generators/blank/app/views/pages/404.liquid.haml +0 -11
- data/generators/blank/app/views/pages/index.liquid.haml +0 -16
- data/generators/bootstrap/Gemfile.tt +0 -24
- data/generators/bootstrap/Guardfile +0 -22
- data/generators/bootstrap/app/content_types/.empty_directory +0 -1
- data/generators/bootstrap/app/views/pages/404.liquid +0 -18
- data/generators/bootstrap/app/views/pages/404.liquid.haml +0 -14
- data/generators/bootstrap/app/views/pages/index.liquid +0 -31
- data/generators/bootstrap/app/views/pages/index.liquid.haml +0 -25
- data/generators/bootstrap/app/views/pages/layouts/default.liquid +0 -31
- data/generators/bootstrap/app/views/pages/layouts/default.liquid.haml +0 -30
- data/generators/bootstrap/app/views/pages/layouts/simple.liquid +0 -36
- data/generators/bootstrap/app/views/pages/layouts/simple.liquid.haml +0 -29
- data/generators/bootstrap/app/views/snippets/footer.liquid +0 -5
- data/generators/bootstrap/app/views/snippets/footer.liquid.haml +0 -3
- data/generators/bootstrap/app/views/snippets/nav.liquid +0 -26
- data/generators/bootstrap/app/views/snippets/nav.liquid.haml +0 -19
- data/generators/bootstrap/config/deploy.yml +0 -16
- data/generators/bootstrap/config/metafields_schema.yml +0 -56
- data/generators/bootstrap/config/site.yml.tt +0 -48
- data/generators/bootstrap/config/translations.yml +0 -8
- data/generators/bootstrap/data/.empty_directory +0 -1
- data/generators/bootstrap/icon.png +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg +0 -288
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/generators/bootstrap/public/images/favicon.png +0 -0
- data/generators/bootstrap/public/javascripts/application.js +0 -2
- data/generators/bootstrap/public/javascripts/bootstrap.min.js +0 -7
- data/generators/bootstrap/public/javascripts/bootstrap/affix.js +0 -162
- data/generators/bootstrap/public/javascripts/bootstrap/alert.js +0 -94
- data/generators/bootstrap/public/javascripts/bootstrap/button.js +0 -120
- data/generators/bootstrap/public/javascripts/bootstrap/carousel.js +0 -237
- data/generators/bootstrap/public/javascripts/bootstrap/collapse.js +0 -211
- data/generators/bootstrap/public/javascripts/bootstrap/dropdown.js +0 -165
- data/generators/bootstrap/public/javascripts/bootstrap/modal.js +0 -337
- data/generators/bootstrap/public/javascripts/bootstrap/popover.js +0 -108
- data/generators/bootstrap/public/javascripts/bootstrap/scrollspy.js +0 -172
- data/generators/bootstrap/public/javascripts/bootstrap/tab.js +0 -155
- data/generators/bootstrap/public/javascripts/bootstrap/tooltip.js +0 -514
- data/generators/bootstrap/public/javascripts/bootstrap/transition.js +0 -59
- data/generators/bootstrap/public/javascripts/jquery.min.js +0 -5
- data/generators/bootstrap/public/stylesheets/application.css +0 -7
- data/generators/bootstrap/public/stylesheets/application.scss +0 -7
- data/generators/bootstrap/public/stylesheets/bootstrap.css +0 -5
- data/generators/bootstrap/public/stylesheets/bootstrap.scss +0 -63
- data/generators/bootstrap/public/stylesheets/bootstrap/_alerts.scss +0 -73
- data/generators/bootstrap/public/stylesheets/bootstrap/_badges.scss +0 -68
- data/generators/bootstrap/public/stylesheets/bootstrap/_breadcrumbs.scss +0 -28
- data/generators/bootstrap/public/stylesheets/bootstrap/_button-groups.scss +0 -244
- data/generators/bootstrap/public/stylesheets/bootstrap/_buttons.scss +0 -168
- data/generators/bootstrap/public/stylesheets/bootstrap/_carousel.scss +0 -269
- data/generators/bootstrap/public/stylesheets/bootstrap/_close.scss +0 -36
- data/generators/bootstrap/public/stylesheets/bootstrap/_code.scss +0 -69
- data/generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss +0 -37
- data/generators/bootstrap/public/stylesheets/bootstrap/_dropdowns.scss +0 -216
- data/generators/bootstrap/public/stylesheets/bootstrap/_forms.scss +0 -611
- data/generators/bootstrap/public/stylesheets/bootstrap/_glyphicons.scss +0 -307
- data/generators/bootstrap/public/stylesheets/bootstrap/_grid.scss +0 -84
- data/generators/bootstrap/public/stylesheets/bootstrap/_input-groups.scss +0 -167
- data/generators/bootstrap/public/stylesheets/bootstrap/_jumbotron.scss +0 -52
- data/generators/bootstrap/public/stylesheets/bootstrap/_labels.scss +0 -66
- data/generators/bootstrap/public/stylesheets/bootstrap/_list-group.scss +0 -130
- data/generators/bootstrap/public/stylesheets/bootstrap/_media.scss +0 -66
- data/generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss +0 -40
- data/generators/bootstrap/public/stylesheets/bootstrap/_modals.scss +0 -150
- data/generators/bootstrap/public/stylesheets/bootstrap/_navbar.scss +0 -662
- data/generators/bootstrap/public/stylesheets/bootstrap/_navs.scss +0 -242
- data/generators/bootstrap/public/stylesheets/bootstrap/_normalize.scss +0 -424
- data/generators/bootstrap/public/stylesheets/bootstrap/_pager.scss +0 -54
- data/generators/bootstrap/public/stylesheets/bootstrap/_pagination.scss +0 -89
- data/generators/bootstrap/public/stylesheets/bootstrap/_panels.scss +0 -271
- data/generators/bootstrap/public/stylesheets/bootstrap/_popovers.scss +0 -131
- data/generators/bootstrap/public/stylesheets/bootstrap/_print.scss +0 -101
- data/generators/bootstrap/public/stylesheets/bootstrap/_progress-bars.scss +0 -87
- data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss +0 -35
- data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss +0 -179
- data/generators/bootstrap/public/stylesheets/bootstrap/_scaffolding.scss +0 -161
- data/generators/bootstrap/public/stylesheets/bootstrap/_tables.scss +0 -234
- data/generators/bootstrap/public/stylesheets/bootstrap/_theme.scss +0 -291
- data/generators/bootstrap/public/stylesheets/bootstrap/_thumbnails.scss +0 -38
- data/generators/bootstrap/public/stylesheets/bootstrap/_tooltip.scss +0 -101
- data/generators/bootstrap/public/stylesheets/bootstrap/_type.scss +0 -298
- data/generators/bootstrap/public/stylesheets/bootstrap/_utilities.scss +0 -55
- data/generators/bootstrap/public/stylesheets/bootstrap/_variables.scss +0 -872
- data/generators/bootstrap/public/stylesheets/bootstrap/_wells.scss +0 -29
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss +0 -14
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss +0 -18
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss +0 -68
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss +0 -7
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss +0 -22
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss +0 -88
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss +0 -58
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss +0 -122
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss +0 -21
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss +0 -33
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss +0 -32
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss +0 -24
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss +0 -24
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss +0 -18
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss +0 -6
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss +0 -9
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss +0 -28
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +0 -222
- data/generators/foundation/Gemfile.tt +0 -24
- data/generators/foundation/Guardfile +0 -22
- data/generators/foundation/app/content_types/.gitkeep +0 -0
- data/generators/foundation/app/views/pages/404.liquid +0 -11
- data/generators/foundation/app/views/pages/404.liquid.haml +0 -11
- data/generators/foundation/app/views/pages/index.liquid +0 -172
- data/generators/foundation/app/views/pages/index.liquid.haml +0 -144
- data/generators/foundation/app/views/snippets/.gitkeep +0 -0
- data/generators/foundation/config/deploy.yml +0 -16
- data/generators/foundation/config/metafields_schema.yml +0 -56
- data/generators/foundation/config/site.yml +0 -48
- data/generators/foundation/config/translations.yml +0 -8
- data/generators/foundation/data/.gitkeep +0 -0
- data/generators/foundation/log/.gitkeep +0 -0
- data/generators/foundation/public/images/.gitkeep +0 -0
- data/generators/foundation/public/javascripts/app.js +0 -1
- data/generators/foundation/public/javascripts/vendor/foundation.js +0 -11788
- data/generators/foundation/public/javascripts/vendor/foundation.min.js +0 -5
- data/generators/foundation/public/javascripts/vendor/what-input.js +0 -212
- data/generators/foundation/public/javascripts/vendor/what-input.min.js +0 -1
- data/generators/foundation/public/stylesheets/_settings.scss +0 -869
- data/generators/foundation/public/stylesheets/app.css +0 -0
- data/generators/foundation/public/stylesheets/app.scss +0 -52
- data/generators/foundation/public/stylesheets/foundation.css +0 -5805
- data/generators/foundation/public/stylesheets/foundation6/_global.scss +0 -249
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss +0 -171
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion.scss +0 -155
- data/generators/foundation/public/stylesheets/foundation6/components/_badge.scss +0 -63
- data/generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss +0 -117
- data/generators/foundation/public/stylesheets/foundation6/components/_button-group.scss +0 -253
- data/generators/foundation/public/stylesheets/foundation6/components/_button.scss +0 -385
- data/generators/foundation/public/stylesheets/foundation6/components/_callout.scss +0 -106
- data/generators/foundation/public/stylesheets/foundation6/components/_card.scss +0 -129
- data/generators/foundation/public/stylesheets/foundation6/components/_close-button.scss +0 -102
- data/generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss +0 -142
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss +0 -274
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss +0 -79
- data/generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss +0 -1
- data/generators/foundation/public/stylesheets/foundation6/components/_flex.scss +0 -117
- data/generators/foundation/public/stylesheets/foundation6/components/_float.scss +0 -27
- data/generators/foundation/public/stylesheets/foundation6/components/_label.scss +0 -64
- data/generators/foundation/public/stylesheets/foundation6/components/_media-object.scss +0 -114
- data/generators/foundation/public/stylesheets/foundation6/components/_menu-icon.scss +0 -9
- data/generators/foundation/public/stylesheets/foundation6/components/_menu.scss +0 -495
- data/generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss +0 -505
- data/generators/foundation/public/stylesheets/foundation6/components/_orbit.scss +0 -196
- data/generators/foundation/public/stylesheets/foundation6/components/_pagination.scss +0 -193
- data/generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss +0 -64
- data/generators/foundation/public/stylesheets/foundation6/components/_responsive-embed.scss +0 -70
- data/generators/foundation/public/stylesheets/foundation6/components/_reveal.scss +0 -180
- data/generators/foundation/public/stylesheets/foundation6/components/_slider.scss +0 -137
- data/generators/foundation/public/stylesheets/foundation6/components/_sticky.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/components/_switch.scss +0 -247
- data/generators/foundation/public/stylesheets/foundation6/components/_table.scss +0 -330
- data/generators/foundation/public/stylesheets/foundation6/components/_tabs.scss +0 -196
- data/generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss +0 -67
- data/generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss +0 -84
- data/generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss +0 -160
- data/generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss +0 -175
- data/generators/foundation/public/stylesheets/foundation6/components/_visibility.scss +0 -132
- data/generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/forms/_error.scss +0 -88
- data/generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss +0 -53
- data/generators/foundation/public/stylesheets/foundation6/forms/_forms.scss +0 -34
- data/generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss +0 -30
- data/generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss +0 -142
- data/generators/foundation/public/stylesheets/foundation6/forms/_label.scss +0 -50
- data/generators/foundation/public/stylesheets/foundation6/forms/_meter.scss +0 -116
- data/generators/foundation/public/stylesheets/foundation6/forms/_progress.scss +0 -94
- data/generators/foundation/public/stylesheets/foundation6/forms/_range.scss +0 -149
- data/generators/foundation/public/stylesheets/foundation6/forms/_select.scss +0 -86
- data/generators/foundation/public/stylesheets/foundation6/forms/_text.scss +0 -179
- data/generators/foundation/public/stylesheets/foundation6/foundation.scss +0 -133
- data/generators/foundation/public/stylesheets/foundation6/grid/_classes.scss +0 -176
- data/generators/foundation/public/stylesheets/foundation6/grid/_column.scss +0 -112
- data/generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss +0 -259
- data/generators/foundation/public/stylesheets/foundation6/grid/_grid.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss +0 -82
- data/generators/foundation/public/stylesheets/foundation6/grid/_layout.scss +0 -76
- data/generators/foundation/public/stylesheets/foundation6/grid/_position.scss +0 -76
- data/generators/foundation/public/stylesheets/foundation6/grid/_row.scss +0 -99
- data/generators/foundation/public/stylesheets/foundation6/grid/_size.scss +0 -24
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss +0 -109
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss +0 -61
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss +0 -32
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss +0 -65
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss +0 -13
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss +0 -29
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss +0 -43
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss +0 -42
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss +0 -7
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss +0 -136
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss +0 -23
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss +0 -45
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss +0 -7
- data/generators/foundation/public/stylesheets/foundation6/prototype/_arrow.scss +0 -36
- data/generators/foundation/public/stylesheets/foundation6/prototype/_border-box.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/prototype/_border-none.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/prototype/_bordered.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/prototype/_box.scss +0 -23
- data/generators/foundation/public/stylesheets/foundation6/prototype/_display.scss +0 -50
- data/generators/foundation/public/stylesheets/foundation6/prototype/_font-styling.scss +0 -95
- data/generators/foundation/public/stylesheets/foundation6/prototype/_list-style-type.scss +0 -95
- data/generators/foundation/public/stylesheets/foundation6/prototype/_overflow.scss +0 -72
- data/generators/foundation/public/stylesheets/foundation6/prototype/_position.scss +0 -114
- data/generators/foundation/public/stylesheets/foundation6/prototype/_prototype.scss +0 -87
- data/generators/foundation/public/stylesheets/foundation6/prototype/_relation.scss +0 -157
- data/generators/foundation/public/stylesheets/foundation6/prototype/_rotate.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/prototype/_rounded.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/prototype/_separator.scss +0 -96
- data/generators/foundation/public/stylesheets/foundation6/prototype/_shadow.scss +0 -43
- data/generators/foundation/public/stylesheets/foundation6/prototype/_sizing.scss +0 -73
- data/generators/foundation/public/stylesheets/foundation6/prototype/_spacing.scss +0 -204
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-decoration.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-transformation.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-utilities.scss +0 -88
- data/generators/foundation/public/stylesheets/foundation6/settings/_settings.scss +0 -869
- data/generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss +0 -22
- data/generators/foundation/public/stylesheets/foundation6/typography/_base.scss +0 -509
- data/generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss +0 -80
- data/generators/foundation/public/stylesheets/foundation6/typography/_print.scss +0 -86
- data/generators/foundation/public/stylesheets/foundation6/typography/_typography.scss +0 -26
- data/generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss +0 -348
- data/generators/foundation/public/stylesheets/foundation6/util/_color.scss +0 -129
- data/generators/foundation/public/stylesheets/foundation6/util/_direction.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/util/_flex.scss +0 -85
- data/generators/foundation/public/stylesheets/foundation6/util/_math.scss +0 -72
- data/generators/foundation/public/stylesheets/foundation6/util/_mixins.scss +0 -313
- data/generators/foundation/public/stylesheets/foundation6/util/_selector.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/util/_typography.scss +0 -26
- data/generators/foundation/public/stylesheets/foundation6/util/_unit.scss +0 -152
- data/generators/foundation/public/stylesheets/foundation6/util/_util.scss +0 -14
- data/generators/foundation/public/stylesheets/foundation6/util/_value.scss +0 -160
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/_normalize.scss +0 -3
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_import-now.scss +0 -11
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +0 -676
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_variables.scss +0 -36
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +0 -61
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_contain.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_purge.scss +0 -38
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_remove.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_replace.scss +0 -46
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_to-list.scss +0 -27
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +0 -25
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_true.scss +0 -13
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_cell.scss +0 -169
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_classes.scss +0 -476
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_collapse.scss +0 -74
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_frame.scss +0 -85
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_grid.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_gutters.scss +0 -45
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_layout.scss +0 -33
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_position.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_xy-grid.scss +0 -51
- data/generators/page/template.liquid.haml.tt +0 -47
- data/generators/snippet/template.liquid.haml.tt +0 -4
- data/lib/locomotive/wagon/generators/site/bootstrap.rb +0 -52
- data/lib/locomotive/wagon/generators/site/foundation.rb +0 -44
- data/lib/locomotive/wagon/generators/site/line_case.rb +0 -20
@@ -1,69 +0,0 @@
|
|
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
|
-
}
|
@@ -1,37 +0,0 @@
|
|
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
|
-
}
|
@@ -1,216 +0,0 @@
|
|
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
|
-
}
|
@@ -1,611 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Forms
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Normalize non-controls
|
7
|
-
//
|
8
|
-
// Restyle and baseline non-control form elements.
|
9
|
-
|
10
|
-
fieldset {
|
11
|
-
padding: 0;
|
12
|
-
margin: 0;
|
13
|
-
border: 0;
|
14
|
-
// Chrome and Firefox set a `min-width: min-content;` on fieldsets,
|
15
|
-
// so we reset that to ensure it behaves more like a standard block element.
|
16
|
-
// See https://github.com/twbs/bootstrap/issues/12359.
|
17
|
-
min-width: 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
legend {
|
21
|
-
display: block;
|
22
|
-
width: 100%;
|
23
|
-
padding: 0;
|
24
|
-
margin-bottom: $line-height-computed;
|
25
|
-
font-size: ($font-size-base * 1.5);
|
26
|
-
line-height: inherit;
|
27
|
-
color: $legend-color;
|
28
|
-
border: 0;
|
29
|
-
border-bottom: 1px solid $legend-border-color;
|
30
|
-
}
|
31
|
-
|
32
|
-
label {
|
33
|
-
display: inline-block;
|
34
|
-
max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
|
35
|
-
margin-bottom: 5px;
|
36
|
-
font-weight: bold;
|
37
|
-
}
|
38
|
-
|
39
|
-
|
40
|
-
// Normalize form controls
|
41
|
-
//
|
42
|
-
// While most of our form styles require extra classes, some basic normalization
|
43
|
-
// is required to ensure optimum display with or without those classes to better
|
44
|
-
// address browser inconsistencies.
|
45
|
-
|
46
|
-
// Override content-box in Normalize (* isn't specific enough)
|
47
|
-
input[type="search"] {
|
48
|
-
@include box-sizing(border-box);
|
49
|
-
}
|
50
|
-
|
51
|
-
// Position radios and checkboxes better
|
52
|
-
input[type="radio"],
|
53
|
-
input[type="checkbox"] {
|
54
|
-
margin: 4px 0 0;
|
55
|
-
margin-top: 1px \9; // IE8-9
|
56
|
-
line-height: normal;
|
57
|
-
}
|
58
|
-
|
59
|
-
input[type="file"] {
|
60
|
-
display: block;
|
61
|
-
}
|
62
|
-
|
63
|
-
// Make range inputs behave like textual form controls
|
64
|
-
input[type="range"] {
|
65
|
-
display: block;
|
66
|
-
width: 100%;
|
67
|
-
}
|
68
|
-
|
69
|
-
// Make multiple select elements height not fixed
|
70
|
-
select[multiple],
|
71
|
-
select[size] {
|
72
|
-
height: auto;
|
73
|
-
}
|
74
|
-
|
75
|
-
// Focus for file, radio, and checkbox
|
76
|
-
input[type="file"]:focus,
|
77
|
-
input[type="radio"]:focus,
|
78
|
-
input[type="checkbox"]:focus {
|
79
|
-
@include tab-focus;
|
80
|
-
}
|
81
|
-
|
82
|
-
// Adjust output element
|
83
|
-
output {
|
84
|
-
display: block;
|
85
|
-
padding-top: ($padding-base-vertical + 1);
|
86
|
-
font-size: $font-size-base;
|
87
|
-
line-height: $line-height-base;
|
88
|
-
color: $input-color;
|
89
|
-
}
|
90
|
-
|
91
|
-
|
92
|
-
// Common form controls
|
93
|
-
//
|
94
|
-
// Shared size and type resets for form controls. Apply `.form-control` to any
|
95
|
-
// of the following form controls:
|
96
|
-
//
|
97
|
-
// select
|
98
|
-
// textarea
|
99
|
-
// input[type="text"]
|
100
|
-
// input[type="password"]
|
101
|
-
// input[type="datetime"]
|
102
|
-
// input[type="datetime-local"]
|
103
|
-
// input[type="date"]
|
104
|
-
// input[type="month"]
|
105
|
-
// input[type="time"]
|
106
|
-
// input[type="week"]
|
107
|
-
// input[type="number"]
|
108
|
-
// input[type="email"]
|
109
|
-
// input[type="url"]
|
110
|
-
// input[type="search"]
|
111
|
-
// input[type="tel"]
|
112
|
-
// input[type="color"]
|
113
|
-
|
114
|
-
.form-control {
|
115
|
-
display: block;
|
116
|
-
width: 100%;
|
117
|
-
height: $input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
118
|
-
padding: $padding-base-vertical $padding-base-horizontal;
|
119
|
-
font-size: $font-size-base;
|
120
|
-
line-height: $line-height-base;
|
121
|
-
color: $input-color;
|
122
|
-
background-color: $input-bg;
|
123
|
-
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
124
|
-
border: 1px solid $input-border;
|
125
|
-
border-radius: $input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
|
126
|
-
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
|
127
|
-
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
|
128
|
-
|
129
|
-
// Customize the `:focus` state to imitate native WebKit styles.
|
130
|
-
@include form-control-focus;
|
131
|
-
|
132
|
-
// Placeholder
|
133
|
-
@include placeholder;
|
134
|
-
|
135
|
-
// Disabled and read-only inputs
|
136
|
-
//
|
137
|
-
// HTML5 says that controls under a fieldset > legend:first-child won't be
|
138
|
-
// disabled if the fieldset is disabled. Due to implementation difficulty, we
|
139
|
-
// don't honor that edge case; we style them as disabled anyway.
|
140
|
-
&[disabled],
|
141
|
-
&[readonly],
|
142
|
-
fieldset[disabled] & {
|
143
|
-
background-color: $input-bg-disabled;
|
144
|
-
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
|
145
|
-
}
|
146
|
-
|
147
|
-
&[disabled],
|
148
|
-
fieldset[disabled] & {
|
149
|
-
cursor: $cursor-disabled;
|
150
|
-
}
|
151
|
-
|
152
|
-
// [converter] extracted textarea& to textarea.form-control
|
153
|
-
}
|
154
|
-
|
155
|
-
// Reset height for `textarea`s
|
156
|
-
textarea.form-control {
|
157
|
-
height: auto;
|
158
|
-
}
|
159
|
-
|
160
|
-
|
161
|
-
// Search inputs in iOS
|
162
|
-
//
|
163
|
-
// This overrides the extra rounded corners on search inputs in iOS so that our
|
164
|
-
// `.form-control` class can properly style them. Note that this cannot simply
|
165
|
-
// be added to `.form-control` as it's not specific enough. For details, see
|
166
|
-
// https://github.com/twbs/bootstrap/issues/11586.
|
167
|
-
|
168
|
-
input[type="search"] {
|
169
|
-
-webkit-appearance: none;
|
170
|
-
}
|
171
|
-
|
172
|
-
|
173
|
-
// Special styles for iOS temporal inputs
|
174
|
-
//
|
175
|
-
// In Mobile Safari, setting `display: block` on temporal inputs causes the
|
176
|
-
// text within the input to become vertically misaligned. As a workaround, we
|
177
|
-
// set a pixel line-height that matches the given height of the input, but only
|
178
|
-
// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
|
179
|
-
//
|
180
|
-
// Note that as of 8.3, iOS doesn't support `datetime` or `week`.
|
181
|
-
|
182
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
183
|
-
input[type="date"],
|
184
|
-
input[type="time"],
|
185
|
-
input[type="datetime-local"],
|
186
|
-
input[type="month"] {
|
187
|
-
&.form-control {
|
188
|
-
line-height: $input-height-base;
|
189
|
-
}
|
190
|
-
|
191
|
-
&.input-sm,
|
192
|
-
.input-group-sm & {
|
193
|
-
line-height: $input-height-small;
|
194
|
-
}
|
195
|
-
|
196
|
-
&.input-lg,
|
197
|
-
.input-group-lg & {
|
198
|
-
line-height: $input-height-large;
|
199
|
-
}
|
200
|
-
}
|
201
|
-
}
|
202
|
-
|
203
|
-
|
204
|
-
// Form groups
|
205
|
-
//
|
206
|
-
// Designed to help with the organization and spacing of vertical forms. For
|
207
|
-
// horizontal forms, use the predefined grid classes.
|
208
|
-
|
209
|
-
.form-group {
|
210
|
-
margin-bottom: $form-group-margin-bottom;
|
211
|
-
}
|
212
|
-
|
213
|
-
|
214
|
-
// Checkboxes and radios
|
215
|
-
//
|
216
|
-
// Indent the labels to position radios/checkboxes as hanging controls.
|
217
|
-
|
218
|
-
.radio,
|
219
|
-
.checkbox {
|
220
|
-
position: relative;
|
221
|
-
display: block;
|
222
|
-
margin-top: 10px;
|
223
|
-
margin-bottom: 10px;
|
224
|
-
|
225
|
-
label {
|
226
|
-
min-height: $line-height-computed; // Ensure the input doesn't jump when there is no text
|
227
|
-
padding-left: 20px;
|
228
|
-
margin-bottom: 0;
|
229
|
-
font-weight: normal;
|
230
|
-
cursor: pointer;
|
231
|
-
}
|
232
|
-
}
|
233
|
-
.radio input[type="radio"],
|
234
|
-
.radio-inline input[type="radio"],
|
235
|
-
.checkbox input[type="checkbox"],
|
236
|
-
.checkbox-inline input[type="checkbox"] {
|
237
|
-
position: absolute;
|
238
|
-
margin-left: -20px;
|
239
|
-
margin-top: 4px \9;
|
240
|
-
}
|
241
|
-
|
242
|
-
.radio + .radio,
|
243
|
-
.checkbox + .checkbox {
|
244
|
-
margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
|
245
|
-
}
|
246
|
-
|
247
|
-
// Radios and checkboxes on same line
|
248
|
-
.radio-inline,
|
249
|
-
.checkbox-inline {
|
250
|
-
position: relative;
|
251
|
-
display: inline-block;
|
252
|
-
padding-left: 20px;
|
253
|
-
margin-bottom: 0;
|
254
|
-
vertical-align: middle;
|
255
|
-
font-weight: normal;
|
256
|
-
cursor: pointer;
|
257
|
-
}
|
258
|
-
.radio-inline + .radio-inline,
|
259
|
-
.checkbox-inline + .checkbox-inline {
|
260
|
-
margin-top: 0;
|
261
|
-
margin-left: 10px; // space out consecutive inline controls
|
262
|
-
}
|
263
|
-
|
264
|
-
// Apply same disabled cursor tweak as for inputs
|
265
|
-
// Some special care is needed because <label>s don't inherit their parent's `cursor`.
|
266
|
-
//
|
267
|
-
// Note: Neither radios nor checkboxes can be readonly.
|
268
|
-
input[type="radio"],
|
269
|
-
input[type="checkbox"] {
|
270
|
-
&[disabled],
|
271
|
-
&.disabled,
|
272
|
-
fieldset[disabled] & {
|
273
|
-
cursor: $cursor-disabled;
|
274
|
-
}
|
275
|
-
}
|
276
|
-
// These classes are used directly on <label>s
|
277
|
-
.radio-inline,
|
278
|
-
.checkbox-inline {
|
279
|
-
&.disabled,
|
280
|
-
fieldset[disabled] & {
|
281
|
-
cursor: $cursor-disabled;
|
282
|
-
}
|
283
|
-
}
|
284
|
-
// These classes are used on elements with <label> descendants
|
285
|
-
.radio,
|
286
|
-
.checkbox {
|
287
|
-
&.disabled,
|
288
|
-
fieldset[disabled] & {
|
289
|
-
label {
|
290
|
-
cursor: $cursor-disabled;
|
291
|
-
}
|
292
|
-
}
|
293
|
-
}
|
294
|
-
|
295
|
-
|
296
|
-
// Static form control text
|
297
|
-
//
|
298
|
-
// Apply class to a `p` element to make any string of text align with labels in
|
299
|
-
// a horizontal form layout.
|
300
|
-
|
301
|
-
.form-control-static {
|
302
|
-
// Size it appropriately next to real form controls
|
303
|
-
padding-top: ($padding-base-vertical + 1);
|
304
|
-
padding-bottom: ($padding-base-vertical + 1);
|
305
|
-
// Remove default margin from `p`
|
306
|
-
margin-bottom: 0;
|
307
|
-
min-height: ($line-height-computed + $font-size-base);
|
308
|
-
|
309
|
-
&.input-lg,
|
310
|
-
&.input-sm {
|
311
|
-
padding-left: 0;
|
312
|
-
padding-right: 0;
|
313
|
-
}
|
314
|
-
}
|
315
|
-
|
316
|
-
|
317
|
-
// Form control sizing
|
318
|
-
//
|
319
|
-
// Build on `.form-control` with modifier classes to decrease or increase the
|
320
|
-
// height and font-size of form controls.
|
321
|
-
//
|
322
|
-
// The `.form-group-* form-control` variations are sadly duplicated to avoid the
|
323
|
-
// issue documented in https://github.com/twbs/bootstrap/issues/15074.
|
324
|
-
|
325
|
-
@include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $input-border-radius-small);
|
326
|
-
.form-group-sm {
|
327
|
-
.form-control {
|
328
|
-
height: $input-height-small;
|
329
|
-
padding: $padding-small-vertical $padding-small-horizontal;
|
330
|
-
font-size: $font-size-small;
|
331
|
-
line-height: $line-height-small;
|
332
|
-
border-radius: $input-border-radius-small;
|
333
|
-
}
|
334
|
-
select.form-control {
|
335
|
-
height: $input-height-small;
|
336
|
-
line-height: $input-height-small;
|
337
|
-
}
|
338
|
-
textarea.form-control,
|
339
|
-
select[multiple].form-control {
|
340
|
-
height: auto;
|
341
|
-
}
|
342
|
-
.form-control-static {
|
343
|
-
height: $input-height-small;
|
344
|
-
min-height: ($line-height-computed + $font-size-small);
|
345
|
-
padding: ($padding-small-vertical + 1) $padding-small-horizontal;
|
346
|
-
font-size: $font-size-small;
|
347
|
-
line-height: $line-height-small;
|
348
|
-
}
|
349
|
-
}
|
350
|
-
|
351
|
-
@include input-size('.input-lg', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $input-border-radius-large);
|
352
|
-
.form-group-lg {
|
353
|
-
.form-control {
|
354
|
-
height: $input-height-large;
|
355
|
-
padding: $padding-large-vertical $padding-large-horizontal;
|
356
|
-
font-size: $font-size-large;
|
357
|
-
line-height: $line-height-large;
|
358
|
-
border-radius: $input-border-radius-large;
|
359
|
-
}
|
360
|
-
select.form-control {
|
361
|
-
height: $input-height-large;
|
362
|
-
line-height: $input-height-large;
|
363
|
-
}
|
364
|
-
textarea.form-control,
|
365
|
-
select[multiple].form-control {
|
366
|
-
height: auto;
|
367
|
-
}
|
368
|
-
.form-control-static {
|
369
|
-
height: $input-height-large;
|
370
|
-
min-height: ($line-height-computed + $font-size-large);
|
371
|
-
padding: ($padding-large-vertical + 1) $padding-large-horizontal;
|
372
|
-
font-size: $font-size-large;
|
373
|
-
line-height: $line-height-large;
|
374
|
-
}
|
375
|
-
}
|
376
|
-
|
377
|
-
|
378
|
-
// Form control feedback states
|
379
|
-
//
|
380
|
-
// Apply contextual and semantic states to individual form controls.
|
381
|
-
|
382
|
-
.has-feedback {
|
383
|
-
// Enable absolute positioning
|
384
|
-
position: relative;
|
385
|
-
|
386
|
-
// Ensure icons don't overlap text
|
387
|
-
.form-control {
|
388
|
-
padding-right: ($input-height-base * 1.25);
|
389
|
-
}
|
390
|
-
}
|
391
|
-
// Feedback icon (requires .glyphicon classes)
|
392
|
-
.form-control-feedback {
|
393
|
-
position: absolute;
|
394
|
-
top: 0;
|
395
|
-
right: 0;
|
396
|
-
z-index: 2; // Ensure icon is above input groups
|
397
|
-
display: block;
|
398
|
-
width: $input-height-base;
|
399
|
-
height: $input-height-base;
|
400
|
-
line-height: $input-height-base;
|
401
|
-
text-align: center;
|
402
|
-
pointer-events: none;
|
403
|
-
}
|
404
|
-
.input-lg + .form-control-feedback,
|
405
|
-
.input-group-lg + .form-control-feedback,
|
406
|
-
.form-group-lg .form-control + .form-control-feedback {
|
407
|
-
width: $input-height-large;
|
408
|
-
height: $input-height-large;
|
409
|
-
line-height: $input-height-large;
|
410
|
-
}
|
411
|
-
.input-sm + .form-control-feedback,
|
412
|
-
.input-group-sm + .form-control-feedback,
|
413
|
-
.form-group-sm .form-control + .form-control-feedback {
|
414
|
-
width: $input-height-small;
|
415
|
-
height: $input-height-small;
|
416
|
-
line-height: $input-height-small;
|
417
|
-
}
|
418
|
-
|
419
|
-
// Feedback states
|
420
|
-
.has-success {
|
421
|
-
@include form-control-validation($state-success-text, $state-success-text, $state-success-bg);
|
422
|
-
}
|
423
|
-
.has-warning {
|
424
|
-
@include form-control-validation($state-warning-text, $state-warning-text, $state-warning-bg);
|
425
|
-
}
|
426
|
-
.has-error {
|
427
|
-
@include form-control-validation($state-danger-text, $state-danger-text, $state-danger-bg);
|
428
|
-
}
|
429
|
-
|
430
|
-
// Reposition feedback icon if input has visible label above
|
431
|
-
.has-feedback label {
|
432
|
-
|
433
|
-
& ~ .form-control-feedback {
|
434
|
-
top: ($line-height-computed + 5); // Height of the `label` and its margin
|
435
|
-
}
|
436
|
-
&.sr-only ~ .form-control-feedback {
|
437
|
-
top: 0;
|
438
|
-
}
|
439
|
-
}
|
440
|
-
|
441
|
-
|
442
|
-
// Help text
|
443
|
-
//
|
444
|
-
// Apply to any element you wish to create light text for placement immediately
|
445
|
-
// below a form control. Use for general help, formatting, or instructional text.
|
446
|
-
|
447
|
-
.help-block {
|
448
|
-
display: block; // account for any element using help-block
|
449
|
-
margin-top: 5px;
|
450
|
-
margin-bottom: 10px;
|
451
|
-
color: lighten($text-color, 25%); // lighten the text some for contrast
|
452
|
-
}
|
453
|
-
|
454
|
-
|
455
|
-
// Inline forms
|
456
|
-
//
|
457
|
-
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
458
|
-
// forms begin stacked on extra small (mobile) devices and then go inline when
|
459
|
-
// viewports reach <768px.
|
460
|
-
//
|
461
|
-
// Requires wrapping inputs and labels with `.form-group` for proper display of
|
462
|
-
// default HTML form controls and our custom form controls (e.g., input groups).
|
463
|
-
//
|
464
|
-
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
|
465
|
-
|
466
|
-
// [converter] extracted from `.form-inline` for libsass compatibility
|
467
|
-
@mixin form-inline {
|
468
|
-
|
469
|
-
// Kick in the inline
|
470
|
-
@media (min-width: $screen-sm-min) {
|
471
|
-
// Inline-block all the things for "inline"
|
472
|
-
.form-group {
|
473
|
-
display: inline-block;
|
474
|
-
margin-bottom: 0;
|
475
|
-
vertical-align: middle;
|
476
|
-
}
|
477
|
-
|
478
|
-
// In navbar-form, allow folks to *not* use `.form-group`
|
479
|
-
.form-control {
|
480
|
-
display: inline-block;
|
481
|
-
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
482
|
-
vertical-align: middle;
|
483
|
-
}
|
484
|
-
|
485
|
-
// Make static controls behave like regular ones
|
486
|
-
.form-control-static {
|
487
|
-
display: inline-block;
|
488
|
-
}
|
489
|
-
|
490
|
-
.input-group {
|
491
|
-
display: inline-table;
|
492
|
-
vertical-align: middle;
|
493
|
-
|
494
|
-
.input-group-addon,
|
495
|
-
.input-group-btn,
|
496
|
-
.form-control {
|
497
|
-
width: auto;
|
498
|
-
}
|
499
|
-
}
|
500
|
-
|
501
|
-
// Input groups need that 100% width though
|
502
|
-
.input-group > .form-control {
|
503
|
-
width: 100%;
|
504
|
-
}
|
505
|
-
|
506
|
-
.control-label {
|
507
|
-
margin-bottom: 0;
|
508
|
-
vertical-align: middle;
|
509
|
-
}
|
510
|
-
|
511
|
-
// Remove default margin on radios/checkboxes that were used for stacking, and
|
512
|
-
// then undo the floating of radios and checkboxes to match.
|
513
|
-
.radio,
|
514
|
-
.checkbox {
|
515
|
-
display: inline-block;
|
516
|
-
margin-top: 0;
|
517
|
-
margin-bottom: 0;
|
518
|
-
vertical-align: middle;
|
519
|
-
|
520
|
-
label {
|
521
|
-
padding-left: 0;
|
522
|
-
}
|
523
|
-
}
|
524
|
-
.radio input[type="radio"],
|
525
|
-
.checkbox input[type="checkbox"] {
|
526
|
-
position: relative;
|
527
|
-
margin-left: 0;
|
528
|
-
}
|
529
|
-
|
530
|
-
// Re-override the feedback icon.
|
531
|
-
.has-feedback .form-control-feedback {
|
532
|
-
top: 0;
|
533
|
-
}
|
534
|
-
}
|
535
|
-
}
|
536
|
-
// [converter] extracted as `@mixin form-inline` for libsass compatibility
|
537
|
-
.form-inline {
|
538
|
-
@include form-inline;
|
539
|
-
}
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
// Horizontal forms
|
544
|
-
//
|
545
|
-
// Horizontal forms are built on grid classes and allow you to create forms with
|
546
|
-
// labels on the left and inputs on the right.
|
547
|
-
|
548
|
-
.form-horizontal {
|
549
|
-
|
550
|
-
// Consistent vertical alignment of radios and checkboxes
|
551
|
-
//
|
552
|
-
// Labels also get some reset styles, but that is scoped to a media query below.
|
553
|
-
.radio,
|
554
|
-
.checkbox,
|
555
|
-
.radio-inline,
|
556
|
-
.checkbox-inline {
|
557
|
-
margin-top: 0;
|
558
|
-
margin-bottom: 0;
|
559
|
-
padding-top: ($padding-base-vertical + 1); // Default padding plus a border
|
560
|
-
}
|
561
|
-
// Account for padding we're adding to ensure the alignment and of help text
|
562
|
-
// and other content below items
|
563
|
-
.radio,
|
564
|
-
.checkbox {
|
565
|
-
min-height: ($line-height-computed + ($padding-base-vertical + 1));
|
566
|
-
}
|
567
|
-
|
568
|
-
// Make form groups behave like rows
|
569
|
-
.form-group {
|
570
|
-
@include make-row;
|
571
|
-
}
|
572
|
-
|
573
|
-
// Reset spacing and right align labels, but scope to media queries so that
|
574
|
-
// labels on narrow viewports stack the same as a default form example.
|
575
|
-
@media (min-width: $screen-sm-min) {
|
576
|
-
.control-label {
|
577
|
-
text-align: right;
|
578
|
-
margin-bottom: 0;
|
579
|
-
padding-top: ($padding-base-vertical + 1); // Default padding plus a border
|
580
|
-
}
|
581
|
-
}
|
582
|
-
|
583
|
-
// Validation states
|
584
|
-
//
|
585
|
-
// Reposition the icon because it's now within a grid column and columns have
|
586
|
-
// `position: relative;` on them. Also accounts for the grid gutter padding.
|
587
|
-
.has-feedback .form-control-feedback {
|
588
|
-
right: floor(($grid-gutter-width / 2));
|
589
|
-
}
|
590
|
-
|
591
|
-
// Form group sizes
|
592
|
-
//
|
593
|
-
// Quick utility class for applying `.input-lg` and `.input-sm` styles to the
|
594
|
-
// inputs and labels within a `.form-group`.
|
595
|
-
.form-group-lg {
|
596
|
-
@media (min-width: $screen-sm-min) {
|
597
|
-
.control-label {
|
598
|
-
padding-top: (($padding-large-vertical * $line-height-large) + 1);
|
599
|
-
font-size: $font-size-large;
|
600
|
-
}
|
601
|
-
}
|
602
|
-
}
|
603
|
-
.form-group-sm {
|
604
|
-
@media (min-width: $screen-sm-min) {
|
605
|
-
.control-label {
|
606
|
-
padding-top: ($padding-small-vertical + 1);
|
607
|
-
font-size: $font-size-small;
|
608
|
-
}
|
609
|
-
}
|
610
|
-
}
|
611
|
-
}
|