@dynamic-framework/ui-react 1.5.0 → 1.7.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.
- package/LICENSE +223 -21
- package/README.md +3 -15
- package/dist/css/dynamic-root.css +286 -0
- package/dist/css/dynamic-root.min.css +1 -0
- package/dist/css/dynamic-ui.css +17279 -1
- package/dist/css/dynamic-ui.min.css +1 -0
- package/dist/index.esm.js +918 -549
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +966 -590
- package/dist/index.js.map +1 -1
- package/dist/types/components/DAlert.d.ts +16 -0
- package/dist/types/components/DBadge.d.ts +11 -0
- package/dist/types/components/DBoxFile.d.ts +3 -4
- package/dist/types/components/DButton.d.ts +21 -0
- package/dist/types/components/DCard.d.ts +2 -2
- package/dist/types/components/DCardAccount.d.ts +3 -3
- package/dist/types/components/DCardBody.d.ts +2 -2
- package/dist/types/components/DCardFooter.d.ts +2 -2
- package/dist/types/components/DCardHeader.d.ts +2 -2
- package/dist/types/components/DCarousel.d.ts +3 -3
- package/dist/types/components/DCarouselSlide.d.ts +1 -1
- package/dist/types/components/DChip.d.ts +10 -0
- package/dist/types/components/DCollapse.d.ts +4 -4
- package/dist/types/components/DCollapseIconText.d.ts +3 -4
- package/dist/types/components/DCurrencyText.d.ts +1 -1
- package/dist/types/components/DDatePicker.d.ts +5 -5
- package/dist/types/components/DDatePickerHeader.d.ts +4 -4
- package/dist/types/components/DDatePickerInput.d.ts +7 -7
- package/dist/types/components/DDatePickerTime.d.ts +6 -6
- package/dist/types/components/DFormikInput.d.ts +2 -2
- package/dist/types/components/DFormikInputCurrency.d.ts +1 -1
- package/dist/types/components/DFormikInputSelect.d.ts +3 -6
- package/dist/types/components/DIcon.d.ts +16 -0
- package/dist/types/components/DInput.d.ts +32 -0
- package/dist/types/components/DInputCheck.d.ts +15 -0
- package/dist/types/components/DInputCounter.d.ts +22 -0
- package/dist/types/components/DInputCurrency.d.ts +4 -8
- package/dist/types/components/DInputCurrencyBase.d.ts +24 -0
- package/dist/types/components/DInputPassword.d.ts +17 -0
- package/dist/types/components/DInputPin.d.ts +19 -0
- package/dist/types/components/DInputSearch.d.ts +19 -0
- package/dist/types/components/DInputSelect.d.ts +23 -0
- package/dist/types/components/DInputSwitch.d.ts +11 -0
- package/dist/types/components/DList.d.ts +4 -3
- package/dist/types/components/DListItem.d.ts +4 -4
- package/dist/types/components/DListItemMovement.d.ts +2 -2
- package/dist/types/components/DModal.d.ts +14 -0
- package/dist/types/components/DModalBody.d.ts +6 -0
- package/dist/types/components/DModalFooter.d.ts +6 -0
- package/dist/types/components/DModalHeader.d.ts +7 -0
- package/dist/types/components/DMonthPicker.d.ts +4 -4
- package/dist/types/components/DOffcanvas.d.ts +10 -0
- package/dist/types/components/DOffcanvasBody.d.ts +6 -0
- package/dist/types/components/DOffcanvasFooter.d.ts +6 -0
- package/dist/types/components/DOffcanvasHeader.d.ts +7 -0
- package/dist/types/components/DPaginator.d.ts +4 -4
- package/dist/types/components/DPopover.d.ts +3 -2
- package/dist/types/components/DProgress.d.ts +9 -0
- package/dist/types/components/DQuickActionButton.d.ts +22 -0
- package/dist/types/components/DQuickActionCheck.d.ts +13 -0
- package/dist/types/components/DQuickActionSelect.d.ts +12 -0
- package/dist/types/components/DQuickActionSwitch.d.ts +11 -0
- package/dist/types/components/DSkeleton.d.ts +2 -2
- package/dist/types/components/DStepper.d.ts +6 -3
- package/dist/types/components/DStepperDesktop.d.ts +12 -0
- package/dist/types/components/DStepperMobile.d.ts +11 -0
- package/dist/types/components/DTabContent.d.ts +1 -1
- package/dist/types/components/DTabs.d.ts +5 -5
- package/dist/types/components/DToastContainer.d.ts +2 -3
- package/dist/types/components/DTooltip.d.ts +2 -2
- package/dist/types/components/banking/{MPermissionGroup.d.ts → DPermissionGroup.d.ts} +2 -2
- package/dist/types/components/banking/DPermissionItem.d.ts +1 -1
- package/dist/types/components/banking/{MSummaryCard.d.ts → DSummaryCard.d.ts} +2 -2
- package/dist/types/components/banking/index.d.ts +2 -2
- package/dist/types/components/banking/interface.d.ts +1 -1
- package/dist/types/components/config.d.ts +5 -0
- package/dist/types/components/index.d.ts +48 -20
- package/dist/types/components/interface.d.ts +44 -0
- package/dist/types/contexts/ModalContext.d.ts +12 -12
- package/dist/types/contexts/OffcanvasContext.d.ts +12 -12
- package/dist/types/hooks/useScreenshot.d.ts +1 -1
- package/dist/types/hooks/useToast.d.ts +3 -3
- package/dist/types/stories/components/DBadge.stories.d.ts +1 -1
- package/dist/types/stories/components/DBoxFile.stories.d.ts +1 -1
- package/dist/types/stories/components/DButton.stories.d.ts +1 -1
- package/dist/types/stories/components/DChip.stories.d.ts +1 -1
- package/dist/types/stories/components/DCurrencyText.stories.d.ts +1 -1
- package/dist/types/stories/components/DDatePicker.stories.d.ts +1 -1
- package/dist/types/stories/components/DFormikInput.stories.d.ts +1 -1
- package/dist/types/stories/components/DFormikInputCurrency.stories.d.ts +1 -1
- package/dist/types/stories/components/DFormikInputSelect.stories.d.ts +1 -1
- package/dist/types/stories/components/DIcon.stories.d.ts +1 -1
- package/dist/types/stories/components/DInput.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputCheck.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputCounter.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputCurrency.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputCurrencyBase.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputPassword.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputPin.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputSearch.stories.d.ts +1 -1
- package/dist/types/stories/components/DInputSelect.stories.d.ts +7 -3
- package/dist/types/stories/components/DInputSwitch.stories.d.ts +1 -1
- package/dist/types/stories/components/DList.stories.d.ts +1 -1
- package/dist/types/stories/components/DListItem.stories.d.ts +1 -1
- package/dist/types/stories/components/DListItemMovement.stories.d.ts +1 -1
- package/dist/types/stories/components/DPaginator.stories.d.ts +1 -1
- package/dist/types/stories/components/DProgress.stories.d.ts +1 -1
- package/dist/types/stories/components/DQuickActionButton.stories.d.ts +1 -1
- package/dist/types/stories/components/DQuickActionCheck.stories.d.ts +1 -1
- package/dist/types/stories/components/DQuickActionSelect.stories.d.ts +1 -1
- package/dist/types/stories/components/DQuickActionSwitch.stories.d.ts +1 -1
- package/dist/types/stories/components/DSkeleton.stories.d.ts +1 -1
- package/dist/types/stories/components/DStepper.stories.d.ts +1 -1
- package/dist/types/stories/components/DStepperDesktop.stories.d.ts +7 -0
- package/dist/types/stories/components/DStepperMobile.stories.d.ts +6 -0
- package/dist/types/stories/components/DTooltip.stories.d.ts +1 -1
- package/dist/types/stories/hooks/useFormatCurrency.stories.d.ts +1 -1
- package/dist/types/stories/hooks/useModalContext.stories.d.ts +1 -1
- package/dist/types/stories/hooks/useOffcanvasContext.stories.d.ts +1 -1
- package/dist/types/stories/hooks/useToast.stories.d.ts +2 -2
- package/dist/types/stories/patterns/DAlert.stories.d.ts +1 -1
- package/dist/types/stories/{components → patterns}/DCard.stories.d.ts +1 -1
- package/dist/types/stories/{components → patterns}/DCardAccount.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DCarousel.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DCollapse.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DCollapseIconText.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DModal.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DOffcanvas.stories.d.ts +1 -1
- package/dist/types/stories/patterns/DPopover.stories.d.ts +2 -1
- package/dist/types/stories/patterns/DTabs.stories.d.ts +1 -1
- package/dist/types/utils/format-currency.d.ts +2 -0
- package/dist/types/utils/index.d.ts +2 -1
- package/dist/types/utils/liquid-parser.d.ts +20 -0
- package/package.json +64 -54
- package/src/style/_shame.scss +4 -0
- package/src/style/abstracts/_+import.scss +14 -2
- package/src/style/abstracts/_funcions.scss +55 -0
- package/src/style/abstracts/_maps.scss +1 -0
- package/src/style/abstracts/_mixins.scss +133 -0
- package/src/style/abstracts/_utilities.scss +78 -0
- package/src/style/abstracts/variables/_+import.scss +159 -0
- package/src/style/abstracts/variables/_accordion.scss +35 -0
- package/src/style/abstracts/variables/_alerts.scss +27 -0
- package/src/style/abstracts/variables/_badges.scss +15 -0
- package/src/style/abstracts/variables/_body.scss +52 -0
- package/src/style/abstracts/variables/_border.scss +29 -0
- package/src/style/abstracts/variables/_box-file.scss +4 -4
- package/src/style/abstracts/variables/_box-shadow.scss +6 -0
- package/src/style/abstracts/variables/_breadcrumb.scss +15 -0
- package/src/style/abstracts/variables/_buttons.scss +55 -0
- package/src/style/abstracts/variables/_cards.scss +23 -0
- package/src/style/abstracts/variables/_carousel.scss +37 -0
- package/src/style/abstracts/variables/_chips.scss +13 -0
- package/src/style/abstracts/variables/_close.scss +16 -0
- package/src/style/abstracts/variables/_code.scss +16 -0
- package/src/style/abstracts/variables/_collapse-icon-text.scss +3 -3
- package/src/style/abstracts/variables/_colors.scss +515 -0
- package/src/style/abstracts/variables/_cursors.scss +32 -0
- package/src/style/abstracts/variables/_dropdowns.scss +54 -0
- package/src/style/abstracts/variables/_figures.scss +6 -0
- package/src/style/abstracts/variables/_forms.scss +313 -0
- package/src/style/abstracts/variables/_grid.scss +41 -0
- package/src/style/abstracts/variables/_list-group.scss +43 -0
- package/src/style/abstracts/variables/_modals.scss +58 -0
- package/src/style/abstracts/variables/_navbar.scss +43 -0
- package/src/style/abstracts/variables/_navs.scss +44 -0
- package/src/style/abstracts/variables/_offcanvas.scss +20 -0
- package/src/style/abstracts/variables/_options.scss +24 -0
- package/src/style/abstracts/variables/_pagination.scss +41 -0
- package/src/style/abstracts/variables/_popovers.scss +31 -0
- package/src/style/abstracts/variables/_progress.scss +17 -0
- package/src/style/abstracts/variables/_quick-action-button.scss +31 -0
- package/src/style/abstracts/variables/_quick-action-check.scss +22 -0
- package/src/style/abstracts/variables/_quick-action-select.scss +16 -0
- package/src/style/abstracts/variables/_quick-action-switch.scss +21 -0
- package/src/style/abstracts/variables/_spacers.scss +28 -0
- package/src/style/abstracts/variables/_spinners.scss +13 -0
- package/src/style/abstracts/variables/_tables.scss +57 -0
- package/src/style/abstracts/variables/_thumbnails.scss +10 -0
- package/src/style/abstracts/variables/_toasts.scss +19 -0
- package/src/style/abstracts/variables/_tooltips.scss +29 -0
- package/src/style/abstracts/variables/_typography.scss +122 -0
- package/src/style/abstracts/variables/_z-index.scss +28 -0
- package/src/style/base/_+import.scss +15 -0
- package/src/style/base/_root.scss +248 -0
- package/src/style/base/_tables.scss +171 -0
- package/src/style/components/_+import.scss +46 -1
- package/src/style/components/_d-alert.scss +45 -0
- package/src/style/components/_d-badge.scss +26 -0
- package/src/style/components/_d-button.scss +191 -0
- package/src/style/components/_d-card-account.scss +3 -3
- package/src/style/components/_d-chip.scss +52 -0
- package/src/style/components/_d-icon.scss +32 -0
- package/src/style/components/_d-input-check.scss +20 -0
- package/src/style/components/_d-input-pin.scss +121 -0
- package/src/style/components/_d-input-select.scss +20 -0
- package/src/style/components/_d-input-switch.scss +58 -0
- package/src/style/components/_d-input.scss +168 -0
- package/src/style/components/_d-modal.scss +55 -0
- package/src/style/components/_d-offcanvas.scss +45 -0
- package/src/style/components/_d-popover.scss +4 -1
- package/src/style/components/_d-progress.scss +9 -0
- package/src/style/components/_d-quick-action-button.scss +111 -0
- package/src/style/components/_d-quick-action-check.scss +74 -0
- package/src/style/components/_d-quick-action-select.scss +56 -0
- package/src/style/components/_d-quick-action-switch.scss +71 -0
- package/src/style/components/{_d-stepper.scss → _d-stepper-desktop.scss} +1 -1
- package/src/style/components/_d-stepper-mobile.scss +69 -0
- package/src/style/dynamic-root.scss +6 -0
- package/src/style/dynamic-ui.scss +13 -1
- package/src/style/helpers/_+import.scss +13 -0
- package/src/style/helpers/_color-bg.scss +7 -0
- package/dist/css/dynamic-ui-all.css +0 -1
- package/dist/css/dynamic-ui-react.css +0 -1
- package/dist/types/components/proxies.d.ts +0 -23
- package/dist/types/components/react-component-lib/createComponent.d.ts +0 -10
- package/dist/types/components/react-component-lib/createOverlayComponent.d.ts +0 -21
- package/dist/types/components/react-component-lib/index.d.ts +0 -2
- package/dist/types/components/react-component-lib/interfaces.d.ts +0 -29
- package/dist/types/components/react-component-lib/utils/attachProps.d.ts +0 -16
- package/dist/types/components/react-component-lib/utils/case.d.ts +0 -2
- package/dist/types/components/react-component-lib/utils/dev.d.ts +0 -2
- package/dist/types/components/react-component-lib/utils/index.d.ts +0 -10
- package/src/style/dynamic-ui-all.scss +0 -3
- package/src/style/dynamic-ui-react.scss +0 -7
- /package/dist/types/stories/{constants.d.ts → config/constants.d.ts} +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Options
|
|
2
|
+
//
|
|
3
|
+
// Quickly modify global styling by enabling or disabling optional features.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
$enable-caret: true !default;
|
|
7
|
+
$enable-rounded: true !default;
|
|
8
|
+
$enable-shadows: true !default;
|
|
9
|
+
$enable-gradients: false !default;
|
|
10
|
+
$enable-transitions: true !default;
|
|
11
|
+
$enable-reduced-motion: true !default;
|
|
12
|
+
$enable-smooth-scroll: true !default;
|
|
13
|
+
$enable-grid-classes: true !default;
|
|
14
|
+
$enable-container-classes: true !default;
|
|
15
|
+
$enable-cssgrid: false !default;
|
|
16
|
+
$enable-button-pointers: true !default;
|
|
17
|
+
$enable-rfs: true !default;
|
|
18
|
+
$enable-validation-icons: false !default;
|
|
19
|
+
$enable-negative-margins: false !default;
|
|
20
|
+
$enable-deprecation-messages: true !default;
|
|
21
|
+
$enable-important-utilities: true !default;
|
|
22
|
+
|
|
23
|
+
$enable-dark-mode: false !default;
|
|
24
|
+
$color-mode-type: data !default; // `data` or `media-query`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// Pagination
|
|
2
|
+
|
|
3
|
+
// scss-docs-start pagination-variables
|
|
4
|
+
$pagination-padding-y: .375rem !default;
|
|
5
|
+
$pagination-padding-x: .75rem !default;
|
|
6
|
+
$pagination-padding-y-sm: .25rem !default;
|
|
7
|
+
$pagination-padding-x-sm: .5rem !default;
|
|
8
|
+
$pagination-padding-y-lg: .75rem !default;
|
|
9
|
+
$pagination-padding-x-lg: 1.5rem !default;
|
|
10
|
+
|
|
11
|
+
$pagination-font-size: $font-size-base !default;
|
|
12
|
+
|
|
13
|
+
$pagination-color: var(--#{$prefix}gray) !default;
|
|
14
|
+
$pagination-bg: var(--#{$prefix}body-bg) !default;
|
|
15
|
+
$pagination-border-radius: var(--#{$prefix}border-radius) !default;
|
|
16
|
+
$pagination-border-width: 0 !default;
|
|
17
|
+
$pagination-margin-start: calc(#{$pagination-border-width} * -1) !default;
|
|
18
|
+
$pagination-border-color: var(--#{$prefix}border-color) !default;
|
|
19
|
+
|
|
20
|
+
$pagination-focus-color: var(--#{$prefix}white) !default;
|
|
21
|
+
$pagination-focus-bg: var(--#{$prefix}secondary) !default;
|
|
22
|
+
$pagination-focus-box-shadow: 0 !default;
|
|
23
|
+
$pagination-focus-outline: 0 !default;
|
|
24
|
+
|
|
25
|
+
$pagination-hover-color: var(--#{$prefix}secondary) !default;
|
|
26
|
+
$pagination-hover-bg: var(--#{$prefix}secondary-100) !default;
|
|
27
|
+
$pagination-hover-border-color: 0 !default; // Todo in v6: remove this?
|
|
28
|
+
|
|
29
|
+
$pagination-active-color: $component-active-color !default;
|
|
30
|
+
$pagination-active-bg: $component-active-bg !default;
|
|
31
|
+
$pagination-active-border-color: $component-active-bg !default;
|
|
32
|
+
|
|
33
|
+
$pagination-disabled-color: var(--#{$prefix}gray-400) !default;
|
|
34
|
+
$pagination-disabled-bg: var(--#{$prefix}transparent) !default;
|
|
35
|
+
$pagination-disabled-border-color: var(--#{$prefix}border-color) !default;
|
|
36
|
+
|
|
37
|
+
$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;
|
|
38
|
+
|
|
39
|
+
$pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
|
|
40
|
+
$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
|
|
41
|
+
// scss-docs-end pagination-variables
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// Popovers
|
|
2
|
+
|
|
3
|
+
// scss-docs-start popover-variables
|
|
4
|
+
$popover-font-size: $font-size-sm !default;
|
|
5
|
+
$popover-bg: var(--#{$prefix}body-bg) !default;
|
|
6
|
+
$popover-max-width: 276px !default;
|
|
7
|
+
$popover-border-width: var(--#{$prefix}border-width) !default;
|
|
8
|
+
$popover-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
9
|
+
$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;
|
|
10
|
+
$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default;
|
|
11
|
+
$popover-box-shadow: $box-shadow !default;
|
|
12
|
+
|
|
13
|
+
$popover-header-font-size: $font-size-base !default;
|
|
14
|
+
$popover-header-bg: var(--#{$prefix}secondary-bg) !default;
|
|
15
|
+
$popover-header-color: $headings-color !default;
|
|
16
|
+
$popover-header-padding-y: .5rem !default;
|
|
17
|
+
$popover-header-padding-x: $spacer !default;
|
|
18
|
+
|
|
19
|
+
$popover-body-color: var(--#{$prefix}body-color) !default;
|
|
20
|
+
$popover-body-padding-y: $spacer !default;
|
|
21
|
+
$popover-body-padding-x: $spacer !default;
|
|
22
|
+
|
|
23
|
+
$popover-arrow-width: 1rem !default;
|
|
24
|
+
$popover-arrow-height: .5rem !default;
|
|
25
|
+
// scss-docs-end popover-variables
|
|
26
|
+
|
|
27
|
+
// fusv-disable
|
|
28
|
+
// Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
29
|
+
$popover-arrow-color: $popover-bg !default;
|
|
30
|
+
$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;
|
|
31
|
+
// fusv-enable
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Progress bars
|
|
2
|
+
|
|
3
|
+
// scss-docs-start progress-variables
|
|
4
|
+
$progress-height: $spacer-3 !default;
|
|
5
|
+
$progress-font-size: var(--#{$prefix}ref-fs-small) !default;
|
|
6
|
+
$progress-bg: var(--#{$prefix}secondary-100) !default;
|
|
7
|
+
$progress-border-radius: var(--#{$prefix}border-radius-pill) !default;
|
|
8
|
+
$progress-box-shadow: none !default;
|
|
9
|
+
$progress-bar-color: var(--#{$prefix}white) !default;
|
|
10
|
+
$progress-bar-bg: var(--#{$prefix}secondary) !default;
|
|
11
|
+
$progress-bar-animation-timing: 1s linear infinite !default;
|
|
12
|
+
$progress-bar-transition: width .6s ease !default;
|
|
13
|
+
|
|
14
|
+
// custom
|
|
15
|
+
$progress-font-weight: var(--#{$prefix}ref-fw-bold) !default;
|
|
16
|
+
// end custom
|
|
17
|
+
// scss-docs-end progress-variables
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
$quick-action-button-gap: var(--#{$prefix}ref-spacer-2) !default;
|
|
2
|
+
$quick-action-button-padding: var(--#{$prefix}ref-spacer-3) !default;
|
|
3
|
+
$quick-action-button-bg: var(--#{$prefix}white) !default;
|
|
4
|
+
$quick-action-button-border: 1px solid var(--#{$prefix}secondary-100) !default;
|
|
5
|
+
$quick-action-button-border-radius: var(--#{$prefix}border-radius) !default;
|
|
6
|
+
$quick-action-button-box-shadow: none !default;
|
|
7
|
+
|
|
8
|
+
$quick-action-button-line1-font-size: var(--#{$prefix}ref-fs-6) !default;
|
|
9
|
+
$quick-action-button-line1-font-weight: var(--#{$prefix}ref-fw-bold) !default;
|
|
10
|
+
$quick-action-button-line1-color: var(--#{$prefix}body-color) !default;
|
|
11
|
+
|
|
12
|
+
$quick-action-button-line2-font-size: var(--#{$prefix}ref-fs-small) !default;
|
|
13
|
+
$quick-action-button-line2-font-weight: var(--#{$prefix}ref-fw-normal) !default;
|
|
14
|
+
$quick-action-button-line2-color: var(--#{$prefix}gray-500) !default;
|
|
15
|
+
|
|
16
|
+
$quick-action-button-representative-image-size: 2.25rem !default;
|
|
17
|
+
$quick-action-button-representative-image-border-radius: $spacer-2 !default;
|
|
18
|
+
$quick-action-button-representative-icon-size: $spacer-4 !default;
|
|
19
|
+
|
|
20
|
+
$quick-action-button-action-icon-color: var(--#{$prefix}gray-500) !default;
|
|
21
|
+
$quick-action-button-action-icon-size: var(--#{$prefix}body-font-size) !default;
|
|
22
|
+
|
|
23
|
+
$quick-action-button-hover-bg: var(--#{$prefix}gray-100) !default;
|
|
24
|
+
$quick-action-button-hover-border-color: var(--#{$prefix}secondary-100) !default;
|
|
25
|
+
$quick-action-button-hover-action-icon-color: var(--#{$prefix}secondary) !default;
|
|
26
|
+
$quick-action-button-hover-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
|
|
27
|
+
|
|
28
|
+
$quick-action-button-active-bg: var(--#{$prefix}gray-100) !default;
|
|
29
|
+
$quick-action-button-active-border-color: var(--#{$prefix}secondary) !default;
|
|
30
|
+
$quick-action-button-active-action-icon-color: var(--#{$prefix}secondary) !default;
|
|
31
|
+
$quick-action-button-active-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
$quick-action-check-gap: var(--#{$prefix}ref-spacer-3) !default;
|
|
2
|
+
$quick-action-check-padding: var(--#{$prefix}ref-spacer-3) !default;
|
|
3
|
+
$quick-action-check-bg: var(--#{$prefix}white) !default;
|
|
4
|
+
$quick-action-check-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
5
|
+
|
|
6
|
+
$quick-action-check-line1-font-size: var(--#{$prefix}body-font-size) !default;
|
|
7
|
+
$quick-action-check-line1-font-weight: var(--#{$prefix}ref-fw-bold) !default;
|
|
8
|
+
$quick-action-check-line1-color: var(--#{$prefix}light-text-emphasis) !default;
|
|
9
|
+
|
|
10
|
+
$quick-action-check-line2-font-size: var(--#{$prefix}ref-fs-small) !default;
|
|
11
|
+
$quick-action-check-line2-font-weight: var(--#{$prefix}ref-fw-normal) !default;
|
|
12
|
+
$quick-action-check-line2-color: var(--#{$prefix}gray) !default;
|
|
13
|
+
|
|
14
|
+
$quick-action-check-line3-font-size: var(--#{$prefix}body-font-size) !default;
|
|
15
|
+
$quick-action-check-line3-font-weight: var(--#{$prefix}ref-fw-bold) !default;
|
|
16
|
+
$quick-action-check-line3-color: var(--#{$prefix}gray) !default;
|
|
17
|
+
|
|
18
|
+
$quick-action-check-hover-bg: var(--#{$prefix}gray-100) !default;
|
|
19
|
+
|
|
20
|
+
$quick-action-check-checked-bg: var(--#{$prefix}white) !default;
|
|
21
|
+
$quick-action-check-checked-color: var(--#{$prefix}body-color) !default;
|
|
22
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
$quick-action-select-padding: var(--#{$prefix}ref-spacer-3) !default;
|
|
2
|
+
$quick-action-select-bg: var(--#{$prefix}gray-100) !default;
|
|
3
|
+
$quick-action-select-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
4
|
+
|
|
5
|
+
$quick-action-select-line1-font-size: var(--#{$prefix}ref-fs-small) !default;
|
|
6
|
+
$quick-action-select-line1-font-weight: var(--#{$prefix}ref-fw-normal) !default;
|
|
7
|
+
$quick-action-select-line1-color: var(--#{$prefix}secondary) !default;
|
|
8
|
+
|
|
9
|
+
$quick-action-select-line2-font-size: var(--#{$prefix}body-font-size) !default;
|
|
10
|
+
$quick-action-select-line2-font-weight: var(--#{$prefix}ref-fw-bold) !default;
|
|
11
|
+
$quick-action-select-line2-color: var(--#{$prefix}light-text-emphasis) !default;
|
|
12
|
+
|
|
13
|
+
$quick-action-select-hover-bg: var(--#{$prefix}gray-200) !default;
|
|
14
|
+
|
|
15
|
+
$quick-action-select-checked-bg: var(--#{$prefix}secondary) !default;
|
|
16
|
+
$quick-action-select-checked-color: var(--#{$prefix}white) !default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
$quick-action-switch-gap: var(--#{$prefix}ref-spacer-2) !default;
|
|
2
|
+
$quick-action-switch-padding: var(--#{$prefix}ref-spacer-2) var(--#{$prefix}ref-spacer-3) !default;
|
|
3
|
+
$quick-action-switch-bg: var(--#{$prefix}white) !default;
|
|
4
|
+
$quick-action-switch-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
5
|
+
|
|
6
|
+
$quick-action-switch-content-gap: var(--#{$prefix}ref-spacer-1) !default;
|
|
7
|
+
|
|
8
|
+
$quick-action-switch-label-font-size: $font-size-base !default;
|
|
9
|
+
$quick-action-switch-label-font-weight: $form-label-font-weight !default;
|
|
10
|
+
$quick-action-switch-label-color: $form-switch-label-color !default;
|
|
11
|
+
|
|
12
|
+
$quick-action-switch-hint-font-size: var(--#{$prefix}ref-fs-small) !default;
|
|
13
|
+
$quick-action-switch-hint-font-weight: var(--#{$prefix}ref-fw-normal) !default;
|
|
14
|
+
$quick-action-switch-hint-color: var(--#{$prefix}gray-400) !default;
|
|
15
|
+
|
|
16
|
+
$quick-action-switch-hover-bg: var(--#{$prefix}secondary-soft) !default;
|
|
17
|
+
|
|
18
|
+
$quick-action-switch-checked-bg: var(--#{$prefix}white) !default;
|
|
19
|
+
$quick-action-switch-checked-label-color: $form-switch-active-label-color !default;
|
|
20
|
+
$quick-action-switch-checked-hint-color: var(--#{$prefix}gray-500) !default;
|
|
21
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Spacing
|
|
2
|
+
//
|
|
3
|
+
// Control the default styling of most Bootstrap elements by modifying these
|
|
4
|
+
// variables. Mostly focused on spacing.
|
|
5
|
+
// You can add more entries to the $spacers map, should you need more variation.
|
|
6
|
+
|
|
7
|
+
// scss-docs-start spacer-variables-maps
|
|
8
|
+
$spacer: 1rem !default;
|
|
9
|
+
$spacer-1: $spacer * .25 !default; // 4px
|
|
10
|
+
$spacer-2: $spacer * .5, !default; // 8px
|
|
11
|
+
$spacer-3: $spacer !default; // 16px
|
|
12
|
+
$spacer-4: $spacer * 1.5 !default; // 24px
|
|
13
|
+
$spacer-5: $spacer * 2 !default; // 32px
|
|
14
|
+
$spacer-6: $spacer * 2.5 !default; // 40px
|
|
15
|
+
$spacer-7: $spacer * 3 !default; // 48px
|
|
16
|
+
$spacer-8: $spacer * 3.5 !default; // 56px
|
|
17
|
+
$spacers: (
|
|
18
|
+
0: 0,
|
|
19
|
+
1: $spacer-1,
|
|
20
|
+
2: $spacer-2,
|
|
21
|
+
3: $spacer-3,
|
|
22
|
+
4: $spacer-4,
|
|
23
|
+
5: $spacer-5,
|
|
24
|
+
6: $spacer-6,
|
|
25
|
+
7: $spacer-7,
|
|
26
|
+
8: $spacer-8,
|
|
27
|
+
) !default;
|
|
28
|
+
// scss-docs-end spacer-variables-maps
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Spinners
|
|
2
|
+
|
|
3
|
+
// scss-docs-start spinner-variables
|
|
4
|
+
$spinner-width: 2rem !default;
|
|
5
|
+
$spinner-height: $spinner-width !default;
|
|
6
|
+
$spinner-vertical-align: -.125em !default;
|
|
7
|
+
$spinner-border-width: .25em !default;
|
|
8
|
+
$spinner-animation-speed: .75s !default;
|
|
9
|
+
|
|
10
|
+
$spinner-width-sm: 1rem !default;
|
|
11
|
+
$spinner-height-sm: $spinner-width-sm !default;
|
|
12
|
+
$spinner-border-width-sm: .2em !default;
|
|
13
|
+
// scss-docs-end spinner-variables
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// Tables
|
|
2
|
+
//
|
|
3
|
+
// Customizes the `.table` component with basic values, each used across all table variations.
|
|
4
|
+
|
|
5
|
+
// scss-docs-start table-variables
|
|
6
|
+
$table-cell-padding-y: .5rem !default;
|
|
7
|
+
$table-cell-padding-x: .5rem !default;
|
|
8
|
+
$table-cell-padding-y-sm: .25rem !default;
|
|
9
|
+
$table-cell-padding-x-sm: .25rem !default;
|
|
10
|
+
|
|
11
|
+
$table-cell-vertical-align: top !default;
|
|
12
|
+
|
|
13
|
+
$table-color: var(--#{$prefix}body-color) !default;
|
|
14
|
+
$table-bg: transparent !default;
|
|
15
|
+
$table-accent-bg: transparent !default;
|
|
16
|
+
|
|
17
|
+
$table-th-font-weight: null !default;
|
|
18
|
+
|
|
19
|
+
$table-bg-scale: -100% !default;
|
|
20
|
+
|
|
21
|
+
$table-striped-color: $table-color !default;
|
|
22
|
+
$table-striped-bg-factor: .05 !default;
|
|
23
|
+
$table-striped-bg: unquote("color-mix(in srgb, var(--#{$prefix}white), var(--#{$prefix}black) #{(100% - $table-bg-scale) * $table-striped-bg-factor})") !default;
|
|
24
|
+
|
|
25
|
+
$table-active-color: $table-color !default;
|
|
26
|
+
$table-active-bg-factor: .1 !default;
|
|
27
|
+
$table-active-bg: unquote("color-mix(in srgb, var(--#{$prefix}white), var(--#{$prefix}black) #{(100% - $table-bg-scale) * $table-active-bg-factor})") !default;
|
|
28
|
+
|
|
29
|
+
$table-hover-color: $table-color !default;
|
|
30
|
+
$table-hover-bg-factor: .075 !default;
|
|
31
|
+
$table-hover-bg: unquote("color-mix(in srgb, var(--#{$prefix}white), var(--#{$prefix}black) #{(100% - $table-bg-scale) * $table-hover-bg-factor})") !default;
|
|
32
|
+
|
|
33
|
+
$table-border-factor: .1 !default;
|
|
34
|
+
$table-border-width: var(--#{$prefix}border-width) !default;
|
|
35
|
+
$table-border-color: var(--#{$prefix}border-color) !default;
|
|
36
|
+
|
|
37
|
+
$table-striped-order: odd !default;
|
|
38
|
+
$table-striped-columns-order: even !default;
|
|
39
|
+
|
|
40
|
+
$table-group-separator-color: currentcolor !default;
|
|
41
|
+
|
|
42
|
+
$table-caption-color: var(--#{$prefix}secondary-color) !default;
|
|
43
|
+
|
|
44
|
+
// scss-docs-end table-variables
|
|
45
|
+
|
|
46
|
+
// scss-docs-start table-loop
|
|
47
|
+
$table-variants: (
|
|
48
|
+
"primary": "primary-100",
|
|
49
|
+
"secondary": "secondary-100",
|
|
50
|
+
"success": "success-100",
|
|
51
|
+
"info": "info-100",
|
|
52
|
+
"warning": "warning-100",
|
|
53
|
+
"danger": "danger-100",
|
|
54
|
+
"light": "light",
|
|
55
|
+
"dark": "dark",
|
|
56
|
+
) !default;
|
|
57
|
+
// scss-docs-end table-loop
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// Image thumbnails
|
|
2
|
+
|
|
3
|
+
// scss-docs-start thumbnail-variables
|
|
4
|
+
$thumbnail-padding: .25rem !default;
|
|
5
|
+
$thumbnail-bg: var(--#{$prefix}body-bg) !default;
|
|
6
|
+
$thumbnail-border-width: var(--#{$prefix}border-width) !default;
|
|
7
|
+
$thumbnail-border-color: var(--#{$prefix}border-color) !default;
|
|
8
|
+
$thumbnail-border-radius: var(--#{$prefix}border-radius) !default;
|
|
9
|
+
$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
|
|
10
|
+
// scss-docs-end thumbnail-variables
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Toasts
|
|
2
|
+
|
|
3
|
+
// scss-docs-start toast-variables
|
|
4
|
+
$toast-max-width: 350px !default;
|
|
5
|
+
$toast-padding-x: .75rem !default;
|
|
6
|
+
$toast-padding-y: .5rem !default;
|
|
7
|
+
$toast-font-size: .875rem !default;
|
|
8
|
+
$toast-color: null !default;
|
|
9
|
+
$toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;
|
|
10
|
+
$toast-border-width: var(--#{$prefix}border-width) !default;
|
|
11
|
+
$toast-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
12
|
+
$toast-border-radius: var(--#{$prefix}border-radius) !default;
|
|
13
|
+
$toast-box-shadow: var(--#{$prefix}box-shadow) !default;
|
|
14
|
+
$toast-spacing: $container-padding-x !default;
|
|
15
|
+
|
|
16
|
+
$toast-header-color: var(--#{$prefix}secondary-color) !default;
|
|
17
|
+
$toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;
|
|
18
|
+
$toast-header-border-color: $toast-border-color !default;
|
|
19
|
+
// scss-docs-end toast-variables
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// Tooltips
|
|
2
|
+
|
|
3
|
+
// scss-docs-start tooltip-variables
|
|
4
|
+
$tooltip-font-size: $font-size-sm !default;
|
|
5
|
+
$tooltip-max-width: 200px !default;
|
|
6
|
+
$tooltip-color: var(--#{$prefix}body-bg) !default;
|
|
7
|
+
$tooltip-bg: var(--#{$prefix}emphasis-color) !default;
|
|
8
|
+
$tooltip-border-radius: var(--#{$prefix}border-radius) !default;
|
|
9
|
+
$tooltip-opacity: .9 !default;
|
|
10
|
+
$tooltip-padding-y: $spacer * .25 !default;
|
|
11
|
+
$tooltip-padding-x: $spacer * .5 !default;
|
|
12
|
+
$tooltip-margin: null !default; // TODO: remove this in v6
|
|
13
|
+
|
|
14
|
+
$tooltip-arrow-width: .8rem !default;
|
|
15
|
+
$tooltip-arrow-height: .4rem !default;
|
|
16
|
+
// fusv-disable
|
|
17
|
+
$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
18
|
+
// fusv-enable
|
|
19
|
+
// scss-docs-end tooltip-variables
|
|
20
|
+
|
|
21
|
+
// Form tooltips must come after regular tooltips
|
|
22
|
+
// scss-docs-start tooltip-feedback-variables
|
|
23
|
+
$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
|
|
24
|
+
$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
|
|
25
|
+
$form-feedback-tooltip-font-size: $tooltip-font-size !default;
|
|
26
|
+
$form-feedback-tooltip-line-height: null !default;
|
|
27
|
+
$form-feedback-tooltip-opacity: $tooltip-opacity !default;
|
|
28
|
+
$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
|
|
29
|
+
// scss-docs-end tooltip-feedback-variables
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
// Typography
|
|
2
|
+
//
|
|
3
|
+
// Font, line-height, and color for body text, headings, and more.
|
|
4
|
+
|
|
5
|
+
// scss-docs-start font-variables
|
|
6
|
+
$font-family-sans-serif: "Source Sans Pro", sans-serif !default;
|
|
7
|
+
$font-family-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace !default;
|
|
8
|
+
$font-family-base: var(--#{$prefix}font-sans-serif) !default;
|
|
9
|
+
$font-family-code: var(--#{$prefix}font-monospace) !default;
|
|
10
|
+
|
|
11
|
+
// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
|
|
12
|
+
// $font-size-base affects the font size of the body text
|
|
13
|
+
$font-size-root: 16px !default;
|
|
14
|
+
$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
|
|
15
|
+
$font-size-sm: $font-size-base * .875 !default; // 14px
|
|
16
|
+
$font-size-lg: $font-size-base * 1.125 !default; // 18px
|
|
17
|
+
|
|
18
|
+
$font-weight-lighter: lighter !default;
|
|
19
|
+
$font-weight-light: 200 !default;
|
|
20
|
+
$font-weight-normal: 400 !default;
|
|
21
|
+
$font-weight-semibold: 600 !default;
|
|
22
|
+
$font-weight-bold: 700 !default;
|
|
23
|
+
$font-weight-bolder: 800 !default;
|
|
24
|
+
|
|
25
|
+
$font-weight-base: $font-weight-normal !default;
|
|
26
|
+
|
|
27
|
+
$line-height-base: 1.2 !default;
|
|
28
|
+
$line-height-sm: 1.2 !default;
|
|
29
|
+
$line-height-lg: 1.2 !default;
|
|
30
|
+
|
|
31
|
+
$h1-font-size: $font-size-base * 4 !default;
|
|
32
|
+
$h2-font-size: $font-size-base * 3.5 !default;
|
|
33
|
+
$h3-font-size: $font-size-base * 3 !default;
|
|
34
|
+
$h4-font-size: $font-size-base * 2 !default;
|
|
35
|
+
$h5-font-size: $font-size-base * 1.5 !default;
|
|
36
|
+
$h6-font-size: $font-size-base * 1.125 !default;
|
|
37
|
+
// scss-docs-end font-variables
|
|
38
|
+
|
|
39
|
+
// scss-docs-start font-sizes
|
|
40
|
+
$font-sizes: (
|
|
41
|
+
1: $h1-font-size,
|
|
42
|
+
2: $h2-font-size,
|
|
43
|
+
3: $h3-font-size,
|
|
44
|
+
4: $h4-font-size,
|
|
45
|
+
5: $h5-font-size,
|
|
46
|
+
6: $h6-font-size
|
|
47
|
+
) !default;
|
|
48
|
+
// scss-docs-end font-sizes
|
|
49
|
+
|
|
50
|
+
// scss-docs-start headings-variables
|
|
51
|
+
$headings-margin-bottom: 0 !default;
|
|
52
|
+
$headings-font-family: null !default;
|
|
53
|
+
$headings-font-style: null !default;
|
|
54
|
+
$headings-line-height: 1.2 !default;
|
|
55
|
+
$headings-color: null !default;
|
|
56
|
+
// scss-docs-end headings-variables
|
|
57
|
+
|
|
58
|
+
// scss-docs-start display-headings
|
|
59
|
+
$display1-font-size: 7.5rem !default;
|
|
60
|
+
$display2-font-size: 4.5rem !default;
|
|
61
|
+
$display3-font-size: 4rem !default;
|
|
62
|
+
$display4-font-size: 3.5rem !default;
|
|
63
|
+
$display5-font-size: 3rem !default;
|
|
64
|
+
$display6-font-size: 2.5rem !default;
|
|
65
|
+
|
|
66
|
+
$display-font-sizes: (
|
|
67
|
+
1: $display1-font-size,
|
|
68
|
+
2: $display2-font-size,
|
|
69
|
+
3: $display3-font-size,
|
|
70
|
+
4: $display4-font-size,
|
|
71
|
+
5: $display5-font-size,
|
|
72
|
+
6: $display6-font-size
|
|
73
|
+
) !default;
|
|
74
|
+
|
|
75
|
+
$display-font-family: null !default;
|
|
76
|
+
$display-font-style: null !default;
|
|
77
|
+
$display-font-weight: $font-weight-base !default;
|
|
78
|
+
$display-line-height: $headings-line-height !default;
|
|
79
|
+
// scss-docs-end display-headings
|
|
80
|
+
|
|
81
|
+
// scss-docs-start type-variables
|
|
82
|
+
$lead-font-size: $font-size-base * 1.25 !default;
|
|
83
|
+
$lead-font-weight: $font-weight-normal !default;
|
|
84
|
+
|
|
85
|
+
$small-font-size: .875rem !default;
|
|
86
|
+
|
|
87
|
+
$sub-sup-font-size: .75em !default;
|
|
88
|
+
|
|
89
|
+
// fusv-disable
|
|
90
|
+
$text-muted: var(--#{$prefix}gray) !default;
|
|
91
|
+
// fusv-enable
|
|
92
|
+
|
|
93
|
+
$initialism-font-size: $small-font-size !default;
|
|
94
|
+
|
|
95
|
+
$blockquote-margin-y: var(--#{$prefix}ref-spacer-3) !default;
|
|
96
|
+
$blockquote-font-size: $font-size-base * 1.25 !default;
|
|
97
|
+
$blockquote-footer-color: var(--#{$prefix}gray-600) !default;
|
|
98
|
+
$blockquote-footer-font-size: $small-font-size !default;
|
|
99
|
+
|
|
100
|
+
$hr-margin-y: var(--#{$prefix}ref-spacer-3) !default;
|
|
101
|
+
$hr-color: inherit !default;
|
|
102
|
+
|
|
103
|
+
// fusv-disable
|
|
104
|
+
$hr-bg-color: null !default; // Deprecated in v5.2.0
|
|
105
|
+
$hr-height: null !default; // Deprecated in v5.2.0
|
|
106
|
+
// fusv-enable
|
|
107
|
+
|
|
108
|
+
$hr-border-color: $border-color !default; // Allows for inherited colors
|
|
109
|
+
$hr-border-width: $border-width !default;
|
|
110
|
+
$hr-opacity: 1 !default;
|
|
111
|
+
|
|
112
|
+
$legend-margin-bottom: .5rem !default;
|
|
113
|
+
$legend-font-size: 1.5rem !default;
|
|
114
|
+
$legend-font-weight: null !default;
|
|
115
|
+
|
|
116
|
+
$dt-font-weight: $font-weight-bold !default;
|
|
117
|
+
|
|
118
|
+
$list-inline-padding: .5rem !default;
|
|
119
|
+
|
|
120
|
+
$mark-padding: .1875em !default;
|
|
121
|
+
$mark-bg: var(--#{$prefix}warning-100) !default;
|
|
122
|
+
// scss-docs-end type-variables
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Z-index master list
|
|
2
|
+
//
|
|
3
|
+
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
|
4
|
+
// of components dependent on the z-axis and are designed to all work together.
|
|
5
|
+
|
|
6
|
+
// scss-docs-start zindex-stack
|
|
7
|
+
$zindex-dropdown: 1000 !default;
|
|
8
|
+
$zindex-sticky: 1020 !default;
|
|
9
|
+
$zindex-fixed: 1030 !default;
|
|
10
|
+
$zindex-offcanvas-backdrop: 1040 !default;
|
|
11
|
+
$zindex-offcanvas: 1045 !default;
|
|
12
|
+
$zindex-modal-backdrop: 1050 !default;
|
|
13
|
+
$zindex-modal: 1055 !default;
|
|
14
|
+
$zindex-popover: 1070 !default;
|
|
15
|
+
$zindex-tooltip: 1080 !default;
|
|
16
|
+
$zindex-toast: 1090 !default;
|
|
17
|
+
// scss-docs-end zindex-stack
|
|
18
|
+
|
|
19
|
+
// scss-docs-start zindex-levels-map
|
|
20
|
+
$zindex-levels: (
|
|
21
|
+
n1: -1,
|
|
22
|
+
0: 0,
|
|
23
|
+
1: 1,
|
|
24
|
+
2: 2,
|
|
25
|
+
3: 3
|
|
26
|
+
) !default;
|
|
27
|
+
// scss-docs-end zindex-levels-map
|
|
28
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// @import "bootstrap/scss/root";
|
|
2
|
+
@import "root";
|
|
3
|
+
|
|
4
|
+
@import "bootstrap/scss/reboot";
|
|
5
|
+
|
|
6
|
+
@import "bootstrap/scss/type";
|
|
7
|
+
|
|
8
|
+
@import "bootstrap/scss/images";
|
|
9
|
+
@import "bootstrap/scss/containers";
|
|
10
|
+
@import "bootstrap/scss/grid";
|
|
11
|
+
// @import "bootstrap/scss/tables";
|
|
12
|
+
@import "tables";
|
|
13
|
+
|
|
14
|
+
@import "bootstrap/scss/transitions";
|
|
15
|
+
|