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,5 +1,4 @@
|
|
|
1
|
-
// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
|
|
2
|
-
|
|
1
|
+
// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
|
|
3
2
|
|
|
4
3
|
// Reboot
|
|
5
4
|
//
|
|
@@ -11,156 +10,122 @@
|
|
|
11
10
|
|
|
12
11
|
// Document
|
|
13
12
|
//
|
|
14
|
-
// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
|
|
13
|
+
// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
|
|
14
|
+
// 2. Change the default font family in all browsers.
|
|
15
|
+
// 3. Correct the line height in all browsers.
|
|
16
|
+
// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
|
|
17
|
+
// 5. Change the default tap highlight to be completely transparent in iOS.
|
|
15
18
|
|
|
16
19
|
*,
|
|
17
20
|
*::before,
|
|
18
21
|
*::after {
|
|
19
|
-
box-sizing: border-box;
|
|
22
|
+
box-sizing: border-box; // 1
|
|
20
23
|
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
:root {
|
|
29
|
-
@if $font-size-root != null {
|
|
30
|
-
@include font-size(var(--#{$prefix}root-font-size));
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@if $enable-smooth-scroll {
|
|
34
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
35
|
-
scroll-behavior: smooth;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
25
|
+
html {
|
|
26
|
+
font-family: sans-serif; // 2
|
|
27
|
+
line-height: 1.15; // 3
|
|
28
|
+
-webkit-text-size-adjust: 100%; // 4
|
|
29
|
+
-webkit-tap-highlight-color: rgba($black, 0); // 5
|
|
38
30
|
}
|
|
39
31
|
|
|
32
|
+
// Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
|
|
33
|
+
// TODO: remove in v5
|
|
34
|
+
// stylelint-disable-next-line selector-list-comma-newline-after
|
|
35
|
+
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
|
36
|
+
display: block;
|
|
37
|
+
}
|
|
40
38
|
|
|
41
39
|
// Body
|
|
42
40
|
//
|
|
43
41
|
// 1. Remove the margin in all browsers.
|
|
44
42
|
// 2. As a best practice, apply a default `background-color`.
|
|
45
|
-
// 3.
|
|
46
|
-
//
|
|
43
|
+
// 3. Set an explicit initial text-align value so that we can later use
|
|
44
|
+
// the `inherit` value on things like `<th>` elements.
|
|
47
45
|
|
|
48
|
-
// scss-docs-start reboot-body-rules
|
|
49
46
|
body {
|
|
50
47
|
margin: 0; // 1
|
|
51
|
-
font-family:
|
|
52
|
-
@include font-size(
|
|
53
|
-
font-weight:
|
|
54
|
-
line-height:
|
|
55
|
-
color:
|
|
56
|
-
text-align:
|
|
57
|
-
background-color:
|
|
58
|
-
|
|
59
|
-
|
|
48
|
+
font-family: $font-family-base;
|
|
49
|
+
@include font-size($font-size-base);
|
|
50
|
+
font-weight: $font-weight-base;
|
|
51
|
+
line-height: $line-height-base;
|
|
52
|
+
color: $body-color;
|
|
53
|
+
text-align: left; // 3
|
|
54
|
+
background-color: $body-bg; // 2
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
|
|
58
|
+
// on elements that programmatically receive focus but wouldn't normally show a visible
|
|
59
|
+
// focus outline. In general, this would mean that the outline is only applied if the
|
|
60
|
+
// interaction that led to the element receiving programmatic focus was a keyboard interaction,
|
|
61
|
+
// or the browser has somehow determined that the user is primarily a keyboard user and/or
|
|
62
|
+
// wants focus outlines to always be presented.
|
|
63
|
+
//
|
|
64
|
+
// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
|
|
65
|
+
// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
|
|
66
|
+
[tabindex="-1"]:focus:not(:focus-visible) {
|
|
67
|
+
outline: 0 !important;
|
|
60
68
|
}
|
|
61
|
-
// scss-docs-end reboot-body-rules
|
|
62
69
|
|
|
63
70
|
|
|
64
71
|
// Content grouping
|
|
65
72
|
//
|
|
66
|
-
// 1.
|
|
73
|
+
// 1. Add the correct box sizing in Firefox.
|
|
74
|
+
// 2. Show the overflow in Edge and IE.
|
|
67
75
|
|
|
68
76
|
hr {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
border-top: $hr-border-width solid $hr-border-color;
|
|
73
|
-
opacity: $hr-opacity;
|
|
77
|
+
box-sizing: content-box; // 1
|
|
78
|
+
height: 0; // 1
|
|
79
|
+
overflow: visible; // 2
|
|
74
80
|
}
|
|
75
81
|
|
|
76
82
|
|
|
83
|
+
//
|
|
77
84
|
// Typography
|
|
78
85
|
//
|
|
79
|
-
// 1. Remove top margins from headings
|
|
80
|
-
// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
|
|
81
|
-
// margin for easier control within type scales as it avoids margin collapsing.
|
|
82
86
|
|
|
83
|
-
|
|
84
|
-
|
|
87
|
+
// Remove top margins from headings
|
|
88
|
+
//
|
|
89
|
+
// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
|
|
90
|
+
// margin for easier control within type scales as it avoids margin collapsing.
|
|
91
|
+
// stylelint-disable-next-line selector-list-comma-newline-after
|
|
92
|
+
h1, h2, h3, h4, h5, h6 {
|
|
93
|
+
margin-top: 0;
|
|
85
94
|
margin-bottom: $headings-margin-bottom;
|
|
86
|
-
font-family: $headings-font-family;
|
|
87
|
-
font-style: $headings-font-style;
|
|
88
|
-
font-weight: $headings-font-weight;
|
|
89
|
-
line-height: $headings-line-height;
|
|
90
|
-
color: var(--#{$prefix}heading-color);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
h1 {
|
|
94
|
-
@extend %heading;
|
|
95
|
-
@include font-size($h1-font-size);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
h2 {
|
|
99
|
-
@extend %heading;
|
|
100
|
-
@include font-size($h2-font-size);
|
|
101
95
|
}
|
|
102
96
|
|
|
103
|
-
h3 {
|
|
104
|
-
@extend %heading;
|
|
105
|
-
@include font-size($h3-font-size);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
h4 {
|
|
109
|
-
@extend %heading;
|
|
110
|
-
@include font-size($h4-font-size);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
h5 {
|
|
114
|
-
@extend %heading;
|
|
115
|
-
@include font-size($h5-font-size);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
h6 {
|
|
119
|
-
@extend %heading;
|
|
120
|
-
@include font-size($h6-font-size);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
97
|
// Reset margins on paragraphs
|
|
125
98
|
//
|
|
126
99
|
// Similarly, the top margin on `<p>`s get reset. However, we also reset the
|
|
127
100
|
// bottom margin to use `rem` units instead of `em`.
|
|
128
|
-
|
|
129
101
|
p {
|
|
130
102
|
margin-top: 0;
|
|
131
103
|
margin-bottom: $paragraph-margin-bottom;
|
|
132
104
|
}
|
|
133
105
|
|
|
134
|
-
|
|
135
106
|
// Abbreviations
|
|
136
107
|
//
|
|
137
|
-
// 1.
|
|
138
|
-
// 2. Add
|
|
139
|
-
// 3.
|
|
108
|
+
// 1. Duplicate behavior to the data-* attribute for our tooltip plugin
|
|
109
|
+
// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
110
|
+
// 3. Add explicit cursor to indicate changed behavior.
|
|
111
|
+
// 4. Remove the bottom border in Firefox 39-.
|
|
112
|
+
// 5. Prevent the text-decoration to be skipped.
|
|
140
113
|
|
|
141
|
-
abbr[title]
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
text-decoration
|
|
114
|
+
abbr[title],
|
|
115
|
+
abbr[data-original-title] { // 1
|
|
116
|
+
text-decoration: underline; // 2
|
|
117
|
+
text-decoration: underline dotted; // 2
|
|
118
|
+
cursor: help; // 3
|
|
119
|
+
border-bottom: 0; // 4
|
|
120
|
+
text-decoration-skip-ink: none; // 5
|
|
145
121
|
}
|
|
146
122
|
|
|
147
|
-
|
|
148
|
-
// Address
|
|
149
|
-
|
|
150
123
|
address {
|
|
151
124
|
margin-bottom: 1rem;
|
|
152
125
|
font-style: normal;
|
|
153
126
|
line-height: inherit;
|
|
154
127
|
}
|
|
155
128
|
|
|
156
|
-
|
|
157
|
-
// Lists
|
|
158
|
-
|
|
159
|
-
ol,
|
|
160
|
-
ul {
|
|
161
|
-
padding-left: 2rem;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
129
|
ol,
|
|
165
130
|
ul,
|
|
166
131
|
dl {
|
|
@@ -179,58 +144,33 @@ dt {
|
|
|
179
144
|
font-weight: $dt-font-weight;
|
|
180
145
|
}
|
|
181
146
|
|
|
182
|
-
// 1. Undo browser default
|
|
183
|
-
|
|
184
147
|
dd {
|
|
185
148
|
margin-bottom: .5rem;
|
|
186
|
-
margin-left: 0; //
|
|
149
|
+
margin-left: 0; // Undo browser default
|
|
187
150
|
}
|
|
188
151
|
|
|
189
|
-
|
|
190
|
-
// Blockquote
|
|
191
|
-
|
|
192
152
|
blockquote {
|
|
193
153
|
margin: 0 0 1rem;
|
|
194
154
|
}
|
|
195
155
|
|
|
196
|
-
|
|
197
|
-
// Strong
|
|
198
|
-
//
|
|
199
|
-
// Add the correct font weight in Chrome, Edge, and Safari
|
|
200
|
-
|
|
201
156
|
b,
|
|
202
157
|
strong {
|
|
203
|
-
font-weight: $font-weight-bolder;
|
|
158
|
+
font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari
|
|
204
159
|
}
|
|
205
160
|
|
|
206
|
-
|
|
207
|
-
// Small
|
|
208
|
-
//
|
|
209
|
-
// Add the correct font size in all browsers
|
|
210
|
-
|
|
211
161
|
small {
|
|
212
|
-
@include font-size(
|
|
162
|
+
@include font-size(80%); // Add the correct font size in all browsers
|
|
213
163
|
}
|
|
214
164
|
|
|
215
|
-
|
|
216
|
-
// Mark
|
|
217
|
-
|
|
218
|
-
mark {
|
|
219
|
-
padding: $mark-padding;
|
|
220
|
-
color: var(--#{$prefix}highlight-color);
|
|
221
|
-
background-color: var(--#{$prefix}highlight-bg);
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
// Sub and Sup
|
|
226
165
|
//
|
|
227
166
|
// Prevent `sub` and `sup` elements from affecting the line height in
|
|
228
167
|
// all browsers.
|
|
168
|
+
//
|
|
229
169
|
|
|
230
170
|
sub,
|
|
231
171
|
sup {
|
|
232
172
|
position: relative;
|
|
233
|
-
@include font-size(
|
|
173
|
+
@include font-size(75%);
|
|
234
174
|
line-height: 0;
|
|
235
175
|
vertical-align: baseline;
|
|
236
176
|
}
|
|
@@ -239,14 +179,17 @@ sub { bottom: -.25em; }
|
|
|
239
179
|
sup { top: -.5em; }
|
|
240
180
|
|
|
241
181
|
|
|
182
|
+
//
|
|
242
183
|
// Links
|
|
184
|
+
//
|
|
243
185
|
|
|
244
186
|
a {
|
|
245
|
-
color:
|
|
187
|
+
color: $link-color;
|
|
246
188
|
text-decoration: $link-decoration;
|
|
189
|
+
background-color: transparent; // Remove the gray background on active links in IE 10.
|
|
247
190
|
|
|
248
|
-
|
|
249
|
-
|
|
191
|
+
@include hover() {
|
|
192
|
+
color: $link-hover-color;
|
|
250
193
|
text-decoration: $link-hover-decoration;
|
|
251
194
|
}
|
|
252
195
|
}
|
|
@@ -257,101 +200,82 @@ a {
|
|
|
257
200
|
// See https://github.com/twbs/bootstrap/issues/19402
|
|
258
201
|
|
|
259
202
|
a:not([href]):not([class]) {
|
|
260
|
-
|
|
261
|
-
|
|
203
|
+
color: inherit;
|
|
204
|
+
text-decoration: none;
|
|
205
|
+
|
|
206
|
+
@include hover() {
|
|
262
207
|
color: inherit;
|
|
263
208
|
text-decoration: none;
|
|
264
209
|
}
|
|
265
210
|
}
|
|
266
211
|
|
|
267
212
|
|
|
213
|
+
//
|
|
268
214
|
// Code
|
|
215
|
+
//
|
|
269
216
|
|
|
270
217
|
pre,
|
|
271
218
|
code,
|
|
272
219
|
kbd,
|
|
273
220
|
samp {
|
|
274
|
-
font-family: $font-family-
|
|
221
|
+
font-family: $font-family-monospace;
|
|
275
222
|
@include font-size(1em); // Correct the odd `em` font sizing in all browsers.
|
|
276
223
|
}
|
|
277
224
|
|
|
278
|
-
// 1. Remove browser default top margin
|
|
279
|
-
// 2. Reset browser default of `1em` to use `rem`s
|
|
280
|
-
// 3. Don't allow content to break outside
|
|
281
|
-
|
|
282
225
|
pre {
|
|
283
|
-
|
|
284
|
-
margin-top: 0;
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
//
|
|
291
|
-
|
|
292
|
-
@include font-size(inherit);
|
|
293
|
-
color: inherit;
|
|
294
|
-
word-break: normal;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
code {
|
|
299
|
-
@include font-size($code-font-size);
|
|
300
|
-
color: var(--#{$prefix}code-color);
|
|
301
|
-
word-wrap: break-word;
|
|
302
|
-
|
|
303
|
-
// Streamline the style when inside anchors to avoid broken underline and more
|
|
304
|
-
a > & {
|
|
305
|
-
color: inherit;
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
kbd {
|
|
310
|
-
padding: $kbd-padding-y $kbd-padding-x;
|
|
311
|
-
@include font-size($kbd-font-size);
|
|
312
|
-
color: $kbd-color;
|
|
313
|
-
background-color: $kbd-bg;
|
|
314
|
-
@include border-radius($border-radius-sm);
|
|
315
|
-
|
|
316
|
-
kbd {
|
|
317
|
-
padding: 0;
|
|
318
|
-
@include font-size(1em);
|
|
319
|
-
font-weight: $nested-kbd-font-weight;
|
|
320
|
-
}
|
|
226
|
+
// Remove browser default top margin
|
|
227
|
+
margin-top: 0;
|
|
228
|
+
// Reset browser default of `1em` to use `rem`s
|
|
229
|
+
margin-bottom: 1rem;
|
|
230
|
+
// Don't allow content to break outside
|
|
231
|
+
overflow: auto;
|
|
232
|
+
// Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
|
|
233
|
+
// making it impossible to interact with the content
|
|
234
|
+
-ms-overflow-style: scrollbar;
|
|
321
235
|
}
|
|
322
236
|
|
|
323
237
|
|
|
238
|
+
//
|
|
324
239
|
// Figures
|
|
325
240
|
//
|
|
326
|
-
// Apply a consistent margin strategy (matches our type styles).
|
|
327
241
|
|
|
328
242
|
figure {
|
|
243
|
+
// Apply a consistent margin strategy (matches our type styles).
|
|
329
244
|
margin: 0 0 1rem;
|
|
330
245
|
}
|
|
331
246
|
|
|
332
247
|
|
|
248
|
+
//
|
|
333
249
|
// Images and content
|
|
250
|
+
//
|
|
251
|
+
|
|
252
|
+
img {
|
|
253
|
+
vertical-align: middle;
|
|
254
|
+
border-style: none; // Remove the border on images inside links in IE 10-.
|
|
255
|
+
}
|
|
334
256
|
|
|
335
|
-
img,
|
|
336
257
|
svg {
|
|
258
|
+
// Workaround for the SVG overflow bug in IE10/11 is still required.
|
|
259
|
+
// See https://github.com/twbs/bootstrap/issues/26878
|
|
260
|
+
overflow: hidden;
|
|
337
261
|
vertical-align: middle;
|
|
338
262
|
}
|
|
339
263
|
|
|
340
264
|
|
|
265
|
+
//
|
|
341
266
|
// Tables
|
|
342
267
|
//
|
|
343
|
-
// Prevent double borders
|
|
344
268
|
|
|
345
269
|
table {
|
|
346
|
-
|
|
347
|
-
border-collapse: collapse;
|
|
270
|
+
border-collapse: collapse; // Prevent double borders
|
|
348
271
|
}
|
|
349
272
|
|
|
350
273
|
caption {
|
|
351
|
-
padding-top: $table-cell-padding
|
|
352
|
-
padding-bottom: $table-cell-padding
|
|
274
|
+
padding-top: $table-cell-padding;
|
|
275
|
+
padding-bottom: $table-cell-padding;
|
|
353
276
|
color: $table-caption-color;
|
|
354
277
|
text-align: left;
|
|
278
|
+
caption-side: bottom;
|
|
355
279
|
}
|
|
356
280
|
|
|
357
281
|
// 1. Removes font-weight bold by inheriting
|
|
@@ -364,61 +288,55 @@ th {
|
|
|
364
288
|
text-align: -webkit-match-parent; // 3
|
|
365
289
|
}
|
|
366
290
|
|
|
367
|
-
thead,
|
|
368
|
-
tbody,
|
|
369
|
-
tfoot,
|
|
370
|
-
tr,
|
|
371
|
-
td,
|
|
372
|
-
th {
|
|
373
|
-
border-color: inherit;
|
|
374
|
-
border-style: solid;
|
|
375
|
-
border-width: 0;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
291
|
|
|
292
|
+
//
|
|
379
293
|
// Forms
|
|
380
294
|
//
|
|
381
|
-
// 1. Allow labels to use `margin` for spacing.
|
|
382
295
|
|
|
383
296
|
label {
|
|
384
|
-
|
|
297
|
+
// Allow labels to use `margin` for spacing.
|
|
298
|
+
display: inline-block;
|
|
299
|
+
margin-bottom: $label-margin-bottom;
|
|
385
300
|
}
|
|
386
301
|
|
|
387
302
|
// Remove the default `border-radius` that macOS Chrome adds.
|
|
388
|
-
//
|
|
389
|
-
|
|
303
|
+
//
|
|
304
|
+
// Details at https://github.com/twbs/bootstrap/issues/24093
|
|
390
305
|
button {
|
|
391
306
|
// stylelint-disable-next-line property-disallowed-list
|
|
392
307
|
border-radius: 0;
|
|
393
308
|
}
|
|
394
309
|
|
|
395
|
-
//
|
|
396
|
-
//
|
|
397
|
-
//
|
|
398
|
-
//
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
outline:
|
|
310
|
+
// Work around a Firefox/IE bug where the transparent `button` background
|
|
311
|
+
// results in a loss of the default `button` focus styles.
|
|
312
|
+
//
|
|
313
|
+
// Credit: https://github.com/suitcss/base/
|
|
314
|
+
button:focus {
|
|
315
|
+
outline: 1px dotted;
|
|
316
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
402
317
|
}
|
|
403
318
|
|
|
404
|
-
// 1. Remove the margin in Firefox and Safari
|
|
405
|
-
|
|
406
319
|
input,
|
|
407
320
|
button,
|
|
408
321
|
select,
|
|
409
322
|
optgroup,
|
|
410
323
|
textarea {
|
|
411
|
-
margin: 0; //
|
|
324
|
+
margin: 0; // Remove the margin in Firefox and Safari
|
|
412
325
|
font-family: inherit;
|
|
413
326
|
@include font-size(inherit);
|
|
414
327
|
line-height: inherit;
|
|
415
328
|
}
|
|
416
329
|
|
|
417
|
-
|
|
330
|
+
button,
|
|
331
|
+
input {
|
|
332
|
+
overflow: visible; // Show the overflow in Edge
|
|
333
|
+
}
|
|
334
|
+
|
|
418
335
|
button,
|
|
419
336
|
select {
|
|
420
|
-
text-transform: none;
|
|
337
|
+
text-transform: none; // Remove the inheritance of text transform in Firefox
|
|
421
338
|
}
|
|
339
|
+
|
|
422
340
|
// Set the cursor for non-`<button>` buttons
|
|
423
341
|
//
|
|
424
342
|
// Details at https://github.com/twbs/bootstrap/pull/30562
|
|
@@ -426,192 +344,141 @@ select {
|
|
|
426
344
|
cursor: pointer;
|
|
427
345
|
}
|
|
428
346
|
|
|
347
|
+
// Remove the inheritance of word-wrap in Safari.
|
|
348
|
+
//
|
|
349
|
+
// Details at https://github.com/twbs/bootstrap/issues/24990
|
|
429
350
|
select {
|
|
430
|
-
// Remove the inheritance of word-wrap in Safari.
|
|
431
|
-
// See https://github.com/twbs/bootstrap/issues/24990
|
|
432
351
|
word-wrap: normal;
|
|
433
|
-
|
|
434
|
-
// Undo the opacity change from Chrome
|
|
435
|
-
&:disabled {
|
|
436
|
-
opacity: 1;
|
|
437
|
-
}
|
|
438
352
|
}
|
|
439
353
|
|
|
440
|
-
// Remove the dropdown arrow only from text type inputs built with datalists in Chrome.
|
|
441
|
-
// See https://stackoverflow.com/a/54997118
|
|
442
|
-
|
|
443
|
-
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
|
|
444
|
-
display: none !important;
|
|
445
|
-
}
|
|
446
354
|
|
|
447
355
|
// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
|
448
356
|
// controls in Android 4.
|
|
449
357
|
// 2. Correct the inability to style clickable types in iOS and Safari.
|
|
450
|
-
// 3. Opinionated: add "hand" cursor to non-disabled button elements.
|
|
451
|
-
|
|
452
358
|
button,
|
|
453
359
|
[type="button"], // 1
|
|
454
360
|
[type="reset"],
|
|
455
361
|
[type="submit"] {
|
|
456
362
|
-webkit-appearance: button; // 2
|
|
363
|
+
}
|
|
457
364
|
|
|
458
|
-
|
|
365
|
+
// Opinionated: add "hand" cursor to non-disabled button elements.
|
|
366
|
+
@if $enable-pointer-cursor-for-buttons {
|
|
367
|
+
button,
|
|
368
|
+
[type="button"],
|
|
369
|
+
[type="reset"],
|
|
370
|
+
[type="submit"] {
|
|
459
371
|
&:not(:disabled) {
|
|
460
|
-
cursor: pointer;
|
|
372
|
+
cursor: pointer;
|
|
461
373
|
}
|
|
462
374
|
}
|
|
463
375
|
}
|
|
464
376
|
|
|
465
377
|
// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
|
|
466
|
-
|
|
467
|
-
::-moz-focus-inner
|
|
378
|
+
button::-moz-focus-inner,
|
|
379
|
+
[type="button"]::-moz-focus-inner,
|
|
380
|
+
[type="reset"]::-moz-focus-inner,
|
|
381
|
+
[type="submit"]::-moz-focus-inner {
|
|
468
382
|
padding: 0;
|
|
469
383
|
border-style: none;
|
|
470
384
|
}
|
|
471
385
|
|
|
472
|
-
|
|
386
|
+
input[type="radio"],
|
|
387
|
+
input[type="checkbox"] {
|
|
388
|
+
box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
|
|
389
|
+
padding: 0; // 2. Remove the padding in IE 10-
|
|
390
|
+
}
|
|
391
|
+
|
|
473
392
|
|
|
474
393
|
textarea {
|
|
475
|
-
|
|
394
|
+
overflow: auto; // Remove the default vertical scrollbar in IE.
|
|
395
|
+
// Textareas should really only resize vertically so they don't break their (horizontal) containers.
|
|
396
|
+
resize: vertical;
|
|
476
397
|
}
|
|
477
398
|
|
|
478
|
-
// 1. Browsers set a default `min-width: min-content;` on fieldsets,
|
|
479
|
-
// unlike e.g. `<div>`s, which have `min-width: 0;` by default.
|
|
480
|
-
// So we reset that to ensure fieldsets behave more like a standard block element.
|
|
481
|
-
// See https://github.com/twbs/bootstrap/issues/12359
|
|
482
|
-
// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
|
|
483
|
-
// 2. Reset the default outline behavior of fieldsets so they don't affect page layout.
|
|
484
|
-
|
|
485
399
|
fieldset {
|
|
486
|
-
min-width:
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
400
|
+
// Browsers set a default `min-width: min-content;` on fieldsets,
|
|
401
|
+
// unlike e.g. `<div>`s, which have `min-width: 0;` by default.
|
|
402
|
+
// So we reset that to ensure fieldsets behave more like a standard block element.
|
|
403
|
+
// See https://github.com/twbs/bootstrap/issues/12359
|
|
404
|
+
// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
|
|
405
|
+
min-width: 0;
|
|
406
|
+
// Reset the default outline behavior of fieldsets so they don't affect page layout.
|
|
407
|
+
padding: 0;
|
|
408
|
+
margin: 0;
|
|
409
|
+
border: 0;
|
|
490
410
|
}
|
|
491
411
|
|
|
492
|
-
// 1.
|
|
493
|
-
//
|
|
494
|
-
// 2. Fix wrapping bug.
|
|
495
|
-
// See https://github.com/twbs/bootstrap/issues/29712
|
|
496
|
-
|
|
412
|
+
// 1. Correct the text wrapping in Edge and IE.
|
|
413
|
+
// 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
497
414
|
legend {
|
|
498
|
-
|
|
415
|
+
display: block;
|
|
499
416
|
width: 100%;
|
|
417
|
+
max-width: 100%; // 1
|
|
500
418
|
padding: 0;
|
|
501
|
-
margin-bottom:
|
|
502
|
-
|
|
419
|
+
margin-bottom: .5rem;
|
|
420
|
+
@include font-size(1.5rem);
|
|
503
421
|
line-height: inherit;
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
+ * {
|
|
507
|
-
clear: left; // 2
|
|
508
|
-
}
|
|
422
|
+
color: inherit; // 2
|
|
423
|
+
white-space: normal; // 1
|
|
509
424
|
}
|
|
510
425
|
|
|
511
|
-
|
|
512
|
-
//
|
|
513
|
-
|
|
514
|
-
::-webkit-datetime-edit-fields-wrapper,
|
|
515
|
-
::-webkit-datetime-edit-text,
|
|
516
|
-
::-webkit-datetime-edit-minute,
|
|
517
|
-
::-webkit-datetime-edit-hour-field,
|
|
518
|
-
::-webkit-datetime-edit-day-field,
|
|
519
|
-
::-webkit-datetime-edit-month-field,
|
|
520
|
-
::-webkit-datetime-edit-year-field {
|
|
521
|
-
padding: 0;
|
|
426
|
+
progress {
|
|
427
|
+
vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
522
428
|
}
|
|
523
429
|
|
|
524
|
-
|
|
430
|
+
// Correct the cursor style of increment and decrement buttons in Chrome.
|
|
431
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
432
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
525
433
|
height: auto;
|
|
526
434
|
}
|
|
527
435
|
|
|
528
|
-
// 1. This overrides the extra rounded corners on search inputs in iOS so that our
|
|
529
|
-
// `.form-control` class can properly style them. Note that this cannot simply
|
|
530
|
-
// be added to `.form-control` as it's not specific enough. For details, see
|
|
531
|
-
// https://github.com/twbs/bootstrap/issues/11586.
|
|
532
|
-
// 2. Correct the outline style in Safari.
|
|
533
|
-
|
|
534
436
|
[type="search"] {
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
//
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
filter: grayscale(1);
|
|
542
|
-
}
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
// 1. A few input types should stay LTR
|
|
546
|
-
// See https://rtlstyling.com/posts/rtl-styling#form-inputs
|
|
547
|
-
// 2. RTL only output
|
|
548
|
-
// See https://rtlcss.com/learn/usage-guide/control-directives/#raw
|
|
549
|
-
|
|
550
|
-
/* rtl:raw:
|
|
551
|
-
[type="tel"],
|
|
552
|
-
[type="url"],
|
|
553
|
-
[type="email"],
|
|
554
|
-
[type="number"] {
|
|
555
|
-
direction: ltr;
|
|
437
|
+
// This overrides the extra rounded corners on search inputs in iOS so that our
|
|
438
|
+
// `.form-control` class can properly style them. Note that this cannot simply
|
|
439
|
+
// be added to `.form-control` as it's not specific enough. For details, see
|
|
440
|
+
// https://github.com/twbs/bootstrap/issues/11586.
|
|
441
|
+
outline-offset: -2px; // 2. Correct the outline style in Safari.
|
|
442
|
+
-webkit-appearance: none;
|
|
556
443
|
}
|
|
557
|
-
*/
|
|
558
444
|
|
|
445
|
+
//
|
|
559
446
|
// Remove the inner padding in Chrome and Safari on macOS.
|
|
447
|
+
//
|
|
560
448
|
|
|
561
|
-
::-webkit-search-decoration {
|
|
449
|
+
[type="search"]::-webkit-search-decoration {
|
|
562
450
|
-webkit-appearance: none;
|
|
563
451
|
}
|
|
564
452
|
|
|
565
|
-
//
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
// 1. Inherit font family and line height for file input buttons
|
|
573
|
-
// 2. Correct the inability to style clickable types in iOS and Safari.
|
|
453
|
+
//
|
|
454
|
+
// 1. Correct the inability to style clickable types in iOS and Safari.
|
|
455
|
+
// 2. Change font properties to `inherit` in Safari.
|
|
456
|
+
//
|
|
574
457
|
|
|
575
|
-
|
|
576
|
-
font: inherit; //
|
|
577
|
-
-webkit-appearance: button; //
|
|
458
|
+
::-webkit-file-upload-button {
|
|
459
|
+
font: inherit; // 2
|
|
460
|
+
-webkit-appearance: button; // 1
|
|
578
461
|
}
|
|
579
462
|
|
|
463
|
+
//
|
|
580
464
|
// Correct element displays
|
|
465
|
+
//
|
|
581
466
|
|
|
582
467
|
output {
|
|
583
468
|
display: inline-block;
|
|
584
469
|
}
|
|
585
470
|
|
|
586
|
-
// Remove border from iframe
|
|
587
|
-
|
|
588
|
-
iframe {
|
|
589
|
-
border: 0;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
// Summary
|
|
593
|
-
//
|
|
594
|
-
// 1. Add the correct display in all browsers
|
|
595
|
-
|
|
596
471
|
summary {
|
|
597
|
-
display: list-item; //
|
|
472
|
+
display: list-item; // Add the correct display in all browsers
|
|
598
473
|
cursor: pointer;
|
|
599
474
|
}
|
|
600
475
|
|
|
601
|
-
|
|
602
|
-
//
|
|
603
|
-
//
|
|
604
|
-
// Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
605
|
-
|
|
606
|
-
progress {
|
|
607
|
-
vertical-align: baseline;
|
|
476
|
+
template {
|
|
477
|
+
display: none; // Add the correct display in IE
|
|
608
478
|
}
|
|
609
479
|
|
|
610
|
-
|
|
611
|
-
//
|
|
612
|
-
//
|
|
613
|
-
// Always hide an element with the `hidden` HTML attribute.
|
|
614
|
-
|
|
480
|
+
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
|
|
481
|
+
// Needed for proper display in IE 10-.
|
|
615
482
|
[hidden] {
|
|
616
483
|
display: none !important;
|
|
617
484
|
}
|