vft 0.0.71 → 0.0.72
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 +56 -40
- package/es/components/aside/style/css.js +2 -0
- package/es/components/aside/style/index.js +2 -0
- package/es/components/back-top/back-top.vue2.js +8 -2
- package/es/components/col/col.vue.js +4 -0
- package/es/components/col/col.vue2.js +60 -0
- package/es/components/col/index.js +12 -0
- package/es/components/col/style/css.js +2 -0
- package/es/components/col/style/index.js +2 -0
- package/es/components/col/types.js +1 -0
- package/es/components/color-picker/utils/color.js +41 -51
- package/es/components/container/aside.vue.js +4 -0
- package/es/components/container/aside.vue2.js +37 -0
- package/es/components/container/container.vue.js +4 -0
- package/es/components/container/container.vue2.js +33 -0
- package/es/components/container/footer.vue.js +4 -0
- package/es/components/container/footer.vue2.js +39 -0
- package/es/components/container/header.vue.js +4 -0
- package/es/components/container/header.vue2.js +39 -0
- package/es/components/container/index.js +25 -0
- package/es/components/container/main.vue.js +4 -0
- package/es/components/container/main.vue2.js +26 -0
- package/es/components/container/style/css.js +6 -0
- package/es/components/container/style/index.js +6 -0
- package/es/components/context-menu/context-menu.vue2.js +20 -14
- package/es/components/date-picker/composables/use-month-range-header.js +29 -0
- package/es/components/date-picker/composables/use-range-picker.js +68 -0
- package/es/components/date-picker/composables/use-shortcut.js +24 -0
- package/es/components/date-picker/constants.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
- package/es/components/date-picker/date-picker.js +81 -0
- package/es/components/date-picker/date-picker.type.js +1 -0
- package/es/components/date-picker/index.js +14 -0
- package/es/components/date-picker/panel-utils.js +17 -0
- package/es/components/date-picker/props/basic-cell.js +14 -0
- package/es/components/date-picker/props/basic-date-table.js +18 -0
- package/es/components/date-picker/props/basic-month-table.js +14 -0
- package/es/components/date-picker/props/basic-year-table.js +15 -0
- package/es/components/date-picker/props/date-picker.js +18 -0
- package/es/components/date-picker/props/panel-date-pick.js +23 -0
- package/es/components/date-picker/props/panel-date-range.js +14 -0
- package/es/components/date-picker/props/panel-month-range.js +14 -0
- package/es/components/date-picker/props/shared.js +56 -0
- package/es/components/date-picker/style/css.js +2 -0
- package/es/components/date-picker/style/index.js +7 -0
- package/es/components/date-picker/utils.js +49 -0
- package/es/components/date-time-select/date-time-select.vue2.js +70 -62
- package/es/components/date-time-select/style/index.js +6 -0
- package/es/components/footer/style/css.js +2 -0
- package/es/components/footer/style/index.js +2 -0
- package/es/components/footer-layout/footer-layout.vue2.js +105 -35
- package/es/components/header/style/css.js +2 -0
- package/es/components/header/style/index.js +2 -0
- package/es/components/header-layout/header-layout.vue2.js +122 -37
- package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
- package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
- package/es/components/horizontal-menu/index.js +12 -0
- package/es/components/horizontal-menu/style/css.js +6 -0
- package/es/components/horizontal-menu/style/index.js +6 -0
- package/es/components/index.js +254 -209
- package/es/components/input/input.vue2.js +184 -178
- package/es/components/link/link.vue2.js +24 -24
- package/es/components/logo/logo.vue2.js +21 -21
- package/es/components/main/style/css.js +2 -0
- package/es/components/main/style/index.js +2 -0
- package/es/components/md-container/md-container.vue2.js +65 -59
- package/es/components/md-container/toc.js +1 -1
- package/es/components/menu/menu-item.vue2.js +89 -62
- package/es/components/menu/menu.vue2.js +100 -106
- package/es/components/menu/sub-menu.vue2.js +83 -76
- package/es/components/menu/utils/menu-item.js +15 -19
- package/es/components/menu/utils/submenu.js +20 -25
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +45 -39
- package/es/components/result/result.vue2.js +8 -2
- package/es/components/row/constants.js +4 -0
- package/es/components/row/index.js +14 -0
- package/es/components/row/row.vue.js +4 -0
- package/es/components/row/row.vue2.js +49 -0
- package/es/components/row/style/css.js +2 -0
- package/es/components/row/style/index.js +2 -0
- package/es/components/row/types.js +1 -0
- package/es/components/search/search.vue2.js +126 -114
- package/es/components/side-menu/side-menu.vue2.js +212 -146
- package/es/components/side-menu/use-drag-line.js +29 -28
- package/es/components/tabs/tab-nav.vue2.js +48 -42
- package/es/components/time-picker/common/picker.vue.js +4 -0
- package/es/components/time-picker/common/picker.vue2.js +438 -0
- package/es/components/time-picker/common/props.js +201 -0
- package/es/components/time-picker/composables/use-time-panel.js +60 -0
- package/es/components/time-picker/composables/use-time-picker.js +40 -0
- package/es/components/time-picker/constants.js +17 -0
- package/es/components/time-picker/index.js +31 -0
- package/es/components/time-picker/props/basic-time-spinner.js +31 -0
- package/es/components/time-picker/props/panel-time-picker.js +17 -0
- package/es/components/time-picker/props/panel-time-range.js +16 -0
- package/es/components/time-picker/props/shared.js +40 -0
- package/es/components/time-picker/style/css.js +2 -0
- package/es/components/time-picker/style/index.js +2 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
- package/es/components/time-picker/time-picker.js +70 -0
- package/es/components/time-picker/types.js +1 -0
- package/es/components/time-picker/utils.js +35 -0
- package/es/components/time-select/style/css.js +2 -0
- package/es/components/time-select/style/index.js +2 -0
- package/es/components/time-select/time-select.js +54 -0
- package/es/components/time-select/time-select.vue.js +4 -0
- package/es/components/time-select/time-select.vue2.js +104 -0
- package/es/components/time-select/utils.js +40 -0
- package/es/components/tooltip/index.js +5 -3
- package/es/index.js +381 -336
- package/es/package.json.js +1 -1
- package/global.d.ts +73 -2
- package/lib/component.cjs +1 -1
- package/lib/components/aside/style/css.cjs +1 -0
- package/lib/components/aside/style/index.cjs +1 -0
- package/lib/components/back-top/back-top.vue2.cjs +1 -1
- package/lib/components/col/col.vue.cjs +1 -0
- package/lib/components/col/col.vue2.cjs +1 -0
- package/lib/components/col/index.cjs +1 -0
- package/lib/components/col/style/css.cjs +1 -0
- package/lib/components/col/style/index.cjs +1 -0
- package/lib/components/col/types.cjs +1 -0
- package/lib/components/color-picker/utils/color.cjs +1 -1
- package/lib/components/container/aside.vue.cjs +1 -0
- package/lib/components/container/aside.vue2.cjs +1 -0
- package/lib/components/container/container.vue.cjs +1 -0
- package/lib/components/container/container.vue2.cjs +1 -0
- package/lib/components/container/footer.vue.cjs +1 -0
- package/lib/components/container/footer.vue2.cjs +1 -0
- package/lib/components/container/header.vue.cjs +1 -0
- package/lib/components/container/header.vue2.cjs +1 -0
- package/lib/components/container/index.cjs +1 -0
- package/lib/components/container/main.vue.cjs +1 -0
- package/lib/components/container/main.vue2.cjs +1 -0
- package/lib/components/container/style/css.cjs +1 -0
- package/lib/components/container/style/index.cjs +1 -0
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
- package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
- package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
- package/lib/components/date-picker/constants.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker.cjs +1 -0
- package/lib/components/date-picker/date-picker.type.cjs +1 -0
- package/lib/components/date-picker/index.cjs +1 -0
- package/lib/components/date-picker/panel-utils.cjs +1 -0
- package/lib/components/date-picker/props/basic-cell.cjs +1 -0
- package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
- package/lib/components/date-picker/props/date-picker.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
- package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
- package/lib/components/date-picker/props/shared.cjs +1 -0
- package/lib/components/date-picker/style/css.cjs +1 -0
- package/lib/components/date-picker/style/index.cjs +1 -0
- package/lib/components/date-picker/utils.cjs +1 -0
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/date-time-select/style/index.cjs +1 -1
- package/lib/components/footer/style/css.cjs +1 -0
- package/lib/components/footer/style/index.cjs +1 -0
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/header/style/css.cjs +1 -0
- package/lib/components/header/style/index.cjs +1 -0
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
- package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
- package/lib/components/horizontal-menu/index.cjs +1 -0
- package/lib/components/horizontal-menu/style/css.cjs +1 -0
- package/lib/components/horizontal-menu/style/index.cjs +1 -0
- package/lib/components/index.cjs +1 -1
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/link/link.vue2.cjs +1 -1
- package/lib/components/logo/logo.vue2.cjs +1 -1
- package/lib/components/main/style/css.cjs +1 -0
- package/lib/components/main/style/index.cjs +1 -0
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-container/toc.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/menu/utils/menu-item.cjs +1 -1
- package/lib/components/menu/utils/submenu.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/row/constants.cjs +1 -0
- package/lib/components/row/index.cjs +1 -0
- package/lib/components/row/row.vue.cjs +1 -0
- package/lib/components/row/row.vue2.cjs +1 -0
- package/lib/components/row/style/css.cjs +1 -0
- package/lib/components/row/style/index.cjs +1 -0
- package/lib/components/row/types.cjs +1 -0
- package/lib/components/search/search.vue2.cjs +1 -1
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/side-menu/use-drag-line.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/time-picker/common/picker.vue.cjs +1 -0
- package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
- package/lib/components/time-picker/common/props.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
- package/lib/components/time-picker/constants.cjs +1 -0
- package/lib/components/time-picker/index.cjs +1 -0
- package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
- package/lib/components/time-picker/props/shared.cjs +1 -0
- package/lib/components/time-picker/style/css.cjs +1 -0
- package/lib/components/time-picker/style/index.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker.cjs +1 -0
- package/lib/components/time-picker/types.cjs +1 -0
- package/lib/components/time-picker/utils.cjs +1 -0
- package/lib/components/time-select/style/css.cjs +1 -0
- package/lib/components/time-select/style/index.cjs +1 -0
- package/lib/components/time-select/time-select.cjs +1 -0
- package/lib/components/time-select/time-select.vue.cjs +1 -0
- package/lib/components/time-select/time-select.vue2.cjs +1 -0
- package/lib/components/time-select/utils.cjs +1 -0
- package/lib/components/tooltip/index.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/package.json +7 -7
- package/tags.json +1 -1
- package/theme-style/base.css +1 -1
- package/theme-style/display.css +1 -0
- package/theme-style/index.css +1 -1
- package/theme-style/src/affix.scss +7 -0
- package/theme-style/src/aside.scss +8 -0
- package/theme-style/src/autocomplete.scss +83 -0
- package/theme-style/src/back-top.scss +7 -6
- package/theme-style/src/badge.scss +57 -0
- package/theme-style/src/breadcrumb-item.scss +0 -0
- package/theme-style/src/breadcrumb.scss +61 -0
- package/theme-style/src/calendar.scss +80 -0
- package/theme-style/src/card.scss +38 -0
- package/theme-style/src/carousel-item.scss +50 -0
- package/theme-style/src/carousel.scss +174 -0
- package/theme-style/src/cascader-panel.scss +138 -0
- package/theme-style/src/cascader.scss +216 -0
- package/theme-style/src/check-tag.scss +29 -0
- package/theme-style/src/col.scss +52 -0
- package/theme-style/src/collapse-item.scss +0 -0
- package/theme-style/src/collapse.scss +67 -0
- package/theme-style/src/color-picker.scss +2 -2
- package/theme-style/src/common/popup.scss +47 -0
- package/theme-style/src/common/var.scss +381 -6
- package/theme-style/src/container.scss +14 -0
- package/theme-style/src/date-picker/date-picker.scss +110 -0
- package/theme-style/src/date-picker/date-range-picker.scss +113 -0
- package/theme-style/src/date-picker/date-table.scss +162 -0
- package/theme-style/src/date-picker/month-table.scss +90 -0
- package/theme-style/src/date-picker/picker-panel.scss +131 -0
- package/theme-style/src/date-picker/picker.scss +210 -0
- package/theme-style/src/date-picker/time-picker.scss +90 -0
- package/theme-style/src/date-picker/time-range-picker.scss +33 -0
- package/theme-style/src/date-picker/time-spinner.scss +111 -0
- package/theme-style/src/date-picker/year-table.scss +60 -0
- package/theme-style/src/date-picker.scss +9 -0
- package/theme-style/src/date-time-select.scss +1 -1
- package/theme-style/src/display.scss +12 -0
- package/theme-style/src/drawer.scss +160 -0
- package/theme-style/src/footer-layout.scss +4 -9
- package/theme-style/src/footer.scss +11 -0
- package/theme-style/src/header-layout.scss +26 -15
- package/theme-style/src/header.scss +11 -0
- package/theme-style/src/horizontal-menu.scss +90 -0
- package/theme-style/src/icon.scss +6 -6
- package/theme-style/src/index.scss +123 -76
- package/theme-style/src/infinite-scroll.scss +0 -0
- package/theme-style/src/input-number.scss +175 -0
- package/theme-style/src/input.scss +2 -4
- package/theme-style/src/list-cell.scss +3 -3
- package/theme-style/src/loading.scss +1 -1
- package/theme-style/src/main.scss +10 -0
- package/theme-style/src/md/code.scss +3 -3
- package/theme-style/src/md/demo-block.scss +2 -2
- package/theme-style/src/md/pswp.scss +4 -4
- package/theme-style/src/md/scroll-bar.scss +1 -1
- package/theme-style/src/md/table.scss +3 -3
- package/theme-style/src/md/toc.scss +3 -3
- package/theme-style/src/md-container.scss +6 -8
- package/theme-style/src/menu.scss +43 -17
- package/theme-style/src/message-box.scss +258 -0
- package/theme-style/src/mixins/_col.scss +38 -0
- package/theme-style/src/mixins/mixins.scss +25 -0
- package/theme-style/src/notification.scss +105 -0
- package/theme-style/src/option.scss +36 -0
- package/theme-style/src/pagination.scss +0 -2
- package/theme-style/src/progress.scss +169 -0
- package/theme-style/src/rate.scss +101 -0
- package/theme-style/src/reset.scss +92 -0
- package/theme-style/src/row.scss +31 -0
- package/theme-style/src/search.scss +6 -5
- package/theme-style/src/select-dropdown.scss +2 -2
- package/theme-style/src/side-menu.scss +9 -3
- package/theme-style/src/slider.scss +211 -0
- package/theme-style/src/space.scss +20 -0
- package/theme-style/src/spinner.scss +43 -0
- package/theme-style/src/statistic.scss +35 -0
- package/theme-style/src/step.scss +316 -0
- package/theme-style/src/steps.scss +21 -0
- package/theme-style/src/tabs.scss +2 -2
- package/theme-style/src/time-picker.scss +5 -0
- package/theme-style/src/time-select.scss +37 -0
- package/theme-style/src/timeline-item.scss +85 -0
- package/theme-style/src/timeline.scss +46 -0
- package/theme-style/src/transfer.scss +206 -0
- package/theme-style/src/tree-select.scss +36 -0
- package/theme-style/src/tree.scss +131 -0
- package/theme-style/src/upload.scss +621 -0
- package/theme-style/vft-affix.css +1 -0
- package/theme-style/vft-aside.css +1 -0
- package/theme-style/vft-autocomplete.css +1 -0
- package/theme-style/vft-back-top.css +1 -1
- package/theme-style/vft-badge.css +1 -0
- package/theme-style/vft-breadcrumb-item.css +0 -0
- package/theme-style/vft-breadcrumb.css +1 -0
- package/theme-style/vft-calendar.css +1 -0
- package/theme-style/vft-card.css +1 -0
- package/theme-style/vft-carousel-item.css +1 -0
- package/theme-style/vft-carousel.css +1 -0
- package/theme-style/vft-cascader-panel.css +1 -0
- package/theme-style/vft-cascader.css +1 -0
- package/theme-style/vft-check-tag.css +1 -0
- package/theme-style/vft-col.css +1 -0
- package/theme-style/vft-collapse-item.css +0 -0
- package/theme-style/vft-collapse.css +1 -0
- package/theme-style/vft-color-picker.css +1 -1
- package/theme-style/vft-container.css +1 -0
- package/theme-style/vft-date-picker.css +1 -0
- package/theme-style/vft-drawer.css +1 -0
- package/theme-style/vft-footer-layout.css +1 -1
- package/theme-style/vft-footer.css +1 -0
- package/theme-style/vft-header-layout.css +1 -1
- package/theme-style/vft-header.css +1 -0
- package/theme-style/vft-horizontal-menu.css +1 -0
- package/theme-style/vft-infinite-scroll.css +0 -0
- package/theme-style/vft-input-number.css +1 -0
- package/theme-style/vft-main.css +1 -0
- package/theme-style/vft-md-container.css +1 -1
- package/theme-style/vft-menu.css +1 -1
- package/theme-style/vft-message-box.css +1 -0
- package/theme-style/vft-notification.css +1 -0
- package/theme-style/vft-option.css +1 -0
- package/theme-style/vft-pagination.css +1 -1
- package/theme-style/vft-progress.css +1 -0
- package/theme-style/vft-rate.css +1 -0
- package/theme-style/vft-reset.css +1 -0
- package/theme-style/vft-row.css +1 -0
- package/theme-style/vft-search.css +1 -1
- package/theme-style/vft-select-dropdown.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-slider.css +1 -0
- package/theme-style/vft-space.css +1 -0
- package/theme-style/vft-spinner.css +1 -0
- package/theme-style/vft-statistic.css +1 -0
- package/theme-style/vft-step.css +1 -0
- package/theme-style/vft-steps.css +1 -0
- package/theme-style/vft-time-picker.css +1 -0
- package/theme-style/vft-time-select.css +1 -0
- package/theme-style/vft-timeline-item.css +1 -0
- package/theme-style/vft-timeline.css +1 -0
- package/theme-style/vft-transfer.css +1 -0
- package/theme-style/vft-tree-select.css +1 -0
- package/theme-style/vft-tree.css +1 -0
- package/theme-style/vft-upload.css +1 -0
- package/theme-style/vft-var.css +1 -1
- package/web-types.json +1 -1
- package/theme-style/src/md/list.scss +0 -21
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
@use 'mixins/mixins' as *;
|
|
4
|
+
@use 'common/var' as *;
|
|
5
|
+
|
|
6
|
+
@include b(autocomplete) {
|
|
7
|
+
position: relative;
|
|
8
|
+
display: inline-block;
|
|
9
|
+
|
|
10
|
+
@include e(popper) {
|
|
11
|
+
@include picker-popper(
|
|
12
|
+
getCssVar('bg-color', 'overlay'),
|
|
13
|
+
1px solid getCssVar('border-color', 'light'),
|
|
14
|
+
getCssVar('box-shadow', 'light')
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@include b(autocomplete-suggestion) {
|
|
20
|
+
border-radius: getCssVar('border-radius', 'base');
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
|
|
23
|
+
@include e(wrap) {
|
|
24
|
+
max-height: 280px;
|
|
25
|
+
padding: 10px 0;
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@include e(list) {
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
& li {
|
|
35
|
+
padding: 0 20px;
|
|
36
|
+
margin: 0;
|
|
37
|
+
line-height: 34px;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
color: getCssVar('text-color', 'regular');
|
|
40
|
+
font-size: getCssVar('font-size', 'base');
|
|
41
|
+
list-style: none;
|
|
42
|
+
text-align: left;
|
|
43
|
+
white-space: nowrap;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
text-overflow: ellipsis;
|
|
46
|
+
|
|
47
|
+
&:hover {
|
|
48
|
+
background-color: map.get($select-option, 'hover-background');
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&.highlighted {
|
|
52
|
+
background-color: map.get($select-option, 'hover-background');
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.divider {
|
|
56
|
+
margin-top: 6px;
|
|
57
|
+
border-top: 1px solid getCssVar('color', 'black');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&.divider:last-child {
|
|
61
|
+
margin-bottom: -6px;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@include when(loading) {
|
|
66
|
+
li {
|
|
67
|
+
text-align: center;
|
|
68
|
+
height: 100px;
|
|
69
|
+
line-height: 100px;
|
|
70
|
+
font-size: 20px;
|
|
71
|
+
color: getCssVar('text-color', 'secondary');
|
|
72
|
+
@include utils-vertical-center;
|
|
73
|
+
|
|
74
|
+
&:hover {
|
|
75
|
+
background-color: getCssVar('bg-color', 'overlay');
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
& .#{$namespace}-icon-loading {
|
|
80
|
+
vertical-align: middle;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -3,22 +3,25 @@
|
|
|
3
3
|
|
|
4
4
|
$name: back-top;
|
|
5
5
|
|
|
6
|
+
@function getCompCssVar($value) {
|
|
7
|
+
@return getCssVar($name, $value);
|
|
8
|
+
}
|
|
9
|
+
|
|
6
10
|
@include b($name) {
|
|
7
11
|
@include set-component-css-var('backtop', $back-top);
|
|
8
|
-
|
|
9
12
|
position: fixed;
|
|
10
|
-
background-color:
|
|
13
|
+
background-color: getCompCssVar('bg-color');
|
|
11
14
|
width: 40px;
|
|
12
15
|
height: 40px;
|
|
13
16
|
border-radius: 50%;
|
|
14
|
-
color:
|
|
17
|
+
color: getCompCssVar('text-color');
|
|
15
18
|
display: flex;
|
|
16
19
|
align-items: center;
|
|
17
20
|
justify-content: center;
|
|
18
21
|
font-size: 20px;
|
|
19
22
|
box-shadow: getCssVar('box-shadow', 'lighter');
|
|
20
23
|
cursor: pointer;
|
|
21
|
-
z-index:
|
|
24
|
+
z-index: getCssVar('z-index-back-top');
|
|
22
25
|
|
|
23
26
|
&:hover {
|
|
24
27
|
background-color: getCssVar('backtop', 'hover-bg-color');
|
|
@@ -28,5 +31,3 @@ $name: back-top;
|
|
|
28
31
|
font-size: 20px;
|
|
29
32
|
}
|
|
30
33
|
}
|
|
31
|
-
|
|
32
|
-
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
4
|
+
@use 'mixins/mixins' as *;
|
|
5
|
+
@use 'mixins/var' as *;
|
|
6
|
+
@use 'common/var' as *;
|
|
7
|
+
|
|
8
|
+
@include b(badge) {
|
|
9
|
+
@include set-component-css-var('badge', $badge);
|
|
10
|
+
|
|
11
|
+
position: relative;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
display: inline-block;
|
|
14
|
+
width: fit-content;
|
|
15
|
+
|
|
16
|
+
@include e(content) {
|
|
17
|
+
background-color: getCssVar('badge', 'bg-color');
|
|
18
|
+
border-radius: getCssVar('badge', 'radius');
|
|
19
|
+
color: getCssVar('color', 'white');
|
|
20
|
+
|
|
21
|
+
display: inline-flex;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
align-items: center;
|
|
24
|
+
|
|
25
|
+
font-size: getCssVar('badge', 'font-size');
|
|
26
|
+
height: getCssVar('badge', 'size');
|
|
27
|
+
padding: 0 getCssVar('badge', 'padding');
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
border: 1px solid getCssVar('bg-color');
|
|
30
|
+
|
|
31
|
+
@include when(fixed) {
|
|
32
|
+
position: absolute;
|
|
33
|
+
top: 0;
|
|
34
|
+
right: calc(1px + #{getCssVar('badge', 'size')} / 2);
|
|
35
|
+
transform: translateY(-50%) translateX(100%);
|
|
36
|
+
z-index: getCssVar('index', 'normal');
|
|
37
|
+
|
|
38
|
+
@include when(dot) {
|
|
39
|
+
right: 5px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@include when(dot) {
|
|
44
|
+
height: 8px;
|
|
45
|
+
width: 8px;
|
|
46
|
+
padding: 0;
|
|
47
|
+
right: 0;
|
|
48
|
+
border-radius: 50%;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@each $type in (primary, success, warning, info, danger) {
|
|
52
|
+
@include m($type) {
|
|
53
|
+
background-color: getCssVar('color', $type);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'common/var' as *;
|
|
3
|
+
|
|
4
|
+
@include b(breadcrumb) {
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
line-height: 1;
|
|
7
|
+
@include utils-clearfix;
|
|
8
|
+
|
|
9
|
+
@include e(separator) {
|
|
10
|
+
margin: 0 9px;
|
|
11
|
+
font-weight: bold;
|
|
12
|
+
color: getCssVar('text-color', 'placeholder');
|
|
13
|
+
|
|
14
|
+
&.#{$namespace}-icon {
|
|
15
|
+
margin: 0 6px;
|
|
16
|
+
font-weight: normal;
|
|
17
|
+
svg {
|
|
18
|
+
vertical-align: middle;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@include e(item) {
|
|
24
|
+
float: left;
|
|
25
|
+
display: inline-flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
|
|
28
|
+
@include e(inner) {
|
|
29
|
+
color: getCssVar('text-color', 'regular');
|
|
30
|
+
|
|
31
|
+
&.is-link,
|
|
32
|
+
& a {
|
|
33
|
+
font-weight: bold;
|
|
34
|
+
text-decoration: none;
|
|
35
|
+
transition: getCssVar('transition', 'color');
|
|
36
|
+
color: getCssVar('text-color', 'primary');
|
|
37
|
+
|
|
38
|
+
&:hover {
|
|
39
|
+
color: getCssVar('primary-color');
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:last-child {
|
|
46
|
+
.#{$namespace}-breadcrumb__inner,
|
|
47
|
+
.#{$namespace}-breadcrumb__inner a {
|
|
48
|
+
&,
|
|
49
|
+
&:hover {
|
|
50
|
+
font-weight: normal;
|
|
51
|
+
color: getCssVar('text-color', 'regular');
|
|
52
|
+
cursor: text;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.#{$namespace}-breadcrumb__separator {
|
|
57
|
+
display: none;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'mixins/var' as *;
|
|
3
|
+
@use 'common/var' as *;
|
|
4
|
+
|
|
5
|
+
@include b(calendar) {
|
|
6
|
+
@include set-component-css-var('calendar', $calendar);
|
|
7
|
+
|
|
8
|
+
background-color: getCssVar('fill-color', 'blank');
|
|
9
|
+
|
|
10
|
+
@include e(header) {
|
|
11
|
+
display: flex;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
padding: 12px 20px;
|
|
14
|
+
border-bottom: getCssVar('calendar', 'header-border-bottom');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@include e(title) {
|
|
18
|
+
color: getCssVar('text-color');
|
|
19
|
+
align-self: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@include e(body) {
|
|
23
|
+
padding: 12px 20px 35px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@include b(calendar-table) {
|
|
28
|
+
table-layout: fixed;
|
|
29
|
+
width: 100%;
|
|
30
|
+
|
|
31
|
+
thead th {
|
|
32
|
+
padding: 12px 0;
|
|
33
|
+
color: getCssVar('text-color', 'regular');
|
|
34
|
+
font-weight: normal;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:not(.is-range) {
|
|
38
|
+
td.prev,
|
|
39
|
+
td.next {
|
|
40
|
+
color: getCssVar('text-color', 'placeholder');
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
td {
|
|
45
|
+
border-bottom: getCssVar('calendar', 'border');
|
|
46
|
+
border-right: getCssVar('calendar', 'border');
|
|
47
|
+
vertical-align: top;
|
|
48
|
+
transition: background-color getCssVar('transition-duration', 'fast') ease;
|
|
49
|
+
|
|
50
|
+
@include when(selected) {
|
|
51
|
+
background-color: getCssVar('calendar', 'selected-bg-color');
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@include when(today) {
|
|
55
|
+
color: getCssVar('primary-color');
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
tr:first-child td {
|
|
60
|
+
border-top: getCssVar('calendar', 'border');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
tr td:first-child {
|
|
64
|
+
border-left: getCssVar('calendar', 'border');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
tr.#{$namespace}-calendar-table__row--hide-border td {
|
|
68
|
+
border-top: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@include b(calendar-day) {
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
padding: 8px;
|
|
74
|
+
height: getCssVar('calendar', 'cell-width');
|
|
75
|
+
&:hover {
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
background-color: getCssVar('calendar', 'selected-bg-color');
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'mixins/var' as *;
|
|
3
|
+
@use 'common/var' as *;
|
|
4
|
+
|
|
5
|
+
@include b(card) {
|
|
6
|
+
@include set-component-css-var('card', $card);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@include b(card) {
|
|
10
|
+
border-radius: getCssVar('card', 'border-radius');
|
|
11
|
+
border: 1px solid getCssVar('card', 'border-color');
|
|
12
|
+
background-color: getCssVar('card', 'bg-color');
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
color: getCssVar('text-color', 'primary');
|
|
15
|
+
transition: getCssVar('transition-duration');
|
|
16
|
+
|
|
17
|
+
@include when(always-shadow) {
|
|
18
|
+
box-shadow: getCssVar('box-shadow', 'light');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@include when(hover-shadow) {
|
|
22
|
+
&:hover,
|
|
23
|
+
&:focus {
|
|
24
|
+
box-shadow: getCssVar('box-shadow', 'light');
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@include e(header) {
|
|
29
|
+
padding: calc(#{getCssVar('card', 'padding')} - 2px)
|
|
30
|
+
getCssVar('card', 'padding');
|
|
31
|
+
border-bottom: 1px solid getCssVar('card', 'border-color');
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@include e(body) {
|
|
36
|
+
padding: getCssVar('card', 'padding');
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'common/var' as *;
|
|
3
|
+
|
|
4
|
+
@include b(carousel) {
|
|
5
|
+
@include e(item) {
|
|
6
|
+
position: absolute;
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
display: inline-block;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
z-index: calc(getCssVar('index', 'normal') - 1);
|
|
14
|
+
|
|
15
|
+
@include when(active) {
|
|
16
|
+
z-index: calc(getCssVar('index', 'normal') - 1);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@include when(animating) {
|
|
20
|
+
transition: transform 0.4s ease-in-out;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@include m(card) {
|
|
24
|
+
width: 50%;
|
|
25
|
+
transition: transform 0.4s ease-in-out;
|
|
26
|
+
&.is-in-stage {
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
z-index: getCssVar('index', 'normal');
|
|
29
|
+
&:hover .#{$namespace}-carousel__mask,
|
|
30
|
+
&.is-hover .#{$namespace}-carousel__mask {
|
|
31
|
+
opacity: 0.12;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
&.is-active {
|
|
35
|
+
z-index: calc(getCssVar('index', 'normal') + 1);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@include e(mask) {
|
|
41
|
+
position: absolute;
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 100%;
|
|
44
|
+
top: 0;
|
|
45
|
+
left: 0;
|
|
46
|
+
background-color: getCssVar('color', 'white');
|
|
47
|
+
opacity: 0.24;
|
|
48
|
+
transition: getCssVar('transition-duration', 'fast');
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
@use 'mixins/mixins' as *;
|
|
4
|
+
@use 'mixins/var' as *;
|
|
5
|
+
@use 'common/var' as *;
|
|
6
|
+
|
|
7
|
+
@include b(carousel) {
|
|
8
|
+
@include set-component-css-var('carousel', $carousel);
|
|
9
|
+
|
|
10
|
+
position: relative;
|
|
11
|
+
|
|
12
|
+
@include m(horizontal) {
|
|
13
|
+
overflow-x: hidden;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@include m(vertical) {
|
|
17
|
+
overflow-y: hidden;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@include e(container) {
|
|
21
|
+
position: relative;
|
|
22
|
+
height: 300px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@include e(arrow) {
|
|
26
|
+
border: none;
|
|
27
|
+
outline: none;
|
|
28
|
+
padding: 0;
|
|
29
|
+
margin: 0;
|
|
30
|
+
height: getCssVar('carousel', 'arrow-size');
|
|
31
|
+
width: getCssVar('carousel', 'arrow-size');
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
transition: getCssVar('transition', 'duration');
|
|
34
|
+
border-radius: 50%;
|
|
35
|
+
background-color: getCssVar('carousel', 'arrow-background');
|
|
36
|
+
color: $color-white;
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 50%;
|
|
39
|
+
z-index: 10;
|
|
40
|
+
transform: translateY(-50%);
|
|
41
|
+
text-align: center;
|
|
42
|
+
font-size: getCssVar('carousel', 'arrow-font-size');
|
|
43
|
+
|
|
44
|
+
@include flex-center(true);
|
|
45
|
+
|
|
46
|
+
@include m(left) {
|
|
47
|
+
left: 16px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@include m(right) {
|
|
51
|
+
right: 16px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
background-color: getCssVar('carousel', 'arrow-hover-background');
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
& i {
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
@include e(indicators) {
|
|
64
|
+
position: absolute;
|
|
65
|
+
list-style: none;
|
|
66
|
+
margin: 0;
|
|
67
|
+
padding: 0;
|
|
68
|
+
z-index: calc(#{getCssVar('index-normal')} + 1);
|
|
69
|
+
|
|
70
|
+
@include m(horizontal) {
|
|
71
|
+
bottom: 0;
|
|
72
|
+
left: 50%;
|
|
73
|
+
transform: translateX(-50%);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@include m(vertical) {
|
|
77
|
+
right: 0;
|
|
78
|
+
top: 50%;
|
|
79
|
+
transform: translateY(-50%);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@include m(outside) {
|
|
83
|
+
bottom: calc(
|
|
84
|
+
getCssVar('carousel-indicator-height') +
|
|
85
|
+
getCssVar('carousel-indicator-padding-vertical') * 2
|
|
86
|
+
);
|
|
87
|
+
text-align: center;
|
|
88
|
+
position: static;
|
|
89
|
+
transform: none;
|
|
90
|
+
.#{$namespace}-carousel__indicator:hover button {
|
|
91
|
+
opacity: 0.64;
|
|
92
|
+
}
|
|
93
|
+
button {
|
|
94
|
+
background-color: getCssVar('carousel', 'indicator-out-color');
|
|
95
|
+
opacity: 0.24;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@include m(labels) {
|
|
100
|
+
left: 0;
|
|
101
|
+
right: 0;
|
|
102
|
+
transform: none;
|
|
103
|
+
text-align: center;
|
|
104
|
+
|
|
105
|
+
.#{$namespace}-carousel__button {
|
|
106
|
+
height: auto;
|
|
107
|
+
width: auto;
|
|
108
|
+
padding: 2px 18px;
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
color: $color-black;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.#{$namespace}-carousel__indicator {
|
|
114
|
+
padding: 6px 4px;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@include e(indicator) {
|
|
120
|
+
background-color: transparent;
|
|
121
|
+
cursor: pointer;
|
|
122
|
+
|
|
123
|
+
&:hover button {
|
|
124
|
+
opacity: 0.72;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
@include m(horizontal) {
|
|
128
|
+
display: inline-block;
|
|
129
|
+
padding: getCssVar('carousel-indicator-padding-vertical')
|
|
130
|
+
getCssVar('carousel-indicator-padding-horizontal');
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
@include m(vertical) {
|
|
134
|
+
padding: getCssVar('carousel-indicator-padding-horizontal')
|
|
135
|
+
getCssVar('carousel-indicator-padding-vertical');
|
|
136
|
+
.#{$namespace}-carousel__button {
|
|
137
|
+
width: getCssVar('carousel-indicator-height');
|
|
138
|
+
height: calc(#{getCssVar('carousel-indicator-width')} / 2);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
@include when(active) {
|
|
143
|
+
button {
|
|
144
|
+
opacity: 1;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@include e(button) {
|
|
150
|
+
display: block;
|
|
151
|
+
opacity: 0.48;
|
|
152
|
+
width: getCssVar('carousel-indicator-width');
|
|
153
|
+
height: getCssVar('carousel-indicator-height');
|
|
154
|
+
background-color: $color-white;
|
|
155
|
+
border: none;
|
|
156
|
+
outline: none;
|
|
157
|
+
padding: 0;
|
|
158
|
+
margin: 0;
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
transition: getCssVar('transition-duration');
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.carousel-arrow-left-enter-from,
|
|
165
|
+
.carousel-arrow-left-leave-active {
|
|
166
|
+
transform: translateY(-50%) translateX(-10px);
|
|
167
|
+
opacity: 0;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.carousel-arrow-right-enter-from,
|
|
171
|
+
.carousel-arrow-right-leave-active {
|
|
172
|
+
transform: translateY(-50%) translateX(10px);
|
|
173
|
+
opacity: 0;
|
|
174
|
+
}
|