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
|
@@ -1,63 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
border-
|
|
4
|
-
border-right: $width solid transparent;
|
|
1
|
+
@mixin caret-down() {
|
|
2
|
+
border-top: $caret-width solid;
|
|
3
|
+
border-right: $caret-width solid transparent;
|
|
5
4
|
border-bottom: 0;
|
|
6
|
-
border-left: $width solid transparent;
|
|
5
|
+
border-left: $caret-width solid transparent;
|
|
7
6
|
}
|
|
8
7
|
|
|
9
|
-
@mixin caret-up(
|
|
8
|
+
@mixin caret-up() {
|
|
10
9
|
border-top: 0;
|
|
11
|
-
border-right: $width solid transparent;
|
|
12
|
-
border-bottom: $width solid;
|
|
13
|
-
border-left: $width solid transparent;
|
|
10
|
+
border-right: $caret-width solid transparent;
|
|
11
|
+
border-bottom: $caret-width solid;
|
|
12
|
+
border-left: $caret-width solid transparent;
|
|
14
13
|
}
|
|
15
14
|
|
|
16
|
-
@mixin caret-
|
|
17
|
-
border-top: $width solid transparent;
|
|
15
|
+
@mixin caret-right() {
|
|
16
|
+
border-top: $caret-width solid transparent;
|
|
18
17
|
border-right: 0;
|
|
19
|
-
border-bottom: $width solid transparent;
|
|
20
|
-
border-left: $width solid;
|
|
18
|
+
border-bottom: $caret-width solid transparent;
|
|
19
|
+
border-left: $caret-width solid;
|
|
21
20
|
}
|
|
22
21
|
|
|
23
|
-
@mixin caret-
|
|
24
|
-
border-top: $width solid transparent;
|
|
25
|
-
border-right: $width solid;
|
|
26
|
-
border-bottom: $width solid transparent;
|
|
22
|
+
@mixin caret-left() {
|
|
23
|
+
border-top: $caret-width solid transparent;
|
|
24
|
+
border-right: $caret-width solid;
|
|
25
|
+
border-bottom: $caret-width solid transparent;
|
|
27
26
|
}
|
|
28
27
|
|
|
29
|
-
@mixin caret(
|
|
30
|
-
$direction: down,
|
|
31
|
-
$width: $caret-width,
|
|
32
|
-
$spacing: $caret-spacing,
|
|
33
|
-
$vertical-align: $caret-vertical-align
|
|
34
|
-
) {
|
|
28
|
+
@mixin caret($direction: down) {
|
|
35
29
|
@if $enable-caret {
|
|
36
30
|
&::after {
|
|
37
31
|
display: inline-block;
|
|
38
|
-
margin-left: $spacing;
|
|
39
|
-
vertical-align: $vertical-align;
|
|
32
|
+
margin-left: $caret-spacing;
|
|
33
|
+
vertical-align: $caret-vertical-align;
|
|
40
34
|
content: "";
|
|
41
35
|
@if $direction == down {
|
|
42
|
-
@include caret-down(
|
|
36
|
+
@include caret-down();
|
|
43
37
|
} @else if $direction == up {
|
|
44
|
-
@include caret-up(
|
|
45
|
-
} @else if $direction ==
|
|
46
|
-
@include caret-
|
|
38
|
+
@include caret-up();
|
|
39
|
+
} @else if $direction == right {
|
|
40
|
+
@include caret-right();
|
|
47
41
|
}
|
|
48
42
|
}
|
|
49
43
|
|
|
50
|
-
@if $direction ==
|
|
44
|
+
@if $direction == left {
|
|
51
45
|
&::after {
|
|
52
46
|
display: none;
|
|
53
47
|
}
|
|
54
48
|
|
|
55
49
|
&::before {
|
|
56
50
|
display: inline-block;
|
|
57
|
-
margin-right: $spacing;
|
|
58
|
-
vertical-align: $vertical-align;
|
|
51
|
+
margin-right: $caret-spacing;
|
|
52
|
+
vertical-align: $caret-vertical-align;
|
|
59
53
|
content: "";
|
|
60
|
-
@include caret-
|
|
54
|
+
@include caret-left();
|
|
61
55
|
}
|
|
62
56
|
}
|
|
63
57
|
|
|
@@ -66,4 +60,3 @@
|
|
|
66
60
|
}
|
|
67
61
|
}
|
|
68
62
|
}
|
|
69
|
-
// scss-docs-end caret-mixins
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
@mixin float-left() {
|
|
4
|
+
float: left !important;
|
|
5
|
+
@include deprecate("The `float-left` mixin", "v4.3.0", "v5");
|
|
6
|
+
}
|
|
7
|
+
@mixin float-right() {
|
|
8
|
+
float: right !important;
|
|
9
|
+
@include deprecate("The `float-right` mixin", "v4.3.0", "v5");
|
|
10
|
+
}
|
|
11
|
+
@mixin float-none() {
|
|
12
|
+
float: none !important;
|
|
13
|
+
@include deprecate("The `float-none` mixin", "v4.3.0", "v5");
|
|
14
|
+
}
|
|
@@ -1,7 +1,33 @@
|
|
|
1
|
+
// Form control focus state
|
|
2
|
+
//
|
|
3
|
+
// Generate a customized focus state and for any input with the specified color,
|
|
4
|
+
// which defaults to the `$input-focus-border-color` variable.
|
|
5
|
+
//
|
|
6
|
+
// We highly encourage you to not customize the default value, but instead use
|
|
7
|
+
// this to tweak colors on an as-needed basis. This aesthetic change is based on
|
|
8
|
+
// WebKit's default styles, but applicable to a wider range of browsers. Its
|
|
9
|
+
// usability and accessibility should be taken into account with any change.
|
|
10
|
+
//
|
|
11
|
+
// Example usage: change the default blue border and shadow to white for better
|
|
12
|
+
// contrast against a dark gray background.
|
|
13
|
+
@mixin form-control-focus($ignore-warning: false) {
|
|
14
|
+
&:focus {
|
|
15
|
+
color: $input-focus-color;
|
|
16
|
+
background-color: $input-focus-bg;
|
|
17
|
+
border-color: $input-focus-border-color;
|
|
18
|
+
outline: 0;
|
|
19
|
+
@if $enable-shadows {
|
|
20
|
+
@include box-shadow($input-box-shadow, $input-focus-box-shadow);
|
|
21
|
+
} @else {
|
|
22
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
|
23
|
+
box-shadow: $input-focus-box-shadow;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
@include deprecate("The `form-control-focus()` mixin", "v4.4.0", "v5", $ignore-warning);
|
|
27
|
+
}
|
|
28
|
+
|
|
1
29
|
// This mixin uses an `if()` technique to be compatible with Dart Sass
|
|
2
30
|
// See https://github.com/sass/sass/issues/1873#issuecomment-152293725 for more details
|
|
3
|
-
|
|
4
|
-
// scss-docs-start form-validation-mixins
|
|
5
31
|
@mixin form-validation-state-selector($state) {
|
|
6
32
|
@if ($state == "valid" or $state == "invalid") {
|
|
7
33
|
.was-validated #{if(&, "&", "")}:#{$state},
|
|
@@ -15,27 +41,19 @@
|
|
|
15
41
|
}
|
|
16
42
|
}
|
|
17
43
|
|
|
18
|
-
@mixin form-validation-state(
|
|
19
|
-
$state,
|
|
20
|
-
$color,
|
|
21
|
-
$icon,
|
|
22
|
-
$tooltip-color: color-contrast($color),
|
|
23
|
-
$tooltip-bg-color: rgba($color, $form-feedback-tooltip-opacity),
|
|
24
|
-
$focus-box-shadow: 0 0 $input-btn-focus-blur $input-focus-width rgba($color, $input-btn-focus-color-opacity),
|
|
25
|
-
$border-color: $color
|
|
26
|
-
) {
|
|
44
|
+
@mixin form-validation-state($state, $color, $icon) {
|
|
27
45
|
.#{$state}-feedback {
|
|
28
46
|
display: none;
|
|
29
47
|
width: 100%;
|
|
30
48
|
margin-top: $form-feedback-margin-top;
|
|
31
49
|
@include font-size($form-feedback-font-size);
|
|
32
|
-
font-style: $form-feedback-font-style;
|
|
33
50
|
color: $color;
|
|
34
51
|
}
|
|
35
52
|
|
|
36
53
|
.#{$state}-tooltip {
|
|
37
54
|
position: absolute;
|
|
38
55
|
top: 100%;
|
|
56
|
+
left: 0;
|
|
39
57
|
z-index: 5;
|
|
40
58
|
display: none;
|
|
41
59
|
max-width: 100%; // Contain to parent when possible
|
|
@@ -43,8 +61,8 @@
|
|
|
43
61
|
margin-top: .1rem;
|
|
44
62
|
@include font-size($form-feedback-tooltip-font-size);
|
|
45
63
|
line-height: $form-feedback-tooltip-line-height;
|
|
46
|
-
color: $
|
|
47
|
-
background-color: $tooltip-
|
|
64
|
+
color: color-yiq($color);
|
|
65
|
+
background-color: rgba($color, $form-feedback-tooltip-opacity);
|
|
48
66
|
@include border-radius($form-feedback-tooltip-border-radius);
|
|
49
67
|
}
|
|
50
68
|
|
|
@@ -57,7 +75,7 @@
|
|
|
57
75
|
|
|
58
76
|
.form-control {
|
|
59
77
|
@include form-validation-state-selector($state) {
|
|
60
|
-
border-color: $
|
|
78
|
+
border-color: $color;
|
|
61
79
|
|
|
62
80
|
@if $enable-validation-icons {
|
|
63
81
|
padding-right: $input-height-inner;
|
|
@@ -68,13 +86,8 @@
|
|
|
68
86
|
}
|
|
69
87
|
|
|
70
88
|
&:focus {
|
|
71
|
-
border-color: $
|
|
72
|
-
|
|
73
|
-
@include box-shadow($input-box-shadow, $focus-box-shadow);
|
|
74
|
-
} @else {
|
|
75
|
-
// Avoid using mixin so we can pass custom focus shadow properly
|
|
76
|
-
box-shadow: $focus-box-shadow;
|
|
77
|
-
}
|
|
89
|
+
border-color: $color;
|
|
90
|
+
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
78
91
|
}
|
|
79
92
|
}
|
|
80
93
|
}
|
|
@@ -89,75 +102,77 @@
|
|
|
89
102
|
}
|
|
90
103
|
}
|
|
91
104
|
|
|
92
|
-
.
|
|
105
|
+
.custom-select {
|
|
93
106
|
@include form-validation-state-selector($state) {
|
|
94
|
-
border-color: $
|
|
107
|
+
border-color: $color;
|
|
95
108
|
|
|
96
109
|
@if $enable-validation-icons {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
--#{$prefix}form-select-bg-icon: #{escape-svg($icon)};
|
|
100
|
-
padding-right: $form-select-feedback-icon-padding-end;
|
|
101
|
-
background-position: $form-select-bg-position, $form-select-feedback-icon-position;
|
|
102
|
-
background-size: $form-select-bg-size, $form-select-feedback-icon-size;
|
|
103
|
-
}
|
|
110
|
+
padding-right: $custom-select-feedback-icon-padding-right;
|
|
111
|
+
background: $custom-select-background, escape-svg($icon) $custom-select-bg no-repeat $custom-select-feedback-icon-position / $custom-select-feedback-icon-size;
|
|
104
112
|
}
|
|
105
113
|
|
|
106
114
|
&:focus {
|
|
107
|
-
border-color: $
|
|
108
|
-
|
|
109
|
-
@include box-shadow($form-select-box-shadow, $focus-box-shadow);
|
|
110
|
-
} @else {
|
|
111
|
-
// Avoid using mixin so we can pass custom focus shadow properly
|
|
112
|
-
box-shadow: $focus-box-shadow;
|
|
113
|
-
}
|
|
115
|
+
border-color: $color;
|
|
116
|
+
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
114
117
|
}
|
|
115
118
|
}
|
|
116
119
|
}
|
|
117
120
|
|
|
118
|
-
.form-
|
|
121
|
+
.form-check-input {
|
|
119
122
|
@include form-validation-state-selector($state) {
|
|
120
|
-
|
|
121
|
-
|
|
123
|
+
~ .form-check-label {
|
|
124
|
+
color: $color;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
~ .#{$state}-feedback,
|
|
128
|
+
~ .#{$state}-tooltip {
|
|
129
|
+
display: block;
|
|
122
130
|
}
|
|
123
131
|
}
|
|
124
132
|
}
|
|
125
133
|
|
|
126
|
-
.
|
|
134
|
+
.custom-control-input {
|
|
127
135
|
@include form-validation-state-selector($state) {
|
|
128
|
-
|
|
136
|
+
~ .custom-control-label {
|
|
137
|
+
color: $color;
|
|
138
|
+
|
|
139
|
+
&::before {
|
|
140
|
+
border-color: $color;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
129
143
|
|
|
130
144
|
&:checked {
|
|
131
|
-
|
|
145
|
+
~ .custom-control-label::before {
|
|
146
|
+
border-color: lighten($color, 10%);
|
|
147
|
+
@include gradient-bg(lighten($color, 10%));
|
|
148
|
+
}
|
|
132
149
|
}
|
|
133
150
|
|
|
134
151
|
&:focus {
|
|
135
|
-
|
|
136
|
-
|
|
152
|
+
~ .custom-control-label::before {
|
|
153
|
+
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
154
|
+
}
|
|
137
155
|
|
|
138
|
-
|
|
139
|
-
|
|
156
|
+
&:not(:checked) ~ .custom-control-label::before {
|
|
157
|
+
border-color: $color;
|
|
158
|
+
}
|
|
140
159
|
}
|
|
141
160
|
}
|
|
142
161
|
}
|
|
143
|
-
.form-check-inline .form-check-input {
|
|
144
|
-
~ .#{$state}-feedback {
|
|
145
|
-
margin-left: .5em;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
162
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
163
|
+
// custom file
|
|
164
|
+
.custom-file-input {
|
|
165
|
+
@include form-validation-state-selector($state) {
|
|
166
|
+
~ .custom-file-label {
|
|
167
|
+
border-color: $color;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&:focus {
|
|
171
|
+
~ .custom-file-label {
|
|
172
|
+
border-color: $color;
|
|
173
|
+
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
158
174
|
}
|
|
159
175
|
}
|
|
160
176
|
}
|
|
161
177
|
}
|
|
162
178
|
}
|
|
163
|
-
// scss-docs-end form-validation-mixins
|
|
@@ -1,47 +1,45 @@
|
|
|
1
1
|
// Gradients
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
@mixin gradient-bg($color: null) {
|
|
5
|
-
background-color: $color;
|
|
6
|
-
|
|
3
|
+
@mixin gradient-bg($color) {
|
|
7
4
|
@if $enable-gradients {
|
|
8
|
-
background
|
|
5
|
+
background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;
|
|
6
|
+
} @else {
|
|
7
|
+
background-color: $color;
|
|
9
8
|
}
|
|
10
9
|
}
|
|
11
|
-
// scss-docs-end gradient-bg-mixin
|
|
12
10
|
|
|
13
|
-
// scss-docs-start gradient-mixins
|
|
14
11
|
// Horizontal gradient, from left to right
|
|
15
12
|
//
|
|
16
13
|
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
|
17
14
|
@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
|
|
18
15
|
background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
|
|
16
|
+
background-repeat: repeat-x;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
19
|
// Vertical gradient, from top to bottom
|
|
22
20
|
//
|
|
23
21
|
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
|
24
|
-
@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent:
|
|
22
|
+
@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
|
|
25
23
|
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
|
|
24
|
+
background-repeat: repeat-x;
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
|
|
29
28
|
background-image: linear-gradient($deg, $start-color, $end-color);
|
|
29
|
+
background-repeat: repeat-x;
|
|
30
30
|
}
|
|
31
|
-
|
|
32
31
|
@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
|
|
33
32
|
background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
|
|
33
|
+
background-repeat: no-repeat;
|
|
34
34
|
}
|
|
35
|
-
|
|
36
35
|
@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
|
|
37
36
|
background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
|
|
37
|
+
background-repeat: no-repeat;
|
|
38
38
|
}
|
|
39
|
-
|
|
40
39
|
@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
|
|
41
40
|
background-image: radial-gradient(circle, $inner-color, $outer-color);
|
|
41
|
+
background-repeat: no-repeat;
|
|
42
42
|
}
|
|
43
|
-
|
|
44
43
|
@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
|
|
45
44
|
background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
|
|
46
45
|
}
|
|
47
|
-
// scss-docs-end gradient-mixins
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// Framework grid generation
|
|
2
|
+
//
|
|
3
|
+
// Used only by Bootstrap to generate the correct number of grid classes given
|
|
4
|
+
// any value of `$grid-columns`.
|
|
5
|
+
|
|
6
|
+
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
|
7
|
+
// Common properties for all breakpoints
|
|
8
|
+
%grid-column {
|
|
9
|
+
position: relative;
|
|
10
|
+
width: 100%;
|
|
11
|
+
padding-right: $gutter / 2;
|
|
12
|
+
padding-left: $gutter / 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@each $breakpoint in map-keys($breakpoints) {
|
|
16
|
+
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
17
|
+
|
|
18
|
+
@if $columns > 0 {
|
|
19
|
+
// Allow columns to stretch full width below their breakpoints
|
|
20
|
+
@for $i from 1 through $columns {
|
|
21
|
+
.col#{$infix}-#{$i} {
|
|
22
|
+
@extend %grid-column;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.col#{$infix},
|
|
28
|
+
.col#{$infix}-auto {
|
|
29
|
+
@extend %grid-column;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
|
33
|
+
// Provide basic `.col-{bp}` classes for equal-width flexbox columns
|
|
34
|
+
.col#{$infix} {
|
|
35
|
+
flex-basis: 0;
|
|
36
|
+
flex-grow: 1;
|
|
37
|
+
max-width: 100%;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@if $grid-row-columns > 0 {
|
|
41
|
+
@for $i from 1 through $grid-row-columns {
|
|
42
|
+
.row-cols#{$infix}-#{$i} {
|
|
43
|
+
@include row-cols($i);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.col#{$infix}-auto {
|
|
49
|
+
@include make-col-auto();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@if $columns > 0 {
|
|
53
|
+
@for $i from 1 through $columns {
|
|
54
|
+
.col#{$infix}-#{$i} {
|
|
55
|
+
@include make-col($i, $columns);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.order#{$infix}-first { order: -1; }
|
|
61
|
+
|
|
62
|
+
.order#{$infix}-last { order: $columns + 1; }
|
|
63
|
+
|
|
64
|
+
@for $i from 0 through $columns {
|
|
65
|
+
.order#{$infix}-#{$i} { order: $i; }
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@if $columns > 0 {
|
|
69
|
+
// `$columns - 1` because offsetting by the width of an entire row isn't possible
|
|
70
|
+
@for $i from 0 through ($columns - 1) {
|
|
71
|
+
@if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
|
|
72
|
+
.offset#{$infix}-#{$i} {
|
|
73
|
+
@include make-col-offset($i, $columns);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -1,151 +1,69 @@
|
|
|
1
|
-
|
|
1
|
+
/// Grid system
|
|
2
2
|
//
|
|
3
3
|
// Generate semantic grid columns with these mixins.
|
|
4
4
|
|
|
5
|
+
@mixin make-container($gutter: $grid-gutter-width) {
|
|
6
|
+
width: 100%;
|
|
7
|
+
padding-right: $gutter / 2;
|
|
8
|
+
padding-left: $gutter / 2;
|
|
9
|
+
margin-right: auto;
|
|
10
|
+
margin-left: auto;
|
|
11
|
+
}
|
|
12
|
+
|
|
5
13
|
@mixin make-row($gutter: $grid-gutter-width) {
|
|
6
|
-
--#{$prefix}gutter-x: #{$gutter};
|
|
7
|
-
--#{$prefix}gutter-y: 0;
|
|
8
14
|
display: flex;
|
|
9
15
|
flex-wrap: wrap;
|
|
10
|
-
|
|
11
|
-
margin-
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
margin-right: -$gutter / 2;
|
|
17
|
+
margin-left: -$gutter / 2;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// For each breakpoint, define the maximum width of the container in a media query
|
|
21
|
+
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
|
|
22
|
+
@each $breakpoint, $container-max-width in $max-widths {
|
|
23
|
+
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
|
24
|
+
max-width: $container-max-width;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
@include deprecate("The `make-container-max-widths` mixin", "v4.5.2", "v5");
|
|
14
28
|
}
|
|
15
29
|
|
|
16
|
-
@mixin make-col-ready() {
|
|
17
|
-
|
|
18
|
-
box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);
|
|
30
|
+
@mixin make-col-ready($gutter: $grid-gutter-width) {
|
|
31
|
+
position: relative;
|
|
19
32
|
// Prevent columns from becoming too narrow when at smaller grid tiers by
|
|
20
|
-
// always setting `width: 100%;`. This works because we
|
|
33
|
+
// always setting `width: 100%;`. This works because we use `flex` values
|
|
21
34
|
// later on to override this initial width.
|
|
22
|
-
flex-shrink: 0;
|
|
23
35
|
width: 100%;
|
|
24
|
-
|
|
25
|
-
padding-
|
|
26
|
-
padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
|
|
27
|
-
margin-top: var(--#{$prefix}gutter-y);
|
|
36
|
+
padding-right: $gutter / 2;
|
|
37
|
+
padding-left: $gutter / 2;
|
|
28
38
|
}
|
|
29
39
|
|
|
30
|
-
@mixin make-col($size
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
flex: 1 1 0;
|
|
37
|
-
max-width: 100%;
|
|
38
|
-
}
|
|
40
|
+
@mixin make-col($size, $columns: $grid-columns) {
|
|
41
|
+
flex: 0 0 percentage($size / $columns);
|
|
42
|
+
// Add a `max-width` to ensure content within each column does not blow out
|
|
43
|
+
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
|
|
44
|
+
// do not appear to require this.
|
|
45
|
+
max-width: percentage($size / $columns);
|
|
39
46
|
}
|
|
40
47
|
|
|
41
48
|
@mixin make-col-auto() {
|
|
42
49
|
flex: 0 0 auto;
|
|
43
50
|
width: auto;
|
|
51
|
+
max-width: 100%; // Reset earlier grid tiers
|
|
44
52
|
}
|
|
45
53
|
|
|
46
54
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|
|
47
|
-
$num:
|
|
55
|
+
$num: $size / $columns;
|
|
48
56
|
margin-left: if($num == 0, 0, percentage($num));
|
|
49
57
|
}
|
|
50
58
|
|
|
51
59
|
// Row columns
|
|
52
60
|
//
|
|
53
61
|
// Specify on a parent element(e.g., .row) to force immediate children into NN
|
|
54
|
-
//
|
|
62
|
+
// numberof columns. Supports wrapping to new lines, but does not do a Masonry
|
|
55
63
|
// style grid.
|
|
56
64
|
@mixin row-cols($count) {
|
|
57
65
|
> * {
|
|
58
|
-
flex: 0 0
|
|
59
|
-
width:
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// Framework grid generation
|
|
64
|
-
//
|
|
65
|
-
// Used only by Bootstrap to generate the correct number of grid classes given
|
|
66
|
-
// any value of `$grid-columns`.
|
|
67
|
-
|
|
68
|
-
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
|
69
|
-
@each $breakpoint in map-keys($breakpoints) {
|
|
70
|
-
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
71
|
-
|
|
72
|
-
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
|
73
|
-
// Provide basic `.col-{bp}` classes for equal-width flexbox columns
|
|
74
|
-
.col#{$infix} {
|
|
75
|
-
flex: 1 0 0;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.row-cols#{$infix}-auto > * {
|
|
79
|
-
@include make-col-auto();
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@if $grid-row-columns > 0 {
|
|
83
|
-
@for $i from 1 through $grid-row-columns {
|
|
84
|
-
.row-cols#{$infix}-#{$i} {
|
|
85
|
-
@include row-cols($i);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.col#{$infix}-auto {
|
|
91
|
-
@include make-col-auto();
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
@if $columns > 0 {
|
|
95
|
-
@for $i from 1 through $columns {
|
|
96
|
-
.col#{$infix}-#{$i} {
|
|
97
|
-
@include make-col($i, $columns);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
// `$columns - 1` because offsetting by the width of an entire row isn't possible
|
|
102
|
-
@for $i from 0 through ($columns - 1) {
|
|
103
|
-
@if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
|
|
104
|
-
.offset#{$infix}-#{$i} {
|
|
105
|
-
@include make-col-offset($i, $columns);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// Gutters
|
|
112
|
-
//
|
|
113
|
-
// Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.
|
|
114
|
-
@each $key, $value in $gutters {
|
|
115
|
-
.g#{$infix}-#{$key},
|
|
116
|
-
.gx#{$infix}-#{$key} {
|
|
117
|
-
--#{$prefix}gutter-x: #{$value};
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.g#{$infix}-#{$key},
|
|
121
|
-
.gy#{$infix}-#{$key} {
|
|
122
|
-
--#{$prefix}gutter-y: #{$value};
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {
|
|
130
|
-
@each $breakpoint in map-keys($breakpoints) {
|
|
131
|
-
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
132
|
-
|
|
133
|
-
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
|
134
|
-
@if $columns > 0 {
|
|
135
|
-
@for $i from 1 through $columns {
|
|
136
|
-
.g-col#{$infix}-#{$i} {
|
|
137
|
-
grid-column: auto / span $i;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
// Start with `1` because `0` is an invalid value.
|
|
142
|
-
// Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.
|
|
143
|
-
@for $i from 1 through ($columns - 1) {
|
|
144
|
-
.g-start#{$infix}-#{$i} {
|
|
145
|
-
grid-column-start: $i;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
66
|
+
flex: 0 0 100% / $count;
|
|
67
|
+
max-width: 100% / $count;
|
|
150
68
|
}
|
|
151
69
|
}
|