j1-template 2020.0.8 → 2020.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/themes/j1/blocks/ads/ad.html +64 -0
- data/_includes/themes/j1/blocks/footer/boxes/links_box.proc +1 -1
- data/_includes/themes/j1/layouts/content_generator_blog_archive.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_collection.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_page.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_post.html +12 -12
- data/_includes/themes/j1/layouts/layout_metadata_generator.html +134 -4
- data/_includes/themes/j1/modules/connectors/ad/custom-provider.html +6 -9
- data/_includes/themes/j1/modules/connectors/ad/google-adsense.html +9 -6
- data/_includes/themes/j1/modules/connectors/ads +3 -6
- data/_includes/themes/j1/modules/navigator/generator.html +6 -7
- data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +10 -5
- data/_includes/themes/j1/procedures/layouts/module_writer.proc +1 -1
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +7 -7
- data/_layouts/default.html +18 -13
- data/assets/data/authclient.html +18 -8
- data/assets/data/banner.html +23 -23
- data/assets/data/carousel.json +30 -21
- data/assets/data/cookie_consent.html +79 -51
- data/assets/data/footer.html +14 -5
- data/assets/data/galleries.json +90 -81
- data/assets/data/gallery_customizer.html +19 -10
- data/assets/data/mdi_icons.json +55 -1
- data/assets/data/menu.html +14 -7
- data/assets/data/mmenu.html +47 -94
- data/assets/data/mmenu_sidebar.html +40 -44
- data/assets/data/mmenu_toc.html +19 -3
- data/assets/data/panel.html +30 -23
- data/assets/data/quicklinks.html +13 -3
- data/assets/data/{search.yml → search.json} +44 -14
- data/assets/data/ssm.html +20 -9
- data/assets/data/themes.json +17 -6
- data/assets/data/twa_v1.json +7034 -6978
- data/assets/themes/j1/adapter/js/algolia.js +34 -17
- data/assets/themes/j1/adapter/js/attic.js +66 -46
- data/assets/themes/j1/adapter/js/carousel.js +43 -22
- data/assets/themes/j1/adapter/js/clipboard.js +230 -0
- data/assets/themes/j1/adapter/js/cookie_consent.js +21 -4
- data/assets/themes/j1/adapter/js/framer.js +18 -3
- data/assets/themes/j1/adapter/js/gallery_customizer.js +27 -10
- data/assets/themes/j1/adapter/js/j1.js +342 -757
- data/assets/themes/j1/adapter/js/{justified_gallery.js → jf_gallery.js} +64 -38
- data/assets/themes/j1/adapter/js/lightbox.js +20 -3
- data/assets/themes/j1/adapter/js/logger.js +23 -6
- data/assets/themes/j1/adapter/js/mdb.js +167 -0
- data/assets/themes/j1/adapter/js/mmenu.js +33 -30
- data/assets/themes/j1/adapter/js/navigator.js +126 -140
- data/assets/themes/j1/adapter/js/searcher.js +22 -4
- data/assets/themes/j1/adapter/js/ssm.js +84 -63
- data/assets/themes/j1/adapter/js/themer.js +35 -53
- data/assets/themes/j1/adapter/js/toccer.js +29 -14
- data/assets/themes/j1/core/css/theme_extensions.css +120 -1230
- data/assets/themes/j1/core/css/theme_extensions.min.css +1 -1
- data/assets/themes/j1/core/css/uno.css +256 -1288
- data/assets/themes/j1/core/css/uno.min.css +1 -1
- data/assets/themes/j1/core/css/vendor.css +7 -57
- data/assets/themes/j1/core/css/vendor.min.css +2 -2
- data/assets/themes/j1/core/js/template.js +16 -86
- data/assets/themes/j1/core/js/template.js.map +1 -1
- data/assets/themes/j1/core/js/template.min.js +1 -1
- data/assets/themes/j1/extensions/bsDatepicker/css/datepicker.css +203 -0
- data/assets/themes/j1/extensions/bsDatepicker/css/theme/uno.css +235 -0
- data/assets/themes/j1/extensions/bsDatepicker/js/datepicker.js +509 -0
- data/assets/themes/j1/extensions/bsDatepicker/less/datepicker.less +122 -0
- data/assets/themes/j1/extensions/bsThemeSwitcher/js/switcher.js +425 -0
- data/assets/themes/j1/extensions/bsThemeSwitcher/js/switcher.min.js +20 -0
- data/assets/themes/j1/extensions/clipboard/LICENSE +20 -0
- data/assets/themes/j1/extensions/clipboard/css/theme/uno.css +52 -0
- data/assets/themes/j1/extensions/clipboard/css/theme/uno.min.css +52 -0
- data/assets/themes/j1/extensions/clipboard/js/clipboard.js +975 -0
- data/assets/themes/j1/extensions/clipboard/js/clipboard.min.js +7 -0
- data/assets/themes/j1/extensions/{iconify → iconifyAPI}/js/iconify.min.js +0 -0
- data/assets/themes/j1/extensions/iframeResizer/LICENSE +21 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.absolute.html +127 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.content.html +157 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.hover.html +68 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.nested.html +100 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.textarea.html +45 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.tolerance.html +113 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/index.html +83 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/two.html +88 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.js +1288 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.map +1 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.min.js +10 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.js +1390 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.map +1 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.min.js +9 -0
- data/assets/themes/j1/extensions/jqMouseWheel/README.md +76 -0
- data/assets/themes/j1/extensions/jqMouseWheel/js/jquery.mousewheel.js +221 -0
- data/assets/themes/j1/extensions/jqMouseWheel/js/jquery.mousewheel.min.js +9 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/LICENSE +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/README.md +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.3.7.0.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/less/.csslintrc +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/less/justifiedGallery.less +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/js/jquery.justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/js/jquery.justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/theme/uno.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/js/justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/js/justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-fb-comment-box.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-fb-comment-box.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-transitions.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-transitions.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lightgallery.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lightgallery.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.eot +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.ttf +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.woff +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/loading.gif +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/video-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/vimeo-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/youtube-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/animation-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/customize-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/dynamic-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/facebook-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/googleplus-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/html5-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/linked-in.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/module-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/play-button.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/responsive-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/thumb-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/touch-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/twitter-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/twitter.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/video1-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/zoom-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/zoom.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/uno.css +1 -1
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/uno.min.css +1 -1
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/core/lightgallery.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/core/lightgallery.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/j1/j1-video.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/j1/j1-video.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-autoplay.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-autoplay.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-fullscreen.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-fullscreen.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-hash.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-hash.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-pager.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-pager.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-share.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-share.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-thumbnail.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-thumbnail.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-video.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-video.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-zoom.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-zoom.min.js +0 -0
- data/assets/themes/j1/extensions/lightbox/LICENSE +22 -0
- data/assets/themes/j1/extensions/lightbox/css/lightbox.css +224 -0
- data/assets/themes/j1/extensions/lightbox/css/lightbox.min.css +21 -0
- data/assets/themes/j1/extensions/lightbox/css/theme/uno.css +25 -0
- data/assets/themes/j1/extensions/lightbox/css/theme/uno.min.css +26 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/close.png +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/loading.gif +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/next.png +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/prev.png +0 -0
- data/assets/themes/j1/extensions/lightbox/js/lightbox.js +583 -0
- data/assets/themes/j1/extensions/lightbox/js/lightbox.min.js +35 -0
- data/assets/themes/j1/extensions/mmenuLight/css/mmenu.css +392 -0
- data/assets/themes/j1/extensions/mmenuLight/css/mmenu.min.css +393 -0
- data/assets/themes/j1/extensions/mmenuLight/css/theme/uno.css +170 -0
- data/assets/themes/j1/extensions/mmenuLight/css/theme/uno.min.css +169 -0
- data/assets/themes/j1/extensions/mmenuLight/js/mmenu.js +30 -0
- data/assets/themes/j1/extensions/noUISlider/LICENSE +13 -0
- data/assets/themes/j1/extensions/noUISlider/css/nouislider.css +260 -0
- data/assets/themes/j1/extensions/noUISlider/css/nouislider.min.css +1 -0
- data/assets/themes/j1/extensions/noUISlider/js/nouislider.js +2312 -0
- data/assets/themes/j1/extensions/noUISlider/js/nouislider.min.js +3 -0
- data/assets/themes/j1/extensions/twemoji/js/LICENSE +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/LICENSE +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/twemoji-picker.js +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/twemoji-picker.min.js +21 -0
- data/assets/themes/j1/extensions/twemoji/js/twemoji.js +590 -0
- data/assets/themes/j1/extensions/twemoji/js/twemoji.min.js +25 -0
- data/lib/j1/version.rb +3 -3
- data/lib/starter_web/Gemfile +7 -1
- data/lib/starter_web/_config.yml +9 -8
- data/lib/starter_web/_data/_defaults/resources.yml +13 -13
- data/lib/starter_web/_data/blocks/banner.yml +21 -29
- data/lib/starter_web/_data/blocks/footer.yml +10 -3
- data/lib/starter_web/_data/blocks/panel.yml +13 -13
- data/lib/starter_web/_data/layouts/default.yml +10 -0
- data/lib/starter_web/_data/layouts/home.yml +7 -7
- data/lib/starter_web/_data/layouts/page.yml +15 -16
- data/lib/starter_web/_data/modules/advertising.yml +48 -0
- data/lib/starter_web/_data/modules/attics.yml +2 -38
- data/lib/starter_web/_data/modules/cookie_consent.yml +3 -95
- data/lib/starter_web/_data/modules/defaults/attics.yml +16 -15
- data/lib/starter_web/_data/modules/defaults/cookie_consent.yml +75 -12
- data/lib/starter_web/_data/modules/defaults/jekyll_search.yml +9 -9
- data/lib/starter_web/_data/modules/defaults/navigator.yml +56 -21
- data/lib/starter_web/_data/modules/defaults/ssm.yml +3 -3
- data/lib/starter_web/_data/modules/defaults/toccer.yml +4 -8
- data/lib/starter_web/_data/modules/jekyll_search.yml +3 -21
- data/lib/starter_web/_data/modules/navigator.yml +1 -1
- data/lib/starter_web/_data/modules/navigator_menu.yml +4 -0
- data/lib/starter_web/_data/modules/ssm.yml +9 -0
- data/lib/starter_web/_data/modules/themer.yml +2 -3
- data/lib/starter_web/_data/modules/toccer.yml +6 -11
- data/lib/starter_web/_data/resources.yml +240 -112
- data/lib/starter_web/_data/template_settings.yml +117 -6
- data/lib/starter_web/_plugins/asciidoctor-extensions/fab-icon-inline.rb +1 -1
- data/lib/starter_web/_plugins/asciidoctor-extensions/fas-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/iconify-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/mdi-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +2 -2
- data/lib/starter_web/_plugins/minifyJS.rb +54 -0
- data/lib/starter_web/_plugins/{uglify.rb → minifyJSON.rb} +15 -9
- data/lib/starter_web/assets/images/modules/attics/admin-dashboard-bootstrap-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/alex-holyoake-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/anaya-katlego-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonella-lombardi-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonino-visalli-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/library-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/signpost-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/water-journal-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/write-1280x600-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/brandon-mowinkel-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/building-blocks-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/cookies-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/daniel-jensen-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/giammarco-boscaro-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/go-up-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ian-schneider-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ideas-start-here-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jason-rosewell-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jessica-ruscello-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/lianhao-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/library-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/matthaeus-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/nousnou-iwasaki-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/premium-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/robert-v-ruggiero-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/romain-vignes-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/runner-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/spider-web-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/the-place-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/welcome-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-1.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/andreas-brucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/banter-snaps_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/emmad-mazhari_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/ethan-brooke_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/federico-rizzarelli_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/gints-gailis_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/johan-mouchet_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/oskars-sylwan_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/steven-diaz_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/index.html +9 -8
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/clear_button.adoc +121 -0
- data/lib/starter_web/pages/public/learn/examples/floating_ad.adoc +221 -0
- data/lib/starter_web/pages/public/learn/{floating_sidebar.adoc → examples/floating_div.adoc} +60 -50
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/parts.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/100_meet_and_greet_jekyll.adoc +9 -4
- data/lib/starter_web/pages/public/learn/roundtrip/000_bs_tour_api.adoc +2 -2
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_table_3_column.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/419_advanced_modals_html.asciidoc +5 -5
- data/lib/starter_web/pages/public/learn/roundtrip/100_present_images.adoc +2 -2
- data/lib/starter_web/pages/public/learn/roundtrip/200_typography.adoc +4 -3
- data/lib/starter_web/pages/public/learn/roundtrip/300_icon_fonts.adoc +35 -44
- data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/420_responsive_tables_extensions.adoc +39 -39
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_table_3_column.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/whats_up.adoc +1 -0
- data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +54 -48
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +1 -41
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/bootstrap_theme.adoc +672 -863
- data/lib/starter_web/pages/public/previewer/iframer.adoc +15 -14
- data/lib/starter_web/pages/public/previewer/justified_gallery.html +1 -1
- data/lib/starter_web/pages/public/previewer/mdb_preview/000_includes/attributes.asciidoc +69 -0
- data/lib/starter_web/pages/public/previewer/mdb_preview/000_includes/documents/100_buttons.asciidoc +170 -0
- data/lib/starter_web/pages/public/previewer/mdb_preview/mdb_previewer.adoc +52 -0
- data/lib/starter_web/pages/public/previewer/mdi_icons_preview.adoc +1 -1
- data/lib/starter_web/pages/public/previewer/twitter_emoji_preview.adoc +2 -2
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +148 -105
- data/assets/data/colors.json +0 -42
- data/assets/data/font_sizes.json +0 -42
- data/assets/data/messages.yml +0 -131
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.absolute.html +0 -86
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.content.html +0 -58
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.hover.html +0 -51
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.nested.html +0 -68
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.textarea.html +0 -46
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.tolerance.html +0 -79
- data/assets/themes/j1/extensions/iframe_resizer/examples/index.html +0 -70
- data/assets/themes/j1/extensions/iframe_resizer/examples/two.html +0 -71
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.js +0 -1104
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.map +0 -1
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.min.js +0 -10
- data/assets/themes/j1/extensions/log4javascript/log4javascript.js +0 -5826
- data/assets/themes/j1/extensions/log4javascript/log4javascript.min.js +0 -266
- data/lib/starter_web/assets/images/modules/attics/admin-dashboard-bootstrap-1280x600.png +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mu-Vf9gbsLZyf0-unsplash.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280-v.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280.jpg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Selected extended BS modal examples
|
3
|
-
[cols="6a,3a,3a", options="header", width="100%", role="table-responsive"]
|
3
|
+
[cols="6a,3a,3a", options="header", width="100%", role="table-responsive-stacked-lg"]
|
4
4
|
|===============================================================================
|
5
5
|
|Postion |Class | Example
|
6
6
|
|
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
2
|
title: J1 Template
|
3
3
|
tagline: creating responsive websites
|
4
|
-
description:
|
4
|
+
description: >
|
5
|
+
A good user experience browsing a Web is one of
|
6
|
+
the most important features a site has to offer as
|
7
|
+
a must. Beside excellent content. Presenting content
|
8
|
+
at it’s best on all devices, for all window sizes makes
|
9
|
+
an excellent Web brilliant. J1 Template support your Web
|
10
|
+
for full responsiveness, for the best user experience on
|
11
|
+
all modern devices.
|
12
|
+
|
5
13
|
author: J1 Team
|
6
14
|
|
7
15
|
tags: [ Jekyll, Template ]
|
@@ -16,7 +24,7 @@ resource_options:
|
|
16
24
|
- attic:
|
17
25
|
padding_top: 400
|
18
26
|
padding_bottom: 50
|
19
|
-
opacity: 0.5
|
27
|
+
opacity: 0.5
|
20
28
|
slides:
|
21
29
|
- url: /assets/images/modules/attics/the-place-1920x1280-bw.jpg
|
22
30
|
alt: the-place-1920x1280-bw
|
@@ -35,13 +43,13 @@ best user experience on all modern devices.
|
|
35
43
|
=== Bootstrap 4 Integration
|
36
44
|
|
37
45
|
To not sidetrack your audience by irritating user interface (UI) components,
|
38
|
-
J1 Template is based on Bootstrap. Bootstrap is one of the most popular
|
39
|
-
frameworks for web development used today. J1 is based on Bootstrap V4, the
|
40
|
-
last current version to support your visitors by common elements for
|
46
|
+
J1 Template is based on Bootstrap. Bootstrap is one of the most popular
|
47
|
+
frameworks for web development used today. J1 is based on Bootstrap V4, the
|
48
|
+
last current version to support your visitors by common elements for
|
41
49
|
navigation, data input, tables and many other components more.
|
42
50
|
|
43
51
|
For your development projects, Bootstrap simplifies HTML programming a lot,
|
44
|
-
offers excellent JS support for interactive components like navigation
|
52
|
+
offers excellent JS support for interactive components like navigation
|
45
53
|
elements, cards, forms etc.
|
46
54
|
|
47
55
|
[[current-technology]]
|
@@ -55,40 +63,40 @@ development, languages and tools.
|
|
55
63
|
|
56
64
|
=== HTML5 + CSS3
|
57
65
|
|
58
|
-
J1 is using HTML5 for structuring content on the World Wide Web. The current
|
59
|
-
version of the HTML standard offer a lot of new features including detailed
|
60
|
-
processing models to support more interoperable implementations. It extends
|
61
|
-
and improves HTML markups available. HTML5 introduces application
|
62
|
-
programming interfaces (APIs) for more complex web applications. For same
|
63
|
-
reasons, the new HTMLstandard is also a good choice for modern cross-platform
|
66
|
+
J1 is using HTML5 for structuring content on the World Wide Web. The current
|
67
|
+
version of the HTML standard offer a lot of new features including detailed
|
68
|
+
processing models to support more interoperable implementations. It extends
|
69
|
+
and improves HTML markups available. HTML5 introduces application
|
70
|
+
programming interfaces (APIs) for more complex web applications. For same
|
71
|
+
reasons, the new HTMLstandard is also a good choice for modern cross-platform
|
64
72
|
mobile applications, because it includes features designed with mobile devices
|
65
73
|
in mind.
|
66
74
|
|
67
|
-
Many new features are included with HTML5. To natively support multimedia and
|
68
|
-
graphical content, the new `<video>`, `<audio>` and `<canvas>` elements were
|
75
|
+
Many new features are included with HTML5. To natively support multimedia and
|
76
|
+
graphical content, the new `<video>`, `<audio>` and `<canvas>` elements were
|
69
77
|
added. Beside this, support for scalable vector graphics (SVG) and an API
|
70
78
|
called MathML for mathematical formulas are now available.
|
71
79
|
|
72
80
|
The new standard allows to use so-called *semantic* markup elements for your
|
73
|
-
documents. New structure elements such as `<main>`, `<section>`, `<article>`,
|
74
|
-
`<header>` or `<footer>` (and many more) were added. Better structured HTML
|
81
|
+
documents. New structure elements such as `<main>`, `<section>`, `<article>`,
|
82
|
+
`<header>` or `<footer>` (and many more) were added. Better structured HTML
|
75
83
|
code can help people having disabilities to read the pages presented better.
|
76
84
|
|
77
|
-
CSS is designed to enable the separation of presentation and content.
|
78
|
-
Including layout, colors and fonts for example. This separation improves
|
79
|
-
content accessibility, provide more flexibility and control in the
|
85
|
+
CSS is designed to enable the separation of presentation and content.
|
86
|
+
Including layout, colors and fonts for example. This separation improves
|
87
|
+
content accessibility, provide more flexibility and control in the
|
80
88
|
presentation.
|
81
89
|
|
82
90
|
Separation of formatting and content also makes it feasible to present the
|
83
|
-
same page in different styles. For example, the themes feature of J1 Template
|
91
|
+
same page in different styles. For example, the themes feature of J1 Template
|
84
92
|
make use of this.
|
85
93
|
|
86
94
|
CSS3 is divided into several separate components called *modules*. Each module
|
87
|
-
adds new capabilities or extends features defined in the former CSS2 standard.
|
95
|
+
adds new capabilities or extends features defined in the former CSS2 standard.
|
88
96
|
HTML5 in combination with CSS3 allows to create modern and modular code for web
|
89
97
|
pages that can be viewed on all current devices like Mobiles, Tablets or the
|
90
98
|
classic Desktop PC. The new HTML5 elements plus CSS3 modules can be used as a
|
91
|
-
replacement for *proprietary solutions* like Adobe Flash to build modern
|
99
|
+
replacement for *proprietary solutions* like Adobe Flash to build modern
|
92
100
|
webpages based on *open standards*.
|
93
101
|
|
94
102
|
=== Javascript
|
@@ -97,8 +105,8 @@ HTML5 and CSS3 can do a lot. Content placement and basic methods for the
|
|
97
105
|
dynamic of elements can be done using pure HTML5 and CSS3. For more
|
98
106
|
complex solutions like modules the support of Javascript is needed.
|
99
107
|
|
100
|
-
J1 Template has build-in a wide range of JS powered modules to support a
|
101
|
-
website for e.g. the navigation, for presenting image data in galeries,
|
108
|
+
J1 Template has build-in a wide range of JS powered modules to support a
|
109
|
+
website for e.g. the navigation, for presenting image data in galeries,
|
102
110
|
lightboxes and so on.
|
103
111
|
|
104
112
|
|
@@ -106,53 +114,51 @@ lightboxes and so on.
|
|
106
114
|
== Start in No Time
|
107
115
|
|
108
116
|
The base idea of J1 Template is to give all people a tool set at their hands
|
109
|
-
to create a website with no need to start by web development or web design
|
110
|
-
from the beginning. A website based on J1 is using build-in templates and
|
111
|
-
engines. As a result, the process to generate HTML code from your content
|
112
|
-
is done automatically and allows you to concentrate on what truly matters:
|
117
|
+
to create a website with no need to start by web development or web design
|
118
|
+
from the beginning. A website based on J1 is using build-in templates and
|
119
|
+
engines. As a result, the process to generate HTML code from your content
|
120
|
+
is done automatically and allows you to concentrate on what truly matters:
|
113
121
|
your content.
|
114
122
|
|
115
|
-
Using J1, you can instantly start a web project by creating your content
|
123
|
+
Using J1, you can instantly start a web project by creating your content
|
116
124
|
and not by start learning the the deep of web development technologies.
|
117
125
|
|
118
126
|
=== Create your Web
|
119
127
|
|
120
|
-
J1 is highly customizeable. Based on a pure configuration, a website can be
|
128
|
+
J1 is highly customizeable. Based on a pure configuration, a website can be
|
121
129
|
created. The template system creates static web pages using Jekyll as
|
122
|
-
the base HTML code generator. Static website are fast and secure but simple
|
130
|
+
the base HTML code generator. Static website are fast and secure but simple
|
123
131
|
to manage. No complex database systems and PHP interfaces are needed.
|
124
132
|
|
125
|
-
To present a static website, only a web server environment is needed. To
|
126
|
-
publish a website on the Internet, many possible platforms can be used like
|
133
|
+
To present a static website, only a web server environment is needed. To
|
134
|
+
publish a website on the Internet, many possible platforms can be used like
|
127
135
|
Github, Netlify or Heroku for example - for free!
|
128
136
|
|
129
137
|
The Internet is not a peaceful place. Every site accessible from the public is
|
130
|
-
attacked from the first second if published. Static websites are robust, fast
|
131
|
-
and that's import: intrinsicly secure. That means: *not* changeable. No
|
132
|
-
offender attacking your website is able to break your site. Because it's
|
138
|
+
attacked from the first second if published. Static websites are robust, fast
|
139
|
+
and that's import: intrinsicly secure. That means: *not* changeable. No
|
140
|
+
offender attacking your website is able to break your site. Because it's
|
133
141
|
static or in other words: unchangeable, unbreakable from it's natur.
|
134
142
|
|
135
143
|
This makes a static website for the better.
|
136
144
|
|
137
145
|
=== Modules and Apps
|
138
146
|
|
139
|
-
It's predictable what base components are needed for a modern website. For
|
140
|
-
Content Management Systems (CMS) like Wordpress, Joomla or Drupal a huge
|
141
|
-
number of modules are available to extend a site by e.g. Apps like image
|
147
|
+
It's predictable what base components are needed for a modern website. For
|
148
|
+
Content Management Systems (CMS) like Wordpress, Joomla or Drupal a huge
|
149
|
+
number of modules are available to extend a site by e.g. Apps like image
|
142
150
|
galleries, video players, calendars etc.
|
143
151
|
|
144
152
|
This is a bit different for static webs as they don't have a central
|
145
153
|
Management System as CMS do to integrate external code. There no ecosystem,
|
146
|
-
no marketplace to get apps and modules from.
|
154
|
+
no marketplace to get apps and modules from.
|
147
155
|
|
148
|
-
Luckily, it is not that hard to integrate external components into the world
|
149
|
-
of Jekyll. But one of the objectives of J1 is to give people a ready-to-use
|
150
|
-
toolset without the need to install, to integrate components that expected
|
156
|
+
Luckily, it is not that hard to integrate external components into the world
|
157
|
+
of Jekyll. But one of the objectives of J1 is to give people a ready-to-use
|
158
|
+
toolset without the need to install, to integrate components that expected
|
151
159
|
as a need.
|
152
160
|
|
153
|
-
A rich set of modules are already included. The modules support common use
|
154
|
-
cases of a website like a flexible navigation system, a local search,
|
155
|
-
lightboxes to present pictures and videos, little helpers for scrolling or
|
161
|
+
A rich set of modules are already included. The modules support common use
|
162
|
+
cases of a website like a flexible navigation system, a local search,
|
163
|
+
lightboxes to present pictures and videos, little helpers for scrolling or
|
156
164
|
to automatically create TOCs (table of contents) for a page.
|
157
|
-
|
158
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Fixed (absolute) sizes
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Bootstrap (BS) grid sizes
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Relative sizes
|
3
|
-
[cols="2,
|
3
|
+
[cols="2,^2m,8a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -44,44 +44,4 @@
|
|
44
44
|
<i class="mdi mdi-5x mdi-account"></i>
|
45
45
|
----
|
46
46
|
|
47
|
-
|`mdi-6x`
|
48
|
-
^|pass:[<i class="mdi mdi-6x mdi-account"></i>]
|
49
|
-
|
|
50
|
-
[source, html]
|
51
|
-
----
|
52
|
-
<i class="mdi mdi-6x mdi-account"></i>
|
53
|
-
----
|
54
|
-
|
55
|
-
|`mdi-7x`
|
56
|
-
^|pass:[<i class="mdi mdi-7x mdi-account"></i>]
|
57
|
-
|
|
58
|
-
[source, html]
|
59
|
-
----
|
60
|
-
<i class="mdi mdi-7x mdi-account"></i>
|
61
|
-
----
|
62
|
-
|
63
|
-
|`mdi-8x`
|
64
|
-
^|pass:[<i class="mdi mdi-8x mdi-account"></i>]
|
65
|
-
|
|
66
|
-
[source, html]
|
67
|
-
----
|
68
|
-
<i class="mdi mdi-1x mdi-account"></i>
|
69
|
-
----
|
70
|
-
|
71
|
-
|`mdi-9x`
|
72
|
-
^|pass:[<i class="mdi mdi-9x mdi-account"></i>]
|
73
|
-
|
|
74
|
-
[source, html]
|
75
|
-
----
|
76
|
-
<i class="mdi mdi-9x mdi-account"></i>
|
77
|
-
----
|
78
|
-
|
79
|
-
|`mdi-10x`
|
80
|
-
^|pass:[<i class="mdi mdi-10x mdi-account"></i>]
|
81
|
-
|
|
82
|
-
[source, html]
|
83
|
-
----
|
84
|
-
<i class="mdi mdi-10x mdi-account"></i>
|
85
|
-
----
|
86
|
-
|
87
47
|
|===============================================================================
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Black and White color palette
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Bootstrap (BS) color palette
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Material Design (MD) color palette
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.MD colors - Indigo
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.MD colors - Pink
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Bootstrap (BS) grid sizes
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
.Relative sizes
|
3
|
-
[cols="2,1,9a", options="header", role="table-responsive mb-5"]
|
3
|
+
[cols="2,1,9a", options="header", role="table-responsive-stacked-lg mb-5"]
|
4
4
|
|===============================================================================
|
5
5
|
|Class |Result |Code
|
6
6
|
|
@@ -4,8 +4,8 @@ tagline: common components
|
|
4
4
|
description: Themes Previewer for common components of a selected theme.
|
5
5
|
|
6
6
|
tags: [ App, Previewer ]
|
7
|
-
index: [
|
8
|
-
Bootstrap, Theme, Preview, Common,
|
7
|
+
index: [
|
8
|
+
Bootstrap, Theme, Preview, Common,
|
9
9
|
Component, Navbars, Buttons, Typography,
|
10
10
|
Tables, Forms, Navs, Pills, Breadcrumbs,
|
11
11
|
Pagination, Indicators, Alerts, Badges,
|
@@ -60,7 +60,6 @@ include::{includedir}/attributes.asciidoc[tag=urls]
|
|
60
60
|
// Additional ASCIIDOC attributes goes here
|
61
61
|
//
|
62
62
|
|
63
|
-
|
64
63
|
++++
|
65
64
|
<!-- Prepend H1 tag here -->
|
66
65
|
<div id="h1_theme_name" class="row mb-3">
|
@@ -75,7 +74,7 @@ include::{includedir}/attributes.asciidoc[tag=urls]
|
|
75
74
|
var themeName;
|
76
75
|
var themeNameHeadline;
|
77
76
|
var user_state_detected;
|
78
|
-
|
77
|
+
|
79
78
|
var dependencies_met_themer = setInterval(function() {
|
80
79
|
interval_count += 1;
|
81
80
|
if ( j1.adapter.themer.getState() == 'finished' ) {
|
@@ -110,101 +109,115 @@ support for the collapse plugin.
|
|
110
109
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
111
110
|
Refer to: link:{bs_doc_components_navbar}[Bootstrap Docs, window="_blank"].
|
112
111
|
|
112
|
+
Theming the navbar has never been easier thanks to the combination of
|
113
|
+
theming classes and background-color utilities. Choose from `.navbar-light`
|
114
|
+
for use with light background colors, or '.navbar-dark' for dark background
|
115
|
+
colors. Then, customize with `.bg-*` utilities.
|
116
|
+
|
113
117
|
++++
|
114
|
-
|
115
|
-
|
116
|
-
<
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
</
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
<form class="form-inline my-2 my-lg-0">
|
141
|
-
<input class="form-control mr-sm-2" type="text" placeholder="Search">
|
142
|
-
<button class="btn btn-secondary btn-raised my-2 my-sm-0" type="submit">Search</button>
|
143
|
-
</form>
|
144
|
-
</div>
|
145
|
-
</nav>
|
146
|
-
</div>
|
147
|
-
<div class="bs-component mb-2">
|
148
|
-
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
149
|
-
<a class="navbar-brand" href="#">Navbar</a>
|
150
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
|
151
|
-
<span class="navbar-toggler-icon"></span>
|
152
|
-
</button>
|
153
|
-
<div class="collapse navbar-collapse" id="navbarColor02">
|
154
|
-
<ul class="navbar-nav mr-auto">
|
155
|
-
<li class="nav-item active">
|
156
|
-
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
157
|
-
</li>
|
158
|
-
<li class="nav-item">
|
159
|
-
<a class="nav-link" href="#">Features</a>
|
160
|
-
</li>
|
161
|
-
<li class="nav-item">
|
162
|
-
<a class="nav-link" href="#">Pricing</a>
|
163
|
-
</li>
|
164
|
-
<li class="nav-item">
|
165
|
-
<a class="nav-link" href="#">About</a>
|
166
|
-
</li>
|
167
|
-
</ul>
|
168
|
-
<form class="form-inline my-2 my-lg-0">
|
169
|
-
<input class="form-control mr-sm-2" type="text" placeholder="Search">
|
170
|
-
<button class="btn btn-secondary btn-raised my-2 my-sm-0" type="submit">Search</button>
|
171
|
-
</form>
|
172
|
-
</div>
|
173
|
-
</nav>
|
174
|
-
</div>
|
175
|
-
<div class="bs-component mb-2">
|
176
|
-
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
177
|
-
<a class="navbar-brand" href="#">Navbar</a>
|
178
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation">
|
179
|
-
<span class="navbar-toggler-icon"></span>
|
180
|
-
</button>
|
181
|
-
<div class="collapse navbar-collapse" id="navbarColor03">
|
182
|
-
<ul class="navbar-nav mr-auto">
|
183
|
-
<li class="nav-item active">
|
184
|
-
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
185
|
-
</li>
|
186
|
-
<li class="nav-item">
|
187
|
-
<a class="nav-link" href="#">Features</a>
|
188
|
-
</li>
|
189
|
-
<li class="nav-item">
|
190
|
-
<a class="nav-link" href="#">Pricing</a>
|
191
|
-
</li>
|
192
|
-
<li class="nav-item">
|
193
|
-
<a class="nav-link" href="#">About</a>
|
194
|
-
</li>
|
195
|
-
</ul>
|
196
|
-
<form class="form-inline my-2 my-lg-0">
|
197
|
-
<input class="form-control mr-sm-2" type="text" placeholder="Search">
|
198
|
-
<button class="btn btn-secondary btn-raised my-2 my-sm-0" type="submit">Search</button>
|
199
|
-
</form>
|
200
|
-
</div>
|
201
|
-
</nav>
|
202
|
-
</div>
|
118
|
+
<div class="doc-example">
|
119
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
120
|
+
<a class="navbar-brand" href="#">Navbar<div class="ripple-container"></div></a>
|
121
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
|
122
|
+
<span class="navbar-toggler-icon"></span>
|
123
|
+
</button>
|
124
|
+
|
125
|
+
<div class="collapse navbar-collapse" id="navbarColor01">
|
126
|
+
<ul class="navbar-nav mr-auto">
|
127
|
+
<li class="nav-item active">
|
128
|
+
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
129
|
+
</li>
|
130
|
+
<li class="nav-item">
|
131
|
+
<a class="nav-link" href="#">Features</a>
|
132
|
+
</li>
|
133
|
+
<li class="nav-item">
|
134
|
+
<a class="nav-link" href="#">Pricing</a>
|
135
|
+
</li>
|
136
|
+
<li class="nav-item">
|
137
|
+
<a class="nav-link" href="#">About</a>
|
138
|
+
</li>
|
139
|
+
</ul>
|
140
|
+
<form class="form-inline">
|
141
|
+
<span class="bmd-form-group"><input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search"></span>
|
142
|
+
<button class="btn btn-outline-info my-2 my-sm-0" type="submit">Search</button>
|
143
|
+
</form>
|
203
144
|
</div>
|
204
|
-
</
|
145
|
+
</nav>
|
146
|
+
|
147
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
148
|
+
<a class="navbar-brand" href="#">Navbar</a>
|
149
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
|
150
|
+
<span class="navbar-toggler-icon"></span>
|
151
|
+
</button>
|
152
|
+
|
153
|
+
<div class="collapse navbar-collapse" id="navbarColor02">
|
154
|
+
<ul class="navbar-nav mr-auto">
|
155
|
+
<li class="nav-item active">
|
156
|
+
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
157
|
+
</li>
|
158
|
+
<li class="nav-item">
|
159
|
+
<a class="nav-link" href="#">Features</a>
|
160
|
+
</li>
|
161
|
+
<li class="nav-item">
|
162
|
+
<a class="nav-link" href="#">Pricing</a>
|
163
|
+
</li>
|
164
|
+
<li class="nav-item">
|
165
|
+
<a class="nav-link" href="#">About</a>
|
166
|
+
</li>
|
167
|
+
</ul>
|
168
|
+
<form class="form-inline">
|
169
|
+
<span class="bmd-form-group"><input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search"></span>
|
170
|
+
<button class="btn btn-outline-light my-2 my-sm-0" type="submit">Search</button>
|
171
|
+
</form>
|
172
|
+
</div>
|
173
|
+
</nav>
|
174
|
+
|
175
|
+
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #e3f2fd;">
|
176
|
+
<a class="navbar-brand" href="#">Navbar</a>
|
177
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation">
|
178
|
+
<span class="navbar-toggler-icon"></span>
|
179
|
+
</button>
|
180
|
+
|
181
|
+
<div class="collapse navbar-collapse" id="navbarColor03">
|
182
|
+
<ul class="navbar-nav mr-auto">
|
183
|
+
<li class="nav-item active">
|
184
|
+
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
185
|
+
</li>
|
186
|
+
<li class="nav-item">
|
187
|
+
<a class="nav-link" href="#">Features</a>
|
188
|
+
</li>
|
189
|
+
<li class="nav-item">
|
190
|
+
<a class="nav-link" href="#">Pricing</a>
|
191
|
+
</li>
|
192
|
+
<li class="nav-item">
|
193
|
+
<a class="nav-link" href="#">About</a>
|
194
|
+
</li>
|
195
|
+
</ul>
|
196
|
+
<form class="form-inline">
|
197
|
+
<span class="bmd-form-group"><input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search"></span>
|
198
|
+
<button class="btn btn-outline-primary my-2 my-sm-0" type="submit">Search</button>
|
199
|
+
</form>
|
200
|
+
</div>
|
201
|
+
</nav>
|
205
202
|
</div>
|
206
203
|
++++
|
207
204
|
|
205
|
+
[source, html, role="noclip"]
|
206
|
+
----
|
207
|
+
<nav class="navbar navbar-dark bg-dark">
|
208
|
+
<!-- Navbar content -->
|
209
|
+
</nav>
|
210
|
+
|
211
|
+
<nav class="navbar navbar-dark bg-primary">
|
212
|
+
<!-- Navbar content -->
|
213
|
+
</nav>
|
214
|
+
|
215
|
+
<nav class="navbar navbar-light" style="background-color: #e3f2fd;">
|
216
|
+
<!-- Navbar content -->
|
217
|
+
</nav>
|
218
|
+
----
|
219
|
+
|
220
|
+
|
208
221
|
== Buttons
|
209
222
|
|
210
223
|
Use Bootstrap’s custom button styles for actions in forms, dialogs, and
|
@@ -215,169 +228,128 @@ with a few extras thrown in for more control.
|
|
215
228
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
216
229
|
Refer to: link:{bs_doc_components_buttons}[Bootstrap Docs, window="_blank"].
|
217
230
|
|
231
|
+
=== Active buttons
|
232
|
+
|
233
|
+
Buttons will appear pressed (with a darker background, darker border, and
|
234
|
+
inset shadow) when active.
|
235
|
+
++++
|
236
|
+
<div class="doc-example mb-3">
|
237
|
+
<button type="button" class="btn btn-primary btn-raised">Primary</button>
|
238
|
+
<button type="button" class="btn btn-secondary btn-raised">Secondary</button>
|
239
|
+
<button type="button" class="btn btn-success btn-raised">Success</button>
|
240
|
+
<button type="button" class="btn btn-info btn-raised">Info</button>
|
241
|
+
<button type="button" class="btn btn-warning btn-raised">Warning</button>
|
242
|
+
<button type="button" class="btn btn-danger btn-raised">Danger</button>
|
243
|
+
<button type="button" class="btn btn-link btn-raised">Link</button>
|
244
|
+
</div>
|
218
245
|
++++
|
219
|
-
<!-- Buttons
|
220
|
-
============================================================================ -->
|
221
|
-
<div class="bs-docs-section">
|
222
|
-
<div class="row mb-4">
|
223
|
-
<div class="col-md-10">
|
224
|
-
<p class="bs-component">
|
225
|
-
<button type="button" class="btn btn-primary btn-raised">Primary</button>
|
226
|
-
<button type="button" class="btn btn-secondary btn-raised">Secondary</button>
|
227
|
-
<button type="button" class="btn btn-success btn-raised">Success</button>
|
228
|
-
<button type="button" class="btn btn-info btn-raised">Info</button>
|
229
|
-
<button type="button" class="btn btn-warning btn-raised">Warning</button>
|
230
|
-
<button type="button" class="btn btn-danger btn-raised">Danger</button>
|
231
|
-
<button type="button" class="btn btn-link btn-raised">Link</button>
|
232
|
-
</p>
|
233
|
-
<p class="bs-component">
|
234
|
-
<button type="button" class="btn btn-primary btn-raised disabled">Primary</button>
|
235
|
-
<button type="button" class="btn btn-secondary btn-raised disabled">Secondary</button>
|
236
|
-
<button type="button" class="btn btn-success btn-raised disabled">Success</button>
|
237
|
-
<button type="button" class="btn btn-info btn-raised disabled">Info</button>
|
238
|
-
<button type="button" class="btn btn-warning btn-raised disabled">Warning</button>
|
239
|
-
<button type="button" class="btn btn-danger btn-raised disabled">Danger</button>
|
240
|
-
<button type="button" class="btn btn-link btn-raised disabled">Link</button>
|
241
|
-
</p>
|
242
|
-
<p class="bs-component">
|
243
|
-
<button type="button" class="btn btn-outline-primary btn-raised">Primary</button>
|
244
|
-
<button type="button" class="btn btn-outline-secondary btn-raised">Secondary</button>
|
245
|
-
<button type="button" class="btn btn-outline-success btn-raised">Success</button>
|
246
|
-
<button type="button" class="btn btn-outline-info btn-raised">Info</button>
|
247
|
-
<button type="button" class="btn btn-outline-warning btn-raised">Warning</button>
|
248
|
-
<button type="button" class="btn btn-outline-danger btn-raised">Danger</button>
|
249
|
-
</p>
|
250
|
-
<div class="bs-component">
|
251
|
-
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
|
252
|
-
<button type="button" class="btn btn-primary btn-raised">Primary</button>
|
253
|
-
<div class="btn-group" role="group">
|
254
|
-
<button id="btnGroupDrop1" type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button>
|
255
|
-
<div class="dropdown-menu" aria-labelledby="btnGroupDrop1">
|
256
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
257
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
258
|
-
</div>
|
259
|
-
</div>
|
260
|
-
</div>
|
261
|
-
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
|
262
|
-
<button type="button" class="btn btn-success btn-raised">Success</button>
|
263
|
-
<div class="btn-group" role="group">
|
264
|
-
<button id="btnGroupDrop2" type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button>
|
265
|
-
<div class="dropdown-menu" aria-labelledby="btnGroupDrop2">
|
266
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
267
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
268
|
-
</div>
|
269
|
-
</div>
|
270
|
-
</div>
|
271
|
-
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
|
272
|
-
<button type="button" class="btn btn-info">Info</button>
|
273
|
-
<div class="btn-group" role="group">
|
274
|
-
<button id="btnGroupDrop3" type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button>
|
275
|
-
<div class="dropdown-menu" aria-labelledby="btnGroupDrop3">
|
276
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
277
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
278
|
-
</div>
|
279
|
-
</div>
|
280
|
-
</div>
|
281
|
-
<div class="btn-group" role="group" aria-label="Button group with nested dropdown">
|
282
|
-
<button type="button" class="btn btn-danger">Danger</button>
|
283
|
-
<div class="btn-group" role="group">
|
284
|
-
<button id="btnGroupDrop4" type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button>
|
285
|
-
<div class="dropdown-menu" aria-labelledby="btnGroupDrop4">
|
286
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
287
|
-
<a class="dropdown-item" href="#">Dropdown link</a>
|
288
|
-
</div>
|
289
|
-
</div>
|
290
|
-
</div>
|
291
|
-
</div>
|
292
|
-
<div class="bs-component mt-2">
|
293
|
-
<button type="button" class="btn btn-primary btn-raised btn-lg">Large button</button>
|
294
|
-
<button type="button" class="btn btn-primary btn-raised">Default button</button>
|
295
|
-
<button type="button" class="btn btn-primary btn-raised btn-sm">Small button</button>
|
296
|
-
</div>
|
297
|
-
</div>
|
298
|
-
<div class="col-md-12">
|
299
|
-
<p class="bs-component mt-2">
|
300
|
-
<button type="button" class="btn btn-primary btn-raised btn-lg btn-block">Block level button</button>
|
301
|
-
</p>
|
302
|
-
<div class="bs-component" style="margin-bottom: 15px;">
|
303
|
-
<div class="btn-group" data-toggle="buttons">
|
304
|
-
<label class="btn btn-primary btn-raised active">
|
305
|
-
<input type="checkbox" checked> Checkbox 1
|
306
|
-
</label>
|
307
|
-
<label class="btn btn-primary btn-raised">
|
308
|
-
<input type="checkbox"> Checkbox 2
|
309
|
-
</label>
|
310
|
-
<label class="btn btn-primary btn-raised">
|
311
|
-
<input type="checkbox"> Checkbox 3
|
312
|
-
</label>
|
313
|
-
</div>
|
314
|
-
</div>
|
315
|
-
<div class="bs-component" style="margin-bottom: 15px;">
|
316
|
-
<div class="btn-group" data-toggle="buttons">
|
317
|
-
<label class="btn btn-primary btn-raised active">
|
318
|
-
<input type="radio" name="options" id="option1" checked> Radio 1
|
319
|
-
</label>
|
320
|
-
<label class="btn btn-primary btn-raised">
|
321
|
-
<input type="radio" name="options" id="option2"> Radio 2
|
322
|
-
</label>
|
323
|
-
<label class="btn btn-primary btn-raised">
|
324
|
-
<input type="radio" name="options" id="option3"> Radio 3
|
325
|
-
</label>
|
326
|
-
</div>
|
327
|
-
</div>
|
328
246
|
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
247
|
+
=== Disabled buttons
|
248
|
+
|
249
|
+
Buttons look inactive by adding the disabled boolean attribute to any
|
250
|
+
<button> element.
|
251
|
+
++++
|
252
|
+
<div class="doc-example mb-3">
|
253
|
+
<button type="button" class="btn btn-primary btn-raised disabled">Primary</button>
|
254
|
+
<button type="button" class="btn btn-secondary btn-raised disabled">Secondary</button>
|
255
|
+
<button type="button" class="btn btn-success btn-raised disabled">Success</button>
|
256
|
+
<button type="button" class="btn btn-info btn-raised disabled">Info</button>
|
257
|
+
<button type="button" class="btn btn-warning btn-raised disabled">Warning</button>
|
258
|
+
<button type="button" class="btn btn-danger btn-raised disabled">Danger</button>
|
259
|
+
<button type="button" class="btn btn-link btn-raised disabled">Link</button>
|
260
|
+
</div>
|
261
|
+
++++
|
262
|
+
|
263
|
+
=== Outline buttons
|
264
|
+
|
265
|
+
In need of a button, but not the hefty background colors they bring? Replace
|
266
|
+
the default modifier classes with the `.btn-outline-*` ones to remove all
|
267
|
+
background images and colors on any button.
|
268
|
+
|
269
|
+
++++
|
270
|
+
<div class="doc-example mb-3">
|
271
|
+
<button type="button" class="btn btn-outline-primary btn-raised">Primary</button>
|
272
|
+
<button type="button" class="btn btn-outline-secondary btn-raised">Secondary</button>
|
273
|
+
<button type="button" class="btn btn-outline-success btn-raised">Success</button>
|
274
|
+
<button type="button" class="btn btn-outline-info btn-raised">Info</button>
|
275
|
+
<button type="button" class="btn btn-outline-warning btn-raised">Warning</button>
|
276
|
+
<button type="button" class="btn btn-outline-danger btn-raised">Danger</button>
|
277
|
+
</div>
|
278
|
+
++++
|
279
|
+
|
280
|
+
=== Button sizes
|
281
|
+
|
282
|
+
Beside the default size, small and large buttons are available.
|
283
|
+
|
284
|
+
++++
|
285
|
+
<div class="doc-example mb-3">
|
286
|
+
<button type="button" class="btn btn-primary btn-raised btn-lg">Large button</button>
|
287
|
+
<button type="button" class="btn btn-primary btn-raised">Default button</button>
|
288
|
+
<button type="button" class="btn btn-primary btn-raised btn-sm">Small button</button>
|
289
|
+
</div>
|
290
|
+
++++
|
291
|
+
|
292
|
+
=== Block level button
|
293
|
+
|
294
|
+
Create block level buttons—those that span the full width of a parent—by
|
295
|
+
adding .btn-block.
|
296
|
+
|
297
|
+
++++
|
298
|
+
<div class="doc-example mb-3">
|
299
|
+
<button type="button" class="btn btn-primary btn-lg btn-block btn-raised">Block level button</button>
|
300
|
+
<button type="button" class="btn btn-secondary btn-lg btn-block btn-raised">Block level button</button>
|
301
|
+
</div>
|
302
|
+
++++
|
303
|
+
|
304
|
+
=== Toggle button
|
305
|
+
|
306
|
+
++++
|
307
|
+
<div class="doc-example mb-3">
|
308
|
+
<button type="button" class="btn btn-primary" data-toggle="button" aria-pressed="false" autocomplete="off">
|
309
|
+
Single toggle
|
310
|
+
</button>
|
311
|
+
</div>
|
312
|
+
++++
|
313
|
+
|
314
|
+
=== Checkbox and radio buttons
|
315
|
+
|
316
|
+
Bootstrap’s .button styles can be applied to other elements, such as
|
317
|
+
`<label>`, to provide checkbox or radio style button toggling. The checked
|
318
|
+
state for these buttons is only updated via click event on the button.
|
319
|
+
|
320
|
+
++++
|
321
|
+
<div class="doc-example mb-3">
|
322
|
+
<div class="btn-group" data-toggle="buttons">
|
323
|
+
<label class="btn btn-primary btn-raised active">
|
324
|
+
<input type="checkbox" checked> Checkbox 1
|
325
|
+
</label>
|
326
|
+
<label class="btn btn-primary btn-raised">
|
327
|
+
<input type="checkbox"> Checkbox 2
|
328
|
+
</label>
|
329
|
+
<label class="btn btn-primary btn-raised">
|
330
|
+
<input type="checkbox"> Checkbox 3
|
331
|
+
</label>
|
332
|
+
</div>
|
333
|
+
</div>
|
334
|
+
++++
|
335
|
+
|
336
|
+
++++
|
337
|
+
<div class="doc-example mb-5">
|
338
|
+
<div class="btn-group btn-group-toggle" data-toggle="buttons">
|
339
|
+
<label class="btn btn-secondary btn-raised active">
|
340
|
+
<input type="radio" name="options" id="option1" autocomplete="off" checked> Active
|
341
|
+
</label>
|
342
|
+
<label class="btn btn-secondary btn-raised">
|
343
|
+
<input type="radio" name="options" id="option2" autocomplete="off"> Radio
|
344
|
+
</label>
|
345
|
+
<label class="btn btn-secondary btn-raised">
|
346
|
+
<input type="radio" name="options" id="option3" autocomplete="off"> Radio
|
347
|
+
</label>
|
377
348
|
</div>
|
378
349
|
</div>
|
379
350
|
++++
|
380
351
|
|
352
|
+
|
381
353
|
== Typography
|
382
354
|
|
383
355
|
Bootstrap sets basic global display, typography, and link styles. When more
|
@@ -390,13 +362,10 @@ customize their browser defaults as needed.
|
|
390
362
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
391
363
|
Refer to: link:{bs_doc_content_typography}[Bootstrap Docs, window="_blank"].
|
392
364
|
|
365
|
+
=== Headings
|
366
|
+
|
393
367
|
++++
|
394
|
-
|
395
|
-
============================================================================ -->
|
396
|
-
<div class="bs-docs-section">
|
397
|
-
<!-- Typography - Headings
|
398
|
-
========================================================================== -->
|
399
|
-
<!-- Headings -->
|
368
|
+
<div class="doc-example mb-3">
|
400
369
|
<div class="row mb-5">
|
401
370
|
<div class="col-md-4">
|
402
371
|
<div class="bs-component">
|
@@ -416,7 +385,7 @@ Refer to: link:{bs_doc_content_typography}[Bootstrap Docs, window="_blank"].
|
|
416
385
|
<div class="col-md-4">
|
417
386
|
<div class="bs-component">
|
418
387
|
<h3 class="notoc">Example body text</h2>
|
419
|
-
<p>Nullam quis risus eget <a href="
|
388
|
+
<p>Nullam quis risus eget <a href="javascript:(void)">urna mollis ornare</a> vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
|
420
389
|
<p><small>This line of text is meant to be treated as fine print.</small></p>
|
421
390
|
<p>The following is <strong>rendered as bold text</strong>.</p>
|
422
391
|
<p>The following is <em>rendered as italicized text</em>.</p>
|
@@ -435,15 +404,14 @@ Refer to: link:{bs_doc_content_typography}[Bootstrap Docs, window="_blank"].
|
|
435
404
|
</div>
|
436
405
|
</div>
|
437
406
|
</div>
|
407
|
+
</div>
|
408
|
+
++++
|
438
409
|
|
439
|
-
|
440
|
-
|
410
|
+
=== Blockquotes
|
411
|
+
|
412
|
+
++++
|
413
|
+
<div class="doc-example mb-3">
|
441
414
|
<div class="row">
|
442
|
-
<div class="col-md-12">
|
443
|
-
<h2 id="type-blockquotes" class="notoc">Blockquotes</h3>
|
444
|
-
</div>
|
445
|
-
</div>
|
446
|
-
<div class="row mb-5">
|
447
415
|
<div class="col-md-6">
|
448
416
|
<div class="bs-component">
|
449
417
|
<blockquote class="blockquote">
|
@@ -468,7 +436,7 @@ Refer to: link:{bs_doc_content_typography}[Bootstrap Docs, window="_blank"].
|
|
468
436
|
|
469
437
|
Due to the widespread use of tables across third-party widgets like calendars
|
470
438
|
and date pickers, we’ve designed our tables to be opt-in. Just add the base
|
471
|
-
class
|
439
|
+
class `.table` to any `<table>`, then extend with custom styles or our various
|
472
440
|
included modifier classes.
|
473
441
|
|
474
442
|
Using the most basic table markup, here’s how .table-based tables look in
|
@@ -478,71 +446,64 @@ tables will be styled in the same manner as the parent.
|
|
478
446
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
479
447
|
Refer to: link:{bs_doc_content_tables}[Bootstrap Docs, window="_blank"].
|
480
448
|
|
481
|
-
++++
|
482
|
-
<!-- Tables
|
483
|
-
============================================================================ -->
|
484
|
-
<div class="bs-docs-section">
|
485
|
-
<div class="row mb-5">
|
486
|
-
<div class="col-md-12">
|
487
449
|
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
</
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
</
|
542
|
-
</
|
543
|
-
</
|
544
|
-
|
545
|
-
</div>
|
450
|
+
++++
|
451
|
+
<div class="doc-example mb-3">
|
452
|
+
<div class="bs-component">
|
453
|
+
<table class="table table-striped table-hover table-bordered">
|
454
|
+
<thead>
|
455
|
+
<tr>
|
456
|
+
<th>#</th>
|
457
|
+
<th>Column heading</th>
|
458
|
+
<th>Column heading</th>
|
459
|
+
<th>Column heading</th>
|
460
|
+
</tr>
|
461
|
+
</thead>
|
462
|
+
<tbody>
|
463
|
+
<tr>
|
464
|
+
<td>1</td>
|
465
|
+
<td>Column content</td>
|
466
|
+
<td>Column content</td>
|
467
|
+
<td>Column content</td>
|
468
|
+
</tr>
|
469
|
+
<tr>
|
470
|
+
<td>2</td>
|
471
|
+
<td>Column content</td>
|
472
|
+
<td>Column content</td>
|
473
|
+
<td>Column content</td>
|
474
|
+
</tr>
|
475
|
+
<tr class="table-info">
|
476
|
+
<td>3</td>
|
477
|
+
<td>Column content</td>
|
478
|
+
<td>Column content</td>
|
479
|
+
<td>Column content</td>
|
480
|
+
</tr>
|
481
|
+
<tr class="table-success">
|
482
|
+
<td>4</td>
|
483
|
+
<td>Column content</td>
|
484
|
+
<td>Column content</td>
|
485
|
+
<td>Column content</td>
|
486
|
+
</tr>
|
487
|
+
<tr class="table-danger">
|
488
|
+
<td>5</td>
|
489
|
+
<td>Column content</td>
|
490
|
+
<td>Column content</td>
|
491
|
+
<td>Column content</td>
|
492
|
+
</tr>
|
493
|
+
<tr class="table-warning">
|
494
|
+
<td>6</td>
|
495
|
+
<td>Column content</td>
|
496
|
+
<td>Column content</td>
|
497
|
+
<td>Column content</td>
|
498
|
+
</tr>
|
499
|
+
<tr class="table-active">
|
500
|
+
<td>7</td>
|
501
|
+
<td>Column content</td>
|
502
|
+
<td>Column content</td>
|
503
|
+
<td>Column content</td>
|
504
|
+
</tr>
|
505
|
+
</tbody>
|
506
|
+
</table>
|
546
507
|
</div>
|
547
508
|
</div>
|
548
509
|
++++
|
@@ -564,78 +525,75 @@ pass:[]
|
|
564
525
|
Refer to: link:{bs_doc_components_forms}[Bootstrap Docs, window="_blank"].
|
565
526
|
|
566
527
|
++++
|
567
|
-
|
568
|
-
|
569
|
-
<div class="
|
570
|
-
|
528
|
+
<div class="doc-example mb-3">
|
529
|
+
<form>
|
530
|
+
<div class="form-group">
|
531
|
+
<label for="exampleInputEmail1" class="bmd-label-floating">Email address</label>
|
532
|
+
<input type="email" class="form-control" id="exampleInputEmail1" autocomplete="none">
|
533
|
+
<span class="form-clear d-none"><i class="mdi mdi-2x mdi-format-clear"></i></span>
|
534
|
+
<span class="bmd-help">We'll never share your email with anyone else.</span>
|
535
|
+
</div>
|
536
|
+
<div class="form-group">
|
537
|
+
<label for="exampleInputPassword1" class="bmd-label-floating">Password</label>
|
538
|
+
<input type="password" class="form-control" id="exampleInputPassword1">
|
539
|
+
<span class="form-clear d-none"><i class="mdi mdi-2x mdi-format-clear"></i></span>
|
540
|
+
</div>
|
541
|
+
<div class="form-group form-check">
|
542
|
+
<input type="checkbox" class="form-check-input" id="exampleCheck1">
|
543
|
+
<label class="form-check-label" for="exampleCheck1">Check me out</label>
|
544
|
+
</div>
|
545
|
+
<button type="submit" class="btn btn-primary btn-raised">Submit</button>
|
546
|
+
</form>
|
547
|
+
</div>
|
548
|
+
++++
|
571
549
|
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
<input type="email" class="form-control" id="exampleInputEmail1" autocomplete="none">
|
576
|
-
<span class="bmd-help">We'll never share your email with anyone else.</span>
|
577
|
-
</div>
|
578
|
-
<div class="form-group">
|
579
|
-
<label for="exampleInputPassword1" class="bmd-label-floating">Password</label>
|
580
|
-
<input type="password" class="form-control" id="exampleInputPassword1">
|
581
|
-
</div>
|
582
|
-
<div class="form-group">
|
583
|
-
<label for="exampleSelect1" class="bmd-label-floating">Example select</label>
|
584
|
-
<select class="form-control" id="exampleSelect1">
|
585
|
-
<option>1</option>
|
586
|
-
<option>2</option>
|
587
|
-
<option>3</option>
|
588
|
-
<option>4</option>
|
589
|
-
<option>5</option>
|
590
|
-
</select>
|
591
|
-
</div>
|
592
|
-
<div class="form-group">
|
593
|
-
<label for="exampleSelect2" class="bmd-label-floating">Example multiple select</label>
|
594
|
-
<select multiple class="form-control" id="exampleSelect2">
|
595
|
-
<option>1</option>
|
596
|
-
<option>2</option>
|
597
|
-
<option>3</option>
|
598
|
-
<option>4</option>
|
599
|
-
<option>5</option>
|
600
|
-
</select>
|
601
|
-
</div>
|
602
|
-
<div class="form-group">
|
603
|
-
<label for="exampleTextarea" class="bmd-label-floating">Example textarea</label>
|
604
|
-
<textarea class="form-control" id="exampleTextarea" rows="3"></textarea>
|
605
|
-
</div>
|
606
|
-
<div class="form-group">
|
607
|
-
<label for="exampleInputFile" class="bmd-label-floating">File input</label>
|
608
|
-
<input type="file" class="form-control-file" id="exampleInputFile">
|
609
|
-
<small class="text-muted">This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.</small>
|
610
|
-
</div>
|
611
|
-
<div class="radio">
|
612
|
-
<label>
|
613
|
-
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
|
614
|
-
Option one is this and that—be sure to include why it's great
|
615
|
-
</label>
|
616
|
-
</div>
|
617
|
-
<div class="radio">
|
618
|
-
<label>
|
619
|
-
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
|
620
|
-
Option two can be something else and selecting it will deselect option one
|
621
|
-
</label>
|
622
|
-
</div>
|
623
|
-
<div class="radio disabled">
|
624
|
-
<label>
|
625
|
-
<input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled>
|
626
|
-
Option three is disabled
|
627
|
-
</label>
|
628
|
-
</div>
|
629
|
-
<div class="checkbox">
|
630
|
-
<label>
|
631
|
-
<input type="checkbox"> Check me out
|
632
|
-
</label>
|
633
|
-
</div>
|
634
|
-
<button class="btn btn-default">Cancel</button>
|
635
|
-
<button type="submit" class="btn btn-primary btn-raised">Submit</button>
|
636
|
-
</form>
|
550
|
+
Textual form controls—like <input>s, <select>s, and <textarea>s—are styled with
|
551
|
+
the .form-control class. Included are styles for general appearance, focus
|
552
|
+
state, sizing, and more.
|
637
553
|
|
638
|
-
|
554
|
+
++++
|
555
|
+
<div class="doc-example mb-3">
|
556
|
+
<form>
|
557
|
+
<div class="form-group">
|
558
|
+
<label for="exampleInputEmail1">Email address</label>
|
559
|
+
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
|
560
|
+
</div>
|
561
|
+
<div class="form-group">
|
562
|
+
<label for="exampleFormControlSelect1">Example select</label>
|
563
|
+
<select class="form-control" id="exampleFormControlSelect1">
|
564
|
+
<option>1</option>
|
565
|
+
<option>2</option>
|
566
|
+
<option>3</option>
|
567
|
+
<option>4</option>
|
568
|
+
<option>5</option>
|
569
|
+
</select>
|
570
|
+
</div>
|
571
|
+
<div class="form-group">
|
572
|
+
<label for="exampleFormControlSelect2">Example multiple select</label>
|
573
|
+
<select multiple class="form-control" id="exampleFormControlSelect2">
|
574
|
+
<option>option 1</option>
|
575
|
+
<option>option 2</option>
|
576
|
+
<option>option 3</option>
|
577
|
+
</select>
|
578
|
+
</div>
|
579
|
+
<div class="form-group">
|
580
|
+
<label for="exampleFormControlTextarea1">Example textarea</label>
|
581
|
+
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
|
582
|
+
</div>
|
583
|
+
</form>
|
584
|
+
</div>
|
585
|
+
++++
|
586
|
+
|
587
|
+
For file inputs, swap the .form-control for .form-control-file.
|
588
|
+
|
589
|
+
++++
|
590
|
+
<div class="doc-example mb-3">
|
591
|
+
<form>
|
592
|
+
<div class="form-group">
|
593
|
+
<label for="exampleFormControlFile1">Example file input</label>
|
594
|
+
<input type="file" class="form-control-file" id="exampleFormControlFile1">
|
595
|
+
</div>
|
596
|
+
</form>
|
639
597
|
</div>
|
640
598
|
++++
|
641
599
|
|
@@ -660,117 +618,107 @@ a tabbed interface. Use them to create tabbable regions with our tab
|
|
660
618
|
JavaScript plugin.
|
661
619
|
|
662
620
|
++++
|
663
|
-
|
664
|
-
|
665
|
-
<
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
<
|
670
|
-
<
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
</div>
|
686
|
-
</li>
|
687
|
-
<li class="nav-item">
|
688
|
-
<a class="nav-link disabled" href="#">Disabled</a>
|
689
|
-
</li>
|
690
|
-
</ul>
|
691
|
-
<div id="myTabContent" class="tab-content">
|
692
|
-
<div class="tab-pane fade active in" id="home">
|
693
|
-
<p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
|
694
|
-
</div>
|
695
|
-
<div class="tab-pane fade" id="profile">
|
696
|
-
<p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p>
|
697
|
-
</div>
|
698
|
-
<div class="tab-pane fade" id="dropdown1">
|
699
|
-
<p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p>
|
700
|
-
</div>
|
701
|
-
<div class="tab-pane fade" id="dropdown2">
|
702
|
-
<p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p>
|
703
|
-
</div>
|
621
|
+
<div class="doc-example mb-3">
|
622
|
+
<div class="bs-component">
|
623
|
+
<ul class="nav nav-tabs">
|
624
|
+
<li class="nav-item">
|
625
|
+
<a class="nav-link active" data-toggle="tab" href="#home">Home</a>
|
626
|
+
</li>
|
627
|
+
<li class="nav-item">
|
628
|
+
<a class="nav-link" data-toggle="tab" href="#profile">Profile</a>
|
629
|
+
</li>
|
630
|
+
<li class="nav-item dropdown">
|
631
|
+
<a class="nav-link dropdown-toggle" data-toggle="dropdown"
|
632
|
+
href="javascript:(void)"
|
633
|
+
role="button"
|
634
|
+
aria-haspopup="true" aria-expanded="false">
|
635
|
+
Dropdown
|
636
|
+
</a>
|
637
|
+
<div class="dropdown-menu">
|
638
|
+
<a class="dropdown-item" href="javascript:(void)">Action</a>
|
639
|
+
<a class="dropdown-item" href="javascript:(void)">Another action</a>
|
640
|
+
<a class="dropdown-item" href="javascript:(void)">Something else here</a>
|
641
|
+
<div class="dropdown-divider"></div>
|
642
|
+
<a class="dropdown-item" href="javascript:(void)">Separated link</a>
|
704
643
|
</div>
|
644
|
+
</li>
|
645
|
+
<li class="nav-item">
|
646
|
+
<a class="nav-link disabled" href="javascript:(void)">Disabled</a>
|
647
|
+
</li>
|
648
|
+
</ul>
|
649
|
+
<div id="myTabContent" class="tab-content">
|
650
|
+
<div class="tab-pane fade active in" id="home">
|
651
|
+
<p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
|
652
|
+
</div>
|
653
|
+
<div class="tab-pane fade" id="profile">
|
654
|
+
<p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p>
|
655
|
+
</div>
|
656
|
+
<div class="tab-pane fade" id="dropdown1">
|
657
|
+
<p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p>
|
658
|
+
</div>
|
659
|
+
<div class="tab-pane fade" id="dropdown2">
|
660
|
+
<p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p>
|
705
661
|
</div>
|
706
662
|
</div>
|
707
|
-
|
708
663
|
</div>
|
709
664
|
</div>
|
710
665
|
++++
|
711
666
|
|
667
|
+
|
712
668
|
=== Pills
|
713
669
|
|
714
|
-
Take that same HTML as Tabs, but use .nav-pills class instead
|
670
|
+
Take that same HTML as Tabs, but use .nav-pills class instead.
|
715
671
|
|
716
672
|
++++
|
717
|
-
|
718
|
-
|
719
|
-
<div class="bs-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
<
|
725
|
-
<
|
726
|
-
|
727
|
-
|
728
|
-
</
|
729
|
-
<
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
<
|
750
|
-
<
|
751
|
-
|
752
|
-
|
753
|
-
</
|
754
|
-
<
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
</li>
|
767
|
-
<li class="nav-item">
|
768
|
-
<a class="nav-link disabled" href="#">Disabled</a>
|
769
|
-
</li>
|
770
|
-
</ul>
|
771
|
-
</div>
|
772
|
-
</div>
|
773
|
-
|
673
|
+
<div class="doc-example mb-3">
|
674
|
+
<h5 class="notoc">Standard Pills</h5>
|
675
|
+
<div class="bs-component">
|
676
|
+
<ul class="nav nav-pills">
|
677
|
+
<li class="nav-item">
|
678
|
+
<a class="nav-link active" href="javascript:(void)">Active</a>
|
679
|
+
</li>
|
680
|
+
<li class="nav-item dropdown">
|
681
|
+
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="javascript:(void)" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
|
682
|
+
<div class="dropdown-menu">
|
683
|
+
<a class="dropdown-item" href="javascript:(void)">Action</a>
|
684
|
+
<a class="dropdown-item" href="javascript:(void)">Another action</a>
|
685
|
+
<a class="dropdown-item" href="javascript:(void)">Something else here</a>
|
686
|
+
<div class="dropdown-divider"></div>
|
687
|
+
<a class="dropdown-item" href="javascript:(void)">Separated link</a>
|
688
|
+
</div>
|
689
|
+
</li>
|
690
|
+
<li class="nav-item">
|
691
|
+
<a class="nav-link" href="javascript:(void)">Link</a>
|
692
|
+
</li>
|
693
|
+
<li class="nav-item">
|
694
|
+
<a class="nav-link disabled" href="javascript:(void)">Disabled</a>
|
695
|
+
</li>
|
696
|
+
</ul>
|
697
|
+
</div>
|
698
|
+
<br>
|
699
|
+
<h5 class="notoc">Stacked Pills (vertical)</h5>
|
700
|
+
<div class="bs-component">
|
701
|
+
<ul class="nav nav-pills flex-column">
|
702
|
+
<li class="nav-item">
|
703
|
+
<a class="nav-link active" href="javascript:(void)">Active</a>
|
704
|
+
</li>
|
705
|
+
<li class="nav-item dropdown">
|
706
|
+
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="javascript:(void)" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
|
707
|
+
<div class="dropdown-menu">
|
708
|
+
<a class="dropdown-item" href="javascript:(void)">Action</a>
|
709
|
+
<a class="dropdown-item" href="javascript:(void)">Another action</a>
|
710
|
+
<a class="dropdown-item" href="javascript:(void)">Something else here</a>
|
711
|
+
<div class="dropdown-divider"></div>
|
712
|
+
<a class="dropdown-item" href="javascript:(void)">Separated link</a>
|
713
|
+
</div>
|
714
|
+
</li>
|
715
|
+
<li class="nav-item">
|
716
|
+
<a class="nav-link" href="javascript:(void)">Link</a>
|
717
|
+
</li>
|
718
|
+
<li class="nav-item">
|
719
|
+
<a class="nav-link disabled" href="javascript:(void)">Disabled</a>
|
720
|
+
</li>
|
721
|
+
</ul>
|
774
722
|
</div>
|
775
723
|
</div>
|
776
724
|
++++
|
@@ -783,28 +731,20 @@ hierarchy that automatically adds separators via CSS.
|
|
783
731
|
Separators are automatically added in CSS through ::before and content.
|
784
732
|
|
785
733
|
++++
|
786
|
-
|
787
|
-
|
788
|
-
<
|
789
|
-
|
790
|
-
|
791
|
-
<
|
792
|
-
<
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
<ol class="breadcrumb">
|
801
|
-
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
802
|
-
<li class="breadcrumb-item"><a href="#">Library</a></li>
|
803
|
-
<li class="breadcrumb-item active">Data</li>
|
804
|
-
</ol>
|
805
|
-
</div>
|
806
|
-
</div>
|
807
|
-
|
734
|
+
<div class="doc-example mb-3">
|
735
|
+
<div class="bs-component">
|
736
|
+
<ol class="breadcrumb">
|
737
|
+
<li class="breadcrumb-item active">Home</li>
|
738
|
+
</ol>
|
739
|
+
<ol class="breadcrumb">
|
740
|
+
<li class="breadcrumb-item"><a href="javascript:(void)">Home</a></li>
|
741
|
+
<li class="breadcrumb-item active">Library</li>
|
742
|
+
</ol>
|
743
|
+
<ol class="breadcrumb">
|
744
|
+
<li class="breadcrumb-item"><a href="javascript:(void)">Home</a></li>
|
745
|
+
<li class="breadcrumb-item"><a href="javascript:(void)">Library</a></li>
|
746
|
+
<li class="breadcrumb-item active">Data</li>
|
747
|
+
</ol>
|
808
748
|
</div>
|
809
749
|
</div>
|
810
750
|
++++
|
@@ -818,90 +758,81 @@ the number of available links. Use a wrapping
|
|
818
758
|
it as a navigation section to screen readers and other assistive technologies.
|
819
759
|
|
820
760
|
++++
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
<
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
<a class="page-link" href="#">5</a>
|
897
|
-
</li>
|
898
|
-
<li class="page-item">
|
899
|
-
<a class="page-link" href="#">»</a>
|
900
|
-
</li>
|
901
|
-
</ul>
|
902
|
-
</div>
|
903
|
-
|
904
|
-
</div>
|
761
|
+
<div class="doc-example mb-3">
|
762
|
+
<div>
|
763
|
+
<ul class="pagination">
|
764
|
+
<li class="page-item disabled">
|
765
|
+
<a class="page-link" href="javascript:(void)">«</a>
|
766
|
+
</li>
|
767
|
+
<li class="page-item active">
|
768
|
+
<a class="page-link" href="javascript:(void)">1</a>
|
769
|
+
</li>
|
770
|
+
<li class="page-item">
|
771
|
+
<a class="page-link" href="javascript:(void)">2</a>
|
772
|
+
</li>
|
773
|
+
<li class="page-item">
|
774
|
+
<a class="page-link" href="javascript:(void)">3</a>
|
775
|
+
</li>
|
776
|
+
<li class="page-item">
|
777
|
+
<a class="page-link" href="javascript:(void)">4</a>
|
778
|
+
</li>
|
779
|
+
<li class="page-item">
|
780
|
+
<a class="page-link" href="javascript:(void)">5</a>
|
781
|
+
</li>
|
782
|
+
<li class="page-item">
|
783
|
+
<a class="page-link" href="javascript:(void)">»</a>
|
784
|
+
</li>
|
785
|
+
</ul>
|
786
|
+
</div>
|
787
|
+
<div>
|
788
|
+
<ul class="pagination pagination-lg">
|
789
|
+
<li class="page-item disabled">
|
790
|
+
<a class="page-link" href="javascript:(void)">«</a>
|
791
|
+
</li>
|
792
|
+
<li class="page-item active">
|
793
|
+
<a class="page-link" href="javascript:(void)">1</a>
|
794
|
+
</li>
|
795
|
+
<li class="page-item">
|
796
|
+
<a class="page-link" href="javascript:(void)">2</a>
|
797
|
+
</li>
|
798
|
+
<li class="page-item">
|
799
|
+
<a class="page-link" href="javascript:(void)">3</a>
|
800
|
+
</li>
|
801
|
+
<li class="page-item">
|
802
|
+
<a class="page-link" href="javascript:(void)">4</a>
|
803
|
+
</li>
|
804
|
+
<li class="page-item">
|
805
|
+
<a class="page-link" href="javascript:(void)">5</a>
|
806
|
+
</li>
|
807
|
+
<li class="page-item">
|
808
|
+
<a class="page-link" href="javascript:(void)">»</a>
|
809
|
+
</li>
|
810
|
+
</ul>
|
811
|
+
</div>
|
812
|
+
<div>
|
813
|
+
<ul class="pagination pagination-sm">
|
814
|
+
<li class="page-item disabled">
|
815
|
+
<a class="page-link" href="javascript:(void)">«</a>
|
816
|
+
</li>
|
817
|
+
<li class="page-item active">
|
818
|
+
<a class="page-link" href="javascript:(void)">1</a>
|
819
|
+
</li>
|
820
|
+
<li class="page-item">
|
821
|
+
<a class="page-link" href="javascript:(void)">2</a>
|
822
|
+
</li>
|
823
|
+
<li class="page-item">
|
824
|
+
<a class="page-link" href="javascript:(void)">3</a>
|
825
|
+
</li>
|
826
|
+
<li class="page-item">
|
827
|
+
<a class="page-link" href="javascript:(void)">4</a>
|
828
|
+
</li>
|
829
|
+
<li class="page-item">
|
830
|
+
<a class="page-link" href="javascript:(void)">5</a>
|
831
|
+
</li>
|
832
|
+
<li class="page-item">
|
833
|
+
<a class="page-link" href="javascript:(void)">»</a>
|
834
|
+
</li>
|
835
|
+
</ul>
|
905
836
|
</div>
|
906
837
|
</div>
|
907
838
|
++++
|
@@ -910,7 +841,6 @@ it as a navigation section to screen readers and other assistive technologies.
|
|
910
841
|
|
911
842
|
lorem:sentences[5]
|
912
843
|
|
913
|
-
|
914
844
|
=== Alerts
|
915
845
|
|
916
846
|
Alerts provide contextual feedback messages for typical user actions with the
|
@@ -925,16 +855,14 @@ pass:[]
|
|
925
855
|
Refer to: link:{bs_doc_components_alerts}[Bootstrap Docs, window="_blank"].
|
926
856
|
|
927
857
|
++++
|
928
|
-
|
929
|
-
============================================================================ -->
|
930
|
-
<div class="bs-docs-section">
|
858
|
+
<div class="doc-example mb-3">
|
931
859
|
<div class="row mb-3">
|
932
860
|
<div class="col-md-12">
|
933
861
|
<div class="bs-component">
|
934
862
|
<div class="alert alert-dismissible alert-warning">
|
935
863
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
936
864
|
<h4 class="alert-heading notoc">Warning!</h4>
|
937
|
-
<p class="mb-0">Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="
|
865
|
+
<p class="mb-0">Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="javascript:(void)" class="alert-link">vel scelerisque nisl consectetur et</a>.</p>
|
938
866
|
</div>
|
939
867
|
</div>
|
940
868
|
</div>
|
@@ -944,7 +872,7 @@ Refer to: link:{bs_doc_components_alerts}[Bootstrap Docs, window="_blank"].
|
|
944
872
|
<div class="bs-component">
|
945
873
|
<div class="alert alert-dismissible alert-danger">
|
946
874
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
947
|
-
<strong>Oh snap!</strong> <a href="
|
875
|
+
<strong>Oh snap!</strong> <a href="javascript:(void)" class="alert-link">Change a few things up</a> and try submitting again.
|
948
876
|
</div>
|
949
877
|
</div>
|
950
878
|
</div>
|
@@ -952,7 +880,7 @@ Refer to: link:{bs_doc_components_alerts}[Bootstrap Docs, window="_blank"].
|
|
952
880
|
<div class="bs-component">
|
953
881
|
<div class="alert alert-dismissible alert-success">
|
954
882
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
955
|
-
<strong>Well done!</strong> You successfully read <a href="
|
883
|
+
<strong>Well done!</strong> You successfully read <a href="javascript:(void)" class="alert-link">this important alert message</a>.
|
956
884
|
</div>
|
957
885
|
</div>
|
958
886
|
</div>
|
@@ -960,7 +888,7 @@ Refer to: link:{bs_doc_components_alerts}[Bootstrap Docs, window="_blank"].
|
|
960
888
|
<div class="bs-component">
|
961
889
|
<div class="alert alert-dismissible alert-info">
|
962
890
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
963
|
-
<strong>Heads up!</strong> This <a href="
|
891
|
+
<strong>Heads up!</strong> This <a href="javascript:(void)" class="alert-link">alert needs your attention</a>, but it's not super important.
|
964
892
|
</div>
|
965
893
|
</div>
|
966
894
|
</div>
|
@@ -984,32 +912,26 @@ pass:[]
|
|
984
912
|
Refer to: link:{bs_doc_components_badges}[Bootstrap Docs, window="_blank"].
|
985
913
|
|
986
914
|
++++
|
987
|
-
|
988
|
-
|
989
|
-
<
|
990
|
-
|
991
|
-
<
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
<span class="badge badge-pill badge-warning">Warning</span>
|
1008
|
-
<span class="badge badge-pill badge-info">Info</span>
|
1009
|
-
<span class="badge badge-pill badge-light">Light</span>
|
1010
|
-
<span class="badge badge-pill badge-dark">Dark</span>
|
1011
|
-
</div>
|
1012
|
-
</div>
|
915
|
+
<div class="doc-example mb-3">
|
916
|
+
<div class="bs-component mb-3">
|
917
|
+
<span class="badge badge-primary">Primary</span>
|
918
|
+
<span class="badge badge-secondary">Secondary</span>
|
919
|
+
<span class="badge badge-success">Success</span>
|
920
|
+
<span class="badge badge-danger">Danger</span>
|
921
|
+
<span class="badge badge-warning">Warning</span>
|
922
|
+
<span class="badge badge-info">Info</span>
|
923
|
+
<span class="badge badge-light">Light</span>
|
924
|
+
<span class="badge badge-dark">Dark</span>
|
925
|
+
</div>
|
926
|
+
<div class="bs-component mb-4">
|
927
|
+
<span class="badge badge-pill badge-primary">Primary</span>
|
928
|
+
<span class="badge badge-pill badge-secondary">Secondary</span>
|
929
|
+
<span class="badge badge-pill badge-success">Success</span>
|
930
|
+
<span class="badge badge-pill badge-danger">Danger</span>
|
931
|
+
<span class="badge badge-pill badge-warning">Warning</span>
|
932
|
+
<span class="badge badge-pill badge-info">Info</span>
|
933
|
+
<span class="badge badge-pill badge-light">Light</span>
|
934
|
+
<span class="badge badge-pill badge-dark">Dark</span>
|
1013
935
|
</div>
|
1014
936
|
</div>
|
1015
937
|
++++
|
@@ -1028,18 +950,10 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1028
950
|
=== Basic
|
1029
951
|
|
1030
952
|
++++
|
1031
|
-
|
1032
|
-
|
1033
|
-
<div class="
|
1034
|
-
|
1035
|
-
<div class="col-md-10">
|
1036
|
-
|
1037
|
-
<div class="bs-component">
|
1038
|
-
<div class="progress">
|
1039
|
-
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
1040
|
-
</div>
|
1041
|
-
</div>
|
1042
|
-
|
953
|
+
<div class="doc-example mb-3">
|
954
|
+
<div class="bs-component">
|
955
|
+
<div class="progress">
|
956
|
+
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
1043
957
|
</div>
|
1044
958
|
</div>
|
1045
959
|
</div>
|
@@ -1048,27 +962,19 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1048
962
|
=== Contextual alternatives
|
1049
963
|
|
1050
964
|
++++
|
1051
|
-
|
1052
|
-
|
1053
|
-
<div class="
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
<div class="
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
<div class="progress">
|
1065
|
-
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
|
1066
|
-
</div>
|
1067
|
-
<div class="progress">
|
1068
|
-
<div class="progress-bar bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
1069
|
-
</div>
|
1070
|
-
</div>
|
1071
|
-
|
965
|
+
<div class="doc-example mb-3">
|
966
|
+
<div class="bs-component">
|
967
|
+
<div class="progress">
|
968
|
+
<div class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
969
|
+
</div>
|
970
|
+
<div class="progress">
|
971
|
+
<div class="progress-bar bg-info" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
|
972
|
+
</div>
|
973
|
+
<div class="progress">
|
974
|
+
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
|
975
|
+
</div>
|
976
|
+
<div class="progress">
|
977
|
+
<div class="progress-bar bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
1072
978
|
</div>
|
1073
979
|
</div>
|
1074
980
|
</div>
|
@@ -1077,20 +983,12 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1077
983
|
=== Multiple bars
|
1078
984
|
|
1079
985
|
++++
|
1080
|
-
|
1081
|
-
|
1082
|
-
<div class="
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
<div class="bs-component">
|
1087
|
-
<div class="progress">
|
1088
|
-
<div class="progress-bar" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div>
|
1089
|
-
<div class="progress-bar bg-success" role="progressbar" style="width: 30%" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100"></div>
|
1090
|
-
<div class="progress-bar bg-info" role="progressbar" style="width: 20%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div>
|
1091
|
-
</div>
|
1092
|
-
</div>
|
1093
|
-
|
986
|
+
<div class="doc-example mb-3">
|
987
|
+
<div class="bs-component">
|
988
|
+
<div class="progress">
|
989
|
+
<div class="progress-bar" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div>
|
990
|
+
<div class="progress-bar bg-success" role="progressbar" style="width: 30%" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100"></div>
|
991
|
+
<div class="progress-bar bg-info" role="progressbar" style="width: 20%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div>
|
1094
992
|
</div>
|
1095
993
|
</div>
|
1096
994
|
</div>
|
@@ -1099,30 +997,22 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1099
997
|
=== Striped
|
1100
998
|
|
1101
999
|
++++
|
1102
|
-
|
1103
|
-
|
1104
|
-
<div class="
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
<div class="
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
<div class="progress">
|
1119
|
-
<div class="progress-bar progress-bar-striped bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
|
1120
|
-
</div>
|
1121
|
-
<div class="progress">
|
1122
|
-
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
1123
|
-
</div>
|
1124
|
-
</div>
|
1125
|
-
|
1000
|
+
<div class="doc-example mb-3">
|
1001
|
+
<div class="bs-component">
|
1002
|
+
<div class="progress">
|
1003
|
+
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 10%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
|
1004
|
+
</div>
|
1005
|
+
<div class="progress">
|
1006
|
+
<div class="progress-bar progress-bar-striped bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
1007
|
+
</div>
|
1008
|
+
<div class="progress">
|
1009
|
+
<div class="progress-bar progress-bar-striped bg-info" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
|
1010
|
+
</div>
|
1011
|
+
<div class="progress">
|
1012
|
+
<div class="progress-bar progress-bar-striped bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
|
1013
|
+
</div>
|
1014
|
+
<div class="progress">
|
1015
|
+
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
1126
1016
|
</div>
|
1127
1017
|
</div>
|
1128
1018
|
</div>
|
@@ -1131,18 +1021,10 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1131
1021
|
=== Animated
|
1132
1022
|
|
1133
1023
|
++++
|
1134
|
-
|
1135
|
-
|
1136
|
-
<div class="
|
1137
|
-
|
1138
|
-
<div class="col-md-10">
|
1139
|
-
|
1140
|
-
<div class="bs-component">
|
1141
|
-
<div class="progress">
|
1142
|
-
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
|
1143
|
-
</div>
|
1144
|
-
</div>
|
1145
|
-
|
1024
|
+
<div class="doc-example mb-3">
|
1025
|
+
<div class="bs-component">
|
1026
|
+
<div class="progress">
|
1027
|
+
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
|
1146
1028
|
</div>
|
1147
1029
|
</div>
|
1148
1030
|
</div>
|
@@ -1150,7 +1032,7 @@ Refer to: link:{bs_doc_components_progress}[Bootstrap Docs, window="_blank"].
|
|
1150
1032
|
|
1151
1033
|
== Containers
|
1152
1034
|
|
1153
|
-
lorem:sentences[
|
1035
|
+
lorem:sentences[3]
|
1154
1036
|
|
1155
1037
|
lorem:sentences[2]
|
1156
1038
|
|
@@ -1162,22 +1044,16 @@ pass:[]
|
|
1162
1044
|
Refer to: link:{bs_doc_components_jumbotron}[Bootstrap Docs, window="_blank"].
|
1163
1045
|
|
1164
1046
|
++++
|
1165
|
-
|
1166
|
-
|
1167
|
-
<div class="
|
1168
|
-
|
1169
|
-
|
1170
|
-
<
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
|
1176
|
-
<p class="lead">
|
1177
|
-
<a class="btn btn-primary btn-raised btn-lg" href="#" role="button">Learn more</a>
|
1178
|
-
</p>
|
1179
|
-
</div>
|
1180
|
-
</div>
|
1047
|
+
<div class="doc-example mb-3">
|
1048
|
+
<div class="bs-component">
|
1049
|
+
<div class="jumbotron">
|
1050
|
+
<h1 class="display-3">Hello, world!</h1>
|
1051
|
+
<p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
|
1052
|
+
<hr class="my-4">
|
1053
|
+
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
|
1054
|
+
<p class="lead">
|
1055
|
+
<a class="btn btn-primary btn-raised btn-lg" href="javascript:(void)" role="button">Learn more</a>
|
1056
|
+
</p>
|
1181
1057
|
</div>
|
1182
1058
|
</div>
|
1183
1059
|
</div>
|
@@ -1192,11 +1068,8 @@ pass:[]
|
|
1192
1068
|
Refer to: link:{bs_doc_components_list_group}[Bootstrap Docs, window="_blank"].
|
1193
1069
|
|
1194
1070
|
++++
|
1195
|
-
|
1196
|
-
============================================================================ -->
|
1197
|
-
<div class="bs-docs-section">
|
1071
|
+
<div class="doc-example mb-3">
|
1198
1072
|
<div class="row mb-5">
|
1199
|
-
|
1200
1073
|
<div class="col-md-4">
|
1201
1074
|
<div class="bs-component">
|
1202
1075
|
<ul class="list-group">
|
@@ -1219,12 +1092,12 @@ Refer to: link:{bs_doc_components_list_group}[Bootstrap Docs, window="_blank"].
|
|
1219
1092
|
<div class="col-md-4">
|
1220
1093
|
<div class="bs-component">
|
1221
1094
|
<div class="list-group">
|
1222
|
-
<a href="
|
1095
|
+
<a href="javascript:(void)" class="list-group-item list-group-item-action active">
|
1223
1096
|
Cras justo odio
|
1224
1097
|
</a>
|
1225
|
-
<a href="
|
1098
|
+
<a href="javascript:(void)" class="list-group-item list-group-item-action">Dapibus ac facilisis
|
1226
1099
|
</a>
|
1227
|
-
<a href="
|
1100
|
+
<a href="javascript:(void)" class="list-group-item list-group-item-action disabled">Morbi leo risus
|
1228
1101
|
</a>
|
1229
1102
|
</div>
|
1230
1103
|
</div>
|
@@ -1233,7 +1106,7 @@ Refer to: link:{bs_doc_components_list_group}[Bootstrap Docs, window="_blank"].
|
|
1233
1106
|
<div class="col-md-4">
|
1234
1107
|
<div class="bs-component">
|
1235
1108
|
<div class="list-group">
|
1236
|
-
<a href="
|
1109
|
+
<a href="javascript:(void)" class="list-group-item list-group-item-action flex-column align-items-start active">
|
1237
1110
|
<div class="d-flex w-100 justify-content-between">
|
1238
1111
|
<h5 class="mb-1 notoc">List group item heading</h5>
|
1239
1112
|
<small>3 days ago</small>
|
@@ -1241,7 +1114,7 @@ Refer to: link:{bs_doc_components_list_group}[Bootstrap Docs, window="_blank"].
|
|
1241
1114
|
<p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
|
1242
1115
|
<small>Donec id elit non mi porta.</small>
|
1243
1116
|
</a>
|
1244
|
-
<a href="
|
1117
|
+
<a href="javascript:(void)" class="list-group-item list-group-item-action flex-column align-items-start">
|
1245
1118
|
<div class="d-flex w-100 justify-content-between">
|
1246
1119
|
<h5 class="mb-1 notoc">List group item heading</h5>
|
1247
1120
|
<small class="text-muted">3 days ago</small>
|
@@ -1257,6 +1130,7 @@ Refer to: link:{bs_doc_components_list_group}[Bootstrap Docs, window="_blank"].
|
|
1257
1130
|
</div>
|
1258
1131
|
++++
|
1259
1132
|
|
1133
|
+
|
1260
1134
|
=== Cards
|
1261
1135
|
|
1262
1136
|
Bootstrap’s cards provide a flexible and extensible content container with
|
@@ -1277,10 +1151,8 @@ pass:[]
|
|
1277
1151
|
Refer to: link:{bs_doc_components_cards}[Bootstrap Docs, window="_blank"].
|
1278
1152
|
|
1279
1153
|
++++
|
1280
|
-
|
1281
|
-
|
1282
|
-
<div class="bs-docs-section">
|
1283
|
-
<div class="row mb-5">
|
1154
|
+
<div class="doc-example mb-3">
|
1155
|
+
<div class="row">
|
1284
1156
|
|
1285
1157
|
<div class="col-md-4">
|
1286
1158
|
<div class="bs-component">
|
@@ -1422,8 +1294,8 @@ Refer to: link:{bs_doc_components_cards}[Bootstrap Docs, window="_blank"].
|
|
1422
1294
|
<li class="list-group-item">Vestibulum at eros</li>
|
1423
1295
|
</ul>
|
1424
1296
|
<div class="card-body">
|
1425
|
-
<a href="
|
1426
|
-
<a href="
|
1297
|
+
<a href="javascript:(void)" class="card-link">Card link</a>
|
1298
|
+
<a href="javascript:(void)" class="card-link">Another link</a>
|
1427
1299
|
</div>
|
1428
1300
|
<div class="card-footer text-muted">
|
1429
1301
|
2 days ago
|
@@ -1434,8 +1306,8 @@ Refer to: link:{bs_doc_components_cards}[Bootstrap Docs, window="_blank"].
|
|
1434
1306
|
<h4 class="card-title notoc">Card title</h4>
|
1435
1307
|
<h6 class="card-subtitle mb-2 text-muted notoc">Card subtitle</h6>
|
1436
1308
|
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
|
1437
|
-
<a href="
|
1438
|
-
<a href="
|
1309
|
+
<a href="javascript:(void)" class="card-link">Card link</a>
|
1310
|
+
<a href="javascript:(void)" class="card-link">Another link</a>
|
1439
1311
|
</div>
|
1440
1312
|
</div>
|
1441
1313
|
</div>
|
@@ -1460,16 +1332,20 @@ content scrolls instead.
|
|
1460
1332
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
1461
1333
|
Refer to: link:{bs_doc_components_modal}[Bootstrap Docs, window="_blank"].
|
1462
1334
|
|
1463
|
-
|
1335
|
+
.Modal types
|
1336
|
+
[cols="3a,7a,2a", options="header", width="100%", role="table-responsive mt-3"]
|
1337
|
+
|===============================================================================
|
1338
|
+
|Type |Description |Launch
|
1464
1339
|
|
1465
|
-
|
1340
|
+
|*Base*
|
1341
|
+
|Toggle a working modal demo by clicking the button below. It will slide
|
1466
1342
|
down and fade in from the top of the page.
|
1467
|
-
|
1343
|
+
|
|
1468
1344
|
++++
|
1469
1345
|
<div class="ml-2 mb-5">
|
1470
1346
|
<!-- Button trigger modal -->
|
1471
1347
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#exampleSimpleModal">
|
1472
|
-
Launch
|
1348
|
+
Launch
|
1473
1349
|
</button>
|
1474
1350
|
</div>
|
1475
1351
|
|
@@ -1495,16 +1371,16 @@ down and fade in from the top of the page.
|
|
1495
1371
|
</div>
|
1496
1372
|
++++
|
1497
1373
|
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1374
|
+
|*Scrolling long content*
|
1375
|
+
|When modals become too long for the user’s viewport or device, they scroll
|
1376
|
+
independent of the page itself. Try the demo and resize your browser for
|
1377
|
+
the height.
|
1378
|
+
|
|
1503
1379
|
++++
|
1504
1380
|
<div class="ml-2 mb-5">
|
1505
1381
|
<!-- Button trigger modal -->
|
1506
1382
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#exampleModalLong">
|
1507
|
-
Launch
|
1383
|
+
Launch
|
1508
1384
|
</button>
|
1509
1385
|
</div>
|
1510
1386
|
|
@@ -1547,15 +1423,14 @@ independent of the page itself. Try the demo below to see what we mean.
|
|
1547
1423
|
</div>
|
1548
1424
|
++++
|
1549
1425
|
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1426
|
+
|*Vertically centered*
|
1427
|
+
|For important messages, center the modal.
|
1428
|
+
|
|
1554
1429
|
++++
|
1555
1430
|
<div class="ml-2 mb-5">
|
1556
1431
|
<!-- Button trigger modal -->
|
1557
1432
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#exampleModalVerticalCenter">
|
1558
|
-
Launch
|
1433
|
+
Launch
|
1559
1434
|
</button>
|
1560
1435
|
</div>
|
1561
1436
|
|
@@ -1584,15 +1459,14 @@ Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal.
|
|
1584
1459
|
++++
|
1585
1460
|
|
1586
1461
|
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1462
|
+
|*Form*
|
1463
|
+
|To save space on forms, dialogs can be part of a modal.
|
1464
|
+
|
|
1591
1465
|
++++
|
1592
1466
|
<div class="ml-2 mb-5">
|
1593
1467
|
<!-- Button trigger modal -->
|
1594
1468
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#modalContactForm">
|
1595
|
-
Launch
|
1469
|
+
Launch
|
1596
1470
|
</button>
|
1597
1471
|
</div>
|
1598
1472
|
|
@@ -1639,15 +1513,14 @@ Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal.
|
|
1639
1513
|
</div>
|
1640
1514
|
++++
|
1641
1515
|
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1516
|
+
|*Fluid*
|
1517
|
+
|For e.g larger summaries, a vertical fluid modal can be used for that.
|
1518
|
+
|
|
1646
1519
|
++++
|
1647
1520
|
<div class="ml-2 mb-5">
|
1648
1521
|
<!-- Button trigger modal -->
|
1649
1522
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#fluidModalRightSuccess">
|
1650
|
-
Launch
|
1523
|
+
Launch
|
1651
1524
|
</button>
|
1652
1525
|
</div>
|
1653
1526
|
|
@@ -1711,18 +1584,15 @@ Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal.
|
|
1711
1584
|
<!-- Full Height Modal Right Success-->
|
1712
1585
|
++++
|
1713
1586
|
|
1714
|
-
|
1715
|
-
|
1716
|
-
==== Tooltips and Popovers
|
1717
|
-
|
1718
|
-
Tooltips and popovers can be placed within modals as needed. When modals are
|
1587
|
+
|*Tooltips and Popovers*
|
1588
|
+
|Tooltips and popovers can be placed within modals as needed. When modals are
|
1719
1589
|
closed, any tooltips and popovers within are also automatically dismissed.
|
1720
|
-
|
1590
|
+
|
|
1721
1591
|
++++
|
1722
1592
|
<div class="ml-2 mb-5">
|
1723
1593
|
<!-- Button trigger modal -->
|
1724
1594
|
<button type="button" class="btn btn-primary btn-round btn-raised" data-toggle="modal" data-target="#exampleModalTooltip">
|
1725
|
-
Launch
|
1595
|
+
Launch
|
1726
1596
|
</button>
|
1727
1597
|
</div>
|
1728
1598
|
|
@@ -1741,7 +1611,7 @@ closed, any tooltips and popovers within are also automatically dismissed.
|
|
1741
1611
|
<p>This <a href="#" role="button" class="btn btn-secondary btn-round btn-raised popover-test" data-toggle="popover" title="Popover title" data-content="Popover body content is set in this attribute.">button</a> triggers a popover on click.</p>
|
1742
1612
|
<hr>
|
1743
1613
|
<h5>Tooltips in a modal</h5>
|
1744
|
-
<p><a href="
|
1614
|
+
<p><a href="javascript:(void)" class="tooltip-test" data-toggle="tooltip" title="Tooltip">This link</a> and <a href="#" class="tooltip-test" data-toggle="tooltip" title="Tooltip">that link</a> have tooltips on hover.</p>
|
1745
1615
|
</div>
|
1746
1616
|
<div class="modal-footer">
|
1747
1617
|
<button type="button" class="btn btn-secondary btn-round btn-raised mr-2" data-dismiss="modal">Close</button>
|
@@ -1752,6 +1622,7 @@ closed, any tooltips and popovers within are also automatically dismissed.
|
|
1752
1622
|
</div>
|
1753
1623
|
++++
|
1754
1624
|
|
1625
|
+
|===============================================================================
|
1755
1626
|
|
1756
1627
|
=== Popovers
|
1757
1628
|
|
@@ -1761,27 +1632,16 @@ bootstrap.bundle.js which contains Popper.js in order for popovers to work.
|
|
1761
1632
|
|
1762
1633
|
Note: Popovers require the tooltip plugin as a dependency.
|
1763
1634
|
|
1764
|
-
|
1765
1635
|
pass:[<i class="mdi mdi-book-open mdi-24px mdi-md-bg-primary"></i>]
|
1766
1636
|
Refer to: link:{bs_doc_components_popovers}[Bootstrap Docs, window="_blank"].
|
1767
1637
|
|
1768
1638
|
++++
|
1769
|
-
|
1770
|
-
|
1771
|
-
<
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
<div class="bs-component mt-3 mb-4">
|
1776
|
-
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="top" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Top</button>
|
1777
|
-
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus
|
1778
|
-
sagittis lacus vel augue laoreet rutrum faucibus.">Bottom</button>
|
1779
|
-
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Right</button>
|
1780
|
-
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="left" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Left</button>
|
1781
|
-
</div>
|
1782
|
-
</div>
|
1783
|
-
|
1784
|
-
</div>
|
1639
|
+
<div class="doc-example mb-3">
|
1640
|
+
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="top" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Top</button>
|
1641
|
+
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus
|
1642
|
+
sagittis lacus vel augue laoreet rutrum faucibus.">Bottom</button>
|
1643
|
+
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Right</button>
|
1644
|
+
<button type="button" class="btn btn-secondary btn-raised" title="Popover Title" data-container="body" data-toggle="popover" data-placement="left" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Left</button>
|
1785
1645
|
</div>
|
1786
1646
|
++++
|
1787
1647
|
|
@@ -1798,61 +1658,10 @@ pass:[]
|
|
1798
1658
|
Refer to: link:{bs_doc_components_tooltips}[Bootstrap Docs, window="_blank"].
|
1799
1659
|
|
1800
1660
|
++++
|
1801
|
-
|
1802
|
-
|
1803
|
-
<
|
1804
|
-
<
|
1805
|
-
|
1806
|
-
<div class="col-md-8">
|
1807
|
-
<div class="bs-component mt-3 mb-4">
|
1808
|
-
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Top</button>
|
1809
|
-
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">Bottom</button>
|
1810
|
-
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="right" title="Tooltip on right">Right</button>
|
1811
|
-
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="left" title="Tooltip on left">Left</button>
|
1812
|
-
</div>
|
1813
|
-
</div>
|
1814
|
-
|
1815
|
-
</div>
|
1661
|
+
<div class="doc-example mb-3">
|
1662
|
+
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Top</button>
|
1663
|
+
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">Bottom</button>
|
1664
|
+
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="right" title="Tooltip on right">Right</button>
|
1665
|
+
<button type="button" class="btn btn-secondary btn-raised" data-toggle="tooltip" data-placement="left" title="Tooltip on left">Left</button>
|
1816
1666
|
</div>
|
1817
1667
|
++++
|
1818
|
-
|
1819
|
-
|
1820
|
-
/////
|
1821
|
-
See: https://stackoverflow.com/questions/15738259/disabling-chrome-autofill
|
1822
|
-
<script>
|
1823
|
-
$(document).ready(function () {
|
1824
|
-
$('input').attr('autocomplete', 'false');
|
1825
|
-
});
|
1826
|
-
</script>
|
1827
|
-
|
1828
|
-
(function($) {
|
1829
|
-
$.fn.autoCompleteFix = function(opt) {
|
1830
|
-
var ro = 'readonly', settings = $.extend({
|
1831
|
-
attribute : 'autocomplete',
|
1832
|
-
trigger : {
|
1833
|
-
disable : ["off"],
|
1834
|
-
},
|
1835
|
-
focus : function() {
|
1836
|
-
$(this).removeAttr(ro);
|
1837
|
-
},
|
1838
|
-
force : false
|
1839
|
-
}, opt);
|
1840
|
-
|
1841
|
-
$(this).each(function(i, el) {
|
1842
|
-
el = $(el);
|
1843
|
-
|
1844
|
-
if(el.is('form')) {
|
1845
|
-
var force = (-1 !== $.inArray(el.attr(settings.attribute), settings.trigger.disable))
|
1846
|
-
el.find('input').autoCompleteFix({force:force});
|
1847
|
-
} else {
|
1848
|
-
var disabled = -1 !== $.inArray(el.attr(settings.attribute), settings.trigger.disable);
|
1849
|
-
var enabled = -1 !== $.inArray(el.attr(settings.attribute), settings.trigger.enable);
|
1850
|
-
if (settings.force && !enabled || disabled)
|
1851
|
-
el.attr(ro, ro).focus(settings.focus).val("");
|
1852
|
-
}
|
1853
|
-
});
|
1854
|
-
};
|
1855
|
-
$('form').autoCompleteFix();
|
1856
|
-
})(jQuery);
|
1857
|
-
|
1858
|
-
/////
|