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,62 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/*!
|
|
2
|
+
* Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
|
|
3
|
+
* Copyright 2011-2020 The Bootstrap Authors
|
|
4
|
+
* Copyright 2011-2020 Twitter, Inc.
|
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
6
|
+
*/
|
|
3
7
|
|
|
4
|
-
|
|
8
|
+
html {
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
-ms-overflow-style: scrollbar;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
*,
|
|
14
|
+
*::before,
|
|
15
|
+
*::after {
|
|
16
|
+
box-sizing: inherit;
|
|
17
|
+
}
|
|
5
18
|
|
|
6
19
|
@import "functions";
|
|
7
20
|
@import "variables";
|
|
8
|
-
@import "variables-dark";
|
|
9
|
-
@import "maps";
|
|
10
21
|
|
|
11
22
|
@import "mixins/breakpoints";
|
|
12
|
-
@import "mixins/
|
|
23
|
+
@import "mixins/grid-framework";
|
|
13
24
|
@import "mixins/grid";
|
|
14
|
-
@import "mixins/utilities";
|
|
15
|
-
|
|
16
|
-
@import "vendor/rfs";
|
|
17
25
|
|
|
18
|
-
@import "containers";
|
|
19
26
|
@import "grid";
|
|
20
|
-
|
|
21
|
-
@import "utilities";
|
|
22
|
-
|
|
23
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
|
24
|
-
$utilities: map-get-multiple(
|
|
25
|
-
$utilities,
|
|
26
|
-
(
|
|
27
|
-
"display",
|
|
28
|
-
"order",
|
|
29
|
-
"flex",
|
|
30
|
-
"flex-direction",
|
|
31
|
-
"flex-grow",
|
|
32
|
-
"flex-shrink",
|
|
33
|
-
"flex-wrap",
|
|
34
|
-
"justify-content",
|
|
35
|
-
"align-items",
|
|
36
|
-
"align-content",
|
|
37
|
-
"align-self",
|
|
38
|
-
"margin",
|
|
39
|
-
"margin-x",
|
|
40
|
-
"margin-y",
|
|
41
|
-
"margin-top",
|
|
42
|
-
"margin-end",
|
|
43
|
-
"margin-bottom",
|
|
44
|
-
"margin-start",
|
|
45
|
-
"negative-margin",
|
|
46
|
-
"negative-margin-x",
|
|
47
|
-
"negative-margin-y",
|
|
48
|
-
"negative-margin-top",
|
|
49
|
-
"negative-margin-end",
|
|
50
|
-
"negative-margin-bottom",
|
|
51
|
-
"negative-margin-start",
|
|
52
|
-
"padding",
|
|
53
|
-
"padding-x",
|
|
54
|
-
"padding-y",
|
|
55
|
-
"padding-top",
|
|
56
|
-
"padding-end",
|
|
57
|
-
"padding-bottom",
|
|
58
|
-
"padding-start",
|
|
59
|
-
)
|
|
60
|
-
);
|
|
61
|
-
|
|
62
|
-
@import "utilities/api";
|
|
27
|
+
@import "utilities/display";
|
|
28
|
+
@import "utilities/flex";
|
|
29
|
+
@import "utilities/spacing";
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/*!
|
|
2
|
+
* Bootstrap Reboot v4.5.3 (https://getbootstrap.com/)
|
|
3
|
+
* Copyright 2011-2020 The Bootstrap Authors
|
|
4
|
+
* Copyright 2011-2020 Twitter, Inc.
|
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
6
|
+
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
|
7
|
+
*/
|
|
3
8
|
|
|
4
9
|
@import "functions";
|
|
5
10
|
@import "variables";
|
|
6
|
-
@import "variables-dark";
|
|
7
|
-
@import "maps";
|
|
8
11
|
@import "mixins";
|
|
9
|
-
@import "root";
|
|
10
12
|
@import "reboot";
|
|
@@ -1,22 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/*!
|
|
2
|
+
* Bootstrap v4.5.3 (https://getbootstrap.com/)
|
|
3
|
+
* Copyright 2011-2020 The Bootstrap Authors
|
|
4
|
+
* Copyright 2011-2020 Twitter, Inc.
|
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
6
|
+
*/
|
|
3
7
|
|
|
4
|
-
|
|
5
|
-
// scss-docs-start import-stack
|
|
6
|
-
// Configuration
|
|
7
8
|
@import "functions";
|
|
8
9
|
@import "variables";
|
|
9
|
-
@import "variables-dark";
|
|
10
|
-
@import "maps";
|
|
11
10
|
@import "mixins";
|
|
12
|
-
@import "utilities";
|
|
13
|
-
|
|
14
|
-
// Layout & components
|
|
15
11
|
@import "root";
|
|
16
12
|
@import "reboot";
|
|
17
13
|
@import "type";
|
|
18
14
|
@import "images";
|
|
19
|
-
@import "
|
|
15
|
+
@import "code";
|
|
20
16
|
@import "grid";
|
|
21
17
|
@import "tables";
|
|
22
18
|
@import "forms";
|
|
@@ -24,15 +20,18 @@
|
|
|
24
20
|
@import "transitions";
|
|
25
21
|
@import "dropdown";
|
|
26
22
|
@import "button-group";
|
|
23
|
+
@import "input-group";
|
|
24
|
+
@import "custom-forms";
|
|
27
25
|
@import "nav";
|
|
28
26
|
@import "navbar";
|
|
29
27
|
@import "card";
|
|
30
|
-
@import "accordion";
|
|
31
28
|
@import "breadcrumb";
|
|
32
29
|
@import "pagination";
|
|
33
30
|
@import "badge";
|
|
31
|
+
@import "jumbotron";
|
|
34
32
|
@import "alert";
|
|
35
33
|
@import "progress";
|
|
34
|
+
@import "media";
|
|
36
35
|
@import "list-group";
|
|
37
36
|
@import "close";
|
|
38
37
|
@import "toasts";
|
|
@@ -41,12 +40,5 @@
|
|
|
41
40
|
@import "popover";
|
|
42
41
|
@import "carousel";
|
|
43
42
|
@import "spinners";
|
|
44
|
-
@import "
|
|
45
|
-
@import "
|
|
46
|
-
|
|
47
|
-
// Helpers
|
|
48
|
-
@import "helpers";
|
|
49
|
-
|
|
50
|
-
// Utilities
|
|
51
|
-
@import "utilities/api";
|
|
52
|
-
// scss-docs-end import-stack
|
|
43
|
+
@import "utilities";
|
|
44
|
+
@import "print";
|
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
@include deprecate("`alert-variant()`", "v5.3.0", "v6.0.0");
|
|
2
|
-
|
|
3
|
-
// scss-docs-start alert-variant-mixin
|
|
4
1
|
@mixin alert-variant($background, $border, $color) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
--#{$prefix}alert-link-color: #{shade-color($color, 20%)};
|
|
2
|
+
color: $color;
|
|
3
|
+
@include gradient-bg($background);
|
|
4
|
+
border-color: $border;
|
|
9
5
|
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
hr {
|
|
7
|
+
border-top-color: darken($border, 5%);
|
|
12
8
|
}
|
|
13
9
|
|
|
14
10
|
.alert-link {
|
|
15
|
-
color:
|
|
11
|
+
color: darken($color, 10%);
|
|
16
12
|
}
|
|
17
13
|
}
|
|
18
|
-
// scss-docs-end alert-variant-mixin
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Contextual backgrounds
|
|
4
|
+
|
|
5
|
+
@mixin bg-variant($parent, $color, $ignore-warning: false) {
|
|
6
|
+
#{$parent} {
|
|
7
|
+
background-color: $color !important;
|
|
8
|
+
}
|
|
9
|
+
a#{$parent},
|
|
10
|
+
button#{$parent} {
|
|
11
|
+
@include hover-focus() {
|
|
12
|
+
background-color: darken($color, 10%) !important;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
@include deprecate("The `bg-variant` mixin", "v4.4.0", "v5", $ignore-warning);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@mixin bg-gradient-variant($parent, $color, $ignore-warning: false) {
|
|
19
|
+
#{$parent} {
|
|
20
|
+
background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
|
|
21
|
+
}
|
|
22
|
+
@include deprecate("The `bg-gradient-variant` mixin", "v4.5.0", "v5", $ignore-warning);
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@mixin badge-variant($bg) {
|
|
2
|
+
color: color-yiq($bg);
|
|
3
|
+
background-color: $bg;
|
|
4
|
+
|
|
5
|
+
@at-root a#{&} {
|
|
6
|
+
@include hover-focus() {
|
|
7
|
+
color: color-yiq($bg);
|
|
8
|
+
background-color: darken($bg, 10%);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&:focus,
|
|
12
|
+
&.focus {
|
|
13
|
+
outline: 0;
|
|
14
|
+
box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
@return $return;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
// scss-docs-start border-radius-mixins
|
|
18
17
|
@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {
|
|
19
18
|
@if $enable-rounded {
|
|
20
19
|
border-radius: valid-radius($radius);
|
|
@@ -24,55 +23,54 @@
|
|
|
24
23
|
}
|
|
25
24
|
}
|
|
26
25
|
|
|
27
|
-
@mixin border-top-radius($radius
|
|
26
|
+
@mixin border-top-radius($radius) {
|
|
28
27
|
@if $enable-rounded {
|
|
29
28
|
border-top-left-radius: valid-radius($radius);
|
|
30
29
|
border-top-right-radius: valid-radius($radius);
|
|
31
30
|
}
|
|
32
31
|
}
|
|
33
32
|
|
|
34
|
-
@mixin border-
|
|
33
|
+
@mixin border-right-radius($radius) {
|
|
35
34
|
@if $enable-rounded {
|
|
36
35
|
border-top-right-radius: valid-radius($radius);
|
|
37
36
|
border-bottom-right-radius: valid-radius($radius);
|
|
38
37
|
}
|
|
39
38
|
}
|
|
40
39
|
|
|
41
|
-
@mixin border-bottom-radius($radius
|
|
40
|
+
@mixin border-bottom-radius($radius) {
|
|
42
41
|
@if $enable-rounded {
|
|
43
42
|
border-bottom-right-radius: valid-radius($radius);
|
|
44
43
|
border-bottom-left-radius: valid-radius($radius);
|
|
45
44
|
}
|
|
46
45
|
}
|
|
47
46
|
|
|
48
|
-
@mixin border-
|
|
47
|
+
@mixin border-left-radius($radius) {
|
|
49
48
|
@if $enable-rounded {
|
|
50
49
|
border-top-left-radius: valid-radius($radius);
|
|
51
50
|
border-bottom-left-radius: valid-radius($radius);
|
|
52
51
|
}
|
|
53
52
|
}
|
|
54
53
|
|
|
55
|
-
@mixin border-top-
|
|
54
|
+
@mixin border-top-left-radius($radius) {
|
|
56
55
|
@if $enable-rounded {
|
|
57
56
|
border-top-left-radius: valid-radius($radius);
|
|
58
57
|
}
|
|
59
58
|
}
|
|
60
59
|
|
|
61
|
-
@mixin border-top-
|
|
60
|
+
@mixin border-top-right-radius($radius) {
|
|
62
61
|
@if $enable-rounded {
|
|
63
62
|
border-top-right-radius: valid-radius($radius);
|
|
64
63
|
}
|
|
65
64
|
}
|
|
66
65
|
|
|
67
|
-
@mixin border-bottom-
|
|
66
|
+
@mixin border-bottom-right-radius($radius) {
|
|
68
67
|
@if $enable-rounded {
|
|
69
68
|
border-bottom-right-radius: valid-radius($radius);
|
|
70
69
|
}
|
|
71
70
|
}
|
|
72
71
|
|
|
73
|
-
@mixin border-bottom-
|
|
72
|
+
@mixin border-bottom-left-radius($radius) {
|
|
74
73
|
@if $enable-rounded {
|
|
75
74
|
border-bottom-left-radius: valid-radius($radius);
|
|
76
75
|
}
|
|
77
76
|
}
|
|
78
|
-
// scss-docs-end border-radius-mixins
|
|
@@ -1,23 +1,19 @@
|
|
|
1
1
|
@mixin box-shadow($shadow...) {
|
|
2
2
|
@if $enable-shadows {
|
|
3
3
|
$result: ();
|
|
4
|
-
$has-single-value: false;
|
|
5
|
-
$single-value: null;
|
|
6
4
|
|
|
7
|
-
@
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
@if (length($shadow) == 1) {
|
|
6
|
+
// We can pass `@include box-shadow(none);`
|
|
7
|
+
$result: $shadow;
|
|
8
|
+
} @else {
|
|
9
|
+
// Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;`
|
|
10
|
+
@for $i from 1 through length($shadow) {
|
|
11
|
+
@if nth($shadow, $i) != "none" {
|
|
12
|
+
$result: append($result, nth($shadow, $i), "comma");
|
|
14
13
|
}
|
|
15
14
|
}
|
|
16
15
|
}
|
|
17
|
-
|
|
18
|
-
@if $has-single-value {
|
|
19
|
-
box-shadow: $single-value;
|
|
20
|
-
} @else if (length($result) > 0) {
|
|
16
|
+
@if (length($result) > 0) {
|
|
21
17
|
box-shadow: $result;
|
|
22
18
|
}
|
|
23
19
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
//
|
|
3
3
|
// Breakpoints are defined as a map of (name: minimum width), order from small to large:
|
|
4
4
|
//
|
|
5
|
-
// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px
|
|
5
|
+
// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
|
|
6
6
|
//
|
|
7
7
|
// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
|
|
8
8
|
|
|
@@ -10,47 +10,44 @@
|
|
|
10
10
|
//
|
|
11
11
|
// >> breakpoint-next(sm)
|
|
12
12
|
// md
|
|
13
|
-
// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px
|
|
13
|
+
// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
|
14
14
|
// md
|
|
15
|
-
// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl
|
|
15
|
+
// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
|
|
16
16
|
// md
|
|
17
17
|
@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
|
|
18
18
|
$n: index($breakpoint-names, $name);
|
|
19
|
-
@if
|
|
20
|
-
@error "breakpoint `#{$name}` not found in `#{$breakpoints}`";
|
|
21
|
-
}
|
|
22
|
-
@return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
|
|
19
|
+
@return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
|
|
23
20
|
}
|
|
24
21
|
|
|
25
22
|
// Minimum breakpoint width. Null for the smallest (first) breakpoint.
|
|
26
23
|
//
|
|
27
|
-
// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px
|
|
24
|
+
// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
|
28
25
|
// 576px
|
|
29
26
|
@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
|
|
30
27
|
$min: map-get($breakpoints, $name);
|
|
31
28
|
@return if($min != 0, $min, null);
|
|
32
29
|
}
|
|
33
30
|
|
|
34
|
-
// Maximum breakpoint width.
|
|
35
|
-
// The maximum value is
|
|
36
|
-
// `min-` and `max-` prefixes and viewports with fractional widths.
|
|
31
|
+
// Maximum breakpoint width. Null for the largest (last) breakpoint.
|
|
32
|
+
// The maximum value is calculated as the minimum of the next one less 0.02px
|
|
33
|
+
// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.
|
|
37
34
|
// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
|
|
38
35
|
// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
|
|
39
36
|
// See https://bugs.webkit.org/show_bug.cgi?id=178261
|
|
40
37
|
//
|
|
41
|
-
// >> breakpoint-max(
|
|
38
|
+
// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
|
42
39
|
// 767.98px
|
|
43
40
|
@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
|
|
44
|
-
$
|
|
45
|
-
@return if($
|
|
41
|
+
$next: breakpoint-next($name, $breakpoints);
|
|
42
|
+
@return if($next, breakpoint-min($next, $breakpoints) - .02, null);
|
|
46
43
|
}
|
|
47
44
|
|
|
48
45
|
// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
|
|
49
46
|
// Useful for making responsive utilities.
|
|
50
47
|
//
|
|
51
|
-
// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px
|
|
48
|
+
// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
|
52
49
|
// "" (Returns a blank string)
|
|
53
|
-
// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px
|
|
50
|
+
// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
|
|
54
51
|
// "-sm"
|
|
55
52
|
@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
|
|
56
53
|
@return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
|
|
@@ -107,9 +104,8 @@
|
|
|
107
104
|
// No minimum for the smallest breakpoint, and no maximum for the largest one.
|
|
108
105
|
// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
|
|
109
106
|
@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
|
|
110
|
-
$min:
|
|
111
|
-
$
|
|
112
|
-
$max: breakpoint-max($next, $breakpoints);
|
|
107
|
+
$min: breakpoint-min($name, $breakpoints);
|
|
108
|
+
$max: breakpoint-max($name, $breakpoints);
|
|
113
109
|
|
|
114
110
|
@if $min != null and $max != null {
|
|
115
111
|
@media (min-width: $min) and (max-width: $max) {
|
|
@@ -120,7 +116,7 @@
|
|
|
120
116
|
@content;
|
|
121
117
|
}
|
|
122
118
|
} @else if $min == null {
|
|
123
|
-
@include media-breakpoint-down($
|
|
119
|
+
@include media-breakpoint-down($name, $breakpoints) {
|
|
124
120
|
@content;
|
|
125
121
|
}
|
|
126
122
|
}
|
|
@@ -3,68 +3,108 @@
|
|
|
3
3
|
// Easily pump out default styles, as well as :hover, :focus, :active,
|
|
4
4
|
// and disabled options for all buttons
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
$background
|
|
9
|
-
$border
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
6
|
+
@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {
|
|
7
|
+
color: color-yiq($background);
|
|
8
|
+
@include gradient-bg($background);
|
|
9
|
+
border-color: $border;
|
|
10
|
+
@include box-shadow($btn-box-shadow);
|
|
11
|
+
|
|
12
|
+
@include hover() {
|
|
13
|
+
color: color-yiq($hover-background);
|
|
14
|
+
@include gradient-bg($hover-background);
|
|
15
|
+
border-color: $hover-border;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&:focus,
|
|
19
|
+
&.focus {
|
|
20
|
+
color: color-yiq($hover-background);
|
|
21
|
+
@include gradient-bg($hover-background);
|
|
22
|
+
border-color: $hover-border;
|
|
23
|
+
@if $enable-shadows {
|
|
24
|
+
@include box-shadow($btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5));
|
|
25
|
+
} @else {
|
|
26
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
|
27
|
+
box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// Disabled comes first so active can properly restyle
|
|
32
|
+
&.disabled,
|
|
33
|
+
&:disabled {
|
|
34
|
+
color: color-yiq($background);
|
|
35
|
+
background-color: $background;
|
|
36
|
+
border-color: $border;
|
|
37
|
+
// Remove CSS gradients if they're enabled
|
|
38
|
+
@if $enable-gradients {
|
|
39
|
+
background-image: none;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&:not(:disabled):not(.disabled):active,
|
|
44
|
+
&:not(:disabled):not(.disabled).active,
|
|
45
|
+
.show > &.dropdown-toggle {
|
|
46
|
+
color: color-yiq($active-background);
|
|
47
|
+
background-color: $active-background;
|
|
48
|
+
@if $enable-gradients {
|
|
49
|
+
background-image: none; // Remove the gradient for the pressed/active state
|
|
50
|
+
}
|
|
51
|
+
border-color: $active-border;
|
|
52
|
+
|
|
53
|
+
&:focus {
|
|
54
|
+
@if $enable-shadows and $btn-active-box-shadow != none {
|
|
55
|
+
@include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5));
|
|
56
|
+
} @else {
|
|
57
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
|
58
|
+
box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
35
62
|
}
|
|
36
|
-
// scss-docs-end btn-variant-mixin
|
|
37
63
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
$color
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
64
|
+
@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {
|
|
65
|
+
color: $color;
|
|
66
|
+
border-color: $color;
|
|
67
|
+
|
|
68
|
+
@include hover() {
|
|
69
|
+
color: $color-hover;
|
|
70
|
+
background-color: $active-background;
|
|
71
|
+
border-color: $active-border;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&:focus,
|
|
75
|
+
&.focus {
|
|
76
|
+
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.disabled,
|
|
80
|
+
&:disabled {
|
|
81
|
+
color: $color;
|
|
82
|
+
background-color: transparent;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&:not(:disabled):not(.disabled):active,
|
|
86
|
+
&:not(:disabled):not(.disabled).active,
|
|
87
|
+
.show > &.dropdown-toggle {
|
|
88
|
+
color: color-yiq($active-background);
|
|
89
|
+
background-color: $active-background;
|
|
90
|
+
border-color: $active-border;
|
|
91
|
+
|
|
92
|
+
&:focus {
|
|
93
|
+
@if $enable-shadows and $btn-active-box-shadow != none {
|
|
94
|
+
@include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5));
|
|
95
|
+
} @else {
|
|
96
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
|
97
|
+
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
60
101
|
}
|
|
61
|
-
// scss-docs-end btn-outline-variant-mixin
|
|
62
102
|
|
|
63
|
-
//
|
|
64
|
-
@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
103
|
+
// Button sizes
|
|
104
|
+
@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
|
105
|
+
padding: $padding-y $padding-x;
|
|
106
|
+
@include font-size($font-size);
|
|
107
|
+
line-height: $line-height;
|
|
108
|
+
// Manually declare to provide an override to the browser default
|
|
109
|
+
@include border-radius($border-radius, 0);
|
|
69
110
|
}
|
|
70
|
-
// scss-docs-end btn-size-mixin
|