jekyll-theme-centos 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/_includes/centos-content/1col.html +11 -0
- data/_includes/centos-content/2col.html +15 -0
- data/_includes/centos-content/admonition/caution.html +4 -0
- data/_includes/centos-content/admonition/idea.html +4 -0
- data/_includes/centos-content/admonition/note.html +4 -0
- data/_includes/centos-content/admonition/warning.html +4 -0
- data/_includes/centos-content/around.html +6 -0
- data/_includes/centos-content/breadcrumbs.html +11 -0
- data/_includes/centos-content/download/stream-8-doc.html +5 -0
- data/_includes/centos-content/download/stream-8-eol.html +5 -0
- data/_includes/centos-content/download/stream-8.html +5 -0
- data/_includes/centos-content/download/stream.html +16 -0
- data/_includes/centos-content/download/table-body-doc.html +6 -0
- data/_includes/centos-content/download/table-body-eol.html +4 -0
- data/_includes/centos-content/download/table-body.html +7 -0
- data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
- data/_includes/centos-content/download/table-header-doc.html +8 -0
- data/_includes/centos-content/download/table-header-eol.html +8 -0
- data/_includes/centos-content/download/table-header.html +10 -0
- data/_includes/centos-content/figure.html +4 -0
- data/_includes/centos-content/news.html +15 -0
- data/_includes/centos-content/sponsors.html +19 -0
- data/_includes/centos-content/toc.html +103 -0
- data/_includes/centos-content/video.html +3 -0
- data/_includes/centos-footer.html +42 -0
- data/_includes/centos-head.html +7 -0
- data/_includes/centos-header/home.html +15 -0
- data/_includes/centos-header/page.html +12 -0
- data/_includes/centos-header.html +7 -0
- data/_includes/centos-nav.html +29 -0
- data/_includes/centos-styleguide.md +243 -0
- data/_layouts/centos-content/1col.html +9 -0
- data/_layouts/centos-content/2col.html +9 -0
- data/_layouts/centos-content/download-mirror.html +30 -0
- data/_layouts/centos-content/download.html +18 -0
- data/_layouts/centos-content/sponsors.html +21 -0
- data/_layouts/centos-home.html +39 -0
- data/_layouts/default.html +18 -0
- data/_layouts/{download/cards.html → page.html} +0 -2
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +16 -32
- data/_sass/bootstrap/_badge.scss +31 -15
- data/_sass/bootstrap/_breadcrumb.scss +27 -23
- data/_sass/bootstrap/_button-group.scss +48 -32
- data/_sass/bootstrap/_buttons.scss +71 -145
- data/_sass/bootstrap/_card.scss +123 -75
- data/_sass/bootstrap/_carousel.scss +39 -68
- data/_sass/bootstrap/_close.scss +27 -53
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +71 -129
- data/_sass/bootstrap/_forms.scss +347 -9
- data/_sass/bootstrap/_functions.scss +23 -181
- data/_sass/bootstrap/_grid.scss +52 -18
- data/_sass/bootstrap/_images.scss +1 -1
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +48 -93
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +15 -10
- data/_sass/bootstrap/_modal.scss +112 -112
- data/_sass/bootstrap/_nav.scss +29 -103
- data/_sass/bootstrap/_navbar.scss +171 -136
- data/_sass/bootstrap/_pagination.scss +37 -72
- data/_sass/bootstrap/_popover.scss +73 -99
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +15 -36
- data/_sass/bootstrap/_reboot.scss +200 -333
- data/_sass/bootstrap/_root.scss +10 -177
- data/_sass/bootstrap/_spinners.scss +22 -52
- data/_sass/bootstrap/_tables.scss +115 -101
- data/_sass/bootstrap/_toasts.scss +27 -54
- data/_sass/bootstrap/_tooltip.scss +63 -67
- data/_sass/bootstrap/_transitions.scss +1 -8
- data/_sass/bootstrap/_type.scss +59 -40
- data/_sass/bootstrap/_utilities.scss +18 -806
- data/_sass/bootstrap/_variables.scss +611 -1222
- data/_sass/bootstrap/bootstrap-grid.scss +20 -53
- data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
- data/_sass/bootstrap/bootstrap.scss +13 -21
- data/_sass/bootstrap/mixins/_alert.scss +6 -11
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
- data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
- data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
- data/_sass/bootstrap/mixins/_buttons.scss +100 -60
- data/_sass/bootstrap/mixins/_caret.scss +27 -34
- data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
- data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +78 -63
- data/_sass/bootstrap/mixins/_gradients.scss +11 -13
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +37 -119
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +21 -1
- data/_sass/bootstrap/mixins/_list-group.scss +2 -7
- data/_sass/bootstrap/mixins/_lists.scss +1 -1
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +19 -7
- data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
- data/_sass/bootstrap/mixins/_resize.scss +0 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
- data/_sass/bootstrap/mixins/_transition.scss +1 -1
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +132 -276
- data/_sass/centos/_content.scss +101 -0
- data/_sass/centos/_datatable.scss +271 -0
- data/_sass/centos/_fonts.scss +1 -0
- data/_sass/centos/_footer.scss +49 -0
- data/_sass/centos/_header.scss +25 -0
- data/_sass/centos/_highlighter.scss +360 -0
- data/_sass/centos/_mixins.scss +4 -0
- data/_sass/centos/_nav.scss +10 -0
- data/_sass/centos/_rssfeeds.scss +17 -0
- data/_sass/centos/_variables.scss +111 -0
- data/_sass/centos/centos.scss +23 -0
- data/_sass/centos/content/_1col.scss +32 -0
- data/_sass/centos/content/_2col.scss +44 -0
- data/_sass/centos/content/_download.scss +17 -0
- data/_sass/centos/content/_sponsors.scss +9 -0
- data/_sass/centos/fonts/_montserrat.scss +256 -0
- data/_sass/centos/header/_home.scss +4 -0
- data/_sass/centos/header/_page.scss +4 -0
- data/_sass/centos/mixins/_content-card.scss +13 -0
- data/_sass/centos/mixins/_content-heading.scss +28 -0
- data/_sass/centos/mixins/_content-toc.scss +18 -0
- data/_sass/centos/mixins/_footer-link.scss +10 -0
- data/_sass/fontawesome/_animated.scss +20 -0
- data/_sass/fontawesome/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/_core.scss +21 -0
- data/_sass/fontawesome/_fixed-width.scss +6 -0
- data/_sass/fontawesome/_icons.scss +1462 -0
- data/_sass/fontawesome/_larger.scss +23 -0
- data/_sass/fontawesome/_list.scss +18 -0
- data/_sass/fontawesome/_mixins.scss +56 -0
- data/_sass/fontawesome/_rotated-flipped.scss +24 -0
- data/_sass/fontawesome/_screen-reader.scss +5 -0
- data/_sass/fontawesome/_shims.scss +2066 -0
- data/_sass/fontawesome/_stacked.scss +31 -0
- data/_sass/fontawesome/_variables.scss +1479 -0
- data/_sass/fontawesome/brands.scss +23 -0
- data/_sass/fontawesome/fontawesome.scss +16 -0
- data/_sass/fontawesome/regular.scss +23 -0
- data/_sass/fontawesome/solid.scss +24 -0
- data/_sass/fontawesome/v4-shims.scss +6 -0
- data/assets/css/centos.bootstrap.min.scss +4 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat.css +327 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/README.MD +35 -0
- data/assets/fonts/fa-brands-400.eot +0 -0
- data/assets/fonts/fa-brands-400.svg +3717 -0
- data/assets/fonts/fa-brands-400.ttf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.eot +0 -0
- data/assets/fonts/fa-regular-400.svg +801 -0
- data/assets/fonts/fa-regular-400.ttf +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.eot +0 -0
- data/assets/fonts/fa-solid-900.svg +5028 -0
- data/assets/fonts/fa-solid-900.ttf +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/img/centos-logo-white.png +0 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/js/bootstrap.min.js +4 -4
- data/assets/js/bootstrap.min.js.map +1 -1
- data/assets/js/dataTables.bootstrap4.min.js +14 -0
- data/assets/js/jquery.dataTables.min.js +184 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.rss.js +11 -0
- data/assets/js/moment.min.js +7 -0
- metadata +238 -492
- data/_config.yml +0 -196
- data/_data/base/announcement_schema.yml +0 -49
- data/_data/base/artwork_schema.yml +0 -46
- data/_data/base/backtotop_schema.yml +0 -59
- data/_data/base/bits.yml +0 -96
- data/_data/base/bits_schema.yml +0 -185
- data/_data/base/breadcrumb_schema.yml +0 -27
- data/_data/base/breakingnews_schema.yml +0 -67
- data/_data/base/card_schema.yml +0 -146
- data/_data/base/color.yml +0 -1042
- data/_data/base/color_schema.yml +0 -1036
- data/_data/base/configuration_variables_schema.yml +0 -42
- data/_data/base/content.yml +0 -2
- data/_data/base/content_schema.yml +0 -26
- data/_data/base/copyright.yml +0 -12
- data/_data/base/copyright_schema.yml +0 -74
- data/_data/base/copyvalue_schema.yml +0 -49
- data/_data/base/datatable_schema.yml +0 -57
- data/_data/base/event_schema.yml +0 -130
- data/_data/base/fontawesome_schema.yml +0 -62
- data/_data/base/footer.yml +0 -9
- data/_data/base/footer_schema.yml +0 -55
- data/_data/base/head_schema.yml +0 -19
- data/_data/base/heading_anchor.yml +0 -2
- data/_data/base/heading_anchor_schema.yml +0 -37
- data/_data/base/highlight_schema.yml +0 -98
- data/_data/base/image_schema.yml +0 -34
- data/_data/base/languages.yml +0 -186
- data/_data/base/link_schema.yml +0 -187
- data/_data/base/locales_schema.yml +0 -158
- data/_data/base/navbar.yml +0 -20
- data/_data/base/navbar_schema.yml +0 -129
- data/_data/base/navindex_schema.yml +0 -67
- data/_data/base/ogp.yml +0 -24
- data/_data/base/ogp_schema.yml +0 -192
- data/_data/base/project.yml +0 -37
- data/_data/base/project_schema.yml +0 -124
- data/_data/base/script_schema.yml +0 -41
- data/_data/base/shortcut_schema.yml +0 -74
- data/_data/base/social.yml +0 -26
- data/_data/base/social_schema.yml +0 -57
- data/_data/base/sponsors.yml +0 -41
- data/_data/base/sponsors_schema.yml +0 -73
- data/_data/base/title_schema.yml +0 -49
- data/_data/base/toc_schema.yml +0 -114
- data/_data/download/cards.yml +0 -309
- data/_data/download/navbar.yml +0 -11
- data/_includes/base/announcement.html.liquid +0 -65
- data/_includes/base/artwork.html.liquid +0 -63
- data/_includes/base/backtotop.html.liquid +0 -73
- data/_includes/base/bits.html.liquid +0 -152
- data/_includes/base/breadcrumb.html.liquid +0 -77
- data/_includes/base/breakingnews.html.liquid +0 -90
- data/_includes/base/card.html.liquid +0 -110
- data/_includes/base/color-table.html.liquid +0 -33
- data/_includes/base/configuration_variables-nested.html.liquid +0 -98
- data/_includes/base/configuration_variables.html.liquid +0 -98
- data/_includes/base/content.html.liquid +0 -7
- data/_includes/base/copyright.html.liquid +0 -70
- data/_includes/base/copyvalue.html.liquid +0 -82
- data/_includes/base/datatable.html.liquid +0 -83
- data/_includes/base/event.html.liquid +0 -105
- data/_includes/base/fontawesome.html.liquid +0 -91
- data/_includes/base/footer.html.liquid +0 -69
- data/_includes/base/head.html.liquid +0 -135
- data/_includes/base/heading_anchor.html.liquid +0 -67
- data/_includes/base/highlight.html.liquid +0 -84
- data/_includes/base/image.html.liquid +0 -42
- data/_includes/base/link.html.liquid +0 -129
- data/_includes/base/locales.html.liquid +0 -78
- data/_includes/base/navbar.html.liquid +0 -121
- data/_includes/base/navindex.html.liquid +0 -200
- data/_includes/base/ogp.html.liquid +0 -144
- data/_includes/base/project.html.liquid +0 -104
- data/_includes/base/shortcut.html.liquid +0 -77
- data/_includes/base/social.html.liquid +0 -76
- data/_includes/base/sponsors-cards.html.liquid +0 -69
- data/_includes/base/sponsors-carousel.html.liquid +0 -91
- data/_includes/base/title.html.liquid +0 -65
- data/_includes/base/toc-generator.html.liquid +0 -189
- data/_includes/base/toc.html.liquid +0 -95
- data/_includes/download/cards-body-commands.html +0 -7
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-documentation.html +0 -11
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-mirrors.html +0 -8
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body-screenshots.html +0 -32
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-header-commands.html +0 -8
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-documentation.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-mirrors.html +0 -13
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header-screenshots.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -120
- data/_layouts/base/default.html +0 -68
- data/_layouts/download/default.html +0 -7
- data/_layouts/people/default.html +0 -68
- data/_sass/base/_customization.scss +0 -331
- data/_sass/base/_light-dark.scss +0 -10
- data/_sass/base/_maps.scss +0 -104
- data/_sass/base/_variables.scss +0 -232
- data/_sass/bootstrap/_accordion.scss +0 -153
- data/_sass/bootstrap/_containers.scss +0 -41
- data/_sass/bootstrap/_helpers.scss +0 -12
- data/_sass/bootstrap/_maps.scss +0 -174
- data/_sass/bootstrap/_offcanvas.scss +0 -147
- data/_sass/bootstrap/_placeholders.scss +0 -51
- data/_sass/bootstrap/_variables-dark.scss +0 -102
- data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
- data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
- data/_sass/bootstrap/forms/_form-check.scss +0 -189
- data/_sass/bootstrap/forms/_form-control.scss +0 -214
- data/_sass/bootstrap/forms/_form-range.scss +0 -91
- data/_sass/bootstrap/forms/_form-select.scss +0 -80
- data/_sass/bootstrap/forms/_form-text.scss +0 -11
- data/_sass/bootstrap/forms/_input-group.scss +0 -132
- data/_sass/bootstrap/forms/_labels.scss +0 -36
- data/_sass/bootstrap/forms/_validation.scss +0 -12
- data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
- data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
- data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
- data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
- data/_sass/bootstrap/helpers/_position.scss +0 -36
- data/_sass/bootstrap/helpers/_ratio.scss +0 -26
- data/_sass/bootstrap/helpers/_stacks.scss +0 -15
- data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
- data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
- data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
- data/_sass/bootstrap/helpers/_vr.scss +0 -8
- data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
- data/_sass/bootstrap/mixins/_banner.scss +0 -7
- data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
- data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
- data/_sass/bootstrap/mixins/_container.scss +0 -11
- data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
- data/_sass/bootstrap/mixins/_utilities.scss +0 -97
- data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
- data/_sass/bootstrap/utilities/_api.scss +0 -47
- data/assets/css/base/stylesheet.min.scss +0 -35
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/base/centos-colors.gpl +0 -55
- data/assets/img/base/example-ogp-image.svg +0 -297
- data/assets/img/base/example-sponsors-design.svg +0 -226
- data/assets/img/base/example-sponsors-logo-1.svg +0 -120
- data/assets/img/base/example-sponsors-logo-2.svg +0 -116
- data/assets/img/base/example-sponsors-logo-3.svg +0 -123
- data/assets/img/base/example-sponsors-logo-4.svg +0 -116
- data/assets/img/base/example-sponsors-logo-5.svg +0 -116
- data/assets/img/base/example-sponsors-logo-6.svg +0 -116
- data/assets/img/base/example-sponsors-logo-7.svg +0 -116
- data/assets/img/base/example-sponsors-logo-8.svg +0 -110
- data/assets/img/base/page-layout-default.svg +0 -1217
- data/assets/img/base/page-with-alert.svg +0 -383
- data/assets/img/base/page-with-announcement.svg +0 -956
- data/assets/img/base/page-with-artwork.svg +0 -1009
- data/assets/img/base/page-with-backtotop.svg +0 -1009
- data/assets/img/base/page-with-bits.svg +0 -891
- data/assets/img/base/page-with-breadcrumb.svg +0 -676
- data/assets/img/base/page-with-breakingnews.svg +0 -957
- data/assets/img/base/page-with-color.svg +0 -57
- data/assets/img/base/page-with-copyright.svg +0 -1018
- data/assets/img/base/page-with-copyvalue.svg +0 -57
- data/assets/img/base/page-with-datatable.svg +0 -857
- data/assets/img/base/page-with-event.svg +0 -518
- data/assets/img/base/page-with-fontawesome.svg +0 -147
- data/assets/img/base/page-with-footer.svg +0 -1018
- data/assets/img/base/page-with-heading.svg +0 -57
- data/assets/img/base/page-with-highlight.svg +0 -86
- data/assets/img/base/page-with-image.svg +0 -57
- data/assets/img/base/page-with-link.svg +0 -57
- data/assets/img/base/page-with-locales.svg +0 -1009
- data/assets/img/base/page-with-navbar.svg +0 -958
- data/assets/img/base/page-with-navindex.svg +0 -279
- data/assets/img/base/page-with-ogp.svg +0 -401
- data/assets/img/base/page-with-project.svg +0 -423
- data/assets/img/base/page-with-shortcut.svg +0 -937
- data/assets/img/base/page-with-social.svg +0 -937
- data/assets/img/base/page-with-sponsors.svg +0 -937
- data/assets/img/base/page-with-title.svg +0 -584
- data/assets/img/base/page-with-toc.svg +0 -399
- data/assets/img/base/screenshot-1200x600.svg +0 -114
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
- data/assets/img/download/download.svg +0 -421
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +0 -900
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +0 -20
- data/assets/js/base/copyvalue.js +0 -145
- data/assets/js/base/datatable.js +0 -41
- data/assets/js/base/heading-anchor.js +0 -108
- data/assets/js/base/highlight.js +0 -12
- data/assets/js/base/init-tooltips.js +0 -12
- data/assets/js/bootstrap.bundle.js +0 -6312
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -4447
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -4494
- data/assets/js/bootstrap.js.map +0 -1
- data/site.webmanifest +0 -11
|
@@ -3,46 +3,41 @@
|
|
|
3
3
|
// Easily usable on <ul>, <ol>, or <div>.
|
|
4
4
|
|
|
5
5
|
.list-group {
|
|
6
|
-
// scss-docs-start list-group-css-vars
|
|
7
|
-
--#{$prefix}list-group-color: #{$list-group-color};
|
|
8
|
-
--#{$prefix}list-group-bg: #{$list-group-bg};
|
|
9
|
-
--#{$prefix}list-group-border-color: #{$list-group-border-color};
|
|
10
|
-
--#{$prefix}list-group-border-width: #{$list-group-border-width};
|
|
11
|
-
--#{$prefix}list-group-border-radius: #{$list-group-border-radius};
|
|
12
|
-
--#{$prefix}list-group-item-padding-x: #{$list-group-item-padding-x};
|
|
13
|
-
--#{$prefix}list-group-item-padding-y: #{$list-group-item-padding-y};
|
|
14
|
-
--#{$prefix}list-group-action-color: #{$list-group-action-color};
|
|
15
|
-
--#{$prefix}list-group-action-hover-color: #{$list-group-action-hover-color};
|
|
16
|
-
--#{$prefix}list-group-action-hover-bg: #{$list-group-hover-bg};
|
|
17
|
-
--#{$prefix}list-group-action-active-color: #{$list-group-action-active-color};
|
|
18
|
-
--#{$prefix}list-group-action-active-bg: #{$list-group-action-active-bg};
|
|
19
|
-
--#{$prefix}list-group-disabled-color: #{$list-group-disabled-color};
|
|
20
|
-
--#{$prefix}list-group-disabled-bg: #{$list-group-disabled-bg};
|
|
21
|
-
--#{$prefix}list-group-active-color: #{$list-group-active-color};
|
|
22
|
-
--#{$prefix}list-group-active-bg: #{$list-group-active-bg};
|
|
23
|
-
--#{$prefix}list-group-active-border-color: #{$list-group-active-border-color};
|
|
24
|
-
// scss-docs-end list-group-css-vars
|
|
25
|
-
|
|
26
6
|
display: flex;
|
|
27
7
|
flex-direction: column;
|
|
28
8
|
|
|
29
9
|
// No need to set list-style: none; since .list-group-item is block level
|
|
30
10
|
padding-left: 0; // reset padding because ul and ol
|
|
31
11
|
margin-bottom: 0;
|
|
32
|
-
@include border-radius(
|
|
12
|
+
@include border-radius($list-group-border-radius);
|
|
33
13
|
}
|
|
34
14
|
|
|
35
|
-
.list-group-numbered {
|
|
36
|
-
list-style-type: none;
|
|
37
|
-
counter-reset: section;
|
|
38
15
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
16
|
+
// Interactive list items
|
|
17
|
+
//
|
|
18
|
+
// Use anchor or button elements instead of `li`s or `div`s to create interactive
|
|
19
|
+
// list items. Includes an extra `.active` modifier class for selected items.
|
|
20
|
+
|
|
21
|
+
.list-group-item-action {
|
|
22
|
+
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
|
23
|
+
color: $list-group-action-color;
|
|
24
|
+
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
25
|
+
|
|
26
|
+
// Hover state
|
|
27
|
+
@include hover-focus() {
|
|
28
|
+
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
|
29
|
+
color: $list-group-action-hover-color;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
background-color: $list-group-hover-bg;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&:active {
|
|
35
|
+
color: $list-group-action-active-color;
|
|
36
|
+
background-color: $list-group-action-active-bg;
|
|
43
37
|
}
|
|
44
38
|
}
|
|
45
39
|
|
|
40
|
+
|
|
46
41
|
// Individual list items
|
|
47
42
|
//
|
|
48
43
|
// Use on `li`s or `div`s within the `.list-group` parent.
|
|
@@ -50,11 +45,11 @@
|
|
|
50
45
|
.list-group-item {
|
|
51
46
|
position: relative;
|
|
52
47
|
display: block;
|
|
53
|
-
padding:
|
|
54
|
-
color:
|
|
48
|
+
padding: $list-group-item-padding-y $list-group-item-padding-x;
|
|
49
|
+
color: $list-group-color;
|
|
55
50
|
text-decoration: if($link-decoration == none, null, none);
|
|
56
|
-
background-color:
|
|
57
|
-
border:
|
|
51
|
+
background-color: $list-group-bg;
|
|
52
|
+
border: $list-group-border-width solid $list-group-border-color;
|
|
58
53
|
|
|
59
54
|
&:first-child {
|
|
60
55
|
@include border-top-radius(inherit);
|
|
@@ -66,56 +61,29 @@
|
|
|
66
61
|
|
|
67
62
|
&.disabled,
|
|
68
63
|
&:disabled {
|
|
69
|
-
color:
|
|
64
|
+
color: $list-group-disabled-color;
|
|
70
65
|
pointer-events: none;
|
|
71
|
-
background-color:
|
|
66
|
+
background-color: $list-group-disabled-bg;
|
|
72
67
|
}
|
|
73
68
|
|
|
74
69
|
// Include both here for `<a>`s and `<button>`s
|
|
75
70
|
&.active {
|
|
76
71
|
z-index: 2; // Place active items above their siblings for proper border styling
|
|
77
|
-
color:
|
|
78
|
-
background-color:
|
|
79
|
-
border-color:
|
|
72
|
+
color: $list-group-active-color;
|
|
73
|
+
background-color: $list-group-active-bg;
|
|
74
|
+
border-color: $list-group-active-border-color;
|
|
80
75
|
}
|
|
81
76
|
|
|
82
|
-
|
|
83
|
-
& + .list-group-item {
|
|
77
|
+
& + & {
|
|
84
78
|
border-top-width: 0;
|
|
85
79
|
|
|
86
80
|
&.active {
|
|
87
|
-
margin-top:
|
|
88
|
-
border-top-width:
|
|
81
|
+
margin-top: -$list-group-border-width;
|
|
82
|
+
border-top-width: $list-group-border-width;
|
|
89
83
|
}
|
|
90
84
|
}
|
|
91
85
|
}
|
|
92
86
|
|
|
93
|
-
// Interactive list items
|
|
94
|
-
//
|
|
95
|
-
// Use anchor or button elements instead of `li`s or `div`s to create interactive
|
|
96
|
-
// list items. Includes an extra `.active` modifier class for selected items.
|
|
97
|
-
|
|
98
|
-
.list-group-item-action {
|
|
99
|
-
width: 100%; // For `<button>`s (anchors become 100% by default though)
|
|
100
|
-
color: var(--#{$prefix}list-group-action-color);
|
|
101
|
-
text-align: inherit; // For `<button>`s (anchors inherit)
|
|
102
|
-
|
|
103
|
-
&:not(.active) {
|
|
104
|
-
// Hover state
|
|
105
|
-
&:hover,
|
|
106
|
-
&:focus {
|
|
107
|
-
z-index: 1; // Place hover/focus items above their siblings for proper border styling
|
|
108
|
-
color: var(--#{$prefix}list-group-action-hover-color);
|
|
109
|
-
text-decoration: none;
|
|
110
|
-
background-color: var(--#{$prefix}list-group-action-hover-bg);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&:active {
|
|
114
|
-
color: var(--#{$prefix}list-group-action-active-color);
|
|
115
|
-
background-color: var(--#{$prefix}list-group-action-active-bg);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
87
|
|
|
120
88
|
// Horizontal
|
|
121
89
|
//
|
|
@@ -129,14 +97,14 @@
|
|
|
129
97
|
flex-direction: row;
|
|
130
98
|
|
|
131
99
|
> .list-group-item {
|
|
132
|
-
&:first-child
|
|
133
|
-
@include border-bottom-
|
|
134
|
-
@include border-top-
|
|
100
|
+
&:first-child {
|
|
101
|
+
@include border-bottom-left-radius($list-group-border-radius);
|
|
102
|
+
@include border-top-right-radius(0);
|
|
135
103
|
}
|
|
136
104
|
|
|
137
|
-
&:last-child
|
|
138
|
-
@include border-top-
|
|
139
|
-
@include border-bottom-
|
|
105
|
+
&:last-child {
|
|
106
|
+
@include border-top-right-radius($list-group-border-radius);
|
|
107
|
+
@include border-bottom-left-radius(0);
|
|
140
108
|
}
|
|
141
109
|
|
|
142
110
|
&.active {
|
|
@@ -144,12 +112,12 @@
|
|
|
144
112
|
}
|
|
145
113
|
|
|
146
114
|
+ .list-group-item {
|
|
147
|
-
border-top-width:
|
|
115
|
+
border-top-width: $list-group-border-width;
|
|
148
116
|
border-left-width: 0;
|
|
149
117
|
|
|
150
118
|
&.active {
|
|
151
|
-
margin-left:
|
|
152
|
-
border-left-width:
|
|
119
|
+
margin-left: -$list-group-border-width;
|
|
120
|
+
border-left-width: $list-group-border-width;
|
|
153
121
|
}
|
|
154
122
|
}
|
|
155
123
|
}
|
|
@@ -167,7 +135,7 @@
|
|
|
167
135
|
@include border-radius(0);
|
|
168
136
|
|
|
169
137
|
> .list-group-item {
|
|
170
|
-
border-width: 0 0
|
|
138
|
+
border-width: 0 0 $list-group-border-width;
|
|
171
139
|
|
|
172
140
|
&:last-child {
|
|
173
141
|
border-bottom-width: 0;
|
|
@@ -176,24 +144,11 @@
|
|
|
176
144
|
}
|
|
177
145
|
|
|
178
146
|
|
|
179
|
-
//
|
|
180
|
-
// List group contextual variants
|
|
147
|
+
// Contextual variants
|
|
181
148
|
//
|
|
182
149
|
// Add modifier classes to change text and background color on individual items.
|
|
183
150
|
// Organizationally, this must come after the `:hover` states.
|
|
184
151
|
|
|
185
|
-
@each $
|
|
186
|
-
|
|
187
|
-
--#{$prefix}list-group-color: var(--#{$prefix}#{$state}-text-emphasis);
|
|
188
|
-
--#{$prefix}list-group-bg: var(--#{$prefix}#{$state}-bg-subtle);
|
|
189
|
-
--#{$prefix}list-group-border-color: var(--#{$prefix}#{$state}-border-subtle);
|
|
190
|
-
--#{$prefix}list-group-action-hover-color: var(--#{$prefix}emphasis-color);
|
|
191
|
-
--#{$prefix}list-group-action-hover-bg: var(--#{$prefix}#{$state}-border-subtle);
|
|
192
|
-
--#{$prefix}list-group-action-active-color: var(--#{$prefix}emphasis-color);
|
|
193
|
-
--#{$prefix}list-group-action-active-bg: var(--#{$prefix}#{$state}-border-subtle);
|
|
194
|
-
--#{$prefix}list-group-active-color: var(--#{$prefix}#{$state}-bg-subtle);
|
|
195
|
-
--#{$prefix}list-group-active-bg: var(--#{$prefix}#{$state}-text-emphasis);
|
|
196
|
-
--#{$prefix}list-group-active-border-color: var(--#{$prefix}#{$state}-text-emphasis);
|
|
197
|
-
}
|
|
152
|
+
@each $color, $value in $theme-colors {
|
|
153
|
+
@include list-group-item-variant($color, theme-color-level($color, -9), theme-color-level($color, 6));
|
|
198
154
|
}
|
|
199
|
-
// scss-docs-end list-group-modifiers
|
|
@@ -8,29 +8,33 @@
|
|
|
8
8
|
// Deprecate
|
|
9
9
|
@import "mixins/deprecate";
|
|
10
10
|
|
|
11
|
-
//
|
|
11
|
+
// Utilities
|
|
12
12
|
@import "mixins/breakpoints";
|
|
13
|
-
@import "mixins/
|
|
14
|
-
@import "mixins/color-scheme";
|
|
13
|
+
@import "mixins/hover";
|
|
15
14
|
@import "mixins/image";
|
|
15
|
+
@import "mixins/badge";
|
|
16
16
|
@import "mixins/resize";
|
|
17
|
-
@import "mixins/
|
|
17
|
+
@import "mixins/screen-reader";
|
|
18
|
+
@import "mixins/size";
|
|
18
19
|
@import "mixins/reset-text";
|
|
20
|
+
@import "mixins/text-emphasis";
|
|
21
|
+
@import "mixins/text-hide";
|
|
19
22
|
@import "mixins/text-truncate";
|
|
20
|
-
|
|
21
|
-
// Utilities
|
|
22
|
-
@import "mixins/utilities";
|
|
23
|
+
@import "mixins/visibility";
|
|
23
24
|
|
|
24
25
|
// Components
|
|
25
|
-
@import "mixins/
|
|
26
|
+
@import "mixins/alert";
|
|
26
27
|
@import "mixins/buttons";
|
|
27
28
|
@import "mixins/caret";
|
|
28
29
|
@import "mixins/pagination";
|
|
29
30
|
@import "mixins/lists";
|
|
31
|
+
@import "mixins/list-group";
|
|
32
|
+
@import "mixins/nav-divider";
|
|
30
33
|
@import "mixins/forms";
|
|
31
|
-
@import "mixins/table-
|
|
34
|
+
@import "mixins/table-row";
|
|
32
35
|
|
|
33
36
|
// Skins
|
|
37
|
+
@import "mixins/background-variant";
|
|
34
38
|
@import "mixins/border-radius";
|
|
35
39
|
@import "mixins/box-shadow";
|
|
36
40
|
@import "mixins/gradients";
|
|
@@ -38,5 +42,6 @@
|
|
|
38
42
|
|
|
39
43
|
// Layout
|
|
40
44
|
@import "mixins/clearfix";
|
|
41
|
-
@import "mixins/
|
|
45
|
+
@import "mixins/grid-framework";
|
|
42
46
|
@import "mixins/grid";
|
|
47
|
+
@import "mixins/float";
|
data/_sass/bootstrap/_modal.scss
CHANGED
|
@@ -1,46 +1,29 @@
|
|
|
1
|
-
// stylelint-disable function-disallowed-list
|
|
2
|
-
|
|
3
1
|
// .modal-open - body class for killing the scroll
|
|
4
2
|
// .modal - container to scroll within
|
|
5
3
|
// .modal-dialog - positioning shell for the actual modal
|
|
6
4
|
// .modal-content - actual modal w/ bg and corners and stuff
|
|
7
5
|
|
|
8
6
|
|
|
7
|
+
.modal-open {
|
|
8
|
+
// Kill the scroll on the body
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
|
|
11
|
+
.modal {
|
|
12
|
+
overflow-x: hidden;
|
|
13
|
+
overflow-y: auto;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
9
17
|
// Container that the modal scrolls within
|
|
10
18
|
.modal {
|
|
11
|
-
// scss-docs-start modal-css-vars
|
|
12
|
-
--#{$prefix}modal-zindex: #{$zindex-modal};
|
|
13
|
-
--#{$prefix}modal-width: #{$modal-md};
|
|
14
|
-
--#{$prefix}modal-padding: #{$modal-inner-padding};
|
|
15
|
-
--#{$prefix}modal-margin: #{$modal-dialog-margin};
|
|
16
|
-
--#{$prefix}modal-color: #{$modal-content-color};
|
|
17
|
-
--#{$prefix}modal-bg: #{$modal-content-bg};
|
|
18
|
-
--#{$prefix}modal-border-color: #{$modal-content-border-color};
|
|
19
|
-
--#{$prefix}modal-border-width: #{$modal-content-border-width};
|
|
20
|
-
--#{$prefix}modal-border-radius: #{$modal-content-border-radius};
|
|
21
|
-
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-xs};
|
|
22
|
-
--#{$prefix}modal-inner-border-radius: #{$modal-content-inner-border-radius};
|
|
23
|
-
--#{$prefix}modal-header-padding-x: #{$modal-header-padding-x};
|
|
24
|
-
--#{$prefix}modal-header-padding-y: #{$modal-header-padding-y};
|
|
25
|
-
--#{$prefix}modal-header-padding: #{$modal-header-padding}; // Todo in v6: Split this padding into x and y
|
|
26
|
-
--#{$prefix}modal-header-border-color: #{$modal-header-border-color};
|
|
27
|
-
--#{$prefix}modal-header-border-width: #{$modal-header-border-width};
|
|
28
|
-
--#{$prefix}modal-title-line-height: #{$modal-title-line-height};
|
|
29
|
-
--#{$prefix}modal-footer-gap: #{$modal-footer-margin-between};
|
|
30
|
-
--#{$prefix}modal-footer-bg: #{$modal-footer-bg};
|
|
31
|
-
--#{$prefix}modal-footer-border-color: #{$modal-footer-border-color};
|
|
32
|
-
--#{$prefix}modal-footer-border-width: #{$modal-footer-border-width};
|
|
33
|
-
// scss-docs-end modal-css-vars
|
|
34
|
-
|
|
35
19
|
position: fixed;
|
|
36
20
|
top: 0;
|
|
37
21
|
left: 0;
|
|
38
|
-
z-index:
|
|
22
|
+
z-index: $zindex-modal;
|
|
39
23
|
display: none;
|
|
40
24
|
width: 100%;
|
|
41
25
|
height: 100%;
|
|
42
|
-
overflow
|
|
43
|
-
overflow-y: auto;
|
|
26
|
+
overflow: hidden;
|
|
44
27
|
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
|
45
28
|
// https://github.com/twbs/bootstrap/pull/10951.
|
|
46
29
|
outline: 0;
|
|
@@ -53,14 +36,14 @@
|
|
|
53
36
|
.modal-dialog {
|
|
54
37
|
position: relative;
|
|
55
38
|
width: auto;
|
|
56
|
-
margin:
|
|
39
|
+
margin: $modal-dialog-margin;
|
|
57
40
|
// allow clicks to pass through for custom click handling to close modal
|
|
58
41
|
pointer-events: none;
|
|
59
42
|
|
|
60
43
|
// When fading in the modal, animate it to slide down
|
|
61
44
|
.modal.fade & {
|
|
62
|
-
transform: $modal-fade-transform;
|
|
63
45
|
@include transition($modal-transition);
|
|
46
|
+
transform: $modal-fade-transform;
|
|
64
47
|
}
|
|
65
48
|
.modal.show & {
|
|
66
49
|
transform: $modal-show-transform;
|
|
@@ -73,13 +56,19 @@
|
|
|
73
56
|
}
|
|
74
57
|
|
|
75
58
|
.modal-dialog-scrollable {
|
|
76
|
-
|
|
59
|
+
display: flex; // IE10/11
|
|
60
|
+
max-height: subtract(100%, $modal-dialog-margin * 2);
|
|
77
61
|
|
|
78
62
|
.modal-content {
|
|
79
|
-
max-height:
|
|
63
|
+
max-height: subtract(100vh, $modal-dialog-margin * 2); // IE10/11
|
|
80
64
|
overflow: hidden;
|
|
81
65
|
}
|
|
82
66
|
|
|
67
|
+
.modal-header,
|
|
68
|
+
.modal-footer {
|
|
69
|
+
flex-shrink: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
83
72
|
.modal-body {
|
|
84
73
|
overflow-y: auto;
|
|
85
74
|
}
|
|
@@ -88,7 +77,30 @@
|
|
|
88
77
|
.modal-dialog-centered {
|
|
89
78
|
display: flex;
|
|
90
79
|
align-items: center;
|
|
91
|
-
min-height:
|
|
80
|
+
min-height: subtract(100%, $modal-dialog-margin * 2);
|
|
81
|
+
|
|
82
|
+
// Ensure `modal-dialog-centered` extends the full height of the view (IE10/11)
|
|
83
|
+
&::before {
|
|
84
|
+
display: block; // IE10
|
|
85
|
+
height: subtract(100vh, $modal-dialog-margin * 2);
|
|
86
|
+
height: min-content; // Reset height to 0 except on IE
|
|
87
|
+
content: "";
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Ensure `.modal-body` shows scrollbar (IE10/11)
|
|
91
|
+
&.modal-dialog-scrollable {
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
justify-content: center;
|
|
94
|
+
height: 100%;
|
|
95
|
+
|
|
96
|
+
.modal-content {
|
|
97
|
+
max-height: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&::before {
|
|
101
|
+
content: none;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
92
104
|
}
|
|
93
105
|
|
|
94
106
|
// Actual modal
|
|
@@ -98,52 +110,53 @@
|
|
|
98
110
|
flex-direction: column;
|
|
99
111
|
width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
|
|
100
112
|
// counteract the pointer-events: none; in the .modal-dialog
|
|
101
|
-
color:
|
|
113
|
+
color: $modal-content-color;
|
|
102
114
|
pointer-events: auto;
|
|
103
|
-
background-color:
|
|
115
|
+
background-color: $modal-content-bg;
|
|
104
116
|
background-clip: padding-box;
|
|
105
|
-
border:
|
|
106
|
-
@include border-radius(
|
|
107
|
-
@include box-shadow(
|
|
117
|
+
border: $modal-content-border-width solid $modal-content-border-color;
|
|
118
|
+
@include border-radius($modal-content-border-radius);
|
|
119
|
+
@include box-shadow($modal-content-box-shadow-xs);
|
|
108
120
|
// Remove focus outline from opened modal
|
|
109
121
|
outline: 0;
|
|
110
122
|
}
|
|
111
123
|
|
|
112
124
|
// Modal background
|
|
113
125
|
.modal-backdrop {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
126
|
+
position: fixed;
|
|
127
|
+
top: 0;
|
|
128
|
+
left: 0;
|
|
129
|
+
z-index: $zindex-modal-backdrop;
|
|
130
|
+
width: 100vw;
|
|
131
|
+
height: 100vh;
|
|
132
|
+
background-color: $modal-backdrop-bg;
|
|
133
|
+
|
|
134
|
+
// Fade for backdrop
|
|
135
|
+
&.fade { opacity: 0; }
|
|
136
|
+
&.show { opacity: $modal-backdrop-opacity; }
|
|
121
137
|
}
|
|
122
138
|
|
|
123
139
|
// Modal header
|
|
124
140
|
// Top section of the modal w/ title and dismiss
|
|
125
141
|
.modal-header {
|
|
126
142
|
display: flex;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
padding:
|
|
130
|
-
border-bottom:
|
|
131
|
-
@include border-top-radius(
|
|
132
|
-
|
|
133
|
-
.
|
|
134
|
-
padding:
|
|
135
|
-
//
|
|
136
|
-
margin
|
|
137
|
-
margin-right: calc(-.5 * var(--#{$prefix}modal-header-padding-x));
|
|
138
|
-
margin-bottom: calc(-.5 * var(--#{$prefix}modal-header-padding-y));
|
|
139
|
-
margin-left: auto;
|
|
143
|
+
align-items: flex-start; // so the close btn always stays on the upper right corner
|
|
144
|
+
justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends
|
|
145
|
+
padding: $modal-header-padding;
|
|
146
|
+
border-bottom: $modal-header-border-width solid $modal-header-border-color;
|
|
147
|
+
@include border-top-radius($modal-content-inner-border-radius);
|
|
148
|
+
|
|
149
|
+
.close {
|
|
150
|
+
padding: $modal-header-padding;
|
|
151
|
+
// auto on the left force icon to the right even when there is no .modal-title
|
|
152
|
+
margin: (-$modal-header-padding-y) (-$modal-header-padding-x) (-$modal-header-padding-y) auto;
|
|
140
153
|
}
|
|
141
154
|
}
|
|
142
155
|
|
|
143
156
|
// Title text within header
|
|
144
157
|
.modal-title {
|
|
145
158
|
margin-bottom: 0;
|
|
146
|
-
line-height:
|
|
159
|
+
line-height: $modal-title-line-height;
|
|
147
160
|
}
|
|
148
161
|
|
|
149
162
|
// Modal body
|
|
@@ -153,88 +166,75 @@
|
|
|
153
166
|
// Enable `flex-grow: 1` so that the body take up as much space as possible
|
|
154
167
|
// when there should be a fixed height on `.modal-dialog`.
|
|
155
168
|
flex: 1 1 auto;
|
|
156
|
-
padding:
|
|
169
|
+
padding: $modal-inner-padding;
|
|
157
170
|
}
|
|
158
171
|
|
|
159
172
|
// Footer (for actions)
|
|
160
173
|
.modal-footer {
|
|
161
174
|
display: flex;
|
|
162
|
-
flex-shrink: 0;
|
|
163
175
|
flex-wrap: wrap;
|
|
164
176
|
align-items: center; // vertically center
|
|
165
177
|
justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items
|
|
166
|
-
padding:
|
|
167
|
-
|
|
168
|
-
border-
|
|
169
|
-
@include border-bottom-radius(var(--#{$prefix}modal-inner-border-radius));
|
|
178
|
+
padding: $modal-inner-padding - $modal-footer-margin-between / 2;
|
|
179
|
+
border-top: $modal-footer-border-width solid $modal-footer-border-color;
|
|
180
|
+
@include border-bottom-radius($modal-content-inner-border-radius);
|
|
170
181
|
|
|
171
182
|
// Place margin between footer elements
|
|
172
183
|
// This solution is far from ideal because of the universal selector usage,
|
|
173
184
|
// but is needed to fix https://github.com/twbs/bootstrap/issues/24800
|
|
174
185
|
> * {
|
|
175
|
-
margin:
|
|
186
|
+
margin: $modal-footer-margin-between / 2;
|
|
176
187
|
}
|
|
177
188
|
}
|
|
178
189
|
|
|
190
|
+
// Measure scrollbar width for padding body during modal show/hide
|
|
191
|
+
.modal-scrollbar-measure {
|
|
192
|
+
position: absolute;
|
|
193
|
+
top: -9999px;
|
|
194
|
+
width: 50px;
|
|
195
|
+
height: 50px;
|
|
196
|
+
overflow: scroll;
|
|
197
|
+
}
|
|
198
|
+
|
|
179
199
|
// Scale up the modal
|
|
180
200
|
@include media-breakpoint-up(sm) {
|
|
181
|
-
.modal {
|
|
182
|
-
--#{$prefix}modal-margin: #{$modal-dialog-margin-y-sm-up};
|
|
183
|
-
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-sm-up};
|
|
184
|
-
}
|
|
185
|
-
|
|
186
201
|
// Automatically set modal's width for larger viewports
|
|
187
202
|
.modal-dialog {
|
|
188
|
-
max-width:
|
|
189
|
-
margin
|
|
190
|
-
|
|
203
|
+
max-width: $modal-md;
|
|
204
|
+
margin: $modal-dialog-margin-y-sm-up auto;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.modal-dialog-scrollable {
|
|
208
|
+
max-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);
|
|
209
|
+
|
|
210
|
+
.modal-content {
|
|
211
|
+
max-height: subtract(100vh, $modal-dialog-margin-y-sm-up * 2);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.modal-dialog-centered {
|
|
216
|
+
min-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);
|
|
217
|
+
|
|
218
|
+
&::before {
|
|
219
|
+
height: subtract(100vh, $modal-dialog-margin-y-sm-up * 2);
|
|
220
|
+
height: min-content;
|
|
221
|
+
}
|
|
191
222
|
}
|
|
192
223
|
|
|
193
|
-
.modal-
|
|
194
|
-
|
|
224
|
+
.modal-content {
|
|
225
|
+
@include box-shadow($modal-content-box-shadow-sm-up);
|
|
195
226
|
}
|
|
227
|
+
|
|
228
|
+
.modal-sm { max-width: $modal-sm; }
|
|
196
229
|
}
|
|
197
230
|
|
|
198
231
|
@include media-breakpoint-up(lg) {
|
|
199
232
|
.modal-lg,
|
|
200
233
|
.modal-xl {
|
|
201
|
-
|
|
234
|
+
max-width: $modal-lg;
|
|
202
235
|
}
|
|
203
236
|
}
|
|
204
237
|
|
|
205
238
|
@include media-breakpoint-up(xl) {
|
|
206
|
-
.modal-xl {
|
|
207
|
-
--#{$prefix}modal-width: #{$modal-xl};
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// scss-docs-start modal-fullscreen-loop
|
|
212
|
-
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
213
|
-
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
214
|
-
$postfix: if($infix != "", $infix + "-down", "");
|
|
215
|
-
|
|
216
|
-
@include media-breakpoint-down($breakpoint) {
|
|
217
|
-
.modal-fullscreen#{$postfix} {
|
|
218
|
-
width: 100vw;
|
|
219
|
-
max-width: none;
|
|
220
|
-
height: 100%;
|
|
221
|
-
margin: 0;
|
|
222
|
-
|
|
223
|
-
.modal-content {
|
|
224
|
-
height: 100%;
|
|
225
|
-
border: 0;
|
|
226
|
-
@include border-radius(0);
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.modal-header,
|
|
230
|
-
.modal-footer {
|
|
231
|
-
@include border-radius(0);
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.modal-body {
|
|
235
|
-
overflow-y: auto;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
+
.modal-xl { max-width: $modal-xl; }
|
|
239
240
|
}
|
|
240
|
-
// scss-docs-end modal-fullscreen-loop
|