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,10 +1,8 @@
|
|
|
1
1
|
// The dropdown wrapper (`<div>`)
|
|
2
2
|
.dropup,
|
|
3
|
-
.
|
|
3
|
+
.dropright,
|
|
4
4
|
.dropdown,
|
|
5
|
-
.
|
|
6
|
-
.dropup-center,
|
|
7
|
-
.dropdown-center {
|
|
5
|
+
.dropleft {
|
|
8
6
|
position: relative;
|
|
9
7
|
}
|
|
10
8
|
|
|
@@ -17,107 +15,50 @@
|
|
|
17
15
|
|
|
18
16
|
// The dropdown menu
|
|
19
17
|
.dropdown-menu {
|
|
20
|
-
// scss-docs-start dropdown-css-vars
|
|
21
|
-
--#{$prefix}dropdown-zindex: #{$zindex-dropdown};
|
|
22
|
-
--#{$prefix}dropdown-min-width: #{$dropdown-min-width};
|
|
23
|
-
--#{$prefix}dropdown-padding-x: #{$dropdown-padding-x};
|
|
24
|
-
--#{$prefix}dropdown-padding-y: #{$dropdown-padding-y};
|
|
25
|
-
--#{$prefix}dropdown-spacer: #{$dropdown-spacer};
|
|
26
|
-
@include rfs($dropdown-font-size, --#{$prefix}dropdown-font-size);
|
|
27
|
-
--#{$prefix}dropdown-color: #{$dropdown-color};
|
|
28
|
-
--#{$prefix}dropdown-bg: #{$dropdown-bg};
|
|
29
|
-
--#{$prefix}dropdown-border-color: #{$dropdown-border-color};
|
|
30
|
-
--#{$prefix}dropdown-border-radius: #{$dropdown-border-radius};
|
|
31
|
-
--#{$prefix}dropdown-border-width: #{$dropdown-border-width};
|
|
32
|
-
--#{$prefix}dropdown-inner-border-radius: #{$dropdown-inner-border-radius};
|
|
33
|
-
--#{$prefix}dropdown-divider-bg: #{$dropdown-divider-bg};
|
|
34
|
-
--#{$prefix}dropdown-divider-margin-y: #{$dropdown-divider-margin-y};
|
|
35
|
-
--#{$prefix}dropdown-box-shadow: #{$dropdown-box-shadow};
|
|
36
|
-
--#{$prefix}dropdown-link-color: #{$dropdown-link-color};
|
|
37
|
-
--#{$prefix}dropdown-link-hover-color: #{$dropdown-link-hover-color};
|
|
38
|
-
--#{$prefix}dropdown-link-hover-bg: #{$dropdown-link-hover-bg};
|
|
39
|
-
--#{$prefix}dropdown-link-active-color: #{$dropdown-link-active-color};
|
|
40
|
-
--#{$prefix}dropdown-link-active-bg: #{$dropdown-link-active-bg};
|
|
41
|
-
--#{$prefix}dropdown-link-disabled-color: #{$dropdown-link-disabled-color};
|
|
42
|
-
--#{$prefix}dropdown-item-padding-x: #{$dropdown-item-padding-x};
|
|
43
|
-
--#{$prefix}dropdown-item-padding-y: #{$dropdown-item-padding-y};
|
|
44
|
-
--#{$prefix}dropdown-header-color: #{$dropdown-header-color};
|
|
45
|
-
--#{$prefix}dropdown-header-padding-x: #{$dropdown-header-padding-x};
|
|
46
|
-
--#{$prefix}dropdown-header-padding-y: #{$dropdown-header-padding-y};
|
|
47
|
-
// scss-docs-end dropdown-css-vars
|
|
48
|
-
|
|
49
18
|
position: absolute;
|
|
50
|
-
|
|
19
|
+
top: 100%;
|
|
20
|
+
left: 0;
|
|
21
|
+
z-index: $zindex-dropdown;
|
|
51
22
|
display: none; // none by default, but block on "open" of the menu
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
23
|
+
float: left;
|
|
24
|
+
min-width: $dropdown-min-width;
|
|
25
|
+
padding: $dropdown-padding-y $dropdown-padding-x;
|
|
26
|
+
margin: $dropdown-spacer 0 0; // override default ul
|
|
27
|
+
@include font-size($dropdown-font-size);
|
|
28
|
+
color: $dropdown-color;
|
|
57
29
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
58
30
|
list-style: none;
|
|
59
|
-
background-color:
|
|
31
|
+
background-color: $dropdown-bg;
|
|
60
32
|
background-clip: padding-box;
|
|
61
|
-
border:
|
|
62
|
-
@include border-radius(
|
|
63
|
-
@include box-shadow(
|
|
64
|
-
|
|
65
|
-
&[data-bs-popper] {
|
|
66
|
-
top: 100%;
|
|
67
|
-
left: 0;
|
|
68
|
-
margin-top: var(--#{$prefix}dropdown-spacer);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@if $dropdown-padding-y == 0 {
|
|
72
|
-
> .dropdown-item:first-child,
|
|
73
|
-
> li:first-child .dropdown-item {
|
|
74
|
-
@include border-top-radius(var(--#{$prefix}dropdown-inner-border-radius));
|
|
75
|
-
}
|
|
76
|
-
> .dropdown-item:last-child,
|
|
77
|
-
> li:last-child .dropdown-item {
|
|
78
|
-
@include border-bottom-radius(var(--#{$prefix}dropdown-inner-border-radius));
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
}
|
|
33
|
+
border: $dropdown-border-width solid $dropdown-border-color;
|
|
34
|
+
@include border-radius($dropdown-border-radius);
|
|
35
|
+
@include box-shadow($dropdown-box-shadow);
|
|
82
36
|
}
|
|
83
37
|
|
|
84
|
-
// scss-docs-start responsive-breakpoints
|
|
85
|
-
// We deliberately hardcode the `bs-` prefix because we check
|
|
86
|
-
// this custom property in JS to determine Popper's positioning
|
|
87
|
-
|
|
88
38
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
89
39
|
@include media-breakpoint-up($breakpoint) {
|
|
90
40
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
91
41
|
|
|
92
|
-
.dropdown-menu#{$infix}-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
&[data-bs-popper] {
|
|
96
|
-
right: auto;
|
|
97
|
-
left: 0;
|
|
98
|
-
}
|
|
42
|
+
.dropdown-menu#{$infix}-left {
|
|
43
|
+
right: auto;
|
|
44
|
+
left: 0;
|
|
99
45
|
}
|
|
100
46
|
|
|
101
|
-
.dropdown-menu#{$infix}-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
&[data-bs-popper] {
|
|
105
|
-
right: 0;
|
|
106
|
-
left: auto;
|
|
107
|
-
}
|
|
47
|
+
.dropdown-menu#{$infix}-right {
|
|
48
|
+
right: 0;
|
|
49
|
+
left: auto;
|
|
108
50
|
}
|
|
109
51
|
}
|
|
110
52
|
}
|
|
111
|
-
// scss-docs-end responsive-breakpoints
|
|
112
53
|
|
|
113
54
|
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
114
55
|
// Just add .dropup after the standard .dropdown class and you're set.
|
|
115
56
|
.dropup {
|
|
116
|
-
.dropdown-menu
|
|
57
|
+
.dropdown-menu {
|
|
117
58
|
top: auto;
|
|
118
59
|
bottom: 100%;
|
|
119
60
|
margin-top: 0;
|
|
120
|
-
margin-bottom:
|
|
61
|
+
margin-bottom: $dropdown-spacer;
|
|
121
62
|
}
|
|
122
63
|
|
|
123
64
|
.dropdown-toggle {
|
|
@@ -125,48 +66,55 @@
|
|
|
125
66
|
}
|
|
126
67
|
}
|
|
127
68
|
|
|
128
|
-
.
|
|
129
|
-
.dropdown-menu
|
|
69
|
+
.dropright {
|
|
70
|
+
.dropdown-menu {
|
|
130
71
|
top: 0;
|
|
131
72
|
right: auto;
|
|
132
73
|
left: 100%;
|
|
133
74
|
margin-top: 0;
|
|
134
|
-
margin-left:
|
|
75
|
+
margin-left: $dropdown-spacer;
|
|
135
76
|
}
|
|
136
77
|
|
|
137
78
|
.dropdown-toggle {
|
|
138
|
-
@include caret(
|
|
79
|
+
@include caret(right);
|
|
139
80
|
&::after {
|
|
140
81
|
vertical-align: 0;
|
|
141
82
|
}
|
|
142
83
|
}
|
|
143
84
|
}
|
|
144
85
|
|
|
145
|
-
.
|
|
146
|
-
.dropdown-menu
|
|
86
|
+
.dropleft {
|
|
87
|
+
.dropdown-menu {
|
|
147
88
|
top: 0;
|
|
148
89
|
right: 100%;
|
|
149
90
|
left: auto;
|
|
150
91
|
margin-top: 0;
|
|
151
|
-
margin-right:
|
|
92
|
+
margin-right: $dropdown-spacer;
|
|
152
93
|
}
|
|
153
94
|
|
|
154
95
|
.dropdown-toggle {
|
|
155
|
-
@include caret(
|
|
96
|
+
@include caret(left);
|
|
156
97
|
&::before {
|
|
157
98
|
vertical-align: 0;
|
|
158
99
|
}
|
|
159
100
|
}
|
|
160
101
|
}
|
|
161
102
|
|
|
103
|
+
// When enabled Popper.js, reset basic dropdown position
|
|
104
|
+
// stylelint-disable-next-line no-duplicate-selectors
|
|
105
|
+
.dropdown-menu {
|
|
106
|
+
&[x-placement^="top"],
|
|
107
|
+
&[x-placement^="right"],
|
|
108
|
+
&[x-placement^="bottom"],
|
|
109
|
+
&[x-placement^="left"] {
|
|
110
|
+
right: auto;
|
|
111
|
+
bottom: auto;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
162
114
|
|
|
163
115
|
// Dividers (basically an `<hr>`) within the dropdown
|
|
164
116
|
.dropdown-divider {
|
|
165
|
-
|
|
166
|
-
margin: var(--#{$prefix}dropdown-divider-margin-y) 0;
|
|
167
|
-
overflow: hidden;
|
|
168
|
-
border-top: 1px solid var(--#{$prefix}dropdown-divider-bg);
|
|
169
|
-
opacity: 1; // Revisit in v6 to de-dupe styles that conflict with <hr> element
|
|
117
|
+
@include nav-divider($dropdown-divider-bg, $dropdown-divider-margin-y, true);
|
|
170
118
|
}
|
|
171
119
|
|
|
172
120
|
// Links, buttons, and more within the dropdown menu
|
|
@@ -175,38 +123,50 @@
|
|
|
175
123
|
.dropdown-item {
|
|
176
124
|
display: block;
|
|
177
125
|
width: 100%; // For `<button>`s
|
|
178
|
-
padding:
|
|
126
|
+
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
|
179
127
|
clear: both;
|
|
180
128
|
font-weight: $font-weight-normal;
|
|
181
|
-
color:
|
|
129
|
+
color: $dropdown-link-color;
|
|
182
130
|
text-align: inherit; // For `<button>`s
|
|
183
131
|
text-decoration: if($link-decoration == none, null, none);
|
|
184
132
|
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
|
185
133
|
background-color: transparent; // For `<button>`s
|
|
186
134
|
border: 0; // For `<button>`s
|
|
187
|
-
@include border-radius(var(--#{$prefix}dropdown-item-border-radius, 0));
|
|
188
135
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
136
|
+
// Prevent dropdown overflow if there's no padding
|
|
137
|
+
// See https://github.com/twbs/bootstrap/pull/27703
|
|
138
|
+
@if $dropdown-padding-y == 0 {
|
|
139
|
+
&:first-child {
|
|
140
|
+
@include border-top-radius($dropdown-inner-border-radius);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&:last-child {
|
|
144
|
+
@include border-bottom-radius($dropdown-inner-border-radius);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
@include hover-focus() {
|
|
149
|
+
color: $dropdown-link-hover-color;
|
|
150
|
+
text-decoration: none;
|
|
151
|
+
@include gradient-bg($dropdown-link-hover-bg);
|
|
194
152
|
}
|
|
195
153
|
|
|
196
154
|
&.active,
|
|
197
155
|
&:active {
|
|
198
|
-
color:
|
|
156
|
+
color: $dropdown-link-active-color;
|
|
199
157
|
text-decoration: none;
|
|
200
|
-
@include gradient-bg(
|
|
158
|
+
@include gradient-bg($dropdown-link-active-bg);
|
|
201
159
|
}
|
|
202
160
|
|
|
203
161
|
&.disabled,
|
|
204
162
|
&:disabled {
|
|
205
|
-
color:
|
|
163
|
+
color: $dropdown-link-disabled-color;
|
|
206
164
|
pointer-events: none;
|
|
207
165
|
background-color: transparent;
|
|
208
166
|
// Remove CSS gradients if they're enabled
|
|
209
|
-
|
|
167
|
+
@if $enable-gradients {
|
|
168
|
+
background-image: none;
|
|
169
|
+
}
|
|
210
170
|
}
|
|
211
171
|
}
|
|
212
172
|
|
|
@@ -217,34 +177,16 @@
|
|
|
217
177
|
// Dropdown section headers
|
|
218
178
|
.dropdown-header {
|
|
219
179
|
display: block;
|
|
220
|
-
padding:
|
|
180
|
+
padding: $dropdown-header-padding;
|
|
221
181
|
margin-bottom: 0; // for use with heading elements
|
|
222
182
|
@include font-size($font-size-sm);
|
|
223
|
-
color:
|
|
183
|
+
color: $dropdown-header-color;
|
|
224
184
|
white-space: nowrap; // as with > li > a
|
|
225
185
|
}
|
|
226
186
|
|
|
227
187
|
// Dropdown text
|
|
228
188
|
.dropdown-item-text {
|
|
229
189
|
display: block;
|
|
230
|
-
padding:
|
|
231
|
-
color:
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
// Dark dropdowns
|
|
235
|
-
.dropdown-menu-dark {
|
|
236
|
-
// scss-docs-start dropdown-dark-css-vars
|
|
237
|
-
--#{$prefix}dropdown-color: #{$dropdown-dark-color};
|
|
238
|
-
--#{$prefix}dropdown-bg: #{$dropdown-dark-bg};
|
|
239
|
-
--#{$prefix}dropdown-border-color: #{$dropdown-dark-border-color};
|
|
240
|
-
--#{$prefix}dropdown-box-shadow: #{$dropdown-dark-box-shadow};
|
|
241
|
-
--#{$prefix}dropdown-link-color: #{$dropdown-dark-link-color};
|
|
242
|
-
--#{$prefix}dropdown-link-hover-color: #{$dropdown-dark-link-hover-color};
|
|
243
|
-
--#{$prefix}dropdown-divider-bg: #{$dropdown-dark-divider-bg};
|
|
244
|
-
--#{$prefix}dropdown-link-hover-bg: #{$dropdown-dark-link-hover-bg};
|
|
245
|
-
--#{$prefix}dropdown-link-active-color: #{$dropdown-dark-link-active-color};
|
|
246
|
-
--#{$prefix}dropdown-link-active-bg: #{$dropdown-dark-link-active-bg};
|
|
247
|
-
--#{$prefix}dropdown-link-disabled-color: #{$dropdown-dark-link-disabled-color};
|
|
248
|
-
--#{$prefix}dropdown-header-color: #{$dropdown-dark-header-color};
|
|
249
|
-
// scss-docs-end dropdown-dark-css-vars
|
|
190
|
+
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
|
191
|
+
color: $dropdown-link-color;
|
|
250
192
|
}
|
data/_sass/bootstrap/_forms.scss
CHANGED
|
@@ -1,9 +1,347 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
// stylelint-disable selector-no-qualifying-type
|
|
2
|
+
|
|
3
|
+
//
|
|
4
|
+
// Textual form controls
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
.form-control {
|
|
8
|
+
display: block;
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: $input-height;
|
|
11
|
+
padding: $input-padding-y $input-padding-x;
|
|
12
|
+
font-family: $input-font-family;
|
|
13
|
+
@include font-size($input-font-size);
|
|
14
|
+
font-weight: $input-font-weight;
|
|
15
|
+
line-height: $input-line-height;
|
|
16
|
+
color: $input-color;
|
|
17
|
+
background-color: $input-bg;
|
|
18
|
+
background-clip: padding-box;
|
|
19
|
+
border: $input-border-width solid $input-border-color;
|
|
20
|
+
|
|
21
|
+
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
22
|
+
@include border-radius($input-border-radius, 0);
|
|
23
|
+
|
|
24
|
+
@include box-shadow($input-box-shadow);
|
|
25
|
+
@include transition($input-transition);
|
|
26
|
+
|
|
27
|
+
// Unstyle the caret on `<select>`s in IE10+.
|
|
28
|
+
&::-ms-expand {
|
|
29
|
+
background-color: transparent;
|
|
30
|
+
border: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Remove select outline from select box in FF
|
|
34
|
+
&:-moz-focusring {
|
|
35
|
+
color: transparent;
|
|
36
|
+
text-shadow: 0 0 0 $input-color;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Customize the `:focus` state to imitate native WebKit styles.
|
|
40
|
+
@include form-control-focus($ignore-warning: true);
|
|
41
|
+
|
|
42
|
+
// Placeholder
|
|
43
|
+
&::placeholder {
|
|
44
|
+
color: $input-placeholder-color;
|
|
45
|
+
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
46
|
+
opacity: 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Disabled and read-only inputs
|
|
50
|
+
//
|
|
51
|
+
// HTML5 says that controls under a fieldset > legend:first-child won't be
|
|
52
|
+
// disabled if the fieldset is disabled. Due to implementation difficulty, we
|
|
53
|
+
// don't honor that edge case; we style them as disabled anyway.
|
|
54
|
+
&:disabled,
|
|
55
|
+
&[readonly] {
|
|
56
|
+
background-color: $input-disabled-bg;
|
|
57
|
+
// iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
|
|
58
|
+
opacity: 1;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
input[type="date"],
|
|
63
|
+
input[type="time"],
|
|
64
|
+
input[type="datetime-local"],
|
|
65
|
+
input[type="month"] {
|
|
66
|
+
&.form-control {
|
|
67
|
+
appearance: none; // Fix appearance for date inputs in Safari
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
select.form-control {
|
|
72
|
+
&:focus::-ms-value {
|
|
73
|
+
// Suppress the nested default white text on blue background highlight given to
|
|
74
|
+
// the selected option text when the (still closed) <select> receives focus
|
|
75
|
+
// in IE and (under certain conditions) Edge, as it looks bad and cannot be made to
|
|
76
|
+
// match the appearance of the native widget.
|
|
77
|
+
// See https://github.com/twbs/bootstrap/issues/19398.
|
|
78
|
+
color: $input-color;
|
|
79
|
+
background-color: $input-bg;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Make file inputs better match text inputs by forcing them to new lines.
|
|
84
|
+
.form-control-file,
|
|
85
|
+
.form-control-range {
|
|
86
|
+
display: block;
|
|
87
|
+
width: 100%;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
//
|
|
92
|
+
// Labels
|
|
93
|
+
//
|
|
94
|
+
|
|
95
|
+
// For use with horizontal and inline forms, when you need the label (or legend)
|
|
96
|
+
// text to align with the form controls.
|
|
97
|
+
.col-form-label {
|
|
98
|
+
padding-top: add($input-padding-y, $input-border-width);
|
|
99
|
+
padding-bottom: add($input-padding-y, $input-border-width);
|
|
100
|
+
margin-bottom: 0; // Override the `<label>/<legend>` default
|
|
101
|
+
@include font-size(inherit); // Override the `<legend>` default
|
|
102
|
+
line-height: $input-line-height;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.col-form-label-lg {
|
|
106
|
+
padding-top: add($input-padding-y-lg, $input-border-width);
|
|
107
|
+
padding-bottom: add($input-padding-y-lg, $input-border-width);
|
|
108
|
+
@include font-size($input-font-size-lg);
|
|
109
|
+
line-height: $input-line-height-lg;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.col-form-label-sm {
|
|
113
|
+
padding-top: add($input-padding-y-sm, $input-border-width);
|
|
114
|
+
padding-bottom: add($input-padding-y-sm, $input-border-width);
|
|
115
|
+
@include font-size($input-font-size-sm);
|
|
116
|
+
line-height: $input-line-height-sm;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
// Readonly controls as plain text
|
|
121
|
+
//
|
|
122
|
+
// Apply class to a readonly input to make it appear like regular plain
|
|
123
|
+
// text (without any border, background color, focus indicator)
|
|
124
|
+
|
|
125
|
+
.form-control-plaintext {
|
|
126
|
+
display: block;
|
|
127
|
+
width: 100%;
|
|
128
|
+
padding: $input-padding-y 0;
|
|
129
|
+
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
|
|
130
|
+
@include font-size($input-font-size);
|
|
131
|
+
line-height: $input-line-height;
|
|
132
|
+
color: $input-plaintext-color;
|
|
133
|
+
background-color: transparent;
|
|
134
|
+
border: solid transparent;
|
|
135
|
+
border-width: $input-border-width 0;
|
|
136
|
+
|
|
137
|
+
&.form-control-sm,
|
|
138
|
+
&.form-control-lg {
|
|
139
|
+
padding-right: 0;
|
|
140
|
+
padding-left: 0;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
// Form control sizing
|
|
146
|
+
//
|
|
147
|
+
// Build on `.form-control` with modifier classes to decrease or increase the
|
|
148
|
+
// height and font-size of form controls.
|
|
149
|
+
//
|
|
150
|
+
// Repeated in `_input_group.scss` to avoid Sass extend issues.
|
|
151
|
+
|
|
152
|
+
.form-control-sm {
|
|
153
|
+
height: $input-height-sm;
|
|
154
|
+
padding: $input-padding-y-sm $input-padding-x-sm;
|
|
155
|
+
@include font-size($input-font-size-sm);
|
|
156
|
+
line-height: $input-line-height-sm;
|
|
157
|
+
@include border-radius($input-border-radius-sm);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.form-control-lg {
|
|
161
|
+
height: $input-height-lg;
|
|
162
|
+
padding: $input-padding-y-lg $input-padding-x-lg;
|
|
163
|
+
@include font-size($input-font-size-lg);
|
|
164
|
+
line-height: $input-line-height-lg;
|
|
165
|
+
@include border-radius($input-border-radius-lg);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// stylelint-disable-next-line no-duplicate-selectors
|
|
169
|
+
select.form-control {
|
|
170
|
+
&[size],
|
|
171
|
+
&[multiple] {
|
|
172
|
+
height: auto;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
textarea.form-control {
|
|
177
|
+
height: auto;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// Form groups
|
|
181
|
+
//
|
|
182
|
+
// Designed to help with the organization and spacing of vertical forms. For
|
|
183
|
+
// horizontal forms, use the predefined grid classes.
|
|
184
|
+
|
|
185
|
+
.form-group {
|
|
186
|
+
margin-bottom: $form-group-margin-bottom;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.form-text {
|
|
190
|
+
display: block;
|
|
191
|
+
margin-top: $form-text-margin-top;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
// Form grid
|
|
196
|
+
//
|
|
197
|
+
// Special replacement for our grid system's `.row` for tighter form layouts.
|
|
198
|
+
|
|
199
|
+
.form-row {
|
|
200
|
+
display: flex;
|
|
201
|
+
flex-wrap: wrap;
|
|
202
|
+
margin-right: -$form-grid-gutter-width / 2;
|
|
203
|
+
margin-left: -$form-grid-gutter-width / 2;
|
|
204
|
+
|
|
205
|
+
> .col,
|
|
206
|
+
> [class*="col-"] {
|
|
207
|
+
padding-right: $form-grid-gutter-width / 2;
|
|
208
|
+
padding-left: $form-grid-gutter-width / 2;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
// Checkboxes and radios
|
|
214
|
+
//
|
|
215
|
+
// Indent the labels to position radios/checkboxes as hanging controls.
|
|
216
|
+
|
|
217
|
+
.form-check {
|
|
218
|
+
position: relative;
|
|
219
|
+
display: block;
|
|
220
|
+
padding-left: $form-check-input-gutter;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.form-check-input {
|
|
224
|
+
position: absolute;
|
|
225
|
+
margin-top: $form-check-input-margin-y;
|
|
226
|
+
margin-left: -$form-check-input-gutter;
|
|
227
|
+
|
|
228
|
+
// Use [disabled] and :disabled for workaround https://github.com/twbs/bootstrap/issues/28247
|
|
229
|
+
&[disabled] ~ .form-check-label,
|
|
230
|
+
&:disabled ~ .form-check-label {
|
|
231
|
+
color: $text-muted;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.form-check-label {
|
|
236
|
+
margin-bottom: 0; // Override default `<label>` bottom margin
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.form-check-inline {
|
|
240
|
+
display: inline-flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
padding-left: 0; // Override base .form-check
|
|
243
|
+
margin-right: $form-check-inline-margin-x;
|
|
244
|
+
|
|
245
|
+
// Undo .form-check-input defaults and add some `margin-right`.
|
|
246
|
+
.form-check-input {
|
|
247
|
+
position: static;
|
|
248
|
+
margin-top: 0;
|
|
249
|
+
margin-right: $form-check-inline-input-margin-x;
|
|
250
|
+
margin-left: 0;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
// Form validation
|
|
256
|
+
//
|
|
257
|
+
// Provide feedback to users when form field values are valid or invalid. Works
|
|
258
|
+
// primarily for client-side validation via scoped `:invalid` and `:valid`
|
|
259
|
+
// pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
|
|
260
|
+
// server side validation.
|
|
261
|
+
|
|
262
|
+
@each $state, $data in $form-validation-states {
|
|
263
|
+
@include form-validation-state($state, map-get($data, color), map-get($data, icon));
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// Inline forms
|
|
267
|
+
//
|
|
268
|
+
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
|
269
|
+
// forms begin stacked on extra small (mobile) devices and then go inline when
|
|
270
|
+
// viewports reach <768px.
|
|
271
|
+
//
|
|
272
|
+
// Requires wrapping inputs and labels with `.form-group` for proper display of
|
|
273
|
+
// default HTML form controls and our custom form controls (e.g., input groups).
|
|
274
|
+
|
|
275
|
+
.form-inline {
|
|
276
|
+
display: flex;
|
|
277
|
+
flex-flow: row wrap;
|
|
278
|
+
align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)
|
|
279
|
+
|
|
280
|
+
// Because we use flex, the initial sizing of checkboxes is collapsed and
|
|
281
|
+
// doesn't occupy the full-width (which is what we want for xs grid tier),
|
|
282
|
+
// so we force that here.
|
|
283
|
+
.form-check {
|
|
284
|
+
width: 100%;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// Kick in the inline
|
|
288
|
+
@include media-breakpoint-up(sm) {
|
|
289
|
+
label {
|
|
290
|
+
display: flex;
|
|
291
|
+
align-items: center;
|
|
292
|
+
justify-content: center;
|
|
293
|
+
margin-bottom: 0;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// Inline-block all the things for "inline"
|
|
297
|
+
.form-group {
|
|
298
|
+
display: flex;
|
|
299
|
+
flex: 0 0 auto;
|
|
300
|
+
flex-flow: row wrap;
|
|
301
|
+
align-items: center;
|
|
302
|
+
margin-bottom: 0;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// Allow folks to *not* use `.form-group`
|
|
306
|
+
.form-control {
|
|
307
|
+
display: inline-block;
|
|
308
|
+
width: auto; // Prevent labels from stacking above inputs in `.form-group`
|
|
309
|
+
vertical-align: middle;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// Make static controls behave like regular ones
|
|
313
|
+
.form-control-plaintext {
|
|
314
|
+
display: inline-block;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.input-group,
|
|
318
|
+
.custom-select {
|
|
319
|
+
width: auto;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// Remove default margin on radios/checkboxes that were used for stacking, and
|
|
323
|
+
// then undo the floating of radios and checkboxes to match.
|
|
324
|
+
.form-check {
|
|
325
|
+
display: flex;
|
|
326
|
+
align-items: center;
|
|
327
|
+
justify-content: center;
|
|
328
|
+
width: auto;
|
|
329
|
+
padding-left: 0;
|
|
330
|
+
}
|
|
331
|
+
.form-check-input {
|
|
332
|
+
position: relative;
|
|
333
|
+
flex-shrink: 0;
|
|
334
|
+
margin-top: 0;
|
|
335
|
+
margin-right: $form-check-input-margin-x;
|
|
336
|
+
margin-left: 0;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.custom-control {
|
|
340
|
+
align-items: center;
|
|
341
|
+
justify-content: center;
|
|
342
|
+
}
|
|
343
|
+
.custom-control-label {
|
|
344
|
+
margin-bottom: 0;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|