vft 0.0.73 → 0.0.76
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/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/component.js +67 -48
- package/es/components/affix/affix.js +45 -0
- package/es/components/affix/affix.vue.js +4 -0
- package/es/components/affix/affix.vue2.js +83 -0
- package/es/components/affix/index.js +12 -0
- package/es/components/affix/style/css.js +2 -0
- package/es/components/affix/style/index.js +2 -0
- package/es/components/back-top/back-top.vue2.js +10 -2
- package/es/components/button/button.vue2.js +58 -59
- package/es/components/button/use-button.js +26 -20
- package/es/components/card/card.vue.js +4 -0
- package/es/components/card/card.vue2.js +44 -0
- package/es/components/card/index.js +12 -0
- package/es/components/card/instance.js +1 -0
- package/es/components/card/style/css.js +2 -0
- package/es/components/card/style/index.js +2 -0
- package/es/components/check-tag/check-tag.vue.js +4 -0
- package/es/components/check-tag/check-tag.vue2.js +35 -0
- package/es/components/check-tag/index.js +12 -0
- package/es/components/check-tag/style/css.js +2 -0
- package/es/components/check-tag/style/index.js +2 -0
- package/es/components/color-picker/color-picker.vue2.js +1 -1
- package/es/components/context-menu/context-menu.vue2.js +10 -2
- package/es/components/date-picker/composables/use-month-range-header.js +1 -1
- package/es/components/date-picker/constants.js +16 -2
- package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +37 -34
- package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +0 -1
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +177 -178
- package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +328 -336
- package/es/components/date-picker/date-picker.js +18 -18
- package/es/components/date-picker/index.js +5 -4
- package/es/components/date-picker/props/shared.js +1 -1
- package/es/components/date-time-select/date-time-select.vue2.js +59 -59
- package/es/components/dialog/dialog.vue2.js +12 -12
- package/es/components/dialog/hooks/use-dialog.js +4 -4
- package/es/components/dropdown/dropdown-menu.vue2.js +4 -4
- package/es/components/footer-layout/footer-layout.vue2.js +10 -2
- package/es/components/header-layout/header-layout.vue2.js +10 -2
- package/es/components/horizontal-menu/constants.js +4 -0
- package/es/components/horizontal-menu/horizontal-menu.vue2.js +153 -86
- package/es/components/horizontal-menu/index.js +7 -5
- package/es/components/index.js +228 -194
- package/es/components/md-container/md-container.vue2.js +10 -2
- package/es/components/menu/menu-item.vue2.js +58 -58
- package/es/components/menu/menu.vue2.js +72 -68
- package/es/components/menu/sub-menu.vue2.js +139 -117
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +35 -26
- package/es/components/option/style/css.js +2 -0
- package/es/components/option/style/index.js +2 -0
- package/es/components/option-group/style/css.js +2 -0
- package/es/components/option-group/style/index.js +2 -0
- package/es/components/popconfirm/index.js +12 -0
- package/es/components/popconfirm/popconfirm.vue.js +4 -0
- package/es/components/popconfirm/popconfirm.vue2.js +112 -0
- package/es/components/popconfirm/style/css.js +6 -0
- package/es/components/popconfirm/style/index.js +6 -0
- package/es/components/popover/style/index.js +1 -1
- package/es/components/result/result.vue2.js +10 -2
- package/es/components/roving-focus-group/roving-focus-item.vue2.js +1 -1
- package/es/components/search/style/css.js +2 -0
- package/es/components/search/style/index.js +2 -0
- package/es/components/select/index.js +22 -0
- package/es/components/select/option-group.vue.js +25 -0
- package/es/components/select/option-group.vue2.js +53 -0
- package/es/components/select/option.vue.js +27 -0
- package/es/components/select/option.vue2.js +58 -0
- package/es/components/select/options.js +34 -0
- package/es/components/select/select-dropdown.vue.js +15 -0
- package/es/components/select/select-dropdown.vue2.js +32 -0
- package/es/components/select/select.vue.js +327 -0
- package/es/components/select/select.vue2.js +348 -0
- package/es/components/select/style/css.js +8 -0
- package/es/components/select/style/index.js +8 -0
- package/es/components/select/token.js +5 -0
- package/es/components/select/useOption.js +71 -0
- package/es/components/select/useSelect.js +414 -0
- package/es/components/select-v2/select-dropdown.js +1 -1
- package/es/components/select-v2/useSelect.js +269 -269
- package/es/components/side-menu/side-menu.vue2.js +153 -142
- package/es/components/skeleton/index.js +16 -0
- package/es/components/skeleton/skeleton-item.vue.js +4 -0
- package/es/components/skeleton/skeleton-item.vue2.js +31 -0
- package/es/components/skeleton/skeleton.vue.js +4 -0
- package/es/components/skeleton/skeleton.vue2.js +55 -0
- package/es/components/skeleton/style/css.js +3 -0
- package/es/components/skeleton/style/index.js +3 -0
- package/es/components/skeleton-item/style/css.js +2 -0
- package/es/components/skeleton-item/style/index.js +2 -0
- package/es/components/space/index.js +17 -0
- package/es/components/space/item.js +24 -0
- package/es/components/space/space.js +182 -0
- package/es/components/space/style/css.js +2 -0
- package/es/components/space/style/index.js +2 -0
- package/es/components/space/use-space.js +44 -0
- package/es/components/switch/switch.vue2.js +1 -1
- package/es/components/tabs/tab-nav.vue2.js +30 -22
- package/es/components/tabs/tabs.vue2.js +37 -37
- package/es/components/time-picker/common/picker.vue2.js +241 -257
- package/es/components/time-picker/common/props.js +10 -6
- package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +1 -1
- package/es/components/time-picker/time-picker.js +10 -10
- package/es/components/time-select/time-select.vue2.js +38 -42
- package/es/components/tooltip/content.vue2.js +1 -1
- package/es/components/tree/index.js +14 -0
- package/es/components/tree/model/node.js +248 -0
- package/es/components/tree/model/tree-store.js +197 -0
- package/es/components/tree/model/useDragNode.js +71 -0
- package/es/components/tree/model/useKeydown.js +81 -0
- package/es/components/tree/model/useNodeExpandEventBroadcast.js +19 -0
- package/es/components/tree/model/util.js +21 -0
- package/es/components/tree/style/css.js +3 -0
- package/es/components/tree/style/index.js +3 -0
- package/es/components/tree/tree-node-content.vue.js +4 -0
- package/es/components/tree/tree-node-content.vue2.js +28 -0
- package/es/components/tree/tree-node.vue.js +98 -0
- package/es/components/tree/tree-node.vue2.js +152 -0
- package/es/components/tree/tree.type.js +1 -0
- package/es/components/tree/tree.vue.js +48 -0
- package/es/components/tree/tree.vue2.js +268 -0
- package/es/components/tree-select/cache-options.js +32 -0
- package/es/components/tree-select/index.js +9 -0
- package/es/components/tree-select/select.js +38 -0
- package/es/components/tree-select/style/css.js +11 -0
- package/es/components/tree-select/style/index.js +11 -0
- package/es/components/tree-select/tree-select-option.js +21 -0
- package/es/components/tree-select/tree-select.vue.js +4 -0
- package/es/components/tree-select/tree-select.vue2.js +81 -0
- package/es/components/tree-select/tree.js +137 -0
- package/es/components/tree-select/utils.js +45 -0
- package/es/hooks/index.js +25 -21
- package/es/hooks/use-focus/index.js +9 -0
- package/es/hooks/use-throttle-render/index.js +21 -0
- package/es/index.js +408 -368
- package/es/package.json.js +1 -1
- package/es/utils/helper.js +5 -2
- package/es/utils/index.js +48 -46
- package/lib/component.cjs +1 -1
- package/lib/components/affix/affix.cjs +1 -0
- package/lib/components/affix/affix.vue.cjs +1 -0
- package/lib/components/affix/affix.vue2.cjs +1 -0
- package/lib/components/affix/index.cjs +1 -0
- package/lib/components/affix/style/css.cjs +1 -0
- package/lib/components/affix/style/index.cjs +1 -0
- package/lib/components/back-top/back-top.vue2.cjs +1 -1
- package/lib/components/button/button.vue2.cjs +1 -1
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/card/card.vue.cjs +1 -0
- package/lib/components/card/card.vue2.cjs +1 -0
- package/lib/components/card/index.cjs +1 -0
- package/lib/components/card/instance.cjs +1 -0
- package/lib/components/card/style/css.cjs +1 -0
- package/lib/components/card/style/index.cjs +1 -0
- package/lib/components/check-tag/check-tag.vue.cjs +1 -0
- package/lib/components/check-tag/check-tag.vue2.cjs +1 -0
- package/lib/components/check-tag/index.cjs +1 -0
- package/lib/components/check-tag/style/css.cjs +1 -0
- package/lib/components/check-tag/style/index.cjs +1 -0
- package/lib/components/color-picker/color-picker.vue2.cjs +1 -1
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -1
- package/lib/components/date-picker/constants.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker.cjs +1 -1
- package/lib/components/date-picker/index.cjs +1 -1
- package/lib/components/date-picker/props/shared.cjs +1 -1
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/dialog/dialog.vue2.cjs +1 -1
- package/lib/components/dialog/hooks/use-dialog.cjs +1 -1
- package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -1
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/constants.cjs +1 -0
- package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/index.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/menu.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/option/style/css.cjs +1 -0
- package/lib/components/option/style/index.cjs +1 -0
- package/lib/components/option-group/style/css.cjs +1 -0
- package/lib/components/option-group/style/index.cjs +1 -0
- package/lib/components/popconfirm/index.cjs +1 -0
- package/lib/components/popconfirm/popconfirm.vue.cjs +1 -0
- package/lib/components/popconfirm/popconfirm.vue2.cjs +1 -0
- package/lib/components/popconfirm/style/css.cjs +1 -0
- package/lib/components/popconfirm/style/index.cjs +1 -0
- package/lib/components/popover/style/index.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
- package/lib/components/search/style/css.cjs +1 -1
- package/lib/components/search/style/index.cjs +1 -1
- package/lib/components/select/index.cjs +1 -0
- package/lib/components/select/option-group.vue.cjs +1 -0
- package/lib/components/select/option-group.vue2.cjs +1 -0
- package/lib/components/select/option.vue.cjs +1 -0
- package/lib/components/select/option.vue2.cjs +1 -0
- package/lib/components/select/options.cjs +1 -0
- package/lib/components/select/select-dropdown.vue.cjs +1 -0
- package/lib/components/select/select-dropdown.vue2.cjs +1 -0
- package/lib/components/select/select.vue.cjs +1 -0
- package/lib/components/select/select.vue2.cjs +1 -0
- package/lib/components/select/style/css.cjs +1 -0
- package/lib/components/select/style/index.cjs +1 -0
- package/lib/components/select/token.cjs +1 -0
- package/lib/components/select/useOption.cjs +1 -0
- package/lib/components/select/useSelect.cjs +1 -0
- package/lib/components/select-v2/select-dropdown.cjs +1 -1
- package/lib/components/select-v2/useSelect.cjs +1 -1
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/skeleton/index.cjs +1 -0
- package/lib/components/skeleton/skeleton-item.vue.cjs +1 -0
- package/lib/components/skeleton/skeleton-item.vue2.cjs +1 -0
- package/lib/components/skeleton/skeleton.vue.cjs +1 -0
- package/lib/components/skeleton/skeleton.vue2.cjs +1 -0
- package/lib/components/skeleton/style/css.cjs +1 -0
- package/lib/components/skeleton/style/index.cjs +1 -0
- package/lib/components/skeleton-item/style/css.cjs +1 -0
- package/lib/components/skeleton-item/style/index.cjs +1 -0
- package/lib/components/space/index.cjs +1 -0
- package/lib/components/space/item.cjs +1 -0
- package/lib/components/space/space.cjs +1 -0
- package/lib/components/space/style/css.cjs +1 -0
- package/lib/components/space/style/index.cjs +1 -0
- package/lib/components/space/use-space.cjs +1 -0
- package/lib/components/switch/switch.vue2.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/tabs/tabs.vue2.cjs +1 -1
- package/lib/components/time-picker/common/picker.vue2.cjs +1 -1
- package/lib/components/time-picker/common/props.cjs +1 -1
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -1
- package/lib/components/time-picker/time-picker.cjs +1 -1
- package/lib/components/time-select/time-select.vue2.cjs +1 -1
- package/lib/components/tooltip/content.vue2.cjs +1 -1
- package/lib/components/tree/index.cjs +1 -0
- package/lib/components/tree/model/node.cjs +1 -0
- package/lib/components/tree/model/tree-store.cjs +1 -0
- package/lib/components/tree/model/useDragNode.cjs +1 -0
- package/lib/components/tree/model/useKeydown.cjs +1 -0
- package/lib/components/tree/model/useNodeExpandEventBroadcast.cjs +1 -0
- package/lib/components/tree/model/util.cjs +1 -0
- package/lib/components/tree/style/css.cjs +1 -0
- package/lib/components/tree/style/index.cjs +1 -0
- package/lib/components/tree/tree-node-content.vue.cjs +1 -0
- package/lib/components/tree/tree-node-content.vue2.cjs +1 -0
- package/lib/components/tree/tree-node.vue.cjs +1 -0
- package/lib/components/tree/tree-node.vue2.cjs +1 -0
- package/lib/components/tree/tree.type.cjs +1 -0
- package/lib/components/tree/tree.vue.cjs +1 -0
- package/lib/components/tree/tree.vue2.cjs +1 -0
- package/lib/components/tree-select/cache-options.cjs +1 -0
- package/lib/components/tree-select/index.cjs +1 -0
- package/lib/components/tree-select/select.cjs +1 -0
- package/lib/components/tree-select/style/css.cjs +1 -0
- package/lib/components/tree-select/style/index.cjs +1 -0
- package/lib/components/tree-select/tree-select-option.cjs +1 -0
- package/lib/components/tree-select/tree-select.vue.cjs +1 -0
- package/lib/components/tree-select/tree-select.vue2.cjs +1 -0
- package/lib/components/tree-select/tree.cjs +1 -0
- package/lib/components/tree-select/utils.cjs +1 -0
- package/lib/hooks/index.cjs +1 -1
- package/lib/hooks/use-focus/index.cjs +1 -0
- package/lib/hooks/use-throttle-render/index.cjs +1 -0
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/utils/helper.cjs +1 -1
- package/lib/utils/index.cjs +1 -1
- package/package.json +1 -1
- package/tags.json +1 -1
- package/theme-style/base.css +1 -1
- package/theme-style/index.css +1 -1
- package/theme-style/src/alert.scss +1 -1
- package/theme-style/src/autocomplete.scss +2 -2
- package/theme-style/src/breadcrumb.scss +4 -4
- package/theme-style/src/calendar.scss +2 -2
- package/theme-style/src/card.scss +1 -1
- package/theme-style/src/carousel.scss +1 -1
- package/theme-style/src/cascader.scss +3 -3
- package/theme-style/src/check-tag.scss +3 -3
- package/theme-style/src/checkbox.scss +1 -1
- package/theme-style/src/color-picker.scss +2 -2
- package/theme-style/src/common/var.scss +527 -521
- package/theme-style/src/date-picker/date-picker.scss +1 -1
- package/theme-style/src/date-picker/date-range-picker.scss +2 -2
- package/theme-style/src/date-picker/date-table.scss +1 -1
- package/theme-style/src/date-picker/month-table.scss +2 -2
- package/theme-style/src/date-picker/picker-panel.scss +4 -5
- package/theme-style/src/date-picker/picker.scss +7 -9
- package/theme-style/src/date-picker/time-picker.scss +2 -2
- package/theme-style/src/date-picker/time-spinner.scss +6 -8
- package/theme-style/src/date-picker/year-table.scss +3 -3
- package/theme-style/src/date-time-select.scss +3 -4
- package/theme-style/src/descriptions-item.scss +4 -4
- package/theme-style/src/descriptions.scss +2 -2
- package/theme-style/src/header-layout.scss +1 -1
- package/theme-style/src/horizontal-menu.scss +27 -39
- package/theme-style/src/image-viewer.scss +1 -1
- package/theme-style/src/index.scss +3 -0
- package/theme-style/src/input-number.scss +1 -1
- package/theme-style/src/menu.scss +76 -66
- package/theme-style/src/mixins/_var.scss +2 -2
- package/theme-style/src/mixins/mixins.scss +2 -2
- package/theme-style/src/popconfirm.scss +16 -0
- package/theme-style/src/popper.scss +4 -2
- package/theme-style/src/progress.scss +1 -1
- package/theme-style/src/reset.scss +3 -3
- package/theme-style/src/result.scss +2 -2
- package/theme-style/src/select-dropdown-v2.scss +1 -1
- package/theme-style/src/select-dropdown.scss +1 -1
- package/theme-style/src/select-v2.scss +2 -2
- package/theme-style/src/select.scss +4 -5
- package/theme-style/src/side-menu.scss +0 -1
- package/theme-style/src/skeleton-item.scss +83 -0
- package/theme-style/src/skeleton.scss +44 -0
- package/theme-style/src/step.scss +10 -10
- package/theme-style/src/tabs.scss +15 -155
- package/theme-style/src/timeline-item.scss +2 -2
- package/theme-style/src/transfer.scss +5 -5
- package/theme-style/src/tree.scss +2 -5
- package/theme-style/src/upload.scss +11 -11
- package/theme-style/src/var.scss +1 -1
- package/theme-style/vft-alert.css +1 -1
- package/theme-style/vft-autocomplete.css +1 -1
- package/theme-style/vft-breadcrumb.css +1 -1
- package/theme-style/vft-calendar.css +1 -1
- package/theme-style/vft-card.css +1 -1
- package/theme-style/vft-carousel.css +1 -1
- package/theme-style/vft-cascader.css +1 -1
- package/theme-style/vft-check-tag.css +1 -1
- package/theme-style/vft-checkbox.css +1 -1
- package/theme-style/vft-color-picker.css +1 -1
- package/theme-style/vft-date-picker.css +1 -1
- package/theme-style/vft-date-time-select.css +1 -1
- package/theme-style/vft-descriptions-item.css +1 -1
- package/theme-style/vft-descriptions.css +1 -1
- package/theme-style/vft-header-layout.css +1 -1
- package/theme-style/vft-horizontal-menu.css +1 -1
- package/theme-style/vft-image-viewer.css +1 -1
- package/theme-style/vft-input-number.css +1 -1
- package/theme-style/vft-menu.css +1 -1
- package/theme-style/vft-popconfirm.css +1 -0
- package/theme-style/vft-popper.css +1 -1
- package/theme-style/vft-progress.css +1 -1
- package/theme-style/vft-reset.css +1 -1
- package/theme-style/vft-result.css +1 -1
- package/theme-style/vft-select-dropdown-v2.css +1 -1
- package/theme-style/vft-select-dropdown.css +1 -1
- package/theme-style/vft-select-v2.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-skeleton-item.css +1 -0
- package/theme-style/vft-skeleton.css +1 -0
- package/theme-style/vft-step.css +1 -1
- package/theme-style/vft-tabs.css +1 -1
- package/theme-style/vft-time-picker.css +1 -1
- package/theme-style/vft-time-select.css +1 -1
- package/theme-style/vft-timeline-item.css +1 -1
- package/theme-style/vft-transfer.css +1 -1
- package/theme-style/vft-tree.css +1 -1
- package/theme-style/vft-upload.css +1 -1
- package/theme-style/vft-var.css +1 -1
- package/web-types.json +1 -1
|
@@ -9,29 +9,29 @@ $types: primary, success, warning, danger, error, info;
|
|
|
9
9
|
// Color
|
|
10
10
|
$colors: () !default;
|
|
11
11
|
$colors: map.deep-merge(
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
12
|
+
(
|
|
13
|
+
"white": #fff,
|
|
14
|
+
"black": #000,
|
|
15
|
+
"primary": (
|
|
16
|
+
"base": #2196f3,
|
|
17
|
+
),
|
|
18
|
+
"success": (
|
|
19
|
+
"base": #3eaf7c,
|
|
20
|
+
),
|
|
21
|
+
"warning": (
|
|
22
|
+
"base": #fb9b5f,
|
|
23
|
+
),
|
|
24
|
+
"danger": (
|
|
25
|
+
"base": #f26d6d,
|
|
26
|
+
),
|
|
27
|
+
"error": (
|
|
28
|
+
"base": #f26d6d,
|
|
29
|
+
),
|
|
30
|
+
"info": (
|
|
31
|
+
"base": #909399,
|
|
32
|
+
),
|
|
32
33
|
),
|
|
33
|
-
|
|
34
|
-
$colors
|
|
34
|
+
$colors
|
|
35
35
|
);
|
|
36
36
|
|
|
37
37
|
$color-white: map.get($colors, "white") !default;
|
|
@@ -51,17 +51,17 @@ $info-color: getCssVar("info-color") !default;
|
|
|
51
51
|
$mix-color: $color-white
|
|
52
52
|
) {
|
|
53
53
|
$colors: map.deep-merge(
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
(
|
|
55
|
+
$type: (
|
|
56
|
+
"#{$mode}-#{$number}":
|
|
57
57
|
mix(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
$mix-color,
|
|
59
|
+
map.get($colors, $type, "base"),
|
|
60
|
+
math.percentage(math.div($number, 10))
|
|
61
61
|
),
|
|
62
|
+
),
|
|
62
63
|
),
|
|
63
|
-
|
|
64
|
-
$colors
|
|
64
|
+
$colors
|
|
65
65
|
) !global;
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -89,60 +89,60 @@ $info-color: getCssVar("info-color") !default;
|
|
|
89
89
|
|
|
90
90
|
$text-color: () !default;
|
|
91
91
|
$text-color: map.merge(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
92
|
+
(
|
|
93
|
+
"primary-color": #303133,
|
|
94
|
+
"regular-color": #606266,
|
|
95
|
+
"secondary-color": #909399,
|
|
96
|
+
"placeholder-color": #a8abb2,
|
|
97
|
+
"disabled-color": #c0c4cc,
|
|
98
|
+
),
|
|
99
|
+
$text-color
|
|
100
100
|
);
|
|
101
101
|
|
|
102
102
|
$text-color-dark: () !default;
|
|
103
103
|
$text-color-dark: map.merge(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
(
|
|
105
|
+
"primary-color": white,
|
|
106
|
+
),
|
|
107
|
+
$text-color-dark
|
|
108
108
|
);
|
|
109
109
|
|
|
110
110
|
$border-color: () !default;
|
|
111
111
|
$border-color: map.merge(
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
112
|
+
(
|
|
113
|
+
"": #dcdfe6,
|
|
114
|
+
"light": #e4e7ed,
|
|
115
|
+
"lighter": #ebeef5,
|
|
116
|
+
"extra-light": #f2f6fc,
|
|
117
|
+
"dark": #d4d7de,
|
|
118
|
+
"darker": #cdd0d6,
|
|
119
|
+
),
|
|
120
|
+
$border-color
|
|
121
121
|
);
|
|
122
122
|
|
|
123
123
|
$fill-color: () !default;
|
|
124
124
|
$fill-color: map.merge(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
125
|
+
(
|
|
126
|
+
"": #f0f2f5,
|
|
127
|
+
"light": #f5f7fa,
|
|
128
|
+
"lighter": #fafafa,
|
|
129
|
+
"extra-light": #fafcff,
|
|
130
|
+
"dark": #ebedf0,
|
|
131
|
+
"darker": #e6e8eb,
|
|
132
|
+
"blank": #fff,
|
|
133
|
+
),
|
|
134
|
+
$fill-color
|
|
135
135
|
);
|
|
136
136
|
|
|
137
137
|
// Background
|
|
138
138
|
$bg-color: () !default;
|
|
139
139
|
$bg-color: map.merge(
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
140
|
+
(
|
|
141
|
+
"": #fff,
|
|
142
|
+
"page": #f2f3f5,
|
|
143
|
+
"overlay": #fff,
|
|
144
|
+
),
|
|
145
|
+
$bg-color
|
|
146
146
|
);
|
|
147
147
|
|
|
148
148
|
// Border
|
|
@@ -152,157 +152,151 @@ $border-color-hover: getCssVar("text", "disabled-color") !default;
|
|
|
152
152
|
|
|
153
153
|
$border-radius: () !default;
|
|
154
154
|
$border-radius: map.merge(
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
155
|
+
(
|
|
156
|
+
"base": 4px,
|
|
157
|
+
"small": 2px,
|
|
158
|
+
"round": 20px,
|
|
159
|
+
"circle": 100%,
|
|
160
|
+
),
|
|
161
|
+
$border-radius
|
|
162
162
|
);
|
|
163
163
|
|
|
164
164
|
// Box-shadow
|
|
165
165
|
$box-shadow: () !default;
|
|
166
166
|
$box-shadow: map.merge(
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
167
|
+
(
|
|
168
|
+
"": (
|
|
169
|
+
0px 12px 32px 4px rgba(0, 0, 0, 0.04),
|
|
170
|
+
0px 8px 20px rgba(0, 0, 0, 0.08),
|
|
171
|
+
),
|
|
172
|
+
"light": (
|
|
173
|
+
0px 0px 12px rgba(0, 0, 0, 0.12),
|
|
174
|
+
),
|
|
175
|
+
"lighter": (
|
|
176
|
+
0px 0px 6px rgba(0, 0, 0, 0.12),
|
|
177
|
+
),
|
|
178
|
+
"dark": (
|
|
179
|
+
0px 16px 48px 16px rgba(0, 0, 0, 0.08),
|
|
180
|
+
0px 12px 32px rgba(0, 0, 0, 0.12),
|
|
181
|
+
0px 8px 16px -8px rgba(0, 0, 0, 0.16),
|
|
182
|
+
),
|
|
182
183
|
),
|
|
183
|
-
|
|
184
|
-
$box-shadow
|
|
184
|
+
$box-shadow
|
|
185
185
|
);
|
|
186
186
|
|
|
187
187
|
// Typography
|
|
188
188
|
$font-family: () !default;
|
|
189
189
|
$font-family: map.merge(
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
(
|
|
191
|
+
// default family
|
|
192
|
+
"":
|
|
193
193
|
"'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif"
|
|
194
|
-
|
|
195
|
-
|
|
194
|
+
),
|
|
195
|
+
$font-family
|
|
196
196
|
);
|
|
197
197
|
|
|
198
198
|
$font-size: () !default;
|
|
199
199
|
$font-size: map.merge(
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
200
|
+
(
|
|
201
|
+
"extra-large": 20px,
|
|
202
|
+
"large": 18px,
|
|
203
|
+
"medium": 16px,
|
|
204
|
+
"base": 14px,
|
|
205
|
+
"small": 13px,
|
|
206
|
+
"extra-small": 12px,
|
|
207
|
+
),
|
|
208
|
+
$font-size
|
|
209
209
|
);
|
|
210
210
|
|
|
211
211
|
// zIndex
|
|
212
212
|
$z-index: () !default;
|
|
213
213
|
$z-index: map.merge(
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
214
|
+
(
|
|
215
|
+
"normal": 1,
|
|
216
|
+
"top": 1000,
|
|
217
|
+
"popper": 2000,
|
|
218
|
+
'back-top': 3050,
|
|
219
|
+
'header-layout': 100
|
|
220
|
+
),
|
|
221
|
+
$z-index
|
|
221
222
|
);
|
|
222
223
|
|
|
223
224
|
// Disable default
|
|
224
225
|
$disabled: () !default;
|
|
225
226
|
$disabled: map.merge(
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
227
|
+
(
|
|
228
|
+
"bg-color": getCssVar("fill-color", "light"),
|
|
229
|
+
"text-color": getCssVar("text-color", "placeholder"),
|
|
230
|
+
"border-color": getCssVar("border-color", "light"),
|
|
231
|
+
),
|
|
232
|
+
$disabled
|
|
232
233
|
);
|
|
233
234
|
|
|
234
235
|
$common-component-size: () !default;
|
|
235
236
|
$common-component-size: map.merge(
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
237
|
+
(
|
|
238
|
+
"large": 40px,
|
|
239
|
+
"default": 32px,
|
|
240
|
+
"small": 24px,
|
|
241
|
+
),
|
|
242
|
+
$common-component-size
|
|
242
243
|
);
|
|
243
244
|
|
|
244
245
|
// overlay
|
|
245
246
|
$overlay-color: () !default;
|
|
246
247
|
$overlay-color: map.merge(
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
248
|
+
(
|
|
249
|
+
"": rgba(0, 0, 0, 0.8),
|
|
250
|
+
"light": rgba(0, 0, 0, 0.7),
|
|
251
|
+
"lighter": rgba(0, 0, 0, 0.5),
|
|
252
|
+
),
|
|
253
|
+
$overlay-color
|
|
253
254
|
);
|
|
254
255
|
|
|
255
256
|
// mask
|
|
256
257
|
$mask-color: () !default;
|
|
257
258
|
$mask-color: map.merge(
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
259
|
+
(
|
|
260
|
+
"": rgba(255, 255, 255, 0.9),
|
|
261
|
+
"extra-light": rgba(255, 255, 255, 0.3),
|
|
262
|
+
),
|
|
263
|
+
$mask-color
|
|
263
264
|
);
|
|
264
265
|
|
|
265
266
|
// transition
|
|
266
267
|
$transition: () !default;
|
|
267
268
|
$transition: map.merge(
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
getCssVar("transition-function-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
getCssVar("transition-function-ease-in-out-bezier"),
|
|
282
|
-
"box-shadow": box-shadow getCssVar("transition-duration-fast")
|
|
283
|
-
getCssVar("transition-function-ease-in-out-bezier"),
|
|
284
|
-
"color": color getCssVar("transition-duration-fast")
|
|
285
|
-
getCssVar("transition-function-ease-in-out-bezier"),
|
|
286
|
-
),
|
|
287
|
-
$transition
|
|
269
|
+
(
|
|
270
|
+
"all": all getCssVar("transition-duration") getCssVar("transition-function-ease-in-out-bezier"),
|
|
271
|
+
"fade": opacity getCssVar("transition-duration") getCssVar("transition-function-fast-bezier"),
|
|
272
|
+
"md-fade": (
|
|
273
|
+
transform getCssVar("transition-duration") getCssVar("transition-function-fast-bezier"),
|
|
274
|
+
opacity getCssVar("transition-duration") getCssVar("transition-function-fast-bezier"),
|
|
275
|
+
),
|
|
276
|
+
"fade-linear": opacity getCssVar("transition-duration-fast") linear,
|
|
277
|
+
"border": border-color getCssVar("transition-duration-fast") getCssVar("transition-function-ease-in-out-bezier"),
|
|
278
|
+
"box-shadow": box-shadow getCssVar("transition-duration-fast") getCssVar("transition-function-ease-in-out-bezier"),
|
|
279
|
+
"color": color getCssVar("transition-duration-fast") getCssVar("transition-function-ease-in-out-bezier"),
|
|
280
|
+
),
|
|
281
|
+
$transition
|
|
288
282
|
);
|
|
289
283
|
|
|
290
284
|
$transition-duration: () !default;
|
|
291
285
|
$transition-duration: map.merge(
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
286
|
+
(
|
|
287
|
+
"": 0.3s,
|
|
288
|
+
"fast": 0.2s,
|
|
289
|
+
),
|
|
290
|
+
$transition-duration
|
|
297
291
|
);
|
|
298
292
|
|
|
299
293
|
$transition-function: () !default;
|
|
300
294
|
$transition-function: map.merge(
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
295
|
+
(
|
|
296
|
+
"ease-in-out-bezier": cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
297
|
+
"fast-bezier": cubic-bezier(0.23, 1, 0.32, 1),
|
|
298
|
+
),
|
|
299
|
+
$transition-function
|
|
306
300
|
);
|
|
307
301
|
|
|
308
302
|
$button: () !default;
|
|
@@ -551,56 +545,57 @@ $dropdown: map.merge(
|
|
|
551
545
|
|
|
552
546
|
$header-layout: () !default;
|
|
553
547
|
$header-layout: map-merge(
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
548
|
+
(
|
|
549
|
+
height: 70px,
|
|
550
|
+
top-height: 40px,
|
|
551
|
+
bg-color: #eff1f5,
|
|
552
|
+
left-min-width: 800px,
|
|
553
|
+
z-index: getCssVar('z-index-header-layout'),
|
|
554
|
+
),
|
|
560
555
|
$header-layout
|
|
561
556
|
);
|
|
562
557
|
|
|
563
558
|
$footer-layout: () !default;
|
|
564
559
|
$footer-layout: map-merge(
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
560
|
+
(
|
|
561
|
+
"bg-color": getCssVar('header-layout-bg-color'),
|
|
562
|
+
"border-top": getCssVar('border'),
|
|
563
|
+
"left": getCssVar("menu-width"),
|
|
564
|
+
"height": "30px",
|
|
565
|
+
"left-min-width": "auto",
|
|
566
|
+
"right-min-width": "auto",
|
|
567
|
+
'z-index': 10,
|
|
568
|
+
),
|
|
574
569
|
$footer-layout
|
|
575
570
|
);
|
|
576
571
|
|
|
577
572
|
$name: side-menu;
|
|
578
573
|
$side-menu: () !default;
|
|
579
574
|
$side-menu: map-merge(
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
575
|
+
(
|
|
576
|
+
"border": getCssVar("menu-border-right"),
|
|
577
|
+
"scroll-mr": 0,
|
|
578
|
+
),
|
|
579
|
+
$side-menu
|
|
585
580
|
);
|
|
586
581
|
|
|
587
582
|
$iframe-page: () !default;
|
|
588
583
|
$iframe-page: map-merge(
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
584
|
+
(
|
|
585
|
+
"text-color": white,
|
|
586
|
+
),
|
|
587
|
+
$iframe-page
|
|
593
588
|
);
|
|
594
589
|
|
|
595
590
|
$icon: () !default;
|
|
596
591
|
$icon: map-merge(
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
592
|
+
(
|
|
593
|
+
"size": 14px,
|
|
594
|
+
"color": inherit,
|
|
595
|
+
"cursor": initial,
|
|
596
|
+
"animation": none,
|
|
597
|
+
),
|
|
598
|
+
$icon
|
|
604
599
|
);
|
|
605
600
|
|
|
606
601
|
$icon-text: () !default;
|
|
@@ -615,241 +610,242 @@ $icon-text: map-merge(
|
|
|
615
610
|
|
|
616
611
|
$message: () !default;
|
|
617
612
|
$message: map-merge(
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
613
|
+
(
|
|
614
|
+
"border-radius": 2px,
|
|
615
|
+
"border-width": 2px,
|
|
616
|
+
"border-color": red,
|
|
617
|
+
"padding": 15px 19px,
|
|
618
|
+
"bg-color": getCssVar("color", "info", "light-9"),
|
|
619
|
+
),
|
|
620
|
+
$message
|
|
626
621
|
);
|
|
627
622
|
|
|
628
623
|
$divider: () !default;
|
|
629
624
|
$divider: map-merge(
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
625
|
+
(
|
|
626
|
+
"margin-y": "24px",
|
|
627
|
+
"margin-x": "8px",
|
|
628
|
+
"border-color": #dcdfe6,
|
|
629
|
+
"border-style": "solid",
|
|
630
|
+
),
|
|
631
|
+
$divider
|
|
637
632
|
);
|
|
638
633
|
|
|
639
634
|
$tabs: () !default;
|
|
640
635
|
$tabs: map-merge(
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
636
|
+
(
|
|
637
|
+
"padding": 0,
|
|
638
|
+
"font-size": 14px,
|
|
639
|
+
"font-weight": 400,
|
|
640
|
+
"font-weight-active": 500,
|
|
641
|
+
"header-height": 40px,
|
|
642
|
+
"border-bottom": 1px solid #eee,
|
|
643
|
+
"nav-color": #eee,
|
|
644
|
+
"header-margin": 0 0 15px,
|
|
645
|
+
"header-padding": 0,
|
|
646
|
+
"header-border-bottom": none,
|
|
647
|
+
"item-padding": 0 20px,
|
|
648
|
+
"item-max-width": 100%,
|
|
649
|
+
"item-bg-color": transparent,
|
|
650
|
+
"item-active-bg-color": transparent,
|
|
651
|
+
"item-hover-bg-color": transparent,
|
|
652
|
+
"item-color": black,
|
|
653
|
+
"item-active-color": inherit,
|
|
654
|
+
"item-hover-color": inherit,
|
|
655
|
+
"item-border": 0px solid #eee,
|
|
656
|
+
"item-active-border": 0px solid #eee,
|
|
657
|
+
"item-hover-border": 0px solid transparent,
|
|
658
|
+
"item-distance": 10px,
|
|
659
|
+
"item-border-radius": 5px 5px 0 0,
|
|
660
|
+
"close-icon-left": 5px,
|
|
661
|
+
"close-icon-hover-color": black,
|
|
662
|
+
"close-icon-hover-bg-color": #dfdfdf,
|
|
663
|
+
"add-icon-right": 30px,
|
|
664
|
+
"add-icon-padding-left": 20px,
|
|
665
|
+
"scroll-padding": 0 60px 0 20px,
|
|
666
|
+
"active-distance": 14px,
|
|
667
|
+
"show-border-bottom": block,
|
|
668
|
+
),
|
|
669
|
+
$tabs
|
|
675
670
|
);
|
|
676
671
|
|
|
677
672
|
$multiple-tabs: () !default;
|
|
678
673
|
$multiple-tabs: map-merge(
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
674
|
+
(
|
|
675
|
+
"bg-color": getCssVar('header-layout-bg-color'),
|
|
676
|
+
"height": 30px,
|
|
677
|
+
),
|
|
678
|
+
$multiple-tabs
|
|
684
679
|
);
|
|
685
680
|
|
|
686
681
|
$menu: () !default;
|
|
687
682
|
$menu: map-merge(
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
683
|
+
(
|
|
684
|
+
"bg-color": transparent,
|
|
685
|
+
"sub-menu-bg-color": transparent,
|
|
686
|
+
"active-color": getCssVar("primary-color"),
|
|
687
|
+
"text-color": getCssVar("text-primary-color"),
|
|
688
|
+
"hover-text-color": getCssVar("primary-color"),
|
|
689
|
+
"hover-bg-color": getCssVar("primary-color-light-9"),
|
|
690
|
+
"focus-text-color": getCssVar("primary-color"),
|
|
691
|
+
"focus-bg-color": getCssVar("primary-color-light-9"),
|
|
692
|
+
"item-height": 56px,
|
|
693
|
+
"sub-item-height": calc(#{getCssVar("menu-item-height")} - 6px),
|
|
694
|
+
"horizontal-sub-item-height": 36px,
|
|
695
|
+
"item-font-size": getCssVar("font-size-base"),
|
|
696
|
+
"item-hover-fill": getCssVar("primary-color-light-9"),
|
|
697
|
+
"border-bottom": getCssVar("border"),
|
|
698
|
+
"base-level-padding": 20px,
|
|
699
|
+
"level-padding": 20px,
|
|
700
|
+
"icon-mr": 6px,
|
|
701
|
+
"icon-width": 14px,
|
|
702
|
+
"border": getCssVar("border"),
|
|
703
|
+
"border-right": getCssVar('border'),
|
|
704
|
+
'item-border-bottom': 2px solid transparent,
|
|
705
|
+
'item-active-border-bottom': 2px solid getCssVar('menu-active-color'),
|
|
706
|
+
"item-min-width": 200px,
|
|
707
|
+
),
|
|
708
|
+
$menu
|
|
713
709
|
);
|
|
714
710
|
|
|
715
711
|
$logo: () !default;
|
|
716
712
|
$logo: map-merge(
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
713
|
+
(
|
|
714
|
+
img-width: 30px,
|
|
715
|
+
img-height: 30px,
|
|
716
|
+
color: $primary-color,
|
|
717
|
+
font-size: 16px,
|
|
718
|
+
font-weight: 400,
|
|
719
|
+
cursor: pointer,
|
|
720
|
+
),
|
|
721
|
+
$logo
|
|
726
722
|
);
|
|
727
723
|
|
|
728
724
|
$loading: () !default;
|
|
729
725
|
$loading: map-merge(
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
726
|
+
(
|
|
727
|
+
"spinner-size": 20px,
|
|
728
|
+
"fullscreen-spinner-size": 50px,
|
|
729
|
+
"rotate-animation": loading-rotate 2s linear infinite,
|
|
730
|
+
"color": $primary-color,
|
|
731
|
+
"text-size": 14px,
|
|
732
|
+
"margin": 3px 0,
|
|
733
|
+
),
|
|
734
|
+
$loading
|
|
739
735
|
);
|
|
740
736
|
|
|
741
737
|
$full-screen: () !default;
|
|
742
738
|
$full-screen: map-merge(
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
739
|
+
(
|
|
740
|
+
"color": getCssVar('text-primary-color'),
|
|
741
|
+
"hover-color": $primary-color,
|
|
742
|
+
"font-size": 12px,
|
|
743
|
+
),
|
|
744
|
+
$full-screen
|
|
749
745
|
);
|
|
750
746
|
|
|
751
747
|
// Select
|
|
752
748
|
$select: () !default;
|
|
753
749
|
$select: map-merge(
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
750
|
+
(
|
|
751
|
+
"border-color-hover": getCssVar("border-color-hover"),
|
|
752
|
+
"disabled-border": getCssVar("disabled-border-color"),
|
|
753
|
+
"font-size": getCssVar("font-size-base"),
|
|
754
|
+
"close-hover-color": getCssVar("text-secondary-color"),
|
|
755
|
+
"input-color": getCssVar("text-placeholder-color"),
|
|
756
|
+
"multiple-input-color": getCssVar("text-regular-color"),
|
|
757
|
+
"input-focus-border-color": getCssVar("primary-color"),
|
|
758
|
+
"input-font-size": 14px,
|
|
759
|
+
),
|
|
760
|
+
$select
|
|
765
761
|
);
|
|
766
762
|
|
|
767
763
|
$select-option: () !default;
|
|
768
764
|
$select-option: map-merge(
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
765
|
+
(
|
|
766
|
+
"text-color": getCssVar("text-regular-color"),
|
|
767
|
+
"disabled-color": getCssVar("text-placeholder-color"),
|
|
768
|
+
"height": 34px,
|
|
769
|
+
"hover-background": getCssVar("fill-color", "light"),
|
|
770
|
+
"selected-text-color": getCssVar("primary-color"),
|
|
771
|
+
),
|
|
772
|
+
$select-option
|
|
777
773
|
);
|
|
778
774
|
|
|
779
775
|
$select-group: () !default;
|
|
780
776
|
$select-group: map-merge(
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
777
|
+
(
|
|
778
|
+
"text-color": getCssVar("info-color"),
|
|
779
|
+
"height": 30px,
|
|
780
|
+
"font-size": 12px,
|
|
781
|
+
),
|
|
782
|
+
$select-group
|
|
787
783
|
);
|
|
788
784
|
|
|
789
785
|
$select-dropdown: () !default;
|
|
790
786
|
$select-dropdown: map-merge(
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
787
|
+
(
|
|
788
|
+
"bg-color": getCssVar("bg-color", "overlay"),
|
|
789
|
+
"shadow": getCssVar("box-shadow-light"),
|
|
790
|
+
"empty-color": getCssVar("text-secondary-color"),
|
|
791
|
+
"max-height": 274px,
|
|
792
|
+
"padding": 6px 0,
|
|
793
|
+
"empty-padding": 10px 0,
|
|
794
|
+
"border": 1px solid getCssVar("border-color-light"),
|
|
795
|
+
),
|
|
796
|
+
$select-dropdown
|
|
801
797
|
);
|
|
802
798
|
|
|
803
799
|
$select-tags-prefix-padding: () !default;
|
|
804
800
|
$select-tags-prefix-padding: map-merge(
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
801
|
+
(
|
|
802
|
+
"large": 8px,
|
|
803
|
+
"default": 6px,
|
|
804
|
+
"small": 4px,
|
|
805
|
+
),
|
|
806
|
+
$select-tags-prefix-padding
|
|
811
807
|
);
|
|
812
808
|
|
|
813
809
|
$input: () !default;
|
|
814
810
|
$input: map-merge(
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
811
|
+
(
|
|
812
|
+
"width": "100%",
|
|
813
|
+
"text-color": getCssVar("text-regular-color"),
|
|
814
|
+
"border": getCssVar("border"),
|
|
815
|
+
"hover-border": getCssVar("border-color-hover"),
|
|
816
|
+
"focus-border": getCssVar("primary-color"),
|
|
817
|
+
"transparent-border": 0 0 0 1px transparent inset,
|
|
818
|
+
"border-color": getCssVar("border-color"),
|
|
819
|
+
"border-radius": getCssVar("border-radius-base"),
|
|
820
|
+
"bg-color": getCssVar("fill-color", "blank"),
|
|
821
|
+
"icon-color": getCssVar("text-placeholder-color"),
|
|
822
|
+
"placeholder-color": getCssVar("text-placeholder-color"),
|
|
823
|
+
"hover-border-color": getCssVar("border-color-hover"),
|
|
824
|
+
"clear-hover-color": getCssVar("text-secondary-color"),
|
|
825
|
+
"focus-border-color": getCssVar("primary-color"),
|
|
826
|
+
),
|
|
827
|
+
$input
|
|
832
828
|
);
|
|
833
829
|
|
|
834
830
|
$input-disabled: () !default;
|
|
835
831
|
$input-disabled: map-merge(
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
832
|
+
(
|
|
833
|
+
"fill": getCssVar("disabled-bg-color"),
|
|
834
|
+
"border": getCssVar("disabled-border-color"),
|
|
835
|
+
"text-color": getCssVar("disabled-text-color"),
|
|
836
|
+
"placeholder-color": getCssVar("text-placeholder-color"),
|
|
837
|
+
),
|
|
838
|
+
$input-disabled
|
|
843
839
|
);
|
|
844
840
|
|
|
845
841
|
$input-font-size: () !default;
|
|
846
842
|
$input-font-size: map-merge(
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
843
|
+
(
|
|
844
|
+
"large": 14px,
|
|
845
|
+
"default": 14px,
|
|
846
|
+
"small": 12px,
|
|
847
|
+
),
|
|
848
|
+
$input-font-size
|
|
853
849
|
);
|
|
854
850
|
|
|
855
851
|
$input-height: () !default;
|
|
@@ -860,212 +856,212 @@ $input-line-height: map-merge($common-component-size, $input-line-height);
|
|
|
860
856
|
|
|
861
857
|
$input-number-width: () !default;
|
|
862
858
|
$input-number-width: map-merge(
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
859
|
+
(
|
|
860
|
+
"large": 180px,
|
|
861
|
+
"default": 150px,
|
|
862
|
+
"small": 120px,
|
|
863
|
+
),
|
|
864
|
+
$input-number-width
|
|
869
865
|
);
|
|
870
866
|
|
|
871
867
|
$input-padding-horizontal: () !default;
|
|
872
868
|
$input-padding-horizontal: map-merge(
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
869
|
+
(
|
|
870
|
+
"large": 16px,
|
|
871
|
+
"default": 12px,
|
|
872
|
+
"small": 8px,
|
|
873
|
+
),
|
|
874
|
+
$input-padding-horizontal
|
|
879
875
|
);
|
|
880
876
|
|
|
881
877
|
$cascader: () !default;
|
|
882
878
|
$cascader: map-merge(
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
879
|
+
(
|
|
880
|
+
"menu-text-color": getCssVar("text-regular-color"),
|
|
881
|
+
"menu-selected-text-color": getCssVar("primary-color"),
|
|
882
|
+
"menu-fill": getCssVar("bg-color", "overlay"),
|
|
883
|
+
"menu-font-size": getCssVar("font-size-base"),
|
|
884
|
+
"menu-radius": getCssVar("border-radius-base"),
|
|
885
|
+
"menu-border": solid 1px getCssVar("border-color-light"),
|
|
886
|
+
"menu-shadow": getCssVar("box-shadow-light"),
|
|
887
|
+
"node-background-hover": getCssVar("fill-color", "light"),
|
|
888
|
+
"node-color-disabled": getCssVar("text-placeholder-color"),
|
|
889
|
+
"color-empty": getCssVar("text-placeholder-color"),
|
|
890
|
+
"tag-background": getCssVar("fill-color"),
|
|
891
|
+
),
|
|
892
|
+
$cascader
|
|
897
893
|
);
|
|
898
894
|
|
|
899
895
|
$scrollbar: () !default;
|
|
900
896
|
$scrollbar: map-merge(
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
897
|
+
(
|
|
898
|
+
"opacity": 0.3,
|
|
899
|
+
"bg-color": getCssVar("text-secondary-color"),
|
|
900
|
+
"hover-opacity": 0.5,
|
|
901
|
+
"hover-bg-color": getCssVar("text-secondary-color"),
|
|
902
|
+
),
|
|
903
|
+
$scrollbar
|
|
908
904
|
);
|
|
909
905
|
|
|
910
906
|
$popover: () !default;
|
|
911
907
|
$popover: map-merge(
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
908
|
+
(
|
|
909
|
+
"bg-color": getCssVar("bg-color", "overlay"),
|
|
910
|
+
"font-size": getCssVar("font-size-base"),
|
|
911
|
+
"border-color": getCssVar("border-color-lighter"),
|
|
912
|
+
"padding": 12px,
|
|
913
|
+
"padding-large": 18px 20px,
|
|
914
|
+
"title-font-size": 16px,
|
|
915
|
+
"title-text-color": getCssVar("text-primary-color"),
|
|
916
|
+
"border-radius": 4px,
|
|
917
|
+
),
|
|
918
|
+
$popover
|
|
923
919
|
);
|
|
924
920
|
|
|
925
921
|
$avatar: () !default;
|
|
926
922
|
$avatar: map-merge(
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
923
|
+
(
|
|
924
|
+
"text-color": getCssVar("color-white"),
|
|
925
|
+
"bg-color": getCssVar("text", "disabled-color"),
|
|
926
|
+
"text-size": 14px,
|
|
927
|
+
"icon-size": 18px,
|
|
928
|
+
"border-radius": getCssVar("border-radius-base"),
|
|
929
|
+
),
|
|
930
|
+
$avatar
|
|
935
931
|
);
|
|
936
932
|
|
|
937
933
|
$avatar-size: () !default;
|
|
938
934
|
$avatar-size: map-merge(
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
935
|
+
(
|
|
936
|
+
"large": 56px,
|
|
937
|
+
"default": 40px,
|
|
938
|
+
"small": 24px,
|
|
939
|
+
),
|
|
940
|
+
$avatar-size
|
|
945
941
|
);
|
|
946
942
|
|
|
947
943
|
$descriptions: () !default;
|
|
948
944
|
$descriptions: map-merge(
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
945
|
+
(
|
|
946
|
+
"table-border": 1px solid getCssVar("border-color-lighter"),
|
|
947
|
+
"item-bordered-label-background": getCssVar("fill-color", "light"),
|
|
948
|
+
),
|
|
949
|
+
$descriptions
|
|
954
950
|
);
|
|
955
951
|
|
|
956
952
|
$md-container: () !default;
|
|
957
953
|
$md-container: map-merge(
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
954
|
+
(
|
|
955
|
+
"primary-color": $primary-color,
|
|
956
|
+
"content-max-width": 800px,
|
|
957
|
+
"code-bg-color": #fff5f5,
|
|
958
|
+
"line-numbers-width": "2.5rem",
|
|
959
|
+
"icon-copy":url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E"),
|
|
960
|
+
"icon-copied":url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E"),
|
|
961
|
+
// info
|
|
962
|
+
info-title-color: #193c47,
|
|
963
|
+
info-bg-color: #eef9fd,
|
|
964
|
+
info-border-color: #4cb3d4,
|
|
965
|
+
info-code-bg-color: rgb(76 179 212 / 10%),
|
|
966
|
+
// note
|
|
967
|
+
note-title-color: #474748,
|
|
968
|
+
note-bg-color: #fdfdfe,
|
|
969
|
+
note-border-color: #ccc,
|
|
970
|
+
note-code-bg-color: rgb(212 213 216 / 20%),
|
|
971
|
+
// tip
|
|
972
|
+
tip-title-color: #003100,
|
|
973
|
+
tip-bg-color: #e6f6e6,
|
|
974
|
+
tip-border-color: #009400,
|
|
975
|
+
tip-code-bg-color: rgb(0 148 0 / 15%),
|
|
976
|
+
// warning
|
|
977
|
+
warning-title-color: #4d3800,
|
|
978
|
+
warning-bg-color: #fff8e6,
|
|
979
|
+
warning-border-color: #e6a700,
|
|
980
|
+
warning-code-bg-color: rgb(230 167 0 / 15%),
|
|
981
|
+
// danger
|
|
982
|
+
danger-title-color: #4b1113,
|
|
983
|
+
danger-bg-color: #ffebec,
|
|
984
|
+
danger-border-color: #e13238,
|
|
985
|
+
danger-code-bg-color: rgb(225 50 56 / 15%),
|
|
986
|
+
// detail
|
|
987
|
+
detail-bg-color: #eee,
|
|
988
|
+
detail-text-color: inherit,
|
|
989
|
+
detail-code-bg-color: rgb(127 127 127 / 15%),
|
|
990
|
+
), $md-container
|
|
995
991
|
);
|
|
996
992
|
|
|
997
993
|
$pagination: () !default;
|
|
998
994
|
$pagination: map-merge(
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
995
|
+
(
|
|
996
|
+
"font-size": 14px,
|
|
997
|
+
"bg-color": getCssVar("fill-color", "blank"),
|
|
998
|
+
"text-color": getCssVar("text-primary-color"),
|
|
999
|
+
"border-radius": 2px,
|
|
1000
|
+
"button-color": getCssVar("text-primary-color"),
|
|
1001
|
+
"button-width": 32px,
|
|
1002
|
+
"button-height": 32px,
|
|
1003
|
+
"button-disabled-color": getCssVar("text-placeholder-color"),
|
|
1004
|
+
"button-disabled-bg-color": getCssVar("fill-color", "blank"),
|
|
1005
|
+
"button-bg-color": getCssVar("fill-color"),
|
|
1006
|
+
"hover-color": getCssVar("primary-color"),
|
|
1007
|
+
"font-size-small": 12px,
|
|
1008
|
+
"button-width-small": 24px,
|
|
1009
|
+
"button-height-small": 24px,
|
|
1010
|
+
"item-gap": 16px,
|
|
1011
|
+
),
|
|
1012
|
+
$pagination
|
|
1017
1013
|
);
|
|
1018
1014
|
|
|
1019
1015
|
$tag: () !default;
|
|
1020
1016
|
$tag: map-merge(
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1017
|
+
(
|
|
1018
|
+
"font-size": 12px,
|
|
1019
|
+
"border-radius": 4px,
|
|
1020
|
+
"border-radius-rounded": 9999px,
|
|
1021
|
+
"content-line-clamp-num": 1,
|
|
1022
|
+
"content-max-width": 100%,
|
|
1023
|
+
),
|
|
1024
|
+
$tag
|
|
1029
1025
|
);
|
|
1030
1026
|
|
|
1031
1027
|
$tag-height: () !default;
|
|
1032
1028
|
$tag-height: map-merge(
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1029
|
+
(
|
|
1030
|
+
"large": 32px,
|
|
1031
|
+
"default": 24px,
|
|
1032
|
+
"small": 20px,
|
|
1033
|
+
),
|
|
1034
|
+
$tag-height
|
|
1039
1035
|
);
|
|
1040
1036
|
|
|
1041
1037
|
$tag-padding: () !default;
|
|
1042
1038
|
$tag-padding: map-merge(
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1039
|
+
(
|
|
1040
|
+
"large": 12px,
|
|
1041
|
+
"default": 10px,
|
|
1042
|
+
"small": 8px,
|
|
1043
|
+
),
|
|
1044
|
+
$tag-padding
|
|
1049
1045
|
);
|
|
1050
1046
|
|
|
1051
1047
|
$tag-icon-size: () !default;
|
|
1052
1048
|
$tag-icon-size: map-merge(
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1049
|
+
(
|
|
1050
|
+
"large": 16px,
|
|
1051
|
+
"default": 14px,
|
|
1052
|
+
"small": 12px,
|
|
1053
|
+
),
|
|
1054
|
+
$tag-icon-size
|
|
1059
1055
|
);
|
|
1060
1056
|
|
|
1061
1057
|
$back-top: () !default;
|
|
1062
1058
|
$back-top: map-merge(
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1059
|
+
(
|
|
1060
|
+
"bg-color": getCssVar("bg-color-overlay"),
|
|
1061
|
+
"text-color": getCssVar('text-primary-color'),
|
|
1062
|
+
"hover-bg-color": getCssVar("border-color-extra-light"),
|
|
1063
|
+
),
|
|
1064
|
+
$back-top
|
|
1069
1065
|
);
|
|
1070
1066
|
|
|
1071
1067
|
$empty: () !default;
|
|
@@ -1500,7 +1496,7 @@ $calendar: map.merge(
|
|
|
1500
1496
|
1px solid #{getCssVar('border-color-lighter')}
|
|
1501
1497
|
),
|
|
1502
1498
|
'header-border-bottom': getCssVar('calendar-border'),
|
|
1503
|
-
'selected-bg-color': getCssVar('color', '
|
|
1499
|
+
'selected-bg-color': getCssVar('primary-color', 'light-9'),
|
|
1504
1500
|
'cell-width': 85px,
|
|
1505
1501
|
),
|
|
1506
1502
|
$calendar
|
|
@@ -1545,3 +1541,13 @@ $popup: map.merge(
|
|
|
1545
1541
|
),
|
|
1546
1542
|
$popup
|
|
1547
1543
|
);
|
|
1544
|
+
|
|
1545
|
+
$horizontal-menu: () !default;
|
|
1546
|
+
$horizontal-menu: map.merge((
|
|
1547
|
+
'tile-width': 90vw,
|
|
1548
|
+
'tile-height': 400px,
|
|
1549
|
+
'tile-padding': 24px 10px 24px 24px,
|
|
1550
|
+
'tile-content-gap-y': 20px,
|
|
1551
|
+
'tile-content-col-item-gap': '12px 4px',
|
|
1552
|
+
'tile-content-col-gap-y': 40px
|
|
1553
|
+
), $horizontal-menu);
|