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
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
// Color system
|
|
7
7
|
|
|
8
|
-
// scss-docs-start gray-color-variables
|
|
9
8
|
$white: #fff !default;
|
|
10
9
|
$gray-100: #f8f9fa !default;
|
|
11
10
|
$gray-200: #e9ecef !default;
|
|
@@ -17,287 +16,54 @@ $gray-700: #495057 !default;
|
|
|
17
16
|
$gray-800: #343a40 !default;
|
|
18
17
|
$gray-900: #212529 !default;
|
|
19
18
|
$black: #000 !default;
|
|
20
|
-
// scss-docs-end gray-color-variables
|
|
21
|
-
|
|
22
|
-
// fusv-disable
|
|
23
|
-
// scss-docs-start gray-colors-map
|
|
24
|
-
$grays: (
|
|
25
|
-
"100": $gray-100,
|
|
26
|
-
"200": $gray-200,
|
|
27
|
-
"300": $gray-300,
|
|
28
|
-
"400": $gray-400,
|
|
29
|
-
"500": $gray-500,
|
|
30
|
-
"600": $gray-600,
|
|
31
|
-
"700": $gray-700,
|
|
32
|
-
"800": $gray-800,
|
|
33
|
-
"900": $gray-900
|
|
34
|
-
) !default;
|
|
35
|
-
// scss-docs-end gray-colors-map
|
|
36
|
-
// fusv-enable
|
|
37
19
|
|
|
38
|
-
|
|
39
|
-
$
|
|
20
|
+
$grays: () !default;
|
|
21
|
+
$grays: map-merge(
|
|
22
|
+
(
|
|
23
|
+
"100": $gray-100,
|
|
24
|
+
"200": $gray-200,
|
|
25
|
+
"300": $gray-300,
|
|
26
|
+
"400": $gray-400,
|
|
27
|
+
"500": $gray-500,
|
|
28
|
+
"600": $gray-600,
|
|
29
|
+
"700": $gray-700,
|
|
30
|
+
"800": $gray-800,
|
|
31
|
+
"900": $gray-900
|
|
32
|
+
),
|
|
33
|
+
$grays
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
$blue: #007bff !default;
|
|
40
37
|
$indigo: #6610f2 !default;
|
|
41
38
|
$purple: #6f42c1 !default;
|
|
42
|
-
$pink: #
|
|
39
|
+
$pink: #e83e8c !default;
|
|
43
40
|
$red: #dc3545 !default;
|
|
44
41
|
$orange: #fd7e14 !default;
|
|
45
42
|
$yellow: #ffc107 !default;
|
|
46
|
-
$green: #
|
|
43
|
+
$green: #28a745 !default;
|
|
47
44
|
$teal: #20c997 !default;
|
|
48
|
-
$cyan: #
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.2 are 3, 4.5 and 7.
|
|
71
|
-
// See https://www.w3.org/TR/WCAG/#contrast-minimum
|
|
72
|
-
$min-contrast-ratio: 4.5 !default;
|
|
73
|
-
|
|
74
|
-
// Customize the light and dark text colors for use in our color contrast function.
|
|
75
|
-
$color-contrast-dark: $black !default;
|
|
76
|
-
$color-contrast-light: $white !default;
|
|
77
|
-
|
|
78
|
-
// fusv-disable
|
|
79
|
-
$blue-100: tint-color($blue, 80%) !default;
|
|
80
|
-
$blue-200: tint-color($blue, 60%) !default;
|
|
81
|
-
$blue-300: tint-color($blue, 40%) !default;
|
|
82
|
-
$blue-400: tint-color($blue, 20%) !default;
|
|
83
|
-
$blue-500: $blue !default;
|
|
84
|
-
$blue-600: shade-color($blue, 20%) !default;
|
|
85
|
-
$blue-700: shade-color($blue, 40%) !default;
|
|
86
|
-
$blue-800: shade-color($blue, 60%) !default;
|
|
87
|
-
$blue-900: shade-color($blue, 80%) !default;
|
|
88
|
-
|
|
89
|
-
$indigo-100: tint-color($indigo, 80%) !default;
|
|
90
|
-
$indigo-200: tint-color($indigo, 60%) !default;
|
|
91
|
-
$indigo-300: tint-color($indigo, 40%) !default;
|
|
92
|
-
$indigo-400: tint-color($indigo, 20%) !default;
|
|
93
|
-
$indigo-500: $indigo !default;
|
|
94
|
-
$indigo-600: shade-color($indigo, 20%) !default;
|
|
95
|
-
$indigo-700: shade-color($indigo, 40%) !default;
|
|
96
|
-
$indigo-800: shade-color($indigo, 60%) !default;
|
|
97
|
-
$indigo-900: shade-color($indigo, 80%) !default;
|
|
98
|
-
|
|
99
|
-
$purple-100: tint-color($purple, 80%) !default;
|
|
100
|
-
$purple-200: tint-color($purple, 60%) !default;
|
|
101
|
-
$purple-300: tint-color($purple, 40%) !default;
|
|
102
|
-
$purple-400: tint-color($purple, 20%) !default;
|
|
103
|
-
$purple-500: $purple !default;
|
|
104
|
-
$purple-600: shade-color($purple, 20%) !default;
|
|
105
|
-
$purple-700: shade-color($purple, 40%) !default;
|
|
106
|
-
$purple-800: shade-color($purple, 60%) !default;
|
|
107
|
-
$purple-900: shade-color($purple, 80%) !default;
|
|
108
|
-
|
|
109
|
-
$pink-100: tint-color($pink, 80%) !default;
|
|
110
|
-
$pink-200: tint-color($pink, 60%) !default;
|
|
111
|
-
$pink-300: tint-color($pink, 40%) !default;
|
|
112
|
-
$pink-400: tint-color($pink, 20%) !default;
|
|
113
|
-
$pink-500: $pink !default;
|
|
114
|
-
$pink-600: shade-color($pink, 20%) !default;
|
|
115
|
-
$pink-700: shade-color($pink, 40%) !default;
|
|
116
|
-
$pink-800: shade-color($pink, 60%) !default;
|
|
117
|
-
$pink-900: shade-color($pink, 80%) !default;
|
|
118
|
-
|
|
119
|
-
$red-100: tint-color($red, 80%) !default;
|
|
120
|
-
$red-200: tint-color($red, 60%) !default;
|
|
121
|
-
$red-300: tint-color($red, 40%) !default;
|
|
122
|
-
$red-400: tint-color($red, 20%) !default;
|
|
123
|
-
$red-500: $red !default;
|
|
124
|
-
$red-600: shade-color($red, 20%) !default;
|
|
125
|
-
$red-700: shade-color($red, 40%) !default;
|
|
126
|
-
$red-800: shade-color($red, 60%) !default;
|
|
127
|
-
$red-900: shade-color($red, 80%) !default;
|
|
128
|
-
|
|
129
|
-
$orange-100: tint-color($orange, 80%) !default;
|
|
130
|
-
$orange-200: tint-color($orange, 60%) !default;
|
|
131
|
-
$orange-300: tint-color($orange, 40%) !default;
|
|
132
|
-
$orange-400: tint-color($orange, 20%) !default;
|
|
133
|
-
$orange-500: $orange !default;
|
|
134
|
-
$orange-600: shade-color($orange, 20%) !default;
|
|
135
|
-
$orange-700: shade-color($orange, 40%) !default;
|
|
136
|
-
$orange-800: shade-color($orange, 60%) !default;
|
|
137
|
-
$orange-900: shade-color($orange, 80%) !default;
|
|
138
|
-
|
|
139
|
-
$yellow-100: tint-color($yellow, 80%) !default;
|
|
140
|
-
$yellow-200: tint-color($yellow, 60%) !default;
|
|
141
|
-
$yellow-300: tint-color($yellow, 40%) !default;
|
|
142
|
-
$yellow-400: tint-color($yellow, 20%) !default;
|
|
143
|
-
$yellow-500: $yellow !default;
|
|
144
|
-
$yellow-600: shade-color($yellow, 20%) !default;
|
|
145
|
-
$yellow-700: shade-color($yellow, 40%) !default;
|
|
146
|
-
$yellow-800: shade-color($yellow, 60%) !default;
|
|
147
|
-
$yellow-900: shade-color($yellow, 80%) !default;
|
|
148
|
-
|
|
149
|
-
$green-100: tint-color($green, 80%) !default;
|
|
150
|
-
$green-200: tint-color($green, 60%) !default;
|
|
151
|
-
$green-300: tint-color($green, 40%) !default;
|
|
152
|
-
$green-400: tint-color($green, 20%) !default;
|
|
153
|
-
$green-500: $green !default;
|
|
154
|
-
$green-600: shade-color($green, 20%) !default;
|
|
155
|
-
$green-700: shade-color($green, 40%) !default;
|
|
156
|
-
$green-800: shade-color($green, 60%) !default;
|
|
157
|
-
$green-900: shade-color($green, 80%) !default;
|
|
158
|
-
|
|
159
|
-
$teal-100: tint-color($teal, 80%) !default;
|
|
160
|
-
$teal-200: tint-color($teal, 60%) !default;
|
|
161
|
-
$teal-300: tint-color($teal, 40%) !default;
|
|
162
|
-
$teal-400: tint-color($teal, 20%) !default;
|
|
163
|
-
$teal-500: $teal !default;
|
|
164
|
-
$teal-600: shade-color($teal, 20%) !default;
|
|
165
|
-
$teal-700: shade-color($teal, 40%) !default;
|
|
166
|
-
$teal-800: shade-color($teal, 60%) !default;
|
|
167
|
-
$teal-900: shade-color($teal, 80%) !default;
|
|
168
|
-
|
|
169
|
-
$cyan-100: tint-color($cyan, 80%) !default;
|
|
170
|
-
$cyan-200: tint-color($cyan, 60%) !default;
|
|
171
|
-
$cyan-300: tint-color($cyan, 40%) !default;
|
|
172
|
-
$cyan-400: tint-color($cyan, 20%) !default;
|
|
173
|
-
$cyan-500: $cyan !default;
|
|
174
|
-
$cyan-600: shade-color($cyan, 20%) !default;
|
|
175
|
-
$cyan-700: shade-color($cyan, 40%) !default;
|
|
176
|
-
$cyan-800: shade-color($cyan, 60%) !default;
|
|
177
|
-
$cyan-900: shade-color($cyan, 80%) !default;
|
|
178
|
-
|
|
179
|
-
$blues: (
|
|
180
|
-
"blue-100": $blue-100,
|
|
181
|
-
"blue-200": $blue-200,
|
|
182
|
-
"blue-300": $blue-300,
|
|
183
|
-
"blue-400": $blue-400,
|
|
184
|
-
"blue-500": $blue-500,
|
|
185
|
-
"blue-600": $blue-600,
|
|
186
|
-
"blue-700": $blue-700,
|
|
187
|
-
"blue-800": $blue-800,
|
|
188
|
-
"blue-900": $blue-900
|
|
189
|
-
) !default;
|
|
190
|
-
|
|
191
|
-
$indigos: (
|
|
192
|
-
"indigo-100": $indigo-100,
|
|
193
|
-
"indigo-200": $indigo-200,
|
|
194
|
-
"indigo-300": $indigo-300,
|
|
195
|
-
"indigo-400": $indigo-400,
|
|
196
|
-
"indigo-500": $indigo-500,
|
|
197
|
-
"indigo-600": $indigo-600,
|
|
198
|
-
"indigo-700": $indigo-700,
|
|
199
|
-
"indigo-800": $indigo-800,
|
|
200
|
-
"indigo-900": $indigo-900
|
|
201
|
-
) !default;
|
|
202
|
-
|
|
203
|
-
$purples: (
|
|
204
|
-
"purple-100": $purple-100,
|
|
205
|
-
"purple-200": $purple-200,
|
|
206
|
-
"purple-300": $purple-300,
|
|
207
|
-
"purple-400": $purple-400,
|
|
208
|
-
"purple-500": $purple-500,
|
|
209
|
-
"purple-600": $purple-600,
|
|
210
|
-
"purple-700": $purple-700,
|
|
211
|
-
"purple-800": $purple-800,
|
|
212
|
-
"purple-900": $purple-900
|
|
213
|
-
) !default;
|
|
214
|
-
|
|
215
|
-
$pinks: (
|
|
216
|
-
"pink-100": $pink-100,
|
|
217
|
-
"pink-200": $pink-200,
|
|
218
|
-
"pink-300": $pink-300,
|
|
219
|
-
"pink-400": $pink-400,
|
|
220
|
-
"pink-500": $pink-500,
|
|
221
|
-
"pink-600": $pink-600,
|
|
222
|
-
"pink-700": $pink-700,
|
|
223
|
-
"pink-800": $pink-800,
|
|
224
|
-
"pink-900": $pink-900
|
|
225
|
-
) !default;
|
|
226
|
-
|
|
227
|
-
$reds: (
|
|
228
|
-
"red-100": $red-100,
|
|
229
|
-
"red-200": $red-200,
|
|
230
|
-
"red-300": $red-300,
|
|
231
|
-
"red-400": $red-400,
|
|
232
|
-
"red-500": $red-500,
|
|
233
|
-
"red-600": $red-600,
|
|
234
|
-
"red-700": $red-700,
|
|
235
|
-
"red-800": $red-800,
|
|
236
|
-
"red-900": $red-900
|
|
237
|
-
) !default;
|
|
238
|
-
|
|
239
|
-
$oranges: (
|
|
240
|
-
"orange-100": $orange-100,
|
|
241
|
-
"orange-200": $orange-200,
|
|
242
|
-
"orange-300": $orange-300,
|
|
243
|
-
"orange-400": $orange-400,
|
|
244
|
-
"orange-500": $orange-500,
|
|
245
|
-
"orange-600": $orange-600,
|
|
246
|
-
"orange-700": $orange-700,
|
|
247
|
-
"orange-800": $orange-800,
|
|
248
|
-
"orange-900": $orange-900
|
|
249
|
-
) !default;
|
|
250
|
-
|
|
251
|
-
$yellows: (
|
|
252
|
-
"yellow-100": $yellow-100,
|
|
253
|
-
"yellow-200": $yellow-200,
|
|
254
|
-
"yellow-300": $yellow-300,
|
|
255
|
-
"yellow-400": $yellow-400,
|
|
256
|
-
"yellow-500": $yellow-500,
|
|
257
|
-
"yellow-600": $yellow-600,
|
|
258
|
-
"yellow-700": $yellow-700,
|
|
259
|
-
"yellow-800": $yellow-800,
|
|
260
|
-
"yellow-900": $yellow-900
|
|
261
|
-
) !default;
|
|
262
|
-
|
|
263
|
-
$greens: (
|
|
264
|
-
"green-100": $green-100,
|
|
265
|
-
"green-200": $green-200,
|
|
266
|
-
"green-300": $green-300,
|
|
267
|
-
"green-400": $green-400,
|
|
268
|
-
"green-500": $green-500,
|
|
269
|
-
"green-600": $green-600,
|
|
270
|
-
"green-700": $green-700,
|
|
271
|
-
"green-800": $green-800,
|
|
272
|
-
"green-900": $green-900
|
|
273
|
-
) !default;
|
|
274
|
-
|
|
275
|
-
$teals: (
|
|
276
|
-
"teal-100": $teal-100,
|
|
277
|
-
"teal-200": $teal-200,
|
|
278
|
-
"teal-300": $teal-300,
|
|
279
|
-
"teal-400": $teal-400,
|
|
280
|
-
"teal-500": $teal-500,
|
|
281
|
-
"teal-600": $teal-600,
|
|
282
|
-
"teal-700": $teal-700,
|
|
283
|
-
"teal-800": $teal-800,
|
|
284
|
-
"teal-900": $teal-900
|
|
285
|
-
) !default;
|
|
286
|
-
|
|
287
|
-
$cyans: (
|
|
288
|
-
"cyan-100": $cyan-100,
|
|
289
|
-
"cyan-200": $cyan-200,
|
|
290
|
-
"cyan-300": $cyan-300,
|
|
291
|
-
"cyan-400": $cyan-400,
|
|
292
|
-
"cyan-500": $cyan-500,
|
|
293
|
-
"cyan-600": $cyan-600,
|
|
294
|
-
"cyan-700": $cyan-700,
|
|
295
|
-
"cyan-800": $cyan-800,
|
|
296
|
-
"cyan-900": $cyan-900
|
|
297
|
-
) !default;
|
|
298
|
-
// fusv-enable
|
|
45
|
+
$cyan: #17a2b8 !default;
|
|
46
|
+
|
|
47
|
+
$colors: () !default;
|
|
48
|
+
$colors: map-merge(
|
|
49
|
+
(
|
|
50
|
+
"blue": $blue,
|
|
51
|
+
"indigo": $indigo,
|
|
52
|
+
"purple": $purple,
|
|
53
|
+
"pink": $pink,
|
|
54
|
+
"red": $red,
|
|
55
|
+
"orange": $orange,
|
|
56
|
+
"yellow": $yellow,
|
|
57
|
+
"green": $green,
|
|
58
|
+
"teal": $teal,
|
|
59
|
+
"cyan": $cyan,
|
|
60
|
+
"white": $white,
|
|
61
|
+
"gray": $gray-600,
|
|
62
|
+
"gray-dark": $gray-800
|
|
63
|
+
),
|
|
64
|
+
$colors
|
|
65
|
+
);
|
|
299
66
|
|
|
300
|
-
// scss-docs-start theme-color-variables
|
|
301
67
|
$primary: $blue !default;
|
|
302
68
|
$secondary: $gray-600 !default;
|
|
303
69
|
$success: $green !default;
|
|
@@ -305,54 +71,32 @@ $info: $cyan !default;
|
|
|
305
71
|
$warning: $yellow !default;
|
|
306
72
|
$danger: $red !default;
|
|
307
73
|
$light: $gray-100 !default;
|
|
308
|
-
$dark: $gray-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
)
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
$
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
$
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
$
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
// scss-docs-start theme-bg-subtle-variables
|
|
336
|
-
$primary-bg-subtle: tint-color($primary, 80%) !default;
|
|
337
|
-
$secondary-bg-subtle: tint-color($secondary, 80%) !default;
|
|
338
|
-
$success-bg-subtle: tint-color($success, 80%) !default;
|
|
339
|
-
$info-bg-subtle: tint-color($info, 80%) !default;
|
|
340
|
-
$warning-bg-subtle: tint-color($warning, 80%) !default;
|
|
341
|
-
$danger-bg-subtle: tint-color($danger, 80%) !default;
|
|
342
|
-
$light-bg-subtle: mix($gray-100, $white) !default;
|
|
343
|
-
$dark-bg-subtle: $gray-400 !default;
|
|
344
|
-
// scss-docs-end theme-bg-subtle-variables
|
|
345
|
-
|
|
346
|
-
// scss-docs-start theme-border-subtle-variables
|
|
347
|
-
$primary-border-subtle: tint-color($primary, 60%) !default;
|
|
348
|
-
$secondary-border-subtle: tint-color($secondary, 60%) !default;
|
|
349
|
-
$success-border-subtle: tint-color($success, 60%) !default;
|
|
350
|
-
$info-border-subtle: tint-color($info, 60%) !default;
|
|
351
|
-
$warning-border-subtle: tint-color($warning, 60%) !default;
|
|
352
|
-
$danger-border-subtle: tint-color($danger, 60%) !default;
|
|
353
|
-
$light-border-subtle: $gray-200 !default;
|
|
354
|
-
$dark-border-subtle: $gray-500 !default;
|
|
355
|
-
// scss-docs-end theme-border-subtle-variables
|
|
74
|
+
$dark: $gray-800 !default;
|
|
75
|
+
|
|
76
|
+
$theme-colors: () !default;
|
|
77
|
+
$theme-colors: map-merge(
|
|
78
|
+
(
|
|
79
|
+
"primary": $primary,
|
|
80
|
+
"secondary": $secondary,
|
|
81
|
+
"success": $success,
|
|
82
|
+
"info": $info,
|
|
83
|
+
"warning": $warning,
|
|
84
|
+
"danger": $danger,
|
|
85
|
+
"light": $light,
|
|
86
|
+
"dark": $dark
|
|
87
|
+
),
|
|
88
|
+
$theme-colors
|
|
89
|
+
);
|
|
90
|
+
|
|
91
|
+
// Set a specific jump point for requesting color jumps
|
|
92
|
+
$theme-color-interval: 8% !default;
|
|
93
|
+
|
|
94
|
+
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
|
|
95
|
+
$yiq-contrasted-threshold: 150 !default;
|
|
96
|
+
|
|
97
|
+
// Customize the light and dark text colors for use in our YIQ color contrast function.
|
|
98
|
+
$yiq-text-dark: $gray-900 !default;
|
|
99
|
+
$yiq-text-light: $white !default;
|
|
356
100
|
|
|
357
101
|
// Characters which are escaped by the escape-svg function
|
|
358
102
|
$escaped-characters: (
|
|
@@ -363,42 +107,25 @@ $escaped-characters: (
|
|
|
363
107
|
(")", "%29"),
|
|
364
108
|
) !default;
|
|
365
109
|
|
|
110
|
+
|
|
366
111
|
// Options
|
|
367
112
|
//
|
|
368
113
|
// Quickly modify global styling by enabling or disabling optional features.
|
|
369
114
|
|
|
370
|
-
$enable-caret:
|
|
371
|
-
$enable-rounded:
|
|
372
|
-
$enable-shadows:
|
|
373
|
-
$enable-gradients:
|
|
374
|
-
$enable-transitions:
|
|
375
|
-
$enable-reduced-motion:
|
|
376
|
-
$enable-
|
|
377
|
-
$enable-grid-classes:
|
|
378
|
-
$enable-
|
|
379
|
-
$enable-
|
|
380
|
-
$enable-
|
|
381
|
-
$enable-
|
|
382
|
-
$enable-
|
|
383
|
-
|
|
384
|
-
$enable-deprecation-messages: true !default;
|
|
385
|
-
$enable-important-utilities: true !default;
|
|
386
|
-
|
|
387
|
-
$enable-dark-mode: true !default;
|
|
388
|
-
$color-mode-type: data !default; // `data` or `media-query`
|
|
389
|
-
|
|
390
|
-
// Prefix for :root CSS variables
|
|
391
|
-
|
|
392
|
-
$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`
|
|
393
|
-
$prefix: $variable-prefix !default;
|
|
394
|
-
|
|
395
|
-
// Gradient
|
|
396
|
-
//
|
|
397
|
-
// The gradient which is added to components if `$enable-gradients` is `true`
|
|
398
|
-
// This gradient is also added to elements with `.bg-gradient`
|
|
399
|
-
// scss-docs-start variable-gradient
|
|
400
|
-
$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;
|
|
401
|
-
// scss-docs-end variable-gradient
|
|
115
|
+
$enable-caret: true !default;
|
|
116
|
+
$enable-rounded: true !default;
|
|
117
|
+
$enable-shadows: false !default;
|
|
118
|
+
$enable-gradients: false !default;
|
|
119
|
+
$enable-transitions: true !default;
|
|
120
|
+
$enable-prefers-reduced-motion-media-query: true !default;
|
|
121
|
+
$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
|
|
122
|
+
$enable-grid-classes: true !default;
|
|
123
|
+
$enable-pointer-cursor-for-buttons: true !default;
|
|
124
|
+
$enable-print-styles: true !default;
|
|
125
|
+
$enable-responsive-font-sizes: false !default;
|
|
126
|
+
$enable-validation-icons: true !default;
|
|
127
|
+
$enable-deprecation-messages: true !default;
|
|
128
|
+
|
|
402
129
|
|
|
403
130
|
// Spacing
|
|
404
131
|
//
|
|
@@ -406,67 +133,52 @@ $gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;
|
|
|
406
133
|
// variables. Mostly focused on spacing.
|
|
407
134
|
// You can add more entries to the $spacers map, should you need more variation.
|
|
408
135
|
|
|
409
|
-
// scss-docs-start spacer-variables-maps
|
|
410
136
|
$spacer: 1rem !default;
|
|
411
|
-
$spacers: (
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
137
|
+
$spacers: () !default;
|
|
138
|
+
$spacers: map-merge(
|
|
139
|
+
(
|
|
140
|
+
0: 0,
|
|
141
|
+
1: ($spacer * .25),
|
|
142
|
+
2: ($spacer * .5),
|
|
143
|
+
3: $spacer,
|
|
144
|
+
4: ($spacer * 1.5),
|
|
145
|
+
5: ($spacer * 3)
|
|
146
|
+
),
|
|
147
|
+
$spacers
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
// This variable affects the `.h-*` and `.w-*` classes.
|
|
151
|
+
$sizes: () !default;
|
|
152
|
+
$sizes: map-merge(
|
|
153
|
+
(
|
|
154
|
+
25: 25%,
|
|
155
|
+
50: 50%,
|
|
156
|
+
75: 75%,
|
|
157
|
+
100: 100%,
|
|
158
|
+
auto: auto
|
|
159
|
+
),
|
|
160
|
+
$sizes
|
|
161
|
+
);
|
|
424
162
|
|
|
425
|
-
// scss-docs-start position-map
|
|
426
|
-
$position-values: (
|
|
427
|
-
0: 0,
|
|
428
|
-
50: 50%,
|
|
429
|
-
100: 100%
|
|
430
|
-
) !default;
|
|
431
|
-
// scss-docs-end position-map
|
|
432
163
|
|
|
433
164
|
// Body
|
|
434
165
|
//
|
|
435
166
|
// Settings for the `<body>` element.
|
|
436
167
|
|
|
437
|
-
$body-text-align: null !default;
|
|
438
|
-
$body-color: $gray-900 !default;
|
|
439
168
|
$body-bg: $white !default;
|
|
169
|
+
$body-color: $gray-900 !default;
|
|
440
170
|
|
|
441
|
-
$body-secondary-color: rgba($body-color, .75) !default;
|
|
442
|
-
$body-secondary-bg: $gray-200 !default;
|
|
443
|
-
|
|
444
|
-
$body-tertiary-color: rgba($body-color, .5) !default;
|
|
445
|
-
$body-tertiary-bg: $gray-100 !default;
|
|
446
|
-
|
|
447
|
-
$body-emphasis-color: $black !default;
|
|
448
171
|
|
|
449
172
|
// Links
|
|
450
173
|
//
|
|
451
174
|
// Style anchor elements.
|
|
452
175
|
|
|
453
|
-
$link-color:
|
|
454
|
-
$link-decoration:
|
|
455
|
-
$link-
|
|
456
|
-
$link-hover-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
$stretched-link-pseudo-element: after !default;
|
|
460
|
-
$stretched-link-z-index: 1 !default;
|
|
461
|
-
|
|
462
|
-
// Icon links
|
|
463
|
-
// scss-docs-start icon-link-variables
|
|
464
|
-
$icon-link-gap: .375rem !default;
|
|
465
|
-
$icon-link-underline-offset: .25em !default;
|
|
466
|
-
$icon-link-icon-size: 1em !default;
|
|
467
|
-
$icon-link-icon-transition: .2s ease-in-out transform !default;
|
|
468
|
-
$icon-link-icon-transform: translate3d(.25em, 0, 0) !default;
|
|
469
|
-
// scss-docs-end icon-link-variables
|
|
176
|
+
$link-color: theme-color("primary") !default;
|
|
177
|
+
$link-decoration: none !default;
|
|
178
|
+
$link-hover-color: darken($link-color, 15%) !default;
|
|
179
|
+
$link-hover-decoration: underline !default;
|
|
180
|
+
// Darken percentage for links with `.text-*` class (e.g. `.text-success`)
|
|
181
|
+
$emphasized-link-hover-darken-percentage: 15% !default;
|
|
470
182
|
|
|
471
183
|
// Paragraphs
|
|
472
184
|
//
|
|
@@ -480,16 +192,13 @@ $paragraph-margin-bottom: 1rem !default;
|
|
|
480
192
|
// Define the minimum dimensions at which your layout will change,
|
|
481
193
|
// adapting to different screen sizes, for use in media queries.
|
|
482
194
|
|
|
483
|
-
// scss-docs-start grid-breakpoints
|
|
484
195
|
$grid-breakpoints: (
|
|
485
196
|
xs: 0,
|
|
486
197
|
sm: 576px,
|
|
487
198
|
md: 768px,
|
|
488
199
|
lg: 992px,
|
|
489
|
-
xl: 1200px
|
|
490
|
-
xxl: 1400px
|
|
200
|
+
xl: 1200px
|
|
491
201
|
) !default;
|
|
492
|
-
// scss-docs-end grid-breakpoints
|
|
493
202
|
|
|
494
203
|
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
|
|
495
204
|
@include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
|
|
@@ -499,15 +208,12 @@ $grid-breakpoints: (
|
|
|
499
208
|
//
|
|
500
209
|
// Define the maximum width of `.container` for different screen sizes.
|
|
501
210
|
|
|
502
|
-
// scss-docs-start container-max-widths
|
|
503
211
|
$container-max-widths: (
|
|
504
212
|
sm: 540px,
|
|
505
213
|
md: 720px,
|
|
506
214
|
lg: 960px,
|
|
507
|
-
xl: 1140px
|
|
508
|
-
xxl: 1320px
|
|
215
|
+
xl: 1140px
|
|
509
216
|
) !default;
|
|
510
|
-
// scss-docs-end container-max-widths
|
|
511
217
|
|
|
512
218
|
@include _assert-ascending($container-max-widths, "$container-max-widths");
|
|
513
219
|
|
|
@@ -517,118 +223,74 @@ $container-max-widths: (
|
|
|
517
223
|
// Set the number of columns and specify the width of the gutters.
|
|
518
224
|
|
|
519
225
|
$grid-columns: 12 !default;
|
|
520
|
-
$grid-gutter-width:
|
|
226
|
+
$grid-gutter-width: 30px !default;
|
|
521
227
|
$grid-row-columns: 6 !default;
|
|
522
228
|
|
|
523
|
-
// Container padding
|
|
524
|
-
|
|
525
|
-
$container-padding-x: $grid-gutter-width !default;
|
|
526
|
-
|
|
527
229
|
|
|
528
230
|
// Components
|
|
529
231
|
//
|
|
530
232
|
// Define common padding and border radius sizes and more.
|
|
531
233
|
|
|
532
|
-
|
|
234
|
+
$line-height-lg: 1.5 !default;
|
|
235
|
+
$line-height-sm: 1.5 !default;
|
|
236
|
+
|
|
533
237
|
$border-width: 1px !default;
|
|
534
|
-
$border-widths: (
|
|
535
|
-
1: 1px,
|
|
536
|
-
2: 2px,
|
|
537
|
-
3: 3px,
|
|
538
|
-
4: 4px,
|
|
539
|
-
5: 5px
|
|
540
|
-
) !default;
|
|
541
|
-
$border-style: solid !default;
|
|
542
238
|
$border-color: $gray-300 !default;
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
$
|
|
549
|
-
|
|
550
|
-
$border-radius-xl: 1rem !default;
|
|
551
|
-
$border-radius-xxl: 2rem !default;
|
|
552
|
-
$border-radius-pill: 50rem !default;
|
|
553
|
-
// scss-docs-end border-radius-variables
|
|
554
|
-
// fusv-disable
|
|
555
|
-
$border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0
|
|
556
|
-
// fusv-enable
|
|
557
|
-
|
|
558
|
-
// scss-docs-start box-shadow-variables
|
|
559
|
-
$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
|
|
239
|
+
|
|
240
|
+
$border-radius: .25rem !default;
|
|
241
|
+
$border-radius-lg: .3rem !default;
|
|
242
|
+
$border-radius-sm: .2rem !default;
|
|
243
|
+
|
|
244
|
+
$rounded-pill: 50rem !default;
|
|
245
|
+
|
|
560
246
|
$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
|
|
247
|
+
$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
|
|
561
248
|
$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
|
|
562
|
-
$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;
|
|
563
|
-
// scss-docs-end box-shadow-variables
|
|
564
249
|
|
|
565
250
|
$component-active-color: $white !default;
|
|
566
|
-
$component-active-bg:
|
|
567
|
-
|
|
568
|
-
// scss-docs-start focus-ring-variables
|
|
569
|
-
$focus-ring-width: .25rem !default;
|
|
570
|
-
$focus-ring-opacity: .25 !default;
|
|
571
|
-
$focus-ring-color: rgba($primary, $focus-ring-opacity) !default;
|
|
572
|
-
$focus-ring-blur: 0 !default;
|
|
573
|
-
$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;
|
|
574
|
-
// scss-docs-end focus-ring-variables
|
|
251
|
+
$component-active-bg: theme-color("primary") !default;
|
|
575
252
|
|
|
576
|
-
// scss-docs-start caret-variables
|
|
577
253
|
$caret-width: .3em !default;
|
|
578
254
|
$caret-vertical-align: $caret-width * .85 !default;
|
|
579
255
|
$caret-spacing: $caret-width * .85 !default;
|
|
580
|
-
// scss-docs-end caret-variables
|
|
581
256
|
|
|
582
257
|
$transition-base: all .2s ease-in-out !default;
|
|
583
258
|
$transition-fade: opacity .15s linear !default;
|
|
584
|
-
// scss-docs-start collapse-transition
|
|
585
259
|
$transition-collapse: height .35s ease !default;
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
)
|
|
597
|
-
// scss-docs-end aspect-ratios
|
|
598
|
-
// stylelint-enable function-disallowed-list
|
|
260
|
+
|
|
261
|
+
$embed-responsive-aspect-ratios: () !default;
|
|
262
|
+
$embed-responsive-aspect-ratios: join(
|
|
263
|
+
(
|
|
264
|
+
(21 9),
|
|
265
|
+
(16 9),
|
|
266
|
+
(4 3),
|
|
267
|
+
(1 1),
|
|
268
|
+
),
|
|
269
|
+
$embed-responsive-aspect-ratios
|
|
270
|
+
);
|
|
599
271
|
|
|
600
272
|
// Typography
|
|
601
273
|
//
|
|
602
274
|
// Font, line-height, and color for body text, headings, and more.
|
|
603
275
|
|
|
604
|
-
// scss-docs-start font-variables
|
|
605
276
|
// stylelint-disable value-keyword-case
|
|
606
|
-
$font-family-sans-serif:
|
|
277
|
+
$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
607
278
|
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
|
|
279
|
+
$font-family-base: $font-family-sans-serif !default;
|
|
608
280
|
// stylelint-enable value-keyword-case
|
|
609
|
-
$font-family-base: var(--#{$prefix}font-sans-serif) !default;
|
|
610
|
-
$font-family-code: var(--#{$prefix}font-monospace) !default;
|
|
611
281
|
|
|
612
|
-
// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
|
|
613
|
-
// $font-size-base affects the font size of the body text
|
|
614
|
-
$font-size-root: null !default;
|
|
615
282
|
$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
|
|
616
|
-
$font-size-sm: $font-size-base * .875 !default;
|
|
617
283
|
$font-size-lg: $font-size-base * 1.25 !default;
|
|
284
|
+
$font-size-sm: $font-size-base * .875 !default;
|
|
618
285
|
|
|
619
286
|
$font-weight-lighter: lighter !default;
|
|
620
287
|
$font-weight-light: 300 !default;
|
|
621
288
|
$font-weight-normal: 400 !default;
|
|
622
|
-
$font-weight-medium: 500 !default;
|
|
623
|
-
$font-weight-semibold: 600 !default;
|
|
624
289
|
$font-weight-bold: 700 !default;
|
|
625
290
|
$font-weight-bolder: bolder !default;
|
|
626
291
|
|
|
627
292
|
$font-weight-base: $font-weight-normal !default;
|
|
628
|
-
|
|
629
293
|
$line-height-base: 1.5 !default;
|
|
630
|
-
$line-height-sm: 1.25 !default;
|
|
631
|
-
$line-height-lg: 2 !default;
|
|
632
294
|
|
|
633
295
|
$h1-font-size: $font-size-base * 2.5 !default;
|
|
634
296
|
$h2-font-size: $font-size-base * 2 !default;
|
|
@@ -636,186 +298,119 @@ $h3-font-size: $font-size-base * 1.75 !default;
|
|
|
636
298
|
$h4-font-size: $font-size-base * 1.5 !default;
|
|
637
299
|
$h5-font-size: $font-size-base * 1.25 !default;
|
|
638
300
|
$h6-font-size: $font-size-base !default;
|
|
639
|
-
// scss-docs-end font-variables
|
|
640
|
-
|
|
641
|
-
// scss-docs-start font-sizes
|
|
642
|
-
$font-sizes: (
|
|
643
|
-
1: $h1-font-size,
|
|
644
|
-
2: $h2-font-size,
|
|
645
|
-
3: $h3-font-size,
|
|
646
|
-
4: $h4-font-size,
|
|
647
|
-
5: $h5-font-size,
|
|
648
|
-
6: $h6-font-size
|
|
649
|
-
) !default;
|
|
650
|
-
// scss-docs-end font-sizes
|
|
651
301
|
|
|
652
|
-
|
|
653
|
-
$headings-margin-bottom: $spacer * .5 !default;
|
|
302
|
+
$headings-margin-bottom: $spacer / 2 !default;
|
|
654
303
|
$headings-font-family: null !default;
|
|
655
|
-
$headings-font-style: null !default;
|
|
656
304
|
$headings-font-weight: 500 !default;
|
|
657
305
|
$headings-line-height: 1.2 !default;
|
|
658
|
-
$headings-color:
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
$
|
|
663
|
-
|
|
664
|
-
2: 4.5rem,
|
|
665
|
-
3: 4rem,
|
|
666
|
-
4: 3.5rem,
|
|
667
|
-
5: 3rem,
|
|
668
|
-
6: 2.5rem
|
|
669
|
-
) !default;
|
|
306
|
+
$headings-color: null !default;
|
|
307
|
+
|
|
308
|
+
$display1-size: 6rem !default;
|
|
309
|
+
$display2-size: 5.5rem !default;
|
|
310
|
+
$display3-size: 4.5rem !default;
|
|
311
|
+
$display4-size: 3.5rem !default;
|
|
670
312
|
|
|
671
|
-
$
|
|
672
|
-
$
|
|
673
|
-
$
|
|
674
|
-
$
|
|
675
|
-
|
|
313
|
+
$display1-weight: 300 !default;
|
|
314
|
+
$display2-weight: 300 !default;
|
|
315
|
+
$display3-weight: 300 !default;
|
|
316
|
+
$display4-weight: 300 !default;
|
|
317
|
+
$display-line-height: $headings-line-height !default;
|
|
676
318
|
|
|
677
|
-
// scss-docs-start type-variables
|
|
678
319
|
$lead-font-size: $font-size-base * 1.25 !default;
|
|
679
320
|
$lead-font-weight: 300 !default;
|
|
680
321
|
|
|
681
|
-
$small-font-size:
|
|
682
|
-
|
|
683
|
-
$sub-sup-font-size: .75em !default;
|
|
684
|
-
|
|
685
|
-
// fusv-disable
|
|
686
|
-
$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0
|
|
687
|
-
// fusv-enable
|
|
322
|
+
$small-font-size: 80% !default;
|
|
688
323
|
|
|
689
|
-
$
|
|
324
|
+
$text-muted: $gray-600 !default;
|
|
690
325
|
|
|
691
|
-
$blockquote-
|
|
326
|
+
$blockquote-small-color: $gray-600 !default;
|
|
327
|
+
$blockquote-small-font-size: $small-font-size !default;
|
|
692
328
|
$blockquote-font-size: $font-size-base * 1.25 !default;
|
|
693
|
-
$blockquote-footer-color: $gray-600 !default;
|
|
694
|
-
$blockquote-footer-font-size: $small-font-size !default;
|
|
695
|
-
|
|
696
|
-
$hr-margin-y: $spacer !default;
|
|
697
|
-
$hr-color: inherit !default;
|
|
698
|
-
|
|
699
|
-
// fusv-disable
|
|
700
|
-
$hr-bg-color: null !default; // Deprecated in v5.2.0
|
|
701
|
-
$hr-height: null !default; // Deprecated in v5.2.0
|
|
702
|
-
// fusv-enable
|
|
703
|
-
|
|
704
|
-
$hr-border-color: null !default; // Allows for inherited colors
|
|
705
|
-
$hr-border-width: var(--#{$prefix}border-width) !default;
|
|
706
|
-
$hr-opacity: .25 !default;
|
|
707
329
|
|
|
708
|
-
|
|
709
|
-
$
|
|
710
|
-
// scss-docs-end vr-variables
|
|
330
|
+
$hr-border-color: rgba($black, .1) !default;
|
|
331
|
+
$hr-border-width: $border-width !default;
|
|
711
332
|
|
|
712
|
-
$
|
|
713
|
-
$legend-font-size: 1.5rem !default;
|
|
714
|
-
$legend-font-weight: null !default;
|
|
333
|
+
$mark-padding: .2em !default;
|
|
715
334
|
|
|
716
335
|
$dt-font-weight: $font-weight-bold !default;
|
|
717
336
|
|
|
337
|
+
$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
|
|
338
|
+
$nested-kbd-font-weight: $font-weight-bold !default;
|
|
339
|
+
|
|
718
340
|
$list-inline-padding: .5rem !default;
|
|
719
341
|
|
|
720
|
-
$mark-
|
|
721
|
-
|
|
722
|
-
$
|
|
723
|
-
// scss-docs-end type-variables
|
|
342
|
+
$mark-bg: #fcf8e3 !default;
|
|
343
|
+
|
|
344
|
+
$hr-margin-y: $spacer !default;
|
|
724
345
|
|
|
725
346
|
|
|
726
347
|
// Tables
|
|
727
348
|
//
|
|
728
349
|
// Customizes the `.table` component with basic values, each used across all table variations.
|
|
729
350
|
|
|
730
|
-
|
|
731
|
-
$table-cell-padding-
|
|
732
|
-
$table-cell-padding-x: .5rem !default;
|
|
733
|
-
$table-cell-padding-y-sm: .25rem !default;
|
|
734
|
-
$table-cell-padding-x-sm: .25rem !default;
|
|
351
|
+
$table-cell-padding: .75rem !default;
|
|
352
|
+
$table-cell-padding-sm: .3rem !default;
|
|
735
353
|
|
|
736
|
-
$table-
|
|
354
|
+
$table-color: $body-color !default;
|
|
355
|
+
$table-bg: null !default;
|
|
356
|
+
$table-accent-bg: rgba($black, .05) !default;
|
|
357
|
+
$table-hover-color: $table-color !default;
|
|
358
|
+
$table-hover-bg: rgba($black, .075) !default;
|
|
359
|
+
$table-active-bg: $table-hover-bg !default;
|
|
737
360
|
|
|
738
|
-
$table-
|
|
739
|
-
$table-
|
|
740
|
-
$table-accent-bg: transparent !default;
|
|
361
|
+
$table-border-width: $border-width !default;
|
|
362
|
+
$table-border-color: $border-color !default;
|
|
741
363
|
|
|
364
|
+
$table-head-bg: $gray-200 !default;
|
|
365
|
+
$table-head-color: $gray-700 !default;
|
|
742
366
|
$table-th-font-weight: null !default;
|
|
743
367
|
|
|
744
|
-
$table-
|
|
745
|
-
$table-
|
|
746
|
-
$table-
|
|
747
|
-
|
|
748
|
-
$table-
|
|
749
|
-
$table-
|
|
750
|
-
$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;
|
|
751
|
-
|
|
752
|
-
$table-hover-color: $table-color !default;
|
|
753
|
-
$table-hover-bg-factor: .075 !default;
|
|
754
|
-
$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;
|
|
755
|
-
|
|
756
|
-
$table-border-factor: .2 !default;
|
|
757
|
-
$table-border-width: var(--#{$prefix}border-width) !default;
|
|
758
|
-
$table-border-color: var(--#{$prefix}border-color) !default;
|
|
368
|
+
$table-dark-color: $white !default;
|
|
369
|
+
$table-dark-bg: $gray-800 !default;
|
|
370
|
+
$table-dark-accent-bg: rgba($white, .05) !default;
|
|
371
|
+
$table-dark-hover-color: $table-dark-color !default;
|
|
372
|
+
$table-dark-hover-bg: rgba($white, .075) !default;
|
|
373
|
+
$table-dark-border-color: lighten($table-dark-bg, 7.5%) !default;
|
|
759
374
|
|
|
760
375
|
$table-striped-order: odd !default;
|
|
761
|
-
$table-striped-columns-order: even !default;
|
|
762
|
-
|
|
763
|
-
$table-group-separator-color: currentcolor !default;
|
|
764
376
|
|
|
765
|
-
$table-caption-color:
|
|
377
|
+
$table-caption-color: $text-muted !default;
|
|
766
378
|
|
|
767
|
-
$table-bg-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
// scss-docs-start table-loop
|
|
771
|
-
$table-variants: (
|
|
772
|
-
"primary": shift-color($primary, $table-bg-scale),
|
|
773
|
-
"secondary": shift-color($secondary, $table-bg-scale),
|
|
774
|
-
"success": shift-color($success, $table-bg-scale),
|
|
775
|
-
"info": shift-color($info, $table-bg-scale),
|
|
776
|
-
"warning": shift-color($warning, $table-bg-scale),
|
|
777
|
-
"danger": shift-color($danger, $table-bg-scale),
|
|
778
|
-
"light": $light,
|
|
779
|
-
"dark": $dark,
|
|
780
|
-
) !default;
|
|
781
|
-
// scss-docs-end table-loop
|
|
379
|
+
$table-bg-level: -9 !default;
|
|
380
|
+
$table-border-level: -6 !default;
|
|
782
381
|
|
|
783
382
|
|
|
784
383
|
// Buttons + Forms
|
|
785
384
|
//
|
|
786
385
|
// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
|
|
787
386
|
|
|
788
|
-
// scss-docs-start input-btn-variables
|
|
789
387
|
$input-btn-padding-y: .375rem !default;
|
|
790
388
|
$input-btn-padding-x: .75rem !default;
|
|
791
389
|
$input-btn-font-family: null !default;
|
|
792
390
|
$input-btn-font-size: $font-size-base !default;
|
|
793
391
|
$input-btn-line-height: $line-height-base !default;
|
|
794
392
|
|
|
795
|
-
$input-btn-focus-width:
|
|
796
|
-
$input-btn-focus-color
|
|
797
|
-
$input-btn-focus-
|
|
798
|
-
$input-btn-focus-blur: $focus-ring-blur !default;
|
|
799
|
-
$input-btn-focus-box-shadow: $focus-ring-box-shadow !default;
|
|
393
|
+
$input-btn-focus-width: .2rem !default;
|
|
394
|
+
$input-btn-focus-color: rgba($component-active-bg, .25) !default;
|
|
395
|
+
$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
|
|
800
396
|
|
|
801
397
|
$input-btn-padding-y-sm: .25rem !default;
|
|
802
398
|
$input-btn-padding-x-sm: .5rem !default;
|
|
803
399
|
$input-btn-font-size-sm: $font-size-sm !default;
|
|
400
|
+
$input-btn-line-height-sm: $line-height-sm !default;
|
|
804
401
|
|
|
805
402
|
$input-btn-padding-y-lg: .5rem !default;
|
|
806
403
|
$input-btn-padding-x-lg: 1rem !default;
|
|
807
404
|
$input-btn-font-size-lg: $font-size-lg !default;
|
|
405
|
+
$input-btn-line-height-lg: $line-height-lg !default;
|
|
808
406
|
|
|
809
|
-
$input-btn-border-width:
|
|
810
|
-
// scss-docs-end input-btn-variables
|
|
407
|
+
$input-btn-border-width: $border-width !default;
|
|
811
408
|
|
|
812
409
|
|
|
813
410
|
// Buttons
|
|
814
411
|
//
|
|
815
412
|
// For each of Bootstrap's buttons, define text, background, and border color.
|
|
816
413
|
|
|
817
|
-
// scss-docs-start btn-variables
|
|
818
|
-
$btn-color: var(--#{$prefix}body-color) !default;
|
|
819
414
|
$btn-padding-y: $input-btn-padding-y !default;
|
|
820
415
|
$btn-padding-x: $input-btn-padding-x !default;
|
|
821
416
|
$btn-font-family: $input-btn-font-family !default;
|
|
@@ -826,10 +421,12 @@ $btn-white-space: null !default; // Set to `nowrap` to prevent text
|
|
|
826
421
|
$btn-padding-y-sm: $input-btn-padding-y-sm !default;
|
|
827
422
|
$btn-padding-x-sm: $input-btn-padding-x-sm !default;
|
|
828
423
|
$btn-font-size-sm: $input-btn-font-size-sm !default;
|
|
424
|
+
$btn-line-height-sm: $input-btn-line-height-sm !default;
|
|
829
425
|
|
|
830
426
|
$btn-padding-y-lg: $input-btn-padding-y-lg !default;
|
|
831
427
|
$btn-padding-x-lg: $input-btn-padding-x-lg !default;
|
|
832
428
|
$btn-font-size-lg: $input-btn-font-size-lg !default;
|
|
429
|
+
$btn-line-height-lg: $input-btn-line-height-lg !default;
|
|
833
430
|
|
|
834
431
|
$btn-border-width: $input-btn-border-width !default;
|
|
835
432
|
|
|
@@ -840,48 +437,22 @@ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
|
840
437
|
$btn-disabled-opacity: .65 !default;
|
|
841
438
|
$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
|
|
842
439
|
|
|
843
|
-
$btn-link-color: var(--#{$prefix}link-color) !default;
|
|
844
|
-
$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
|
|
845
440
|
$btn-link-disabled-color: $gray-600 !default;
|
|
846
|
-
|
|
441
|
+
|
|
442
|
+
$btn-block-spacing-y: .5rem !default;
|
|
847
443
|
|
|
848
444
|
// Allows for customizing button radius independently from global border radius
|
|
849
|
-
$btn-border-radius:
|
|
850
|
-
$btn-border-radius-
|
|
851
|
-
$btn-border-radius-
|
|
445
|
+
$btn-border-radius: $border-radius !default;
|
|
446
|
+
$btn-border-radius-lg: $border-radius-lg !default;
|
|
447
|
+
$btn-border-radius-sm: $border-radius-sm !default;
|
|
852
448
|
|
|
853
449
|
$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
|
|
854
450
|
|
|
855
|
-
$btn-hover-bg-shade-amount: 15% !default;
|
|
856
|
-
$btn-hover-bg-tint-amount: 15% !default;
|
|
857
|
-
$btn-hover-border-shade-amount: 20% !default;
|
|
858
|
-
$btn-hover-border-tint-amount: 10% !default;
|
|
859
|
-
$btn-active-bg-shade-amount: 20% !default;
|
|
860
|
-
$btn-active-bg-tint-amount: 20% !default;
|
|
861
|
-
$btn-active-border-shade-amount: 25% !default;
|
|
862
|
-
$btn-active-border-tint-amount: 10% !default;
|
|
863
|
-
// scss-docs-end btn-variables
|
|
864
|
-
|
|
865
451
|
|
|
866
452
|
// Forms
|
|
867
453
|
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
$form-text-font-size: $small-font-size !default;
|
|
871
|
-
$form-text-font-style: null !default;
|
|
872
|
-
$form-text-font-weight: null !default;
|
|
873
|
-
$form-text-color: var(--#{$prefix}secondary-color) !default;
|
|
874
|
-
// scss-docs-end form-text-variables
|
|
875
|
-
|
|
876
|
-
// scss-docs-start form-label-variables
|
|
877
|
-
$form-label-margin-bottom: .5rem !default;
|
|
878
|
-
$form-label-font-size: null !default;
|
|
879
|
-
$form-label-font-style: null !default;
|
|
880
|
-
$form-label-font-weight: null !default;
|
|
881
|
-
$form-label-color: null !default;
|
|
882
|
-
// scss-docs-end form-label-variables
|
|
883
|
-
|
|
884
|
-
// scss-docs-start form-input-variables
|
|
454
|
+
$label-margin-bottom: .5rem !default;
|
|
455
|
+
|
|
885
456
|
$input-padding-y: $input-btn-padding-y !default;
|
|
886
457
|
$input-padding-x: $input-btn-padding-x !default;
|
|
887
458
|
$input-font-family: $input-btn-font-family !default;
|
|
@@ -892,303 +463,260 @@ $input-line-height: $input-btn-line-height !default;
|
|
|
892
463
|
$input-padding-y-sm: $input-btn-padding-y-sm !default;
|
|
893
464
|
$input-padding-x-sm: $input-btn-padding-x-sm !default;
|
|
894
465
|
$input-font-size-sm: $input-btn-font-size-sm !default;
|
|
466
|
+
$input-line-height-sm: $input-btn-line-height-sm !default;
|
|
895
467
|
|
|
896
468
|
$input-padding-y-lg: $input-btn-padding-y-lg !default;
|
|
897
469
|
$input-padding-x-lg: $input-btn-padding-x-lg !default;
|
|
898
470
|
$input-font-size-lg: $input-btn-font-size-lg !default;
|
|
471
|
+
$input-line-height-lg: $input-btn-line-height-lg !default;
|
|
899
472
|
|
|
900
|
-
$input-bg:
|
|
901
|
-
$input-disabled-
|
|
902
|
-
$input-disabled-bg: var(--#{$prefix}secondary-bg) !default;
|
|
903
|
-
$input-disabled-border-color: null !default;
|
|
473
|
+
$input-bg: $white !default;
|
|
474
|
+
$input-disabled-bg: $gray-200 !default;
|
|
904
475
|
|
|
905
|
-
$input-color:
|
|
906
|
-
$input-border-color:
|
|
476
|
+
$input-color: $gray-700 !default;
|
|
477
|
+
$input-border-color: $gray-400 !default;
|
|
907
478
|
$input-border-width: $input-btn-border-width !default;
|
|
908
|
-
$input-box-shadow:
|
|
479
|
+
$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
|
|
909
480
|
|
|
910
|
-
$input-border-radius:
|
|
911
|
-
$input-border-radius-
|
|
912
|
-
$input-border-radius-
|
|
481
|
+
$input-border-radius: $border-radius !default;
|
|
482
|
+
$input-border-radius-lg: $border-radius-lg !default;
|
|
483
|
+
$input-border-radius-sm: $border-radius-sm !default;
|
|
913
484
|
|
|
914
485
|
$input-focus-bg: $input-bg !default;
|
|
915
|
-
$input-focus-border-color:
|
|
486
|
+
$input-focus-border-color: lighten($component-active-bg, 25%) !default;
|
|
916
487
|
$input-focus-color: $input-color !default;
|
|
917
488
|
$input-focus-width: $input-btn-focus-width !default;
|
|
918
489
|
$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
919
490
|
|
|
920
|
-
$input-placeholder-color:
|
|
921
|
-
$input-plaintext-color:
|
|
491
|
+
$input-placeholder-color: $gray-600 !default;
|
|
492
|
+
$input-plaintext-color: $body-color !default;
|
|
922
493
|
|
|
923
|
-
$input-height-border:
|
|
494
|
+
$input-height-border: $input-border-width * 2 !default;
|
|
924
495
|
|
|
925
496
|
$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;
|
|
926
497
|
$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;
|
|
927
|
-
$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y
|
|
498
|
+
$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y / 2) !default;
|
|
928
499
|
|
|
929
500
|
$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;
|
|
930
|
-
$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
|
|
931
|
-
$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
|
|
501
|
+
$input-height-sm: add($input-line-height-sm * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
|
|
502
|
+
$input-height-lg: add($input-line-height-lg * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
|
|
932
503
|
|
|
933
504
|
$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
|
|
934
505
|
|
|
935
|
-
$form-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
$form-check-input-
|
|
940
|
-
|
|
941
|
-
$form-check-
|
|
942
|
-
$form-check-margin-
|
|
943
|
-
|
|
944
|
-
$form-
|
|
945
|
-
$form-
|
|
946
|
-
|
|
947
|
-
$form-check-input-active-filter: brightness(90%) !default;
|
|
948
|
-
|
|
949
|
-
$form-check-input-bg: $input-bg !default;
|
|
950
|
-
$form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;
|
|
951
|
-
$form-check-input-border-radius: .25em !default;
|
|
952
|
-
$form-check-radio-border-radius: 50% !default;
|
|
953
|
-
$form-check-input-focus-border: $input-focus-border-color !default;
|
|
954
|
-
$form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;
|
|
955
|
-
|
|
956
|
-
$form-check-input-checked-color: $component-active-color !default;
|
|
957
|
-
$form-check-input-checked-bg-color: $component-active-bg !default;
|
|
958
|
-
$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;
|
|
959
|
-
$form-check-input-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-checked-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>") !default;
|
|
960
|
-
$form-check-radio-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='#{$form-check-input-checked-color}'/></svg>") !default;
|
|
961
|
-
|
|
962
|
-
$form-check-input-indeterminate-color: $component-active-color !default;
|
|
963
|
-
$form-check-input-indeterminate-bg-color: $component-active-bg !default;
|
|
964
|
-
$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;
|
|
965
|
-
$form-check-input-indeterminate-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-indeterminate-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") !default;
|
|
966
|
-
|
|
967
|
-
$form-check-input-disabled-opacity: .5 !default;
|
|
968
|
-
$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;
|
|
969
|
-
$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;
|
|
970
|
-
|
|
971
|
-
$form-check-inline-margin-end: 1rem !default;
|
|
972
|
-
// scss-docs-end form-check-variables
|
|
973
|
-
|
|
974
|
-
// scss-docs-start form-switch-variables
|
|
975
|
-
$form-switch-color: rgba($black, .25) !default;
|
|
976
|
-
$form-switch-width: 2em !default;
|
|
977
|
-
$form-switch-padding-start: $form-switch-width + .5em !default;
|
|
978
|
-
$form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color}'/></svg>") !default;
|
|
979
|
-
$form-switch-border-radius: $form-switch-width !default;
|
|
980
|
-
$form-switch-transition: background-position .15s ease-in-out !default;
|
|
981
|
-
|
|
982
|
-
$form-switch-focus-color: $input-focus-border-color !default;
|
|
983
|
-
$form-switch-focus-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-focus-color}'/></svg>") !default;
|
|
984
|
-
|
|
985
|
-
$form-switch-checked-color: $component-active-color !default;
|
|
986
|
-
$form-switch-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-checked-color}'/></svg>") !default;
|
|
987
|
-
$form-switch-checked-bg-position: right center !default;
|
|
988
|
-
// scss-docs-end form-switch-variables
|
|
989
|
-
|
|
990
|
-
// scss-docs-start input-group-variables
|
|
991
|
-
$input-group-addon-padding-y: $input-padding-y !default;
|
|
992
|
-
$input-group-addon-padding-x: $input-padding-x !default;
|
|
993
|
-
$input-group-addon-font-weight: $input-font-weight !default;
|
|
506
|
+
$form-text-margin-top: .25rem !default;
|
|
507
|
+
|
|
508
|
+
$form-check-input-gutter: 1.25rem !default;
|
|
509
|
+
$form-check-input-margin-y: .3rem !default;
|
|
510
|
+
$form-check-input-margin-x: .25rem !default;
|
|
511
|
+
|
|
512
|
+
$form-check-inline-margin-x: .75rem !default;
|
|
513
|
+
$form-check-inline-input-margin-x: .3125rem !default;
|
|
514
|
+
|
|
515
|
+
$form-grid-gutter-width: 10px !default;
|
|
516
|
+
$form-group-margin-bottom: 1rem !default;
|
|
517
|
+
|
|
994
518
|
$input-group-addon-color: $input-color !default;
|
|
995
|
-
$input-group-addon-bg:
|
|
519
|
+
$input-group-addon-bg: $gray-200 !default;
|
|
996
520
|
$input-group-addon-border-color: $input-border-color !default;
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
$
|
|
1001
|
-
$
|
|
1002
|
-
$
|
|
1003
|
-
|
|
1004
|
-
$
|
|
1005
|
-
$
|
|
1006
|
-
|
|
1007
|
-
$
|
|
1008
|
-
$
|
|
1009
|
-
$
|
|
1010
|
-
$
|
|
1011
|
-
|
|
1012
|
-
$
|
|
1013
|
-
|
|
1014
|
-
$
|
|
1015
|
-
$
|
|
1016
|
-
|
|
1017
|
-
$
|
|
1018
|
-
$
|
|
1019
|
-
$
|
|
1020
|
-
|
|
1021
|
-
$
|
|
1022
|
-
|
|
1023
|
-
$
|
|
1024
|
-
$
|
|
1025
|
-
|
|
1026
|
-
$
|
|
1027
|
-
$
|
|
1028
|
-
$
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
$
|
|
1032
|
-
$
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
$
|
|
1036
|
-
$
|
|
1037
|
-
$
|
|
1038
|
-
$
|
|
1039
|
-
|
|
1040
|
-
$
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
$
|
|
1045
|
-
$
|
|
1046
|
-
|
|
1047
|
-
$
|
|
1048
|
-
$
|
|
1049
|
-
$
|
|
1050
|
-
|
|
1051
|
-
$
|
|
1052
|
-
$
|
|
1053
|
-
$
|
|
1054
|
-
$
|
|
1055
|
-
$
|
|
1056
|
-
$
|
|
1057
|
-
$
|
|
1058
|
-
$
|
|
1059
|
-
$
|
|
1060
|
-
$
|
|
1061
|
-
$
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
$
|
|
1066
|
-
$
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
$
|
|
1072
|
-
|
|
1073
|
-
$
|
|
1074
|
-
$
|
|
1075
|
-
$
|
|
1076
|
-
|
|
1077
|
-
$
|
|
1078
|
-
$
|
|
1079
|
-
$
|
|
1080
|
-
$
|
|
1081
|
-
|
|
1082
|
-
|
|
521
|
+
|
|
522
|
+
$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
|
|
523
|
+
|
|
524
|
+
$custom-control-gutter: .5rem !default;
|
|
525
|
+
$custom-control-spacer-x: 1rem !default;
|
|
526
|
+
$custom-control-cursor: null !default;
|
|
527
|
+
|
|
528
|
+
$custom-control-indicator-size: 1rem !default;
|
|
529
|
+
$custom-control-indicator-bg: $input-bg !default;
|
|
530
|
+
|
|
531
|
+
$custom-control-indicator-bg-size: 50% 50% !default;
|
|
532
|
+
$custom-control-indicator-box-shadow: $input-box-shadow !default;
|
|
533
|
+
$custom-control-indicator-border-color: $gray-500 !default;
|
|
534
|
+
$custom-control-indicator-border-width: $input-border-width !default;
|
|
535
|
+
|
|
536
|
+
$custom-control-label-color: null !default;
|
|
537
|
+
|
|
538
|
+
$custom-control-indicator-disabled-bg: $input-disabled-bg !default;
|
|
539
|
+
$custom-control-label-disabled-color: $gray-600 !default;
|
|
540
|
+
|
|
541
|
+
$custom-control-indicator-checked-color: $component-active-color !default;
|
|
542
|
+
$custom-control-indicator-checked-bg: $component-active-bg !default;
|
|
543
|
+
$custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
|
|
544
|
+
$custom-control-indicator-checked-box-shadow: null !default;
|
|
545
|
+
$custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;
|
|
546
|
+
|
|
547
|
+
$custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;
|
|
548
|
+
$custom-control-indicator-focus-border-color: $input-focus-border-color !default;
|
|
549
|
+
|
|
550
|
+
$custom-control-indicator-active-color: $component-active-color !default;
|
|
551
|
+
$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
|
|
552
|
+
$custom-control-indicator-active-box-shadow: null !default;
|
|
553
|
+
$custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
|
|
554
|
+
|
|
555
|
+
$custom-checkbox-indicator-border-radius: $border-radius !default;
|
|
556
|
+
$custom-checkbox-indicator-icon-checked: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>") !default;
|
|
557
|
+
|
|
558
|
+
$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
|
|
559
|
+
$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
|
|
560
|
+
$custom-checkbox-indicator-icon-indeterminate: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'><path stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/></svg>") !default;
|
|
561
|
+
$custom-checkbox-indicator-indeterminate-box-shadow: null !default;
|
|
562
|
+
$custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
|
|
563
|
+
|
|
564
|
+
$custom-radio-indicator-border-radius: 50% !default;
|
|
565
|
+
$custom-radio-indicator-icon-checked: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'><circle r='3' fill='#{$custom-control-indicator-checked-color}'/></svg>") !default;
|
|
566
|
+
|
|
567
|
+
$custom-switch-width: $custom-control-indicator-size * 1.75 !default;
|
|
568
|
+
$custom-switch-indicator-border-radius: $custom-control-indicator-size / 2 !default;
|
|
569
|
+
$custom-switch-indicator-size: subtract($custom-control-indicator-size, $custom-control-indicator-border-width * 4) !default;
|
|
570
|
+
|
|
571
|
+
$custom-select-padding-y: $input-padding-y !default;
|
|
572
|
+
$custom-select-padding-x: $input-padding-x !default;
|
|
573
|
+
$custom-select-font-family: $input-font-family !default;
|
|
574
|
+
$custom-select-font-size: $input-font-size !default;
|
|
575
|
+
$custom-select-height: $input-height !default;
|
|
576
|
+
$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
|
|
577
|
+
$custom-select-font-weight: $input-font-weight !default;
|
|
578
|
+
$custom-select-line-height: $input-line-height !default;
|
|
579
|
+
$custom-select-color: $input-color !default;
|
|
580
|
+
$custom-select-disabled-color: $gray-600 !default;
|
|
581
|
+
$custom-select-bg: $input-bg !default;
|
|
582
|
+
$custom-select-disabled-bg: $gray-200 !default;
|
|
583
|
+
$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
|
|
584
|
+
$custom-select-indicator-color: $gray-800 !default;
|
|
585
|
+
$custom-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") !default;
|
|
586
|
+
$custom-select-background: escape-svg($custom-select-indicator) no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
|
|
587
|
+
|
|
588
|
+
$custom-select-feedback-icon-padding-right: add(1em * .75, (2 * $custom-select-padding-y * .75) + $custom-select-padding-x + $custom-select-indicator-padding) !default;
|
|
589
|
+
$custom-select-feedback-icon-position: center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;
|
|
590
|
+
$custom-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
|
|
591
|
+
|
|
592
|
+
$custom-select-border-width: $input-border-width !default;
|
|
593
|
+
$custom-select-border-color: $input-border-color !default;
|
|
594
|
+
$custom-select-border-radius: $border-radius !default;
|
|
595
|
+
$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;
|
|
596
|
+
|
|
597
|
+
$custom-select-focus-border-color: $input-focus-border-color !default;
|
|
598
|
+
$custom-select-focus-width: $input-focus-width !default;
|
|
599
|
+
$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width $input-btn-focus-color !default;
|
|
600
|
+
|
|
601
|
+
$custom-select-padding-y-sm: $input-padding-y-sm !default;
|
|
602
|
+
$custom-select-padding-x-sm: $input-padding-x-sm !default;
|
|
603
|
+
$custom-select-font-size-sm: $input-font-size-sm !default;
|
|
604
|
+
$custom-select-height-sm: $input-height-sm !default;
|
|
605
|
+
|
|
606
|
+
$custom-select-padding-y-lg: $input-padding-y-lg !default;
|
|
607
|
+
$custom-select-padding-x-lg: $input-padding-x-lg !default;
|
|
608
|
+
$custom-select-font-size-lg: $input-font-size-lg !default;
|
|
609
|
+
$custom-select-height-lg: $input-height-lg !default;
|
|
610
|
+
|
|
611
|
+
$custom-range-track-width: 100% !default;
|
|
612
|
+
$custom-range-track-height: .5rem !default;
|
|
613
|
+
$custom-range-track-cursor: pointer !default;
|
|
614
|
+
$custom-range-track-bg: $gray-300 !default;
|
|
615
|
+
$custom-range-track-border-radius: 1rem !default;
|
|
616
|
+
$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
|
|
617
|
+
|
|
618
|
+
$custom-range-thumb-width: 1rem !default;
|
|
619
|
+
$custom-range-thumb-height: $custom-range-thumb-width !default;
|
|
620
|
+
$custom-range-thumb-bg: $component-active-bg !default;
|
|
621
|
+
$custom-range-thumb-border: 0 !default;
|
|
622
|
+
$custom-range-thumb-border-radius: 1rem !default;
|
|
623
|
+
$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
|
|
624
|
+
$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
|
|
625
|
+
$custom-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in IE/Edge
|
|
626
|
+
$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
|
|
627
|
+
$custom-range-thumb-disabled-bg: $gray-500 !default;
|
|
628
|
+
|
|
629
|
+
$custom-file-height: $input-height !default;
|
|
630
|
+
$custom-file-height-inner: $input-height-inner !default;
|
|
631
|
+
$custom-file-focus-border-color: $input-focus-border-color !default;
|
|
632
|
+
$custom-file-focus-box-shadow: $input-focus-box-shadow !default;
|
|
633
|
+
$custom-file-disabled-bg: $input-disabled-bg !default;
|
|
634
|
+
|
|
635
|
+
$custom-file-padding-y: $input-padding-y !default;
|
|
636
|
+
$custom-file-padding-x: $input-padding-x !default;
|
|
637
|
+
$custom-file-line-height: $input-line-height !default;
|
|
638
|
+
$custom-file-font-family: $input-font-family !default;
|
|
639
|
+
$custom-file-font-weight: $input-font-weight !default;
|
|
640
|
+
$custom-file-color: $input-color !default;
|
|
641
|
+
$custom-file-bg: $input-bg !default;
|
|
642
|
+
$custom-file-border-width: $input-border-width !default;
|
|
643
|
+
$custom-file-border-color: $input-border-color !default;
|
|
644
|
+
$custom-file-border-radius: $input-border-radius !default;
|
|
645
|
+
$custom-file-box-shadow: $input-box-shadow !default;
|
|
646
|
+
$custom-file-button-color: $custom-file-color !default;
|
|
647
|
+
$custom-file-button-bg: $input-group-addon-bg !default;
|
|
648
|
+
$custom-file-text: (
|
|
649
|
+
en: "Browse"
|
|
650
|
+
) !default;
|
|
651
|
+
|
|
1083
652
|
|
|
1084
653
|
// Form validation
|
|
1085
654
|
|
|
1086
|
-
// scss-docs-start form-feedback-variables
|
|
1087
655
|
$form-feedback-margin-top: $form-text-margin-top !default;
|
|
1088
|
-
$form-feedback-font-size: $
|
|
1089
|
-
$form-feedback-
|
|
1090
|
-
$form-feedback-
|
|
1091
|
-
$form-feedback-invalid-color: $danger !default;
|
|
656
|
+
$form-feedback-font-size: $small-font-size !default;
|
|
657
|
+
$form-feedback-valid-color: theme-color("success") !default;
|
|
658
|
+
$form-feedback-invalid-color: theme-color("danger") !default;
|
|
1092
659
|
|
|
1093
660
|
$form-feedback-icon-valid-color: $form-feedback-valid-color !default;
|
|
1094
|
-
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.
|
|
661
|
+
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>") !default;
|
|
1095
662
|
$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
|
|
1096
|
-
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
$form-
|
|
1108
|
-
|
|
1109
|
-
"color": var(--#{$prefix}form-valid-color),
|
|
1110
|
-
"icon": $form-feedback-icon-valid,
|
|
1111
|
-
"tooltip-color": #fff,
|
|
1112
|
-
"tooltip-bg-color": var(--#{$prefix}success),
|
|
1113
|
-
"focus-box-shadow": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),
|
|
1114
|
-
"border-color": var(--#{$prefix}form-valid-border-color),
|
|
663
|
+
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}' viewBox='0 0 12 12'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>") !default;
|
|
664
|
+
|
|
665
|
+
$form-validation-states: () !default;
|
|
666
|
+
$form-validation-states: map-merge(
|
|
667
|
+
(
|
|
668
|
+
"valid": (
|
|
669
|
+
"color": $form-feedback-valid-color,
|
|
670
|
+
"icon": $form-feedback-icon-valid
|
|
671
|
+
),
|
|
672
|
+
"invalid": (
|
|
673
|
+
"color": $form-feedback-invalid-color,
|
|
674
|
+
"icon": $form-feedback-icon-invalid
|
|
675
|
+
),
|
|
1115
676
|
),
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
"icon": $form-feedback-icon-invalid,
|
|
1119
|
-
"tooltip-color": #fff,
|
|
1120
|
-
"tooltip-bg-color": var(--#{$prefix}danger),
|
|
1121
|
-
"focus-box-shadow": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),
|
|
1122
|
-
"border-color": var(--#{$prefix}form-invalid-border-color),
|
|
1123
|
-
)
|
|
1124
|
-
) !default;
|
|
1125
|
-
// scss-docs-end form-validation-states
|
|
677
|
+
$form-validation-states
|
|
678
|
+
);
|
|
1126
679
|
|
|
1127
680
|
// Z-index master list
|
|
1128
681
|
//
|
|
1129
682
|
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
|
1130
683
|
// of components dependent on the z-axis and are designed to all work together.
|
|
1131
684
|
|
|
1132
|
-
// scss-docs-start zindex-stack
|
|
1133
685
|
$zindex-dropdown: 1000 !default;
|
|
1134
686
|
$zindex-sticky: 1020 !default;
|
|
1135
687
|
$zindex-fixed: 1030 !default;
|
|
1136
|
-
$zindex-
|
|
1137
|
-
$zindex-
|
|
1138
|
-
$zindex-
|
|
1139
|
-
$zindex-
|
|
1140
|
-
$zindex-popover: 1070 !default;
|
|
1141
|
-
$zindex-tooltip: 1080 !default;
|
|
1142
|
-
$zindex-toast: 1090 !default;
|
|
1143
|
-
// scss-docs-end zindex-stack
|
|
1144
|
-
|
|
1145
|
-
// scss-docs-start zindex-levels-map
|
|
1146
|
-
$zindex-levels: (
|
|
1147
|
-
n1: -1,
|
|
1148
|
-
0: 0,
|
|
1149
|
-
1: 1,
|
|
1150
|
-
2: 2,
|
|
1151
|
-
3: 3
|
|
1152
|
-
) !default;
|
|
1153
|
-
// scss-docs-end zindex-levels-map
|
|
688
|
+
$zindex-modal-backdrop: 1040 !default;
|
|
689
|
+
$zindex-modal: 1050 !default;
|
|
690
|
+
$zindex-popover: 1060 !default;
|
|
691
|
+
$zindex-tooltip: 1070 !default;
|
|
1154
692
|
|
|
1155
693
|
|
|
1156
694
|
// Navs
|
|
1157
695
|
|
|
1158
|
-
// scss-docs-start nav-variables
|
|
1159
696
|
$nav-link-padding-y: .5rem !default;
|
|
1160
697
|
$nav-link-padding-x: 1rem !default;
|
|
1161
|
-
$nav-link-
|
|
1162
|
-
|
|
1163
|
-
$nav-
|
|
1164
|
-
$nav-
|
|
1165
|
-
$nav-
|
|
1166
|
-
$nav-link-
|
|
1167
|
-
$nav-link-
|
|
1168
|
-
|
|
1169
|
-
$nav-tabs-border-color:
|
|
1170
|
-
|
|
1171
|
-
$nav-
|
|
1172
|
-
$nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;
|
|
1173
|
-
$nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;
|
|
1174
|
-
$nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;
|
|
1175
|
-
$nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;
|
|
1176
|
-
|
|
1177
|
-
$nav-pills-border-radius: var(--#{$prefix}border-radius) !default;
|
|
698
|
+
$nav-link-disabled-color: $gray-600 !default;
|
|
699
|
+
|
|
700
|
+
$nav-tabs-border-color: $gray-300 !default;
|
|
701
|
+
$nav-tabs-border-width: $border-width !default;
|
|
702
|
+
$nav-tabs-border-radius: $border-radius !default;
|
|
703
|
+
$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
|
|
704
|
+
$nav-tabs-link-active-color: $gray-700 !default;
|
|
705
|
+
$nav-tabs-link-active-bg: $body-bg !default;
|
|
706
|
+
$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
|
|
707
|
+
|
|
708
|
+
$nav-pills-border-radius: $border-radius !default;
|
|
1178
709
|
$nav-pills-link-active-color: $component-active-color !default;
|
|
1179
710
|
$nav-pills-link-active-bg: $component-active-bg !default;
|
|
1180
711
|
|
|
1181
|
-
$nav-
|
|
1182
|
-
$nav-
|
|
1183
|
-
$nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;
|
|
1184
|
-
// scss-docs-end nav-variables
|
|
712
|
+
$nav-divider-color: $gray-200 !default;
|
|
713
|
+
$nav-divider-margin-y: $spacer / 2 !default;
|
|
1185
714
|
|
|
1186
715
|
|
|
1187
716
|
// Navbar
|
|
1188
717
|
|
|
1189
|
-
|
|
1190
|
-
$navbar-padding-
|
|
1191
|
-
$navbar-padding-x: null !default;
|
|
718
|
+
$navbar-padding-y: $spacer / 2 !default;
|
|
719
|
+
$navbar-padding-x: $spacer !default;
|
|
1192
720
|
|
|
1193
721
|
$navbar-nav-link-padding-x: .5rem !default;
|
|
1194
722
|
|
|
@@ -1196,310 +724,223 @@ $navbar-brand-font-size: $font-size-lg !default;
|
|
|
1196
724
|
// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
|
|
1197
725
|
$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
|
|
1198
726
|
$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
|
|
1199
|
-
$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height)
|
|
1200
|
-
$navbar-brand-margin-end: 1rem !default;
|
|
727
|
+
$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
|
|
1201
728
|
|
|
1202
729
|
$navbar-toggler-padding-y: .25rem !default;
|
|
1203
730
|
$navbar-toggler-padding-x: .75rem !default;
|
|
1204
731
|
$navbar-toggler-font-size: $font-size-lg !default;
|
|
1205
732
|
$navbar-toggler-border-radius: $btn-border-radius !default;
|
|
1206
|
-
|
|
1207
|
-
$navbar-
|
|
1208
|
-
|
|
1209
|
-
$navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default;
|
|
1210
|
-
$navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default;
|
|
1211
|
-
$navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default;
|
|
1212
|
-
$navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default;
|
|
1213
|
-
$navbar-light-icon-color: rgba($body-color, .75) !default;
|
|
1214
|
-
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-icon-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
|
1215
|
-
$navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;
|
|
1216
|
-
$navbar-light-brand-color: $navbar-light-active-color !default;
|
|
1217
|
-
$navbar-light-brand-hover-color: $navbar-light-active-color !default;
|
|
1218
|
-
// scss-docs-end navbar-variables
|
|
1219
|
-
|
|
1220
|
-
// scss-docs-start navbar-dark-variables
|
|
1221
|
-
$navbar-dark-color: rgba($white, .55) !default;
|
|
733
|
+
|
|
734
|
+
$navbar-dark-color: rgba($white, .5) !default;
|
|
1222
735
|
$navbar-dark-hover-color: rgba($white, .75) !default;
|
|
1223
736
|
$navbar-dark-active-color: $white !default;
|
|
1224
737
|
$navbar-dark-disabled-color: rgba($white, .25) !default;
|
|
1225
|
-
$navbar-dark-icon-
|
|
1226
|
-
$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-icon-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
|
738
|
+
$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
|
1227
739
|
$navbar-dark-toggler-border-color: rgba($white, .1) !default;
|
|
1228
|
-
|
|
1229
|
-
$navbar-
|
|
1230
|
-
|
|
740
|
+
|
|
741
|
+
$navbar-light-color: rgba($black, .5) !default;
|
|
742
|
+
$navbar-light-hover-color: rgba($black, .7) !default;
|
|
743
|
+
$navbar-light-active-color: rgba($black, .9) !default;
|
|
744
|
+
$navbar-light-disabled-color: rgba($black, .3) !default;
|
|
745
|
+
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
|
746
|
+
$navbar-light-toggler-border-color: rgba($black, .1) !default;
|
|
747
|
+
|
|
748
|
+
$navbar-light-brand-color: $navbar-light-active-color !default;
|
|
749
|
+
$navbar-light-brand-hover-color: $navbar-light-active-color !default;
|
|
750
|
+
$navbar-dark-brand-color: $navbar-dark-active-color !default;
|
|
751
|
+
$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
|
|
1231
752
|
|
|
1232
753
|
|
|
1233
754
|
// Dropdowns
|
|
1234
755
|
//
|
|
1235
756
|
// Dropdown menu container and contents.
|
|
1236
757
|
|
|
1237
|
-
// scss-docs-start dropdown-variables
|
|
1238
758
|
$dropdown-min-width: 10rem !default;
|
|
1239
759
|
$dropdown-padding-x: 0 !default;
|
|
1240
760
|
$dropdown-padding-y: .5rem !default;
|
|
1241
761
|
$dropdown-spacer: .125rem !default;
|
|
1242
762
|
$dropdown-font-size: $font-size-base !default;
|
|
1243
|
-
$dropdown-color:
|
|
1244
|
-
$dropdown-bg:
|
|
1245
|
-
$dropdown-border-color:
|
|
1246
|
-
$dropdown-border-radius:
|
|
1247
|
-
$dropdown-border-width:
|
|
1248
|
-
$dropdown-inner-border-radius:
|
|
1249
|
-
$dropdown-divider-bg: $
|
|
1250
|
-
$dropdown-divider-margin-y: $
|
|
1251
|
-
$dropdown-box-shadow:
|
|
1252
|
-
|
|
1253
|
-
$dropdown-link-color:
|
|
1254
|
-
$dropdown-link-hover-color: $
|
|
1255
|
-
$dropdown-link-hover-bg:
|
|
763
|
+
$dropdown-color: $body-color !default;
|
|
764
|
+
$dropdown-bg: $white !default;
|
|
765
|
+
$dropdown-border-color: rgba($black, .15) !default;
|
|
766
|
+
$dropdown-border-radius: $border-radius !default;
|
|
767
|
+
$dropdown-border-width: $border-width !default;
|
|
768
|
+
$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
|
|
769
|
+
$dropdown-divider-bg: $gray-200 !default;
|
|
770
|
+
$dropdown-divider-margin-y: $nav-divider-margin-y !default;
|
|
771
|
+
$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
|
|
772
|
+
|
|
773
|
+
$dropdown-link-color: $gray-900 !default;
|
|
774
|
+
$dropdown-link-hover-color: darken($gray-900, 5%) !default;
|
|
775
|
+
$dropdown-link-hover-bg: $gray-100 !default;
|
|
1256
776
|
|
|
1257
777
|
$dropdown-link-active-color: $component-active-color !default;
|
|
1258
778
|
$dropdown-link-active-bg: $component-active-bg !default;
|
|
1259
779
|
|
|
1260
|
-
$dropdown-link-disabled-color:
|
|
780
|
+
$dropdown-link-disabled-color: $gray-600 !default;
|
|
1261
781
|
|
|
1262
|
-
$dropdown-item-padding-y:
|
|
1263
|
-
$dropdown-item-padding-x:
|
|
782
|
+
$dropdown-item-padding-y: .25rem !default;
|
|
783
|
+
$dropdown-item-padding-x: 1.5rem !default;
|
|
1264
784
|
|
|
1265
785
|
$dropdown-header-color: $gray-600 !default;
|
|
1266
|
-
$dropdown-header-padding
|
|
1267
|
-
$dropdown-header-padding-y: $dropdown-padding-y !default;
|
|
1268
|
-
// fusv-disable
|
|
1269
|
-
$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0
|
|
1270
|
-
// fusv-enable
|
|
1271
|
-
// scss-docs-end dropdown-variables
|
|
1272
|
-
|
|
1273
|
-
// scss-docs-start dropdown-dark-variables
|
|
1274
|
-
$dropdown-dark-color: $gray-300 !default;
|
|
1275
|
-
$dropdown-dark-bg: $gray-800 !default;
|
|
1276
|
-
$dropdown-dark-border-color: $dropdown-border-color !default;
|
|
1277
|
-
$dropdown-dark-divider-bg: $dropdown-divider-bg !default;
|
|
1278
|
-
$dropdown-dark-box-shadow: null !default;
|
|
1279
|
-
$dropdown-dark-link-color: $dropdown-dark-color !default;
|
|
1280
|
-
$dropdown-dark-link-hover-color: $white !default;
|
|
1281
|
-
$dropdown-dark-link-hover-bg: rgba($white, .15) !default;
|
|
1282
|
-
$dropdown-dark-link-active-color: $dropdown-link-active-color !default;
|
|
1283
|
-
$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;
|
|
1284
|
-
$dropdown-dark-link-disabled-color: $gray-500 !default;
|
|
1285
|
-
$dropdown-dark-header-color: $gray-500 !default;
|
|
1286
|
-
// scss-docs-end dropdown-dark-variables
|
|
786
|
+
$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;
|
|
1287
787
|
|
|
1288
788
|
|
|
1289
789
|
// Pagination
|
|
1290
790
|
|
|
1291
|
-
|
|
1292
|
-
$pagination-padding-y: .375rem !default;
|
|
791
|
+
$pagination-padding-y: .5rem !default;
|
|
1293
792
|
$pagination-padding-x: .75rem !default;
|
|
1294
793
|
$pagination-padding-y-sm: .25rem !default;
|
|
1295
794
|
$pagination-padding-x-sm: .5rem !default;
|
|
1296
795
|
$pagination-padding-y-lg: .75rem !default;
|
|
1297
796
|
$pagination-padding-x-lg: 1.5rem !default;
|
|
797
|
+
$pagination-line-height: 1.25 !default;
|
|
1298
798
|
|
|
1299
|
-
$pagination-
|
|
1300
|
-
|
|
1301
|
-
$pagination-
|
|
1302
|
-
$pagination-
|
|
1303
|
-
$pagination-border-radius: var(--#{$prefix}border-radius) !default;
|
|
1304
|
-
$pagination-border-width: var(--#{$prefix}border-width) !default;
|
|
1305
|
-
$pagination-margin-start: calc(-1 * #{$pagination-border-width}) !default; // stylelint-disable-line function-disallowed-list
|
|
1306
|
-
$pagination-border-color: var(--#{$prefix}border-color) !default;
|
|
799
|
+
$pagination-color: $link-color !default;
|
|
800
|
+
$pagination-bg: $white !default;
|
|
801
|
+
$pagination-border-width: $border-width !default;
|
|
802
|
+
$pagination-border-color: $gray-300 !default;
|
|
1307
803
|
|
|
1308
|
-
$pagination-focus-
|
|
1309
|
-
$pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;
|
|
1310
|
-
$pagination-focus-box-shadow: $focus-ring-box-shadow !default;
|
|
804
|
+
$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
1311
805
|
$pagination-focus-outline: 0 !default;
|
|
1312
806
|
|
|
1313
|
-
$pagination-hover-color:
|
|
1314
|
-
$pagination-hover-bg:
|
|
1315
|
-
$pagination-hover-border-color:
|
|
807
|
+
$pagination-hover-color: $link-hover-color !default;
|
|
808
|
+
$pagination-hover-bg: $gray-200 !default;
|
|
809
|
+
$pagination-hover-border-color: $gray-300 !default;
|
|
1316
810
|
|
|
1317
811
|
$pagination-active-color: $component-active-color !default;
|
|
1318
812
|
$pagination-active-bg: $component-active-bg !default;
|
|
1319
|
-
$pagination-active-border-color: $
|
|
813
|
+
$pagination-active-border-color: $pagination-active-bg !default;
|
|
1320
814
|
|
|
1321
|
-
$pagination-disabled-color:
|
|
1322
|
-
$pagination-disabled-bg:
|
|
1323
|
-
$pagination-disabled-border-color:
|
|
815
|
+
$pagination-disabled-color: $gray-600 !default;
|
|
816
|
+
$pagination-disabled-bg: $white !default;
|
|
817
|
+
$pagination-disabled-border-color: $gray-300 !default;
|
|
1324
818
|
|
|
1325
|
-
$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
|
|
1326
819
|
|
|
1327
|
-
|
|
1328
|
-
$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
|
|
1329
|
-
// scss-docs-end pagination-variables
|
|
820
|
+
// Jumbotron
|
|
1330
821
|
|
|
822
|
+
$jumbotron-padding: 2rem !default;
|
|
823
|
+
$jumbotron-color: null !default;
|
|
824
|
+
$jumbotron-bg: $gray-200 !default;
|
|
1331
825
|
|
|
1332
|
-
// Placeholders
|
|
1333
|
-
|
|
1334
|
-
// scss-docs-start placeholders
|
|
1335
|
-
$placeholder-opacity-max: .5 !default;
|
|
1336
|
-
$placeholder-opacity-min: .2 !default;
|
|
1337
|
-
// scss-docs-end placeholders
|
|
1338
826
|
|
|
1339
827
|
// Cards
|
|
1340
828
|
|
|
1341
|
-
|
|
1342
|
-
$card-spacer-
|
|
1343
|
-
$card-
|
|
1344
|
-
$card-
|
|
1345
|
-
$card-
|
|
1346
|
-
$card-subtitle-color: null !default;
|
|
1347
|
-
$card-border-width: var(--#{$prefix}border-width) !default;
|
|
1348
|
-
$card-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
1349
|
-
$card-border-radius: var(--#{$prefix}border-radius) !default;
|
|
1350
|
-
$card-box-shadow: null !default;
|
|
829
|
+
$card-spacer-y: .75rem !default;
|
|
830
|
+
$card-spacer-x: 1.25rem !default;
|
|
831
|
+
$card-border-width: $border-width !default;
|
|
832
|
+
$card-border-radius: $border-radius !default;
|
|
833
|
+
$card-border-color: rgba($black, .125) !default;
|
|
1351
834
|
$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
|
|
1352
|
-
$card-cap-
|
|
1353
|
-
$card-cap-padding-x: $card-spacer-x !default;
|
|
1354
|
-
$card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;
|
|
835
|
+
$card-cap-bg: rgba($black, .03) !default;
|
|
1355
836
|
$card-cap-color: null !default;
|
|
1356
837
|
$card-height: null !default;
|
|
1357
838
|
$card-color: null !default;
|
|
1358
|
-
$card-bg:
|
|
1359
|
-
|
|
1360
|
-
$card-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
$
|
|
1367
|
-
$
|
|
1368
|
-
|
|
1369
|
-
$accordion-bg: var(--#{$prefix}body-bg) !default;
|
|
1370
|
-
$accordion-border-width: var(--#{$prefix}border-width) !default;
|
|
1371
|
-
$accordion-border-color: var(--#{$prefix}border-color) !default;
|
|
1372
|
-
$accordion-border-radius: var(--#{$prefix}border-radius) !default;
|
|
1373
|
-
$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;
|
|
1374
|
-
|
|
1375
|
-
$accordion-body-padding-y: $accordion-padding-y !default;
|
|
1376
|
-
$accordion-body-padding-x: $accordion-padding-x !default;
|
|
1377
|
-
|
|
1378
|
-
$accordion-button-padding-y: $accordion-padding-y !default;
|
|
1379
|
-
$accordion-button-padding-x: $accordion-padding-x !default;
|
|
1380
|
-
$accordion-button-color: var(--#{$prefix}body-color) !default;
|
|
1381
|
-
$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;
|
|
1382
|
-
$accordion-transition: $btn-transition, border-radius .15s ease !default;
|
|
1383
|
-
$accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;
|
|
1384
|
-
$accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;
|
|
1385
|
-
|
|
1386
|
-
// fusv-disable
|
|
1387
|
-
$accordion-button-focus-border-color: $input-focus-border-color !default; // Deprecated in v5.3.3
|
|
1388
|
-
// fusv-enable
|
|
1389
|
-
$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;
|
|
1390
|
-
|
|
1391
|
-
$accordion-icon-width: 1.25rem !default;
|
|
1392
|
-
$accordion-icon-color: $body-color !default;
|
|
1393
|
-
$accordion-icon-active-color: $primary-text-emphasis !default;
|
|
1394
|
-
$accordion-icon-transition: transform .2s ease-in-out !default;
|
|
1395
|
-
$accordion-icon-transform: rotate(-180deg) !default;
|
|
1396
|
-
|
|
1397
|
-
$accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='#{$accordion-icon-color}' stroke-linecap='round' stroke-linejoin='round'><path d='m2 5 6 6 6-6'/></svg>") !default;
|
|
1398
|
-
$accordion-button-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='#{$accordion-icon-active-color}' stroke-linecap='round' stroke-linejoin='round'><path d='m2 5 6 6 6-6'/></svg>") !default;
|
|
1399
|
-
// scss-docs-end accordion-variables
|
|
839
|
+
$card-bg: $white !default;
|
|
840
|
+
|
|
841
|
+
$card-img-overlay-padding: 1.25rem !default;
|
|
842
|
+
|
|
843
|
+
$card-group-margin: $grid-gutter-width / 2 !default;
|
|
844
|
+
$card-deck-margin: $card-group-margin !default;
|
|
845
|
+
|
|
846
|
+
$card-columns-count: 3 !default;
|
|
847
|
+
$card-columns-gap: 1.25rem !default;
|
|
848
|
+
$card-columns-margin: $card-spacer-y !default;
|
|
849
|
+
|
|
1400
850
|
|
|
1401
851
|
// Tooltips
|
|
1402
852
|
|
|
1403
|
-
// scss-docs-start tooltip-variables
|
|
1404
853
|
$tooltip-font-size: $font-size-sm !default;
|
|
1405
854
|
$tooltip-max-width: 200px !default;
|
|
1406
|
-
$tooltip-color:
|
|
1407
|
-
$tooltip-bg:
|
|
1408
|
-
$tooltip-border-radius:
|
|
855
|
+
$tooltip-color: $white !default;
|
|
856
|
+
$tooltip-bg: $black !default;
|
|
857
|
+
$tooltip-border-radius: $border-radius !default;
|
|
1409
858
|
$tooltip-opacity: .9 !default;
|
|
1410
|
-
$tooltip-padding-y:
|
|
1411
|
-
$tooltip-padding-x:
|
|
1412
|
-
$tooltip-margin:
|
|
859
|
+
$tooltip-padding-y: .25rem !default;
|
|
860
|
+
$tooltip-padding-x: .5rem !default;
|
|
861
|
+
$tooltip-margin: 0 !default;
|
|
1413
862
|
|
|
1414
863
|
$tooltip-arrow-width: .8rem !default;
|
|
1415
864
|
$tooltip-arrow-height: .4rem !default;
|
|
1416
|
-
|
|
1417
|
-
$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
1418
|
-
// fusv-enable
|
|
1419
|
-
// scss-docs-end tooltip-variables
|
|
865
|
+
$tooltip-arrow-color: $tooltip-bg !default;
|
|
1420
866
|
|
|
1421
867
|
// Form tooltips must come after regular tooltips
|
|
1422
|
-
// scss-docs-start tooltip-feedback-variables
|
|
1423
868
|
$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
|
|
1424
869
|
$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
|
|
1425
870
|
$form-feedback-tooltip-font-size: $tooltip-font-size !default;
|
|
1426
|
-
$form-feedback-tooltip-line-height:
|
|
871
|
+
$form-feedback-tooltip-line-height: $line-height-base !default;
|
|
1427
872
|
$form-feedback-tooltip-opacity: $tooltip-opacity !default;
|
|
1428
873
|
$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
|
|
1429
|
-
// scss-docs-end tooltip-feedback-variables
|
|
1430
874
|
|
|
1431
875
|
|
|
1432
876
|
// Popovers
|
|
1433
877
|
|
|
1434
|
-
// scss-docs-start popover-variables
|
|
1435
878
|
$popover-font-size: $font-size-sm !default;
|
|
1436
|
-
$popover-bg:
|
|
879
|
+
$popover-bg: $white !default;
|
|
1437
880
|
$popover-max-width: 276px !default;
|
|
1438
|
-
$popover-border-width:
|
|
1439
|
-
$popover-border-color:
|
|
1440
|
-
$popover-border-radius:
|
|
1441
|
-
$popover-inner-border-radius:
|
|
1442
|
-
$popover-box-shadow:
|
|
1443
|
-
|
|
1444
|
-
$popover-header-
|
|
1445
|
-
$popover-header-bg: var(--#{$prefix}secondary-bg) !default;
|
|
881
|
+
$popover-border-width: $border-width !default;
|
|
882
|
+
$popover-border-color: rgba($black, .2) !default;
|
|
883
|
+
$popover-border-radius: $border-radius-lg !default;
|
|
884
|
+
$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;
|
|
885
|
+
$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
|
|
886
|
+
|
|
887
|
+
$popover-header-bg: darken($popover-bg, 3%) !default;
|
|
1446
888
|
$popover-header-color: $headings-color !default;
|
|
1447
889
|
$popover-header-padding-y: .5rem !default;
|
|
1448
|
-
$popover-header-padding-x:
|
|
890
|
+
$popover-header-padding-x: .75rem !default;
|
|
1449
891
|
|
|
1450
|
-
$popover-body-color:
|
|
1451
|
-
$popover-body-padding-y: $
|
|
1452
|
-
$popover-body-padding-x: $
|
|
892
|
+
$popover-body-color: $body-color !default;
|
|
893
|
+
$popover-body-padding-y: $popover-header-padding-y !default;
|
|
894
|
+
$popover-body-padding-x: $popover-header-padding-x !default;
|
|
1453
895
|
|
|
1454
896
|
$popover-arrow-width: 1rem !default;
|
|
1455
897
|
$popover-arrow-height: .5rem !default;
|
|
1456
|
-
// scss-docs-end popover-variables
|
|
1457
|
-
|
|
1458
|
-
// fusv-disable
|
|
1459
|
-
// Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
1460
898
|
$popover-arrow-color: $popover-bg !default;
|
|
1461
|
-
|
|
1462
|
-
|
|
899
|
+
|
|
900
|
+
$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
|
|
1463
901
|
|
|
1464
902
|
|
|
1465
903
|
// Toasts
|
|
1466
904
|
|
|
1467
|
-
// scss-docs-start toast-variables
|
|
1468
905
|
$toast-max-width: 350px !default;
|
|
1469
906
|
$toast-padding-x: .75rem !default;
|
|
1470
|
-
$toast-padding-y: .
|
|
907
|
+
$toast-padding-y: .25rem !default;
|
|
1471
908
|
$toast-font-size: .875rem !default;
|
|
1472
909
|
$toast-color: null !default;
|
|
1473
|
-
$toast-background-color: rgba(
|
|
1474
|
-
$toast-border-width:
|
|
1475
|
-
$toast-border-color:
|
|
1476
|
-
$toast-border-radius:
|
|
1477
|
-
$toast-box-shadow:
|
|
1478
|
-
$toast-spacing: $container-padding-x !default;
|
|
910
|
+
$toast-background-color: rgba($white, .85) !default;
|
|
911
|
+
$toast-border-width: 1px !default;
|
|
912
|
+
$toast-border-color: rgba(0, 0, 0, .1) !default;
|
|
913
|
+
$toast-border-radius: .25rem !default;
|
|
914
|
+
$toast-box-shadow: 0 .25rem .75rem rgba($black, .1) !default;
|
|
1479
915
|
|
|
1480
|
-
$toast-header-color:
|
|
1481
|
-
$toast-header-background-color: rgba(
|
|
1482
|
-
$toast-header-border-color:
|
|
1483
|
-
// scss-docs-end toast-variables
|
|
916
|
+
$toast-header-color: $gray-600 !default;
|
|
917
|
+
$toast-header-background-color: rgba($white, .85) !default;
|
|
918
|
+
$toast-header-border-color: rgba(0, 0, 0, .05) !default;
|
|
1484
919
|
|
|
1485
920
|
|
|
1486
921
|
// Badges
|
|
1487
922
|
|
|
1488
|
-
|
|
1489
|
-
$badge-font-size: .75em !default;
|
|
923
|
+
$badge-font-size: 75% !default;
|
|
1490
924
|
$badge-font-weight: $font-weight-bold !default;
|
|
1491
|
-
$badge-
|
|
1492
|
-
$badge-padding-
|
|
1493
|
-
$badge-
|
|
1494
|
-
|
|
1495
|
-
|
|
925
|
+
$badge-padding-y: .25em !default;
|
|
926
|
+
$badge-padding-x: .4em !default;
|
|
927
|
+
$badge-border-radius: $border-radius !default;
|
|
928
|
+
|
|
929
|
+
$badge-transition: $btn-transition !default;
|
|
930
|
+
$badge-focus-width: $input-btn-focus-width !default;
|
|
931
|
+
|
|
932
|
+
$badge-pill-padding-x: .6em !default;
|
|
933
|
+
// Use a higher than normal value to ensure completely rounded edges when
|
|
934
|
+
// customizing padding or font-size on labels.
|
|
935
|
+
$badge-pill-border-radius: 10rem !default;
|
|
1496
936
|
|
|
1497
937
|
|
|
1498
938
|
// Modals
|
|
1499
939
|
|
|
1500
|
-
//
|
|
1501
|
-
$modal-inner-padding:
|
|
940
|
+
// Padding applied to the modal body
|
|
941
|
+
$modal-inner-padding: 1rem !default;
|
|
1502
942
|
|
|
943
|
+
// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding
|
|
1503
944
|
$modal-footer-margin-between: .5rem !default;
|
|
1504
945
|
|
|
1505
946
|
$modal-dialog-margin: .5rem !default;
|
|
@@ -1507,247 +948,195 @@ $modal-dialog-margin-y-sm-up: 1.75rem !default;
|
|
|
1507
948
|
|
|
1508
949
|
$modal-title-line-height: $line-height-base !default;
|
|
1509
950
|
|
|
1510
|
-
$modal-content-color:
|
|
1511
|
-
$modal-content-bg:
|
|
1512
|
-
$modal-content-border-color:
|
|
1513
|
-
$modal-content-border-width:
|
|
1514
|
-
$modal-content-border-radius:
|
|
951
|
+
$modal-content-color: null !default;
|
|
952
|
+
$modal-content-bg: $white !default;
|
|
953
|
+
$modal-content-border-color: rgba($black, .2) !default;
|
|
954
|
+
$modal-content-border-width: $border-width !default;
|
|
955
|
+
$modal-content-border-radius: $border-radius-lg !default;
|
|
1515
956
|
$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
|
|
1516
|
-
$modal-content-box-shadow-xs:
|
|
1517
|
-
$modal-content-box-shadow-sm-up:
|
|
957
|
+
$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
|
|
958
|
+
$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
|
|
1518
959
|
|
|
1519
960
|
$modal-backdrop-bg: $black !default;
|
|
1520
961
|
$modal-backdrop-opacity: .5 !default;
|
|
1521
|
-
|
|
1522
|
-
$modal-header-border-color: var(--#{$prefix}border-color) !default;
|
|
1523
|
-
$modal-header-border-width: $modal-content-border-width !default;
|
|
1524
|
-
$modal-header-padding-y: $modal-inner-padding !default;
|
|
1525
|
-
$modal-header-padding-x: $modal-inner-padding !default;
|
|
1526
|
-
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
|
|
1527
|
-
|
|
1528
|
-
$modal-footer-bg: null !default;
|
|
962
|
+
$modal-header-border-color: $border-color !default;
|
|
1529
963
|
$modal-footer-border-color: $modal-header-border-color !default;
|
|
964
|
+
$modal-header-border-width: $modal-content-border-width !default;
|
|
1530
965
|
$modal-footer-border-width: $modal-header-border-width !default;
|
|
966
|
+
$modal-header-padding-y: 1rem !default;
|
|
967
|
+
$modal-header-padding-x: 1rem !default;
|
|
968
|
+
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
|
|
1531
969
|
|
|
1532
|
-
$modal-sm: 300px !default;
|
|
1533
|
-
$modal-md: 500px !default;
|
|
1534
|
-
$modal-lg: 800px !default;
|
|
1535
970
|
$modal-xl: 1140px !default;
|
|
971
|
+
$modal-lg: 800px !default;
|
|
972
|
+
$modal-md: 500px !default;
|
|
973
|
+
$modal-sm: 300px !default;
|
|
1536
974
|
|
|
1537
975
|
$modal-fade-transform: translate(0, -50px) !default;
|
|
1538
976
|
$modal-show-transform: none !default;
|
|
1539
977
|
$modal-transition: transform .3s ease-out !default;
|
|
1540
978
|
$modal-scale-transform: scale(1.02) !default;
|
|
1541
|
-
// scss-docs-end modal-variables
|
|
1542
979
|
|
|
1543
980
|
|
|
1544
981
|
// Alerts
|
|
1545
982
|
//
|
|
1546
983
|
// Define alert colors, border radius, and padding.
|
|
1547
984
|
|
|
1548
|
-
|
|
1549
|
-
$alert-padding-
|
|
1550
|
-
$alert-
|
|
1551
|
-
$alert-
|
|
1552
|
-
$alert-
|
|
1553
|
-
$alert-
|
|
1554
|
-
|
|
1555
|
-
$alert-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
$alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6
|
|
1560
|
-
$alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6
|
|
1561
|
-
$alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6
|
|
1562
|
-
// fusv-enable
|
|
985
|
+
$alert-padding-y: .75rem !default;
|
|
986
|
+
$alert-padding-x: 1.25rem !default;
|
|
987
|
+
$alert-margin-bottom: 1rem !default;
|
|
988
|
+
$alert-border-radius: $border-radius !default;
|
|
989
|
+
$alert-link-font-weight: $font-weight-bold !default;
|
|
990
|
+
$alert-border-width: $border-width !default;
|
|
991
|
+
|
|
992
|
+
$alert-bg-level: -10 !default;
|
|
993
|
+
$alert-border-level: -9 !default;
|
|
994
|
+
$alert-color-level: 6 !default;
|
|
995
|
+
|
|
1563
996
|
|
|
1564
997
|
// Progress bars
|
|
1565
998
|
|
|
1566
|
-
// scss-docs-start progress-variables
|
|
1567
999
|
$progress-height: 1rem !default;
|
|
1568
1000
|
$progress-font-size: $font-size-base * .75 !default;
|
|
1569
|
-
$progress-bg:
|
|
1570
|
-
$progress-border-radius:
|
|
1571
|
-
$progress-box-shadow:
|
|
1001
|
+
$progress-bg: $gray-200 !default;
|
|
1002
|
+
$progress-border-radius: $border-radius !default;
|
|
1003
|
+
$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
|
|
1572
1004
|
$progress-bar-color: $white !default;
|
|
1573
|
-
$progress-bar-bg:
|
|
1005
|
+
$progress-bar-bg: theme-color("primary") !default;
|
|
1574
1006
|
$progress-bar-animation-timing: 1s linear infinite !default;
|
|
1575
1007
|
$progress-bar-transition: width .6s ease !default;
|
|
1576
|
-
// scss-docs-end progress-variables
|
|
1577
1008
|
|
|
1578
1009
|
|
|
1579
1010
|
// List group
|
|
1580
1011
|
|
|
1581
|
-
|
|
1582
|
-
$list-group-
|
|
1583
|
-
$list-group-
|
|
1584
|
-
$list-group-border-
|
|
1585
|
-
$list-group-border-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
$list-group-item-padding-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
$list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0
|
|
1592
|
-
$list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0
|
|
1593
|
-
// fusv-enable
|
|
1594
|
-
|
|
1595
|
-
$list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;
|
|
1012
|
+
$list-group-color: null !default;
|
|
1013
|
+
$list-group-bg: $white !default;
|
|
1014
|
+
$list-group-border-color: rgba($black, .125) !default;
|
|
1015
|
+
$list-group-border-width: $border-width !default;
|
|
1016
|
+
$list-group-border-radius: $border-radius !default;
|
|
1017
|
+
|
|
1018
|
+
$list-group-item-padding-y: .75rem !default;
|
|
1019
|
+
$list-group-item-padding-x: 1.25rem !default;
|
|
1020
|
+
|
|
1021
|
+
$list-group-hover-bg: $gray-100 !default;
|
|
1596
1022
|
$list-group-active-color: $component-active-color !default;
|
|
1597
1023
|
$list-group-active-bg: $component-active-bg !default;
|
|
1598
1024
|
$list-group-active-border-color: $list-group-active-bg !default;
|
|
1599
1025
|
|
|
1600
|
-
$list-group-disabled-color:
|
|
1026
|
+
$list-group-disabled-color: $gray-600 !default;
|
|
1601
1027
|
$list-group-disabled-bg: $list-group-bg !default;
|
|
1602
1028
|
|
|
1603
|
-
$list-group-action-color:
|
|
1604
|
-
$list-group-action-hover-color:
|
|
1029
|
+
$list-group-action-color: $gray-700 !default;
|
|
1030
|
+
$list-group-action-hover-color: $list-group-action-color !default;
|
|
1605
1031
|
|
|
1606
|
-
$list-group-action-active-color:
|
|
1607
|
-
$list-group-action-active-bg:
|
|
1608
|
-
// scss-docs-end list-group-variables
|
|
1032
|
+
$list-group-action-active-color: $body-color !default;
|
|
1033
|
+
$list-group-action-active-bg: $gray-200 !default;
|
|
1609
1034
|
|
|
1610
1035
|
|
|
1611
1036
|
// Image thumbnails
|
|
1612
1037
|
|
|
1613
|
-
// scss-docs-start thumbnail-variables
|
|
1614
1038
|
$thumbnail-padding: .25rem !default;
|
|
1615
|
-
$thumbnail-bg:
|
|
1616
|
-
$thumbnail-border-width:
|
|
1617
|
-
$thumbnail-border-color:
|
|
1618
|
-
$thumbnail-border-radius:
|
|
1619
|
-
$thumbnail-box-shadow:
|
|
1620
|
-
// scss-docs-end thumbnail-variables
|
|
1039
|
+
$thumbnail-bg: $body-bg !default;
|
|
1040
|
+
$thumbnail-border-width: $border-width !default;
|
|
1041
|
+
$thumbnail-border-color: $gray-300 !default;
|
|
1042
|
+
$thumbnail-border-radius: $border-radius !default;
|
|
1043
|
+
$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
|
|
1621
1044
|
|
|
1622
1045
|
|
|
1623
1046
|
// Figures
|
|
1624
1047
|
|
|
1625
|
-
|
|
1626
|
-
$figure-caption-
|
|
1627
|
-
$figure-caption-color: var(--#{$prefix}secondary-color) !default;
|
|
1628
|
-
// scss-docs-end figure-variables
|
|
1048
|
+
$figure-caption-font-size: 90% !default;
|
|
1049
|
+
$figure-caption-color: $gray-600 !default;
|
|
1629
1050
|
|
|
1630
1051
|
|
|
1631
1052
|
// Breadcrumbs
|
|
1632
1053
|
|
|
1633
|
-
// scss-docs-start breadcrumb-variables
|
|
1634
1054
|
$breadcrumb-font-size: null !default;
|
|
1635
|
-
|
|
1636
|
-
$breadcrumb-padding-
|
|
1637
|
-
$breadcrumb-
|
|
1055
|
+
|
|
1056
|
+
$breadcrumb-padding-y: .75rem !default;
|
|
1057
|
+
$breadcrumb-padding-x: 1rem !default;
|
|
1058
|
+
$breadcrumb-item-padding: .5rem !default;
|
|
1059
|
+
|
|
1638
1060
|
$breadcrumb-margin-bottom: 1rem !default;
|
|
1639
|
-
|
|
1640
|
-
$breadcrumb-
|
|
1641
|
-
$breadcrumb-
|
|
1061
|
+
|
|
1062
|
+
$breadcrumb-bg: $gray-200 !default;
|
|
1063
|
+
$breadcrumb-divider-color: $gray-600 !default;
|
|
1064
|
+
$breadcrumb-active-color: $gray-600 !default;
|
|
1642
1065
|
$breadcrumb-divider: quote("/") !default;
|
|
1643
|
-
|
|
1644
|
-
$breadcrumb-border-radius:
|
|
1645
|
-
|
|
1066
|
+
|
|
1067
|
+
$breadcrumb-border-radius: $border-radius !default;
|
|
1068
|
+
|
|
1646
1069
|
|
|
1647
1070
|
// Carousel
|
|
1648
1071
|
|
|
1649
|
-
// scss-docs-start carousel-variables
|
|
1650
1072
|
$carousel-control-color: $white !default;
|
|
1651
1073
|
$carousel-control-width: 15% !default;
|
|
1652
1074
|
$carousel-control-opacity: .5 !default;
|
|
1653
1075
|
$carousel-control-hover-opacity: .9 !default;
|
|
1654
1076
|
$carousel-control-transition: opacity .15s ease !default;
|
|
1655
|
-
$carousel-control-icon-filter: null !default;
|
|
1656
1077
|
|
|
1657
1078
|
$carousel-indicator-width: 30px !default;
|
|
1658
1079
|
$carousel-indicator-height: 3px !default;
|
|
1659
1080
|
$carousel-indicator-hit-area-height: 10px !default;
|
|
1660
1081
|
$carousel-indicator-spacer: 3px !default;
|
|
1661
|
-
$carousel-indicator-opacity: .5 !default;
|
|
1662
1082
|
$carousel-indicator-active-bg: $white !default;
|
|
1663
|
-
$carousel-indicator-active-opacity: 1 !default;
|
|
1664
1083
|
$carousel-indicator-transition: opacity .6s ease !default;
|
|
1665
1084
|
|
|
1666
1085
|
$carousel-caption-width: 70% !default;
|
|
1667
1086
|
$carousel-caption-color: $white !default;
|
|
1668
|
-
$carousel-caption-padding-y: 1.25rem !default;
|
|
1669
|
-
$carousel-caption-spacer: 1.25rem !default;
|
|
1670
1087
|
|
|
1671
|
-
$carousel-control-icon-width:
|
|
1088
|
+
$carousel-control-icon-width: 20px !default;
|
|
1672
1089
|
|
|
1673
|
-
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'
|
|
1674
|
-
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'
|
|
1090
|
+
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/></svg>") !default;
|
|
1091
|
+
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/></svg>") !default;
|
|
1675
1092
|
|
|
1676
1093
|
$carousel-transition-duration: .6s !default;
|
|
1677
1094
|
$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
|
|
1678
|
-
// scss-docs-end carousel-variables
|
|
1679
|
-
|
|
1680
|
-
// scss-docs-start carousel-dark-variables
|
|
1681
|
-
$carousel-dark-indicator-active-bg: $black !default; // Deprecated in v5.3.4
|
|
1682
|
-
$carousel-dark-caption-color: $black !default; // Deprecated in v5.3.4
|
|
1683
|
-
$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default; // Deprecated in v5.3.4
|
|
1684
|
-
// scss-docs-end carousel-dark-variables
|
|
1685
1095
|
|
|
1686
1096
|
|
|
1687
1097
|
// Spinners
|
|
1688
1098
|
|
|
1689
|
-
|
|
1690
|
-
$spinner-width
|
|
1691
|
-
$spinner-
|
|
1692
|
-
$spinner-vertical-align: -.125em !default;
|
|
1693
|
-
$spinner-border-width: .25em !default;
|
|
1694
|
-
$spinner-animation-speed: .75s !default;
|
|
1099
|
+
$spinner-width: 2rem !default;
|
|
1100
|
+
$spinner-height: $spinner-width !default;
|
|
1101
|
+
$spinner-border-width: .25em !default;
|
|
1695
1102
|
|
|
1696
1103
|
$spinner-width-sm: 1rem !default;
|
|
1697
1104
|
$spinner-height-sm: $spinner-width-sm !default;
|
|
1698
1105
|
$spinner-border-width-sm: .2em !default;
|
|
1699
|
-
// scss-docs-end spinner-variables
|
|
1700
1106
|
|
|
1701
1107
|
|
|
1702
1108
|
// Close
|
|
1703
1109
|
|
|
1704
|
-
|
|
1705
|
-
$
|
|
1706
|
-
$
|
|
1707
|
-
$
|
|
1708
|
-
|
|
1709
|
-
$btn-close-color: $black !default;
|
|
1710
|
-
$btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$btn-close-color}'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/></svg>") !default;
|
|
1711
|
-
$btn-close-focus-shadow: $focus-ring-box-shadow !default;
|
|
1712
|
-
$btn-close-opacity: .5 !default;
|
|
1713
|
-
$btn-close-hover-opacity: .75 !default;
|
|
1714
|
-
$btn-close-focus-opacity: 1 !default;
|
|
1715
|
-
$btn-close-disabled-opacity: .25 !default;
|
|
1716
|
-
$btn-close-filter: null !default;
|
|
1717
|
-
$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default; // Deprecated in v5.3.4
|
|
1718
|
-
// scss-docs-end close-variables
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
// Offcanvas
|
|
1722
|
-
|
|
1723
|
-
// scss-docs-start offcanvas-variables
|
|
1724
|
-
$offcanvas-padding-y: $modal-inner-padding !default;
|
|
1725
|
-
$offcanvas-padding-x: $modal-inner-padding !default;
|
|
1726
|
-
$offcanvas-horizontal-width: 400px !default;
|
|
1727
|
-
$offcanvas-vertical-height: 30vh !default;
|
|
1728
|
-
$offcanvas-transition-duration: .3s !default;
|
|
1729
|
-
$offcanvas-border-color: $modal-content-border-color !default;
|
|
1730
|
-
$offcanvas-border-width: $modal-content-border-width !default;
|
|
1731
|
-
$offcanvas-title-line-height: $modal-title-line-height !default;
|
|
1732
|
-
$offcanvas-bg-color: var(--#{$prefix}body-bg) !default;
|
|
1733
|
-
$offcanvas-color: var(--#{$prefix}body-color) !default;
|
|
1734
|
-
$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;
|
|
1735
|
-
$offcanvas-backdrop-bg: $modal-backdrop-bg !default;
|
|
1736
|
-
$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
|
|
1737
|
-
// scss-docs-end offcanvas-variables
|
|
1110
|
+
$close-font-size: $font-size-base * 1.5 !default;
|
|
1111
|
+
$close-font-weight: $font-weight-bold !default;
|
|
1112
|
+
$close-color: $black !default;
|
|
1113
|
+
$close-text-shadow: 0 1px 0 $white !default;
|
|
1114
|
+
|
|
1738
1115
|
|
|
1739
1116
|
// Code
|
|
1740
1117
|
|
|
1741
|
-
$code-font-size:
|
|
1118
|
+
$code-font-size: 87.5% !default;
|
|
1742
1119
|
$code-color: $pink !default;
|
|
1743
1120
|
|
|
1744
|
-
$kbd-padding-y: .
|
|
1745
|
-
$kbd-padding-x: .
|
|
1121
|
+
$kbd-padding-y: .2rem !default;
|
|
1122
|
+
$kbd-padding-x: .4rem !default;
|
|
1746
1123
|
$kbd-font-size: $code-font-size !default;
|
|
1747
|
-
$kbd-color:
|
|
1748
|
-
$kbd-bg:
|
|
1749
|
-
|
|
1124
|
+
$kbd-color: $white !default;
|
|
1125
|
+
$kbd-bg: $gray-900 !default;
|
|
1126
|
+
|
|
1127
|
+
$pre-color: $gray-900 !default;
|
|
1128
|
+
$pre-scrollable-max-height: 340px !default;
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
// Utilities
|
|
1132
|
+
|
|
1133
|
+
$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;
|
|
1134
|
+
$overflows: auto, hidden !default;
|
|
1135
|
+
$positions: static, relative, absolute, fixed, sticky !default;
|
|
1136
|
+
$user-selects: all, auto, none !default;
|
|
1137
|
+
|
|
1750
1138
|
|
|
1751
|
-
|
|
1139
|
+
// Printing
|
|
1752
1140
|
|
|
1753
|
-
|
|
1141
|
+
$print-page-size: a3 !default;
|
|
1142
|
+
$print-body-min-width: map-get($grid-breakpoints, "lg") !default;
|