jekyll-theme-centos 2.52.0.beta.3 → 2.52.0.beta.5
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/_data/base/announcement_schema.yml +50 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +53 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +183 -0
- data/_data/base/breadcrumb_schema.yml +14 -0
- data/_data/base/breakingnews_schema.yml +59 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/converter_link_schema.yml +48 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +34 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +122 -0
- data/_data/base/fontawesome_schema.yml +49 -0
- data/_data/base/highlight_schema.yml +68 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +153 -0
- data/_data/base/locales_schema.yml +25 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +121 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp_schema.yml +186 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +120 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +25 -0
- data/_data/base/social_schema.yml +53 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +100 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_data/sponsors/carousel.yml +37 -0
- data/_data/sponsors/navbar.yml +6 -0
- data/_includes/base/announcement.html.liquid +51 -0
- data/_includes/base/artwork.html.liquid +49 -0
- data/_includes/base/backtotop.html.liquid +51 -0
- data/_includes/base/bits.html.liquid +135 -0
- data/_includes/base/breadcrumb.html.liquid +37 -0
- data/_includes/base/breakingnews.html.liquid +74 -0
- data/_includes/base/card.html.liquid +96 -0
- data/_includes/base/copyright.html.liquid +56 -0
- data/_includes/base/copyvalue.html.liquid +59 -0
- data/_includes/base/datatable.html.liquid +64 -0
- data/_includes/base/event.html.liquid +89 -0
- data/_includes/base/fontawesome.html.liquid +58 -0
- data/_includes/base/head.html.liquid +101 -0
- data/_includes/base/highlight.html.liquid +65 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +139 -0
- data/_includes/base/locales.html.liquid +41 -0
- data/_includes/base/navbar.html.liquid +106 -0
- data/_includes/base/navindex.html.liquid +162 -0
- data/_includes/base/ogp.html.liquid +118 -0
- data/_includes/base/project.html.liquid +90 -0
- data/_includes/base/script.html.liquid +59 -0
- data/_includes/base/shortcut.html.liquid +65 -0
- data/_includes/base/social.html.liquid +59 -0
- data/_includes/base/title.html.liquid +52 -0
- data/_includes/base/toc.html.liquid +91 -0
- data/_includes/base/toc_generator.html.liquid +189 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_includes/sponsors/cards.html +11 -0
- data/_includes/sponsors/carousel.html +24 -0
- data/_layouts/base/default.html +117 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +251 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- 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 +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/page-layout-default.png +0 -0
- data/assets/img/base/page-layout-default.svg +1158 -0
- data/assets/img/base/page-with-alert.png +0 -0
- data/assets/img/base/page-with-alert.svg +359 -0
- data/assets/img/base/page-with-announcement.png +0 -0
- data/assets/img/base/page-with-announcement.svg +499 -0
- data/assets/img/base/page-with-artwork.png +0 -0
- data/assets/img/base/page-with-artwork.svg +368 -0
- data/assets/img/base/page-with-backtotop.png +0 -0
- data/assets/img/base/page-with-backtotop.svg +275 -0
- data/assets/img/base/page-with-bits.png +0 -0
- data/assets/img/base/page-with-bits.svg +311 -0
- data/assets/img/base/page-with-breadcrumb.png +0 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.png +0 -0
- data/assets/img/base/page-with-breakingnews.svg +903 -0
- data/assets/img/base/page-with-color.png +0 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.png +0 -0
- data/assets/img/base/page-with-copyright.svg +233 -0
- data/assets/img/base/page-with-copyvalue.png +0 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.png +0 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.png +0 -0
- data/assets/img/base/page-with-event.svg +522 -0
- data/assets/img/base/page-with-fontawesome.png +0 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-heading.png +0 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.png +0 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-link.png +0 -0
- data/assets/img/base/page-with-link.svg +395 -0
- data/assets/img/base/page-with-locales.png +0 -0
- data/assets/img/base/page-with-locales.svg +724 -0
- data/assets/img/base/page-with-navbar.png +0 -0
- data/assets/img/base/page-with-navbar.svg +438 -0
- data/assets/img/base/page-with-navindex.png +0 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.png +0 -0
- data/assets/img/base/page-with-ogp.svg +368 -0
- data/assets/img/base/page-with-project.png +0 -0
- data/assets/img/base/page-with-project.svg +822 -0
- data/assets/img/base/page-with-shortcut.png +0 -0
- data/assets/img/base/page-with-shortcut.svg +233 -0
- data/assets/img/base/page-with-social.png +0 -0
- data/assets/img/base/page-with-social.svg +233 -0
- data/assets/img/base/page-with-title.png +0 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.png +0 -0
- data/assets/img/base/page-with-toc.svg +438 -0
- data/assets/img/base/screenshot-example-1200x600.png +0 -0
- data/assets/img/base/screenshot-example-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- 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 +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
- data/assets/img/sponsors/sponsor-logo-1.png +0 -0
- data/assets/img/sponsors/sponsor-logo-2.png +0 -0
- data/assets/img/sponsors/sponsor-logo-3.png +0 -0
- data/assets/img/sponsors/sponsor-logo-4.png +0 -0
- data/assets/img/sponsors/sponsor-logo-5.png +0 -0
- data/assets/img/sponsors/sponsor-logo-6.png +0 -0
- data/assets/img/sponsors/sponsor-logo-7.png +0 -0
- data/assets/img/sponsors/sponsor-logo-8.png +0 -0
- data/assets/img/sponsors/sponsors-logo.svg +563 -0
- data/assets/js/base/backtotop.js +23 -0
- data/assets/js/base/copyvalue.js +251 -0
- data/assets/js/base/datatable.js +55 -0
- data/assets/js/base/highlight.js +6 -0
- data/assets/js/base/init-tooltips.js +5 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- metadata +314 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
@import "mixins/banner";
|
|
2
|
+
@include bsBanner(Grid);
|
|
3
|
+
|
|
4
|
+
$include-column-box-sizing: true !default;
|
|
5
|
+
|
|
6
|
+
@import "functions";
|
|
7
|
+
@import "variables";
|
|
8
|
+
@import "variables-dark";
|
|
9
|
+
@import "maps";
|
|
10
|
+
|
|
11
|
+
@import "mixins/breakpoints";
|
|
12
|
+
@import "mixins/container";
|
|
13
|
+
@import "mixins/grid";
|
|
14
|
+
@import "mixins/utilities";
|
|
15
|
+
|
|
16
|
+
@import "vendor/rfs";
|
|
17
|
+
|
|
18
|
+
@import "containers";
|
|
19
|
+
@import "grid";
|
|
20
|
+
|
|
21
|
+
@import "utilities";
|
|
22
|
+
// Only use the utilities we need
|
|
23
|
+
// stylelint-disable-next-line scss/dollar-variable-default
|
|
24
|
+
$utilities: map-get-multiple(
|
|
25
|
+
$utilities,
|
|
26
|
+
(
|
|
27
|
+
"display",
|
|
28
|
+
"order",
|
|
29
|
+
"flex",
|
|
30
|
+
"flex-direction",
|
|
31
|
+
"flex-grow",
|
|
32
|
+
"flex-shrink",
|
|
33
|
+
"flex-wrap",
|
|
34
|
+
"justify-content",
|
|
35
|
+
"align-items",
|
|
36
|
+
"align-content",
|
|
37
|
+
"align-self",
|
|
38
|
+
"margin",
|
|
39
|
+
"margin-x",
|
|
40
|
+
"margin-y",
|
|
41
|
+
"margin-top",
|
|
42
|
+
"margin-end",
|
|
43
|
+
"margin-bottom",
|
|
44
|
+
"margin-start",
|
|
45
|
+
"negative-margin",
|
|
46
|
+
"negative-margin-x",
|
|
47
|
+
"negative-margin-y",
|
|
48
|
+
"negative-margin-top",
|
|
49
|
+
"negative-margin-end",
|
|
50
|
+
"negative-margin-bottom",
|
|
51
|
+
"negative-margin-start",
|
|
52
|
+
"padding",
|
|
53
|
+
"padding-x",
|
|
54
|
+
"padding-y",
|
|
55
|
+
"padding-top",
|
|
56
|
+
"padding-end",
|
|
57
|
+
"padding-bottom",
|
|
58
|
+
"padding-start",
|
|
59
|
+
)
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
@import "utilities/api";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
@import "mixins/banner";
|
|
2
|
+
@include bsBanner(Utilities);
|
|
3
|
+
|
|
4
|
+
// Configuration
|
|
5
|
+
@import "functions";
|
|
6
|
+
@import "variables";
|
|
7
|
+
@import "variables-dark";
|
|
8
|
+
@import "maps";
|
|
9
|
+
@import "mixins";
|
|
10
|
+
@import "utilities";
|
|
11
|
+
|
|
12
|
+
// Layout & components
|
|
13
|
+
@import "root";
|
|
14
|
+
|
|
15
|
+
// Helpers
|
|
16
|
+
@import "helpers";
|
|
17
|
+
|
|
18
|
+
// Utilities
|
|
19
|
+
@import "utilities/api";
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
@import "mixins/banner";
|
|
2
|
+
@include bsBanner("");
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
// scss-docs-start import-stack
|
|
6
|
+
// Configuration
|
|
7
|
+
@import "functions";
|
|
8
|
+
@import "variables";
|
|
9
|
+
@import "variables-dark";
|
|
10
|
+
@import "maps";
|
|
11
|
+
@import "mixins";
|
|
12
|
+
@import "utilities";
|
|
13
|
+
|
|
14
|
+
// Layout & components
|
|
15
|
+
@import "root";
|
|
16
|
+
@import "reboot";
|
|
17
|
+
@import "type";
|
|
18
|
+
@import "images";
|
|
19
|
+
@import "containers";
|
|
20
|
+
@import "grid";
|
|
21
|
+
@import "tables";
|
|
22
|
+
@import "forms";
|
|
23
|
+
@import "buttons";
|
|
24
|
+
@import "transitions";
|
|
25
|
+
@import "dropdown";
|
|
26
|
+
@import "button-group";
|
|
27
|
+
@import "nav";
|
|
28
|
+
@import "navbar";
|
|
29
|
+
@import "card";
|
|
30
|
+
@import "accordion";
|
|
31
|
+
@import "breadcrumb";
|
|
32
|
+
@import "pagination";
|
|
33
|
+
@import "badge";
|
|
34
|
+
@import "alert";
|
|
35
|
+
@import "progress";
|
|
36
|
+
@import "list-group";
|
|
37
|
+
@import "close";
|
|
38
|
+
@import "toasts";
|
|
39
|
+
@import "modal";
|
|
40
|
+
@import "tooltip";
|
|
41
|
+
@import "popover";
|
|
42
|
+
@import "carousel";
|
|
43
|
+
@import "spinners";
|
|
44
|
+
@import "offcanvas";
|
|
45
|
+
@import "placeholders";
|
|
46
|
+
|
|
47
|
+
// Helpers
|
|
48
|
+
@import "helpers";
|
|
49
|
+
|
|
50
|
+
// Utilities
|
|
51
|
+
@import "utilities/api";
|
|
52
|
+
// scss-docs-end import-stack
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
.form-floating {
|
|
2
|
+
position: relative;
|
|
3
|
+
|
|
4
|
+
> .form-control,
|
|
5
|
+
> .form-control-plaintext,
|
|
6
|
+
> .form-select {
|
|
7
|
+
height: $form-floating-height;
|
|
8
|
+
min-height: $form-floating-height;
|
|
9
|
+
line-height: $form-floating-line-height;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
> label {
|
|
13
|
+
position: absolute;
|
|
14
|
+
top: 0;
|
|
15
|
+
left: 0;
|
|
16
|
+
z-index: 2;
|
|
17
|
+
max-width: 100%;
|
|
18
|
+
height: 100%; // allow textareas
|
|
19
|
+
padding: $form-floating-padding-y $form-floating-padding-x;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
color: rgba(var(--#{$prefix}body-color-rgb), #{$form-floating-label-opacity});
|
|
22
|
+
text-align: start;
|
|
23
|
+
text-overflow: ellipsis;
|
|
24
|
+
white-space: nowrap;
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model
|
|
27
|
+
transform-origin: 0 0;
|
|
28
|
+
@include transition($form-floating-transition);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
> .form-control,
|
|
32
|
+
> .form-control-plaintext {
|
|
33
|
+
padding: $form-floating-padding-y $form-floating-padding-x;
|
|
34
|
+
|
|
35
|
+
&::placeholder {
|
|
36
|
+
color: transparent;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&:focus,
|
|
40
|
+
&:not(:placeholder-shown) {
|
|
41
|
+
padding-top: $form-floating-input-padding-t;
|
|
42
|
+
padding-bottom: $form-floating-input-padding-b;
|
|
43
|
+
}
|
|
44
|
+
// Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
|
|
45
|
+
&:-webkit-autofill {
|
|
46
|
+
padding-top: $form-floating-input-padding-t;
|
|
47
|
+
padding-bottom: $form-floating-input-padding-b;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
> .form-select {
|
|
52
|
+
padding-top: $form-floating-input-padding-t;
|
|
53
|
+
padding-bottom: $form-floating-input-padding-b;
|
|
54
|
+
padding-left: $form-floating-padding-x;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
> .form-control:focus,
|
|
58
|
+
> .form-control:not(:placeholder-shown),
|
|
59
|
+
> .form-control-plaintext,
|
|
60
|
+
> .form-select {
|
|
61
|
+
~ label {
|
|
62
|
+
transform: $form-floating-label-transform;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
// Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
|
|
66
|
+
> .form-control:-webkit-autofill {
|
|
67
|
+
~ label {
|
|
68
|
+
transform: $form-floating-label-transform;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
> textarea:focus,
|
|
72
|
+
> textarea:not(:placeholder-shown) {
|
|
73
|
+
~ label::after {
|
|
74
|
+
position: absolute;
|
|
75
|
+
inset: $form-floating-padding-y ($form-floating-padding-x * .5);
|
|
76
|
+
z-index: -1;
|
|
77
|
+
height: $form-floating-label-height;
|
|
78
|
+
content: "";
|
|
79
|
+
background-color: $input-bg;
|
|
80
|
+
@include border-radius($input-border-radius);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
> textarea:disabled ~ label::after {
|
|
84
|
+
background-color: $input-disabled-bg;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
> .form-control-plaintext {
|
|
88
|
+
~ label {
|
|
89
|
+
border-width: $input-border-width 0; // Required to properly position label text - as explained above
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
> :disabled ~ label,
|
|
94
|
+
> .form-control:disabled ~ label { // Required for `.form-control`s because of specificity
|
|
95
|
+
color: $form-floating-label-disabled-color;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Check/radio
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
.form-check {
|
|
6
|
+
display: block;
|
|
7
|
+
min-height: $form-check-min-height;
|
|
8
|
+
padding-left: $form-check-padding-start;
|
|
9
|
+
margin-bottom: $form-check-margin-bottom;
|
|
10
|
+
|
|
11
|
+
.form-check-input {
|
|
12
|
+
float: left;
|
|
13
|
+
margin-left: $form-check-padding-start * -1;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.form-check-reverse {
|
|
18
|
+
padding-right: $form-check-padding-start;
|
|
19
|
+
padding-left: 0;
|
|
20
|
+
text-align: right;
|
|
21
|
+
|
|
22
|
+
.form-check-input {
|
|
23
|
+
float: right;
|
|
24
|
+
margin-right: $form-check-padding-start * -1;
|
|
25
|
+
margin-left: 0;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.form-check-input {
|
|
30
|
+
--#{$prefix}form-check-bg: #{$form-check-input-bg};
|
|
31
|
+
|
|
32
|
+
flex-shrink: 0;
|
|
33
|
+
width: $form-check-input-width;
|
|
34
|
+
height: $form-check-input-width;
|
|
35
|
+
margin-top: ($line-height-base - $form-check-input-width) * .5; // line-height minus check height
|
|
36
|
+
vertical-align: top;
|
|
37
|
+
appearance: none;
|
|
38
|
+
background-color: var(--#{$prefix}form-check-bg);
|
|
39
|
+
background-image: var(--#{$prefix}form-check-bg-image);
|
|
40
|
+
background-repeat: no-repeat;
|
|
41
|
+
background-position: center;
|
|
42
|
+
background-size: contain;
|
|
43
|
+
border: $form-check-input-border;
|
|
44
|
+
print-color-adjust: exact; // Keep themed appearance for print
|
|
45
|
+
@include transition($form-check-transition);
|
|
46
|
+
|
|
47
|
+
&[type="checkbox"] {
|
|
48
|
+
@include border-radius($form-check-input-border-radius);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&[type="radio"] {
|
|
52
|
+
// stylelint-disable-next-line property-disallowed-list
|
|
53
|
+
border-radius: $form-check-radio-border-radius;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:active {
|
|
57
|
+
filter: $form-check-input-active-filter;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&:focus {
|
|
61
|
+
border-color: $form-check-input-focus-border;
|
|
62
|
+
outline: 0;
|
|
63
|
+
box-shadow: $form-check-input-focus-box-shadow;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&:checked {
|
|
67
|
+
background-color: $form-check-input-checked-bg-color;
|
|
68
|
+
border-color: $form-check-input-checked-border-color;
|
|
69
|
+
|
|
70
|
+
&[type="checkbox"] {
|
|
71
|
+
@if $enable-gradients {
|
|
72
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-input-checked-bg-image)}, var(--#{$prefix}gradient);
|
|
73
|
+
} @else {
|
|
74
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-input-checked-bg-image)};
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&[type="radio"] {
|
|
79
|
+
@if $enable-gradients {
|
|
80
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-radio-checked-bg-image)}, var(--#{$prefix}gradient);
|
|
81
|
+
} @else {
|
|
82
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-radio-checked-bg-image)};
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&[type="checkbox"]:indeterminate {
|
|
88
|
+
background-color: $form-check-input-indeterminate-bg-color;
|
|
89
|
+
border-color: $form-check-input-indeterminate-border-color;
|
|
90
|
+
|
|
91
|
+
@if $enable-gradients {
|
|
92
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-input-indeterminate-bg-image)}, var(--#{$prefix}gradient);
|
|
93
|
+
} @else {
|
|
94
|
+
--#{$prefix}form-check-bg-image: #{escape-svg($form-check-input-indeterminate-bg-image)};
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&:disabled {
|
|
99
|
+
pointer-events: none;
|
|
100
|
+
filter: none;
|
|
101
|
+
opacity: $form-check-input-disabled-opacity;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Use disabled attribute in addition of :disabled pseudo-class
|
|
105
|
+
// See: https://github.com/twbs/bootstrap/issues/28247
|
|
106
|
+
&[disabled],
|
|
107
|
+
&:disabled {
|
|
108
|
+
~ .form-check-label {
|
|
109
|
+
cursor: default;
|
|
110
|
+
opacity: $form-check-label-disabled-opacity;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.form-check-label {
|
|
116
|
+
color: $form-check-label-color;
|
|
117
|
+
cursor: $form-check-label-cursor;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
//
|
|
121
|
+
// Switch
|
|
122
|
+
//
|
|
123
|
+
|
|
124
|
+
.form-switch {
|
|
125
|
+
padding-left: $form-switch-padding-start;
|
|
126
|
+
|
|
127
|
+
.form-check-input {
|
|
128
|
+
--#{$prefix}form-switch-bg: #{escape-svg($form-switch-bg-image)};
|
|
129
|
+
|
|
130
|
+
width: $form-switch-width;
|
|
131
|
+
margin-left: $form-switch-padding-start * -1;
|
|
132
|
+
background-image: var(--#{$prefix}form-switch-bg);
|
|
133
|
+
background-position: left center;
|
|
134
|
+
@include border-radius($form-switch-border-radius, 0);
|
|
135
|
+
@include transition($form-switch-transition);
|
|
136
|
+
|
|
137
|
+
&:focus {
|
|
138
|
+
--#{$prefix}form-switch-bg: #{escape-svg($form-switch-focus-bg-image)};
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
&:checked {
|
|
142
|
+
background-position: $form-switch-checked-bg-position;
|
|
143
|
+
|
|
144
|
+
@if $enable-gradients {
|
|
145
|
+
--#{$prefix}form-switch-bg: #{escape-svg($form-switch-checked-bg-image)}, var(--#{$prefix}gradient);
|
|
146
|
+
} @else {
|
|
147
|
+
--#{$prefix}form-switch-bg: #{escape-svg($form-switch-checked-bg-image)};
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.form-check-reverse {
|
|
153
|
+
padding-right: $form-switch-padding-start;
|
|
154
|
+
padding-left: 0;
|
|
155
|
+
|
|
156
|
+
.form-check-input {
|
|
157
|
+
margin-right: $form-switch-padding-start * -1;
|
|
158
|
+
margin-left: 0;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.form-check-inline {
|
|
164
|
+
display: inline-block;
|
|
165
|
+
margin-right: $form-check-inline-margin-end;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.btn-check {
|
|
169
|
+
position: absolute;
|
|
170
|
+
clip: rect(0, 0, 0, 0);
|
|
171
|
+
pointer-events: none;
|
|
172
|
+
|
|
173
|
+
&[disabled],
|
|
174
|
+
&:disabled {
|
|
175
|
+
+ .btn {
|
|
176
|
+
pointer-events: none;
|
|
177
|
+
filter: none;
|
|
178
|
+
opacity: $form-check-btn-check-disabled-opacity;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@if $enable-dark-mode {
|
|
184
|
+
@include color-mode(dark) {
|
|
185
|
+
.form-switch .form-check-input:not(:checked):not(:focus) {
|
|
186
|
+
--#{$prefix}form-switch-bg: #{escape-svg($form-switch-bg-image-dark)};
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
//
|
|
2
|
+
// General form controls (plus a few specific high-level interventions)
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
.form-control {
|
|
6
|
+
display: block;
|
|
7
|
+
width: 100%;
|
|
8
|
+
padding: $input-padding-y $input-padding-x;
|
|
9
|
+
font-family: $input-font-family;
|
|
10
|
+
@include font-size($input-font-size);
|
|
11
|
+
font-weight: $input-font-weight;
|
|
12
|
+
line-height: $input-line-height;
|
|
13
|
+
color: $input-color;
|
|
14
|
+
appearance: none; // Fix appearance for date inputs in Safari
|
|
15
|
+
background-color: $input-bg;
|
|
16
|
+
background-clip: padding-box;
|
|
17
|
+
border: $input-border-width solid $input-border-color;
|
|
18
|
+
|
|
19
|
+
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
20
|
+
@include border-radius($input-border-radius, 0);
|
|
21
|
+
|
|
22
|
+
@include box-shadow($input-box-shadow);
|
|
23
|
+
@include transition($input-transition);
|
|
24
|
+
|
|
25
|
+
&[type="file"] {
|
|
26
|
+
overflow: hidden; // prevent pseudo element button overlap
|
|
27
|
+
|
|
28
|
+
&:not(:disabled):not([readonly]) {
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Customize the `:focus` state to imitate native WebKit styles.
|
|
34
|
+
&:focus {
|
|
35
|
+
color: $input-focus-color;
|
|
36
|
+
background-color: $input-focus-bg;
|
|
37
|
+
border-color: $input-focus-border-color;
|
|
38
|
+
outline: 0;
|
|
39
|
+
@if $enable-shadows {
|
|
40
|
+
@include box-shadow($input-box-shadow, $input-focus-box-shadow);
|
|
41
|
+
} @else {
|
|
42
|
+
// Avoid using mixin so we can pass custom focus shadow properly
|
|
43
|
+
box-shadow: $input-focus-box-shadow;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&::-webkit-date-and-time-value {
|
|
48
|
+
// On Android Chrome, form-control's "width: 100%" makes the input width too small
|
|
49
|
+
// Tested under Android 11 / Chrome 89, Android 12 / Chrome 100, Android 13 / Chrome 109
|
|
50
|
+
//
|
|
51
|
+
// On iOS Safari, form-control's "appearance: none" + "width: 100%" makes the input width too small
|
|
52
|
+
// Tested under iOS 16.2 / Safari 16.2
|
|
53
|
+
min-width: 85px; // Seems to be a good minimum safe width
|
|
54
|
+
|
|
55
|
+
// Add some height to date inputs on iOS
|
|
56
|
+
// https://github.com/twbs/bootstrap/issues/23307
|
|
57
|
+
// TODO: we can remove this workaround once https://bugs.webkit.org/show_bug.cgi?id=198959 is resolved
|
|
58
|
+
// Multiply line-height by 1em if it has no unit
|
|
59
|
+
height: if(unit($input-line-height) == "", $input-line-height * 1em, $input-line-height);
|
|
60
|
+
|
|
61
|
+
// Android Chrome type="date" is taller than the other inputs
|
|
62
|
+
// because of "margin: 1px 24px 1px 4px" inside the shadow DOM
|
|
63
|
+
// Tested under Android 11 / Chrome 89, Android 12 / Chrome 100, Android 13 / Chrome 109
|
|
64
|
+
margin: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Prevent excessive date input height in Webkit
|
|
68
|
+
// https://github.com/twbs/bootstrap/issues/34433
|
|
69
|
+
&::-webkit-datetime-edit {
|
|
70
|
+
display: block;
|
|
71
|
+
padding: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Placeholder
|
|
75
|
+
&::placeholder {
|
|
76
|
+
color: $input-placeholder-color;
|
|
77
|
+
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
78
|
+
opacity: 1;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Disabled inputs
|
|
82
|
+
//
|
|
83
|
+
// HTML5 says that controls under a fieldset > legend:first-child won't be
|
|
84
|
+
// disabled if the fieldset is disabled. Due to implementation difficulty, we
|
|
85
|
+
// don't honor that edge case; we style them as disabled anyway.
|
|
86
|
+
&:disabled {
|
|
87
|
+
color: $input-disabled-color;
|
|
88
|
+
background-color: $input-disabled-bg;
|
|
89
|
+
border-color: $input-disabled-border-color;
|
|
90
|
+
// iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
|
|
91
|
+
opacity: 1;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// File input buttons theming
|
|
95
|
+
&::file-selector-button {
|
|
96
|
+
padding: $input-padding-y $input-padding-x;
|
|
97
|
+
margin: (-$input-padding-y) (-$input-padding-x);
|
|
98
|
+
margin-inline-end: $input-padding-x;
|
|
99
|
+
color: $form-file-button-color;
|
|
100
|
+
@include gradient-bg($form-file-button-bg);
|
|
101
|
+
pointer-events: none;
|
|
102
|
+
border-color: inherit;
|
|
103
|
+
border-style: solid;
|
|
104
|
+
border-width: 0;
|
|
105
|
+
border-inline-end-width: $input-border-width;
|
|
106
|
+
border-radius: 0; // stylelint-disable-line property-disallowed-list
|
|
107
|
+
@include transition($btn-transition);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
111
|
+
background-color: $form-file-button-hover-bg;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// Readonly controls as plain text
|
|
116
|
+
//
|
|
117
|
+
// Apply class to a readonly input to make it appear like regular plain
|
|
118
|
+
// text (without any border, background color, focus indicator)
|
|
119
|
+
|
|
120
|
+
.form-control-plaintext {
|
|
121
|
+
display: block;
|
|
122
|
+
width: 100%;
|
|
123
|
+
padding: $input-padding-y 0;
|
|
124
|
+
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
|
|
125
|
+
line-height: $input-line-height;
|
|
126
|
+
color: $input-plaintext-color;
|
|
127
|
+
background-color: transparent;
|
|
128
|
+
border: solid transparent;
|
|
129
|
+
border-width: $input-border-width 0;
|
|
130
|
+
|
|
131
|
+
&:focus {
|
|
132
|
+
outline: 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&.form-control-sm,
|
|
136
|
+
&.form-control-lg {
|
|
137
|
+
padding-right: 0;
|
|
138
|
+
padding-left: 0;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Form control sizing
|
|
143
|
+
//
|
|
144
|
+
// Build on `.form-control` with modifier classes to decrease or increase the
|
|
145
|
+
// height and font-size of form controls.
|
|
146
|
+
//
|
|
147
|
+
// Repeated in `_input_group.scss` to avoid Sass extend issues.
|
|
148
|
+
|
|
149
|
+
.form-control-sm {
|
|
150
|
+
min-height: $input-height-sm;
|
|
151
|
+
padding: $input-padding-y-sm $input-padding-x-sm;
|
|
152
|
+
@include font-size($input-font-size-sm);
|
|
153
|
+
@include border-radius($input-border-radius-sm);
|
|
154
|
+
|
|
155
|
+
&::file-selector-button {
|
|
156
|
+
padding: $input-padding-y-sm $input-padding-x-sm;
|
|
157
|
+
margin: (-$input-padding-y-sm) (-$input-padding-x-sm);
|
|
158
|
+
margin-inline-end: $input-padding-x-sm;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.form-control-lg {
|
|
163
|
+
min-height: $input-height-lg;
|
|
164
|
+
padding: $input-padding-y-lg $input-padding-x-lg;
|
|
165
|
+
@include font-size($input-font-size-lg);
|
|
166
|
+
@include border-radius($input-border-radius-lg);
|
|
167
|
+
|
|
168
|
+
&::file-selector-button {
|
|
169
|
+
padding: $input-padding-y-lg $input-padding-x-lg;
|
|
170
|
+
margin: (-$input-padding-y-lg) (-$input-padding-x-lg);
|
|
171
|
+
margin-inline-end: $input-padding-x-lg;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Make sure textareas don't shrink too much when resized
|
|
176
|
+
// https://github.com/twbs/bootstrap/pull/29124
|
|
177
|
+
// stylelint-disable selector-no-qualifying-type
|
|
178
|
+
textarea {
|
|
179
|
+
&.form-control {
|
|
180
|
+
min-height: $input-height;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
&.form-control-sm {
|
|
184
|
+
min-height: $input-height-sm;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&.form-control-lg {
|
|
188
|
+
min-height: $input-height-lg;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
// stylelint-enable selector-no-qualifying-type
|
|
192
|
+
|
|
193
|
+
.form-control-color {
|
|
194
|
+
width: $form-color-width;
|
|
195
|
+
height: $input-height;
|
|
196
|
+
padding: $input-padding-y;
|
|
197
|
+
|
|
198
|
+
&:not(:disabled):not([readonly]) {
|
|
199
|
+
cursor: pointer;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&::-moz-color-swatch {
|
|
203
|
+
border: 0 !important; // stylelint-disable-line declaration-no-important
|
|
204
|
+
@include border-radius($input-border-radius);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&::-webkit-color-swatch {
|
|
208
|
+
border: 0 !important; // stylelint-disable-line declaration-no-important
|
|
209
|
+
@include border-radius($input-border-radius);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
&.form-control-sm { height: $input-height-sm; }
|
|
213
|
+
&.form-control-lg { height: $input-height-lg; }
|
|
214
|
+
}
|