vft 0.0.71 → 0.0.73
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 +69 -63
- 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,621 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'common/var' as *;
|
|
3
|
+
|
|
4
|
+
@mixin upload-success($color: null) {
|
|
5
|
+
right: -15px;
|
|
6
|
+
top: -6px;
|
|
7
|
+
width: 40px;
|
|
8
|
+
height: 24px;
|
|
9
|
+
background: getCssVar('success-color');
|
|
10
|
+
text-align: center;
|
|
11
|
+
transform: rotate(45deg);
|
|
12
|
+
|
|
13
|
+
i {
|
|
14
|
+
font-size: 12px;
|
|
15
|
+
margin-top: 11px;
|
|
16
|
+
transform: rotate(-45deg);
|
|
17
|
+
color: $color;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@include b(upload) {
|
|
22
|
+
@include set-component-css-var('upload', $upload);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@include b(upload) {
|
|
26
|
+
@include flex-center(true);
|
|
27
|
+
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
outline: none;
|
|
30
|
+
@include e(input) {
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@include e(tip) {
|
|
35
|
+
font-size: 12px;
|
|
36
|
+
color: getCssVar('text-color', 'regular');
|
|
37
|
+
margin-top: 7px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
iframe {
|
|
41
|
+
position: absolute;
|
|
42
|
+
z-index: -1;
|
|
43
|
+
top: 0;
|
|
44
|
+
left: 0;
|
|
45
|
+
opacity: 0;
|
|
46
|
+
filter: alpha(opacity=0);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Picture Card for Wall */
|
|
50
|
+
@include m(picture-card) {
|
|
51
|
+
@include set-css-var-value(('upload', 'picture-card', 'size'), 148px);
|
|
52
|
+
|
|
53
|
+
background-color: getCssVar('fill-color', 'lighter');
|
|
54
|
+
border: 1px dashed getCssVar('border-color', 'darker');
|
|
55
|
+
border-radius: 6px;
|
|
56
|
+
box-sizing: border-box;
|
|
57
|
+
width: getCssVar('upload', 'picture-card', 'size');
|
|
58
|
+
height: getCssVar('upload', 'picture-card', 'size');
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
vertical-align: top;
|
|
61
|
+
|
|
62
|
+
@include flex-center(true);
|
|
63
|
+
|
|
64
|
+
i {
|
|
65
|
+
font-size: 28px;
|
|
66
|
+
color: getCssVar('text-color', 'secondary');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&:hover {
|
|
70
|
+
border-color: getCssVar('primary-color');
|
|
71
|
+
color: getCssVar('primary-color');
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@include when(drag) {
|
|
76
|
+
display: block;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&:focus {
|
|
80
|
+
border-color: getCssVar('primary-color');
|
|
81
|
+
color: getCssVar('primary-color');
|
|
82
|
+
|
|
83
|
+
.#{$namespace}-upload-dragger {
|
|
84
|
+
border-color: getCssVar('primary-color');
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@include b(upload-dragger) {
|
|
90
|
+
padding: getCssVar('upload-dragger-padding-horizontal')
|
|
91
|
+
getCssVar('upload-dragger-padding-vertical');
|
|
92
|
+
background-color: getCssVar('fill-color', 'blank');
|
|
93
|
+
border: 1px dashed getCssVar('border-color');
|
|
94
|
+
border-radius: 6px;
|
|
95
|
+
box-sizing: border-box;
|
|
96
|
+
text-align: center;
|
|
97
|
+
cursor: pointer;
|
|
98
|
+
position: relative;
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
|
|
101
|
+
.#{bem('icon', '', 'upload')} {
|
|
102
|
+
font-size: 67px;
|
|
103
|
+
color: getCssVar('text-color', 'placeholder');
|
|
104
|
+
margin-bottom: 16px;
|
|
105
|
+
line-height: 50px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
+ .#{bem('upload', 'tip')} {
|
|
109
|
+
text-align: center;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
~ .#{bem('upload', 'files')} {
|
|
113
|
+
border-top: getCssVar('border');
|
|
114
|
+
margin-top: 7px;
|
|
115
|
+
padding-top: 5px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.#{bem('upload', 'text')} {
|
|
119
|
+
color: getCssVar('text-color', 'regular');
|
|
120
|
+
font-size: 14px;
|
|
121
|
+
text-align: center;
|
|
122
|
+
|
|
123
|
+
em {
|
|
124
|
+
color: getCssVar('primary-color');
|
|
125
|
+
font-style: normal;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&:hover {
|
|
130
|
+
border-color: getCssVar('primary-color');
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
@include when(dragover) {
|
|
134
|
+
padding: calc(#{getCssVar('upload-dragger-padding-horizontal')} - 1px)
|
|
135
|
+
calc(#{getCssVar('upload-dragger-padding-vertical')} - 1px);
|
|
136
|
+
background-color: getCssVar('color', 'primary', 'light-9');
|
|
137
|
+
border: 2px dashed getCssVar('primary-color');
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
@include b(upload-list) {
|
|
142
|
+
margin: 10px 0 0;
|
|
143
|
+
padding: 0;
|
|
144
|
+
list-style: none;
|
|
145
|
+
position: relative;
|
|
146
|
+
@include e(item) {
|
|
147
|
+
transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
|
|
148
|
+
font-size: 14px;
|
|
149
|
+
color: getCssVar('text-color', 'regular');
|
|
150
|
+
margin-bottom: 5px;
|
|
151
|
+
position: relative;
|
|
152
|
+
box-sizing: border-box;
|
|
153
|
+
border-radius: 4px;
|
|
154
|
+
width: 100%;
|
|
155
|
+
|
|
156
|
+
.#{bem('progress')} {
|
|
157
|
+
position: absolute;
|
|
158
|
+
top: 20px;
|
|
159
|
+
width: 100%;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.#{bem('progress', 'text')} {
|
|
163
|
+
position: absolute;
|
|
164
|
+
right: 0;
|
|
165
|
+
top: -13px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.#{bem('progress-bar')} {
|
|
169
|
+
margin-right: 0;
|
|
170
|
+
padding-right: 0;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
& .#{bem('icon', '', 'upload-success')} {
|
|
174
|
+
color: getCssVar('success-color');
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.#{bem('icon', '', 'close')} {
|
|
178
|
+
display: none;
|
|
179
|
+
position: absolute;
|
|
180
|
+
right: 5px;
|
|
181
|
+
top: 50%;
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
opacity: 0.75;
|
|
184
|
+
color: getCssVar('text-color', 'regular');
|
|
185
|
+
transition: opacity getCssVar('transition-duration');
|
|
186
|
+
transform: translateY(-50%);
|
|
187
|
+
|
|
188
|
+
&:hover {
|
|
189
|
+
opacity: 1;
|
|
190
|
+
color: getCssVar('primary-color');
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
& .#{bem('icon', '', 'close-tip')} {
|
|
195
|
+
display: none;
|
|
196
|
+
position: absolute;
|
|
197
|
+
top: 1px;
|
|
198
|
+
right: 5px;
|
|
199
|
+
font-size: 12px;
|
|
200
|
+
cursor: pointer;
|
|
201
|
+
opacity: 1;
|
|
202
|
+
color: getCssVar('primary-color');
|
|
203
|
+
font-style: normal;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&:hover {
|
|
207
|
+
background-color: getCssVar('fill-color', 'light');
|
|
208
|
+
|
|
209
|
+
.#{bem('icon', '', 'close')} {
|
|
210
|
+
display: inline-flex;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.#{bem('progress', 'text')} {
|
|
214
|
+
display: none;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.#{bem('upload-list', 'item-info')} {
|
|
219
|
+
display: inline-flex;
|
|
220
|
+
justify-content: center;
|
|
221
|
+
flex-direction: column;
|
|
222
|
+
width: calc(100% - 30px);
|
|
223
|
+
margin-left: 4px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
@include when(success) {
|
|
227
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
228
|
+
display: inline-flex;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.#{bem('upload-list', 'item-name')}:hover,
|
|
232
|
+
.#{bem('upload-list', 'item-name')}:focus {
|
|
233
|
+
color: getCssVar('primary-color');
|
|
234
|
+
cursor: pointer;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
&:focus:not(:hover) {
|
|
238
|
+
/* 键盘focus */
|
|
239
|
+
.#{bem('icon', '', 'close-tip')} {
|
|
240
|
+
display: inline-block;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
&:not(.focusing):focus,
|
|
245
|
+
&:active {
|
|
246
|
+
/* click时 */
|
|
247
|
+
outline-width: 0;
|
|
248
|
+
.#{bem('icon', '', 'close-tip')} {
|
|
249
|
+
display: none;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
&:hover,
|
|
254
|
+
&:focus {
|
|
255
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
256
|
+
display: none;
|
|
257
|
+
opacity: 0;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@include e(item-name) {
|
|
264
|
+
color: getCssVar('text-color', 'regular');
|
|
265
|
+
display: inline-flex;
|
|
266
|
+
text-align: center;
|
|
267
|
+
align-items: center;
|
|
268
|
+
|
|
269
|
+
padding: 0 4px;
|
|
270
|
+
|
|
271
|
+
transition: color getCssVar('transition-duration');
|
|
272
|
+
font-size: getCssVar('font-size', 'base');
|
|
273
|
+
|
|
274
|
+
.#{$namespace}-icon {
|
|
275
|
+
margin-right: 6px;
|
|
276
|
+
color: getCssVar('text-color', 'secondary');
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
@include e(item-file-name) {
|
|
281
|
+
overflow: hidden;
|
|
282
|
+
text-overflow: ellipsis;
|
|
283
|
+
white-space: nowrap;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
@include e(item-status-label) {
|
|
287
|
+
position: absolute;
|
|
288
|
+
right: 5px;
|
|
289
|
+
top: 0;
|
|
290
|
+
line-height: inherit;
|
|
291
|
+
display: none;
|
|
292
|
+
|
|
293
|
+
height: 100%;
|
|
294
|
+
justify-content: center;
|
|
295
|
+
align-items: center;
|
|
296
|
+
|
|
297
|
+
transition: opacity getCssVar('transition-duration');
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
@include e(item-delete) {
|
|
301
|
+
position: absolute;
|
|
302
|
+
right: 10px;
|
|
303
|
+
top: 0;
|
|
304
|
+
font-size: 12px;
|
|
305
|
+
color: getCssVar('text-color', 'regular');
|
|
306
|
+
display: none;
|
|
307
|
+
|
|
308
|
+
&:hover {
|
|
309
|
+
color: getCssVar('primary-color');
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// upload-list
|
|
314
|
+
@include m(picture-card) {
|
|
315
|
+
@include set-css-var-value(('upload-list', 'picture-card', 'size'), 148px);
|
|
316
|
+
|
|
317
|
+
display: inline-flex;
|
|
318
|
+
flex-wrap: wrap;
|
|
319
|
+
margin: 0;
|
|
320
|
+
|
|
321
|
+
.#{bem('upload-list', 'item')} {
|
|
322
|
+
overflow: hidden;
|
|
323
|
+
background-color: getCssVar('fill-color', 'blank');
|
|
324
|
+
border: 1px solid getCssVar('border-color');
|
|
325
|
+
border-radius: 6px;
|
|
326
|
+
box-sizing: border-box;
|
|
327
|
+
width: getCssVar('upload-list', 'picture-card', 'size');
|
|
328
|
+
height: getCssVar('upload-list', 'picture-card', 'size');
|
|
329
|
+
margin: 0 8px 8px 0;
|
|
330
|
+
padding: 0;
|
|
331
|
+
|
|
332
|
+
display: inline-flex;
|
|
333
|
+
|
|
334
|
+
.#{bem('icon', '' ,'check')},
|
|
335
|
+
.#{bem('icon', '' ,'circle-check')} {
|
|
336
|
+
color: $color-white;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.#{bem('icon', '', 'close')} {
|
|
340
|
+
display: none;
|
|
341
|
+
}
|
|
342
|
+
&:hover {
|
|
343
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
344
|
+
opacity: 0;
|
|
345
|
+
// for fade out
|
|
346
|
+
display: block;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.#{$namespace}-progress__text {
|
|
350
|
+
display: block;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.#{bem('upload-list', 'item')} {
|
|
356
|
+
.#{bem('upload-list', 'item-name')} {
|
|
357
|
+
display: none;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.#{bem('upload-list', 'item-thumbnail')} {
|
|
362
|
+
width: 100%;
|
|
363
|
+
height: 100%;
|
|
364
|
+
object-fit: contain;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
368
|
+
@include upload-success();
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.#{bem('upload-list', 'item-actions')} {
|
|
372
|
+
position: absolute;
|
|
373
|
+
width: 100%;
|
|
374
|
+
height: 100%;
|
|
375
|
+
left: 0;
|
|
376
|
+
top: 0;
|
|
377
|
+
cursor: default;
|
|
378
|
+
|
|
379
|
+
display: inline-flex;
|
|
380
|
+
justify-content: center;
|
|
381
|
+
align-items: center;
|
|
382
|
+
|
|
383
|
+
color: #fff;
|
|
384
|
+
opacity: 0;
|
|
385
|
+
font-size: 20px;
|
|
386
|
+
background-color: getCssVar('overlay-color', 'lighter');
|
|
387
|
+
transition: opacity getCssVar('transition-duration');
|
|
388
|
+
|
|
389
|
+
span {
|
|
390
|
+
display: none;
|
|
391
|
+
cursor: pointer;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
span + span {
|
|
395
|
+
margin-left: 1rem;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.#{bem('upload-list', 'item-delete')} {
|
|
399
|
+
position: static;
|
|
400
|
+
font-size: inherit;
|
|
401
|
+
color: inherit;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
&:hover {
|
|
405
|
+
opacity: 1;
|
|
406
|
+
span {
|
|
407
|
+
display: inline-flex;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.#{bem('progress')} {
|
|
413
|
+
top: 50%;
|
|
414
|
+
left: 50%;
|
|
415
|
+
transform: translate(-50%, -50%);
|
|
416
|
+
bottom: auto;
|
|
417
|
+
width: 126px;
|
|
418
|
+
|
|
419
|
+
.#{$namespace}-progress__text {
|
|
420
|
+
top: 50%;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
@include m(picture) {
|
|
426
|
+
.#{bem('upload-list', 'item')} {
|
|
427
|
+
overflow: hidden;
|
|
428
|
+
z-index: 0;
|
|
429
|
+
background-color: getCssVar('fill-color', 'blank');
|
|
430
|
+
border: 1px solid getCssVar('border-color');
|
|
431
|
+
border-radius: 6px;
|
|
432
|
+
box-sizing: border-box;
|
|
433
|
+
margin-top: 10px;
|
|
434
|
+
padding: 10px;
|
|
435
|
+
display: flex;
|
|
436
|
+
align-items: center;
|
|
437
|
+
|
|
438
|
+
.#{bem('icon', '' ,'check')},
|
|
439
|
+
.#{bem('icon', '' ,'circle-check')} {
|
|
440
|
+
color: $color-white;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
&:hover {
|
|
444
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
445
|
+
opacity: 0;
|
|
446
|
+
display: inline-flex;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.#{bem('progress', 'text')} {
|
|
450
|
+
display: block;
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
&.is-success {
|
|
455
|
+
.#{bem('upload-list', 'item-name')} {
|
|
456
|
+
i {
|
|
457
|
+
display: none;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
& .#{bem('icon', '' ,'close')} {
|
|
463
|
+
top: 5px;
|
|
464
|
+
transform: translateY(0);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.#{bem('upload-list', 'item-thumbnail')} {
|
|
469
|
+
$item-thumbnail-size: 70px;
|
|
470
|
+
|
|
471
|
+
display: inline-flex;
|
|
472
|
+
justify-content: center;
|
|
473
|
+
align-items: center;
|
|
474
|
+
|
|
475
|
+
width: $item-thumbnail-size;
|
|
476
|
+
height: $item-thumbnail-size;
|
|
477
|
+
object-fit: contain;
|
|
478
|
+
|
|
479
|
+
position: relative;
|
|
480
|
+
z-index: 1;
|
|
481
|
+
background-color: getCssVar('color-white');
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.#{bem('upload-list', 'item-status-label')} {
|
|
485
|
+
position: absolute;
|
|
486
|
+
right: -17px;
|
|
487
|
+
top: -7px;
|
|
488
|
+
width: 46px;
|
|
489
|
+
height: 26px;
|
|
490
|
+
background: getCssVar('success-color');
|
|
491
|
+
text-align: center;
|
|
492
|
+
transform: rotate(45deg);
|
|
493
|
+
|
|
494
|
+
i {
|
|
495
|
+
font-size: 12px;
|
|
496
|
+
margin-top: 12px;
|
|
497
|
+
transform: rotate(-45deg);
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.#{$namespace}-progress {
|
|
502
|
+
position: relative;
|
|
503
|
+
top: -7px;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
@include b(upload-cover) {
|
|
509
|
+
position: absolute;
|
|
510
|
+
left: 0;
|
|
511
|
+
top: 0;
|
|
512
|
+
width: 100%;
|
|
513
|
+
height: 100%;
|
|
514
|
+
overflow: hidden;
|
|
515
|
+
z-index: 10;
|
|
516
|
+
cursor: default;
|
|
517
|
+
@include utils-vertical-center;
|
|
518
|
+
|
|
519
|
+
img {
|
|
520
|
+
display: block;
|
|
521
|
+
width: 100%;
|
|
522
|
+
height: 100%;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
@include e(label) {
|
|
526
|
+
@include upload-success(#fff);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
@include e(progress) {
|
|
530
|
+
display: inline-block;
|
|
531
|
+
vertical-align: middle;
|
|
532
|
+
position: static;
|
|
533
|
+
width: 243px;
|
|
534
|
+
|
|
535
|
+
+ .#{bem('upload', 'inner')} {
|
|
536
|
+
opacity: 0;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
@include e(content) {
|
|
541
|
+
position: absolute;
|
|
542
|
+
top: 0;
|
|
543
|
+
left: 0;
|
|
544
|
+
width: 100%;
|
|
545
|
+
height: 100%;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
@include e(interact) {
|
|
549
|
+
position: absolute;
|
|
550
|
+
bottom: 0;
|
|
551
|
+
left: 0;
|
|
552
|
+
width: 100%;
|
|
553
|
+
height: 100%;
|
|
554
|
+
background-color: getCssVar('overlay-color', 'light');
|
|
555
|
+
text-align: center;
|
|
556
|
+
|
|
557
|
+
.btn {
|
|
558
|
+
display: inline-block;
|
|
559
|
+
color: $color-white;
|
|
560
|
+
font-size: 14px;
|
|
561
|
+
cursor: pointer;
|
|
562
|
+
vertical-align: middle;
|
|
563
|
+
transition: getCssVar('transition-md-fade');
|
|
564
|
+
margin-top: 60px;
|
|
565
|
+
|
|
566
|
+
i {
|
|
567
|
+
margin-top: 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
span {
|
|
571
|
+
opacity: 0;
|
|
572
|
+
transition: opacity 0.15s linear;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
&:not(:first-child) {
|
|
576
|
+
margin-left: 35px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
&:hover {
|
|
580
|
+
transform: translateY(-13px);
|
|
581
|
+
|
|
582
|
+
span {
|
|
583
|
+
opacity: 1;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
i {
|
|
588
|
+
color: $color-white;
|
|
589
|
+
display: block;
|
|
590
|
+
font-size: 24px;
|
|
591
|
+
line-height: inherit;
|
|
592
|
+
margin: 0 auto 5px;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
@include e(title) {
|
|
598
|
+
position: absolute;
|
|
599
|
+
bottom: 0;
|
|
600
|
+
left: 0;
|
|
601
|
+
background-color: $color-white;
|
|
602
|
+
height: 36px;
|
|
603
|
+
width: 100%;
|
|
604
|
+
overflow: hidden;
|
|
605
|
+
text-overflow: ellipsis;
|
|
606
|
+
white-space: nowrap;
|
|
607
|
+
font-weight: normal;
|
|
608
|
+
text-align: left;
|
|
609
|
+
padding: 0 10px;
|
|
610
|
+
margin: 0;
|
|
611
|
+
line-height: 36px;
|
|
612
|
+
font-size: 14px;
|
|
613
|
+
color: getCssVar('text-color', 'primary');
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
+ .#{bem('upload', 'inner')} {
|
|
617
|
+
opacity: 0;
|
|
618
|
+
position: relative;
|
|
619
|
+
z-index: 1;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-affix--fixed{position:fixed}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-aside{overflow:auto;box-sizing:border-box;flex-shrink:0;width:var(--vft-aside-width,300px)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-autocomplete{position:relative;display:inline-block}.vft-autocomplete__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-autocomplete__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-autocomplete__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-autocomplete__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-autocomplete__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-autocomplete__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-autocomplete-suggestion{border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-autocomplete-suggestion__wrap{max-height:280px;padding:10px 0;box-sizing:border-box}.vft-autocomplete-suggestion__list{margin:0;padding:0}.vft-autocomplete-suggestion li{padding:0 20px;margin:0;line-height:34px;cursor:pointer;color:var(--vft-text-color-regular);font-size:var(--vft-font-size-base);list-style:none;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.vft-autocomplete-suggestion li:hover{background-color:var(--vft-fill-color-light)}.vft-autocomplete-suggestion li.highlighted{background-color:var(--vft-fill-color-light)}.vft-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid var(--vft-color-black)}.vft-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.vft-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:var(--vft-text-color-secondary)}.vft-autocomplete-suggestion.is-loading li::after{display:inline-block;content:"";height:100%;vertical-align:middle}.vft-autocomplete-suggestion.is-loading li:hover{background-color:var(--vft-bg-color-overlay)}.vft-autocomplete-suggestion.is-loading .vft-icon-loading{vertical-align:middle}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-back-top{--vft-backtop-bg-color:var(--vft-bg-color-overlay);--vft-backtop-text-color:var(--vft-text-primary-color);--vft-backtop-hover-bg-color:var(--vft-border-color-extra-light);position:fixed;background-color:var(--vft-
|
|
1
|
+
.vft-back-top{--vft-backtop-bg-color:var(--vft-bg-color-overlay);--vft-backtop-text-color:var(--vft-text-primary-color);--vft-backtop-hover-bg-color:var(--vft-border-color-extra-light);position:fixed;background-color:var(--vft-back-top-bg-color);width:40px;height:40px;border-radius:50%;color:var(--vft-back-top-text-color);display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:var(--vft-box-shadow-lighter);cursor:pointer;z-index:var(--vft-z-index-back-top)}.vft-back-top:hover{background-color:var(--vft-backtop-hover-bg-color)}.vft-back-top__icon{font-size:20px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-badge{--vft-badge-bg-color:var(--vft-danger-color);--vft-badge-radius:10px;--vft-badge-font-size:12px;--vft-badge-padding:6px;--vft-badge-size:18px;position:relative;vertical-align:middle;display:inline-block;width:-moz-fit-content;width:fit-content}.vft-badge__content{background-color:var(--vft-badge-bg-color);border-radius:var(--vft-badge-radius);color:var(--vft-color-white);display:inline-flex;justify-content:center;align-items:center;font-size:var(--vft-badge-font-size);height:var(--vft-badge-size);padding:0 var(--vft-badge-padding);white-space:nowrap;border:1px solid var(--vft-bg-color)}.vft-badge__content.is-fixed{position:absolute;top:0;right:calc(1px + var(--vft-badge-size)/ 2);transform:translateY(-50%) translateX(100%);z-index:var(--vft-index-normal)}.vft-badge__content.is-fixed.is-dot{right:5px}.vft-badge__content.is-dot{height:8px;width:8px;padding:0;right:0;border-radius:50%}.vft-badge__content--primary{background-color:var(--vft-color-primary)}.vft-badge__content--success{background-color:var(--vft-color-success)}.vft-badge__content--warning{background-color:var(--vft-color-warning)}.vft-badge__content--info{background-color:var(--vft-color-info)}.vft-badge__content--danger{background-color:var(--vft-color-danger)}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-breadcrumb{font-size:14px;line-height:1}.vft-breadcrumb::after,.vft-breadcrumb::before{display:table;content:""}.vft-breadcrumb::after{clear:both}.vft-breadcrumb__separator{margin:0 9px;font-weight:700;color:var(--vft-text-color-placeholder)}.vft-breadcrumb__separator.vft-icon{margin:0 6px;font-weight:400}.vft-breadcrumb__separator.vft-icon svg{vertical-align:middle}.vft-breadcrumb__item{float:left;display:inline-flex;align-items:center}.vft-breadcrumb__inner{color:var(--vft-text-color-regular)}.vft-breadcrumb__inner a,.vft-breadcrumb__inner.is-link{font-weight:700;text-decoration:none;transition:var(--vft-transition-color);color:var(--vft-text-color-primary)}.vft-breadcrumb__inner a:hover,.vft-breadcrumb__inner.is-link:hover{color:var(--vft-primary-color);cursor:pointer}.vft-breadcrumb__item:last-child .vft-breadcrumb__inner,.vft-breadcrumb__item:last-child .vft-breadcrumb__inner a,.vft-breadcrumb__item:last-child .vft-breadcrumb__inner a:hover,.vft-breadcrumb__item:last-child .vft-breadcrumb__inner:hover{font-weight:400;color:var(--vft-text-color-regular);cursor:text}.vft-breadcrumb__item:last-child .vft-breadcrumb__separator{display:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-calendar{--vft-calendar-border:var(--vft-table-border, 1px solid var(--vft-border-color-lighter));--vft-calendar-header-border-bottom:var(--vft-calendar-border);--vft-calendar-selected-bg-color:var(--vft-color-primary-light-9);--vft-calendar-cell-width:85px;background-color:var(--vft-fill-color-blank)}.vft-calendar__header{display:flex;justify-content:space-between;padding:12px 20px;border-bottom:var(--vft-calendar-header-border-bottom)}.vft-calendar__title{color:var(--vft-text-color);align-self:center}.vft-calendar__body{padding:12px 20px 35px}.vft-calendar-table{table-layout:fixed;width:100%}.vft-calendar-table thead th{padding:12px 0;color:var(--vft-text-color-regular);font-weight:400}.vft-calendar-table:not(.is-range) td.next,.vft-calendar-table:not(.is-range) td.prev{color:var(--vft-text-color-placeholder)}.vft-calendar-table td{border-bottom:var(--vft-calendar-border);border-right:var(--vft-calendar-border);vertical-align:top;transition:background-color var(--vft-transition-duration-fast) ease}.vft-calendar-table td.is-selected{background-color:var(--vft-calendar-selected-bg-color)}.vft-calendar-table td.is-today{color:var(--vft-primary-color)}.vft-calendar-table tr:first-child td{border-top:var(--vft-calendar-border)}.vft-calendar-table tr td:first-child{border-left:var(--vft-calendar-border)}.vft-calendar-table tr.vft-calendar-table__row--hide-border td{border-top:none}.vft-calendar-table .vft-calendar-day{box-sizing:border-box;padding:8px;height:var(--vft-calendar-cell-width)}.vft-calendar-table .vft-calendar-day:hover{cursor:pointer;background-color:var(--vft-calendar-selected-bg-color)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-card{--vft-card-border-color:var(--vft-border-color-light);--vft-card-border-radius:4px;--vft-card-padding:20px;--vft-card-bg-color:var(--vft-fill-color-blank)}.vft-card{border-radius:var(--vft-card-border-radius);border:1px solid var(--vft-card-border-color);background-color:var(--vft-card-bg-color);overflow:hidden;color:var(--vft-text-color-primary);transition:var(--vft-transition-duration)}.vft-card.is-always-shadow{box-shadow:var(--vft-box-shadow-light)}.vft-card.is-hover-shadow:focus,.vft-card.is-hover-shadow:hover{box-shadow:var(--vft-box-shadow-light)}.vft-card__header{padding:calc(var(--vft-card-padding) - 2px) var(--vft-card-padding);border-bottom:1px solid var(--vft-card-border-color);box-sizing:border-box}.vft-card__body{padding:var(--vft-card-padding)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-carousel__item{position:absolute;top:0;left:0;width:100%;height:100%;display:inline-block;overflow:hidden;z-index:calc(var(--vft-index-normal) - 1)}.vft-carousel__item.is-active{z-index:calc(var(--vft-index-normal) - 1)}.vft-carousel__item.is-animating{transition:transform .4s ease-in-out}.vft-carousel__item--card{width:50%;transition:transform .4s ease-in-out}.vft-carousel__item--card.is-in-stage{cursor:pointer;z-index:var(--vft-index-normal)}.vft-carousel__item--card.is-in-stage.is-hover .vft-carousel__mask,.vft-carousel__item--card.is-in-stage:hover .vft-carousel__mask{opacity:.12}.vft-carousel__item--card.is-active{z-index:calc(var(--vft-index-normal) + 1)}.vft-carousel__mask{position:absolute;width:100%;height:100%;top:0;left:0;background-color:var(--vft-color-white);opacity:.24;transition:var(--vft-transition-duration-fast)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-carousel{--vft-carousel-arrow-font-size:12px;--vft-carousel-arrow-size:36px;--vft-carousel-arrow-background:rgba(31, 45, 61, 0.11);--vft-carousel-arrow-hover-background:rgba(31, 45, 61, 0.23);--vft-carousel-indicator-width:30px;--vft-carousel-indicator-height:2px;--vft-carousel-indicator-padding-horizontal:4px;--vft-carousel-indicator-padding-vertical:12px;--vft-carousel-indicator-out-color:var(--vft-border-color-hover);position:relative}.vft-carousel--horizontal{overflow-x:hidden}.vft-carousel--vertical{overflow-y:hidden}.vft-carousel__container{position:relative;height:300px}.vft-carousel__arrow{border:none;outline:0;padding:0;margin:0;height:var(--vft-carousel-arrow-size);width:var(--vft-carousel-arrow-size);cursor:pointer;transition:var(--vft-transition-duration);border-radius:50%;background-color:var(--vft-carousel-arrow-background);color:#fff;position:absolute;top:50%;z-index:10;transform:translateY(-50%);text-align:center;font-size:var(--vft-carousel-arrow-font-size);display:inline-flex;align-items:center;justify-content:center}.vft-carousel__arrow--left{left:16px}.vft-carousel__arrow--right{right:16px}.vft-carousel__arrow:hover{background-color:var(--vft-carousel-arrow-hover-background)}.vft-carousel__arrow i{cursor:pointer}.vft-carousel__indicators{position:absolute;list-style:none;margin:0;padding:0;z-index:calc(var(--vft-index-normal) + 1)}.vft-carousel__indicators--horizontal{bottom:0;left:50%;transform:translateX(-50%)}.vft-carousel__indicators--vertical{right:0;top:50%;transform:translateY(-50%)}.vft-carousel__indicators--outside{bottom:calc(var(--vft-carousel-indicator-height) + var(--vft-carousel-indicator-padding-vertical) * 2);text-align:center;position:static;transform:none}.vft-carousel__indicators--outside .vft-carousel__indicator:hover button{opacity:.64}.vft-carousel__indicators--outside button{background-color:var(--vft-carousel-indicator-out-color);opacity:.24}.vft-carousel__indicators--labels{left:0;right:0;transform:none;text-align:center}.vft-carousel__indicators--labels .vft-carousel__button{height:auto;width:auto;padding:2px 18px;font-size:12px;color:#000}.vft-carousel__indicators--labels .vft-carousel__indicator{padding:6px 4px}.vft-carousel__indicator{background-color:transparent;cursor:pointer}.vft-carousel__indicator:hover button{opacity:.72}.vft-carousel__indicator--horizontal{display:inline-block;padding:var(--vft-carousel-indicator-padding-vertical) var(--vft-carousel-indicator-padding-horizontal)}.vft-carousel__indicator--vertical{padding:var(--vft-carousel-indicator-padding-horizontal) var(--vft-carousel-indicator-padding-vertical)}.vft-carousel__indicator--vertical .vft-carousel__button{width:var(--vft-carousel-indicator-height);height:calc(var(--vft-carousel-indicator-width)/ 2)}.vft-carousel__indicator.is-active button{opacity:1}.vft-carousel__button{display:block;opacity:.48;width:var(--vft-carousel-indicator-width);height:var(--vft-carousel-indicator-height);background-color:#fff;border:none;outline:0;padding:0;margin:0;cursor:pointer;transition:var(--vft-transition-duration)}.carousel-arrow-left-enter-from,.carousel-arrow-left-leave-active{transform:translateY(-50%) translateX(-10px);opacity:0}.carousel-arrow-right-enter-from,.carousel-arrow-right-leave-active{transform:translateY(-50%) translateX(10px);opacity:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-cascader-panel{--vft-cascader-menu-text-color:var(--vft-text-regular-color);--vft-cascader-menu-selected-text-color:var(--vft-primary-color);--vft-cascader-menu-fill:var(--vft-bg-color-overlay);--vft-cascader-menu-font-size:var(--vft-font-size-base);--vft-cascader-menu-radius:var(--vft-border-radius-base);--vft-cascader-menu-border:solid 1px var(--vft-border-color-light);--vft-cascader-menu-shadow:var(--vft-box-shadow-light);--vft-cascader-node-background-hover:var(--vft-fill-color-light);--vft-cascader-node-color-disabled:var(--vft-text-placeholder-color);--vft-cascader-color-empty:var(--vft-text-placeholder-color);--vft-cascader-tag-background:var(--vft-fill-color)}.vft-cascader-panel{display:flex;border-radius:var(--vft-cascader-menu-radius);font-size:var(--vft-cascader-menu-font-size)}.vft-cascader-panel.is-bordered{border:var(--vft-cascader-menu-border);border-radius:var(--vft-cascader-menu-radius)}.vft-cascader-menu{min-width:180px;box-sizing:border-box;color:var(--vft-cascader-menu-text-color);border-right:var(--vft-cascader-menu-border)}.vft-cascader-menu:last-child{border-right:none}.vft-cascader-menu:last-child .vft-cascader-node{padding-right:20px}.vft-cascader-menu__wrap.vft-scrollbar__wrap{height:204px}.vft-cascader-menu__list{position:relative;min-height:100%;margin:0;padding:6px 0;list-style:none;box-sizing:border-box}.vft-cascader-menu__hover-zone{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.vft-cascader-menu__empty-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;color:var(--vft-cascader-color-empty)}.vft-cascader-menu__empty-text .is-loading{margin-right:2px}.vft-cascader-node{position:relative;display:flex;align-items:center;padding:0 30px 0 20px;height:34px;line-height:34px;outline:0}.vft-cascader-node.is-selectable.in-active-path{color:var(--vft-cascader-menu-text-color)}.vft-cascader-node.in-active-path,.vft-cascader-node.is-active,.vft-cascader-node.is-selectable.in-checked-path{color:var(--vft-cascader-menu-selected-text-color);font-weight:700}.vft-cascader-node:not(.is-disabled){cursor:pointer}.vft-cascader-node:not(.is-disabled):focus,.vft-cascader-node:not(.is-disabled):hover{background:var(--vft-cascader-node-background-hover)}.vft-cascader-node.is-disabled{color:var(--vft-cascader-node-color-disabled);cursor:not-allowed}.vft-cascader-node__prefix{position:absolute;left:10px}.vft-cascader-node__postfix{position:absolute;right:10px}.vft-cascader-node__label{flex:1;text-align:left;padding:0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.vft-cascader-node>.vft-checkbox{margin-right:0}.vft-cascader-node>.vft-radio{margin-right:0}.vft-cascader-node>.vft-radio .vft-radio__label{padding-left:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-cascader{--vft-cascader-menu-text-color:var(--vft-text-regular-color);--vft-cascader-menu-selected-text-color:var(--vft-primary-color);--vft-cascader-menu-fill:var(--vft-bg-color-overlay);--vft-cascader-menu-font-size:var(--vft-font-size-base);--vft-cascader-menu-radius:var(--vft-border-radius-base);--vft-cascader-menu-border:solid 1px var(--vft-border-color-light);--vft-cascader-menu-shadow:var(--vft-box-shadow-light);--vft-cascader-node-background-hover:var(--vft-fill-color-light);--vft-cascader-node-color-disabled:var(--vft-text-placeholder-color);--vft-cascader-color-empty:var(--vft-text-placeholder-color);--vft-cascader-tag-background:var(--vft-fill-color);display:inline-block;vertical-align:middle;position:relative;font-size:var(--vft-font-size-base);line-height:32px;outline:0}.vft-cascader:not(.is-disabled):hover .vft-input__wrapper{cursor:pointer;box-shadow:0 0 0 1px var(--vft-input-hover-border-color) inset}.vft-cascader .vft-input{display:flex;cursor:pointer}.vft-cascader .vft-input .vft-input__inner{text-overflow:ellipsis;cursor:pointer}.vft-cascader .vft-input .vft-input__suffix-inner .vft-icon{height:calc(100% - 2px)}.vft-cascader .vft-input .vft-input__suffix-inner .vft-icon svg{vertical-align:middle}.vft-cascader .vft-input .icon-arrow-down{transition:transform var(--vft-transition-duration);font-size:14px}.vft-cascader .vft-input .icon-arrow-down.is-reverse{transform:rotateZ(180deg)}.vft-cascader .vft-input .icon-circle-close:hover{color:var(--vft-input-clear-hover-color,var(--vft-text-secondary-color))}.vft-cascader .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-input-focus-border-color,var(--vft-primary-color)) inset}.vft-cascader--large{font-size:14px;line-height:40px}.vft-cascader--small{font-size:12px;line-height:24px}.vft-cascader.is-disabled .vft-cascader__label{z-index:calc(var(--vft-index-normal) + 1);color:var(--vft-disabled-text-color)}.vft-cascader__dropdown{--vft-cascader-menu-text-color:var(--vft-text-regular-color);--vft-cascader-menu-selected-text-color:var(--vft-primary-color);--vft-cascader-menu-fill:var(--vft-bg-color-overlay);--vft-cascader-menu-font-size:var(--vft-font-size-base);--vft-cascader-menu-radius:var(--vft-border-radius-base);--vft-cascader-menu-border:solid 1px var(--vft-border-color-light);--vft-cascader-menu-shadow:var(--vft-box-shadow-light);--vft-cascader-node-background-hover:var(--vft-fill-color-light);--vft-cascader-node-color-disabled:var(--vft-text-placeholder-color);--vft-cascader-color-empty:var(--vft-text-placeholder-color);--vft-cascader-tag-background:var(--vft-fill-color)}.vft-cascader__dropdown{font-size:var(--vft-cascader-menu-font-size);border-radius:var(--vft-cascader-menu-radius)}.vft-cascader__dropdown.vft-popper{background:var(--vft-cascader-menu-fill);border:var(--vft-cascader-menu-border);box-shadow:var(--vft-cascader-menu-shadow)}.vft-cascader__dropdown.vft-popper .vft-popper__arrow::before{border:var(--vft-cascader-menu-border)}.vft-cascader__dropdown.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-cascader__dropdown.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-cascader__dropdown.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-cascader__dropdown.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-cascader__dropdown.vft-popper{box-shadow:var(--vft-cascader-menu-shadow)}.vft-cascader__tags{position:absolute;left:0;right:30px;top:50%;transform:translateY(-50%);display:flex;flex-wrap:wrap;line-height:normal;text-align:left;box-sizing:border-box}.vft-cascader__tags .vft-tag{display:inline-flex;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:var(--vft-cascader-tag-background)}.vft-cascader__tags .vft-tag:not(.is-hit){border-color:transparent}.vft-cascader__tags .vft-tag>span{flex:1;overflow:hidden;text-overflow:ellipsis}.vft-cascader__tags .vft-tag .vft-icon-close{flex:none;background-color:var(--vft-text-color-placeholder);color:var(--vft-color-white)}.vft-cascader__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-cascader__collapse-tags{white-space:normal;z-index:var(--vft-index-normal)}.vft-cascader__collapse-tags .vft-tag{display:inline-flex;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:var(--vft-fill-color)}.vft-cascader__collapse-tags .vft-tag:not(.is-hit){border-color:transparent}.vft-cascader__collapse-tags .vft-tag>span{flex:1;overflow:hidden;text-overflow:ellipsis}.vft-cascader__collapse-tags .vft-tag .vft-icon-close{flex:none;background-color:var(--vft-text-color-placeholder);color:var(--vft-color-white)}.vft-cascader__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-cascader__suggestion-panel{border-radius:var(--vft-cascader-menu-radius)}.vft-cascader__suggestion-list{max-height:204px;margin:0;padding:6px 0;font-size:var(--vft-font-size-base);color:var(--vft-cascader-menu-text-color);text-align:center}.vft-cascader__suggestion-item{display:flex;justify-content:space-between;align-items:center;height:34px;padding:0 15px;text-align:left;outline:0;cursor:pointer}.vft-cascader__suggestion-item:focus,.vft-cascader__suggestion-item:hover{background:var(--vft-cascader-node-background-hover)}.vft-cascader__suggestion-item.is-checked{color:var(--vft-cascader-menu-selected-text-color);font-weight:700}.vft-cascader__suggestion-item>span{margin-right:10px}.vft-cascader__empty-text{margin:10px 0;color:var(--vft-cascader-color-empty)}.vft-cascader__search-input{flex:1;height:24px;min-width:60px;margin:2px 0 2px 11px;padding:0;color:var(--vft-cascader-menu-text-color);border:none;outline:0;box-sizing:border-box;background:0 0}.vft-cascader__search-input::-moz-placeholder{color:transparent}.vft-cascader__search-input::placeholder{color:transparent}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-check-tag{background-color:var(--vft-color-info-light-9);border-radius:var(--vft-border-radius-base);color:var(--vft-color-info);cursor:pointer;display:inline-block;font-size:var(--vft-font-size-base);line-height:var(--vft-font-size-base);padding:7px 15px;transition:var(--vft-transition-all);font-weight:700}.vft-check-tag:hover{background-color:var(--vft-color-info-light-7)}.vft-check-tag.is-checked{background-color:var(--vft-color-primary-light-8);color:var(--vft-color-primary)}.vft-check-tag.is-checked:hover{background-color:var(--vft-color-primary-light-7)}
|