vft 0.0.142 → 0.0.144
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/app-components/base/style/index.d.ts +0 -0
- package/es/app-components/button/button-custom.d.ts +5 -0
- package/es/app-components/button/constants.d.ts +3 -0
- package/es/app-components/button/index.d.ts +5 -0
- package/es/app-components/button/style/index.d.ts +0 -0
- package/es/app-components/button/types.d.ts +9 -0
- package/es/app-components/button/use-button.d.ts +20 -0
- package/es/app-components/clamp/index.d.ts +2 -0
- package/es/app-components/clamp/style/index.d.ts +0 -0
- package/es/app-components/col/index.d.ts +4 -0
- package/es/app-components/col/style/index.d.ts +0 -0
- package/es/app-components/col/types.d.ts +11 -0
- package/es/app-components/form/constants.d.ts +4 -0
- package/es/app-components/form/form-label-wrap.d.ts +11 -0
- package/es/app-components/form/hooks/index.d.ts +2 -0
- package/es/app-components/form/hooks/use-form-common-props.d.ts +7 -0
- package/es/app-components/form/hooks/use-form-item.d.ts +18 -0
- package/es/app-components/form/index.d.ts +5 -0
- package/es/app-components/form/style/index.d.ts +0 -0
- package/es/app-components/form/types.d.ts +43 -0
- package/es/app-components/form/utils.d.ts +9 -0
- package/es/app-components/hooks/index.d.ts +2 -0
- package/es/app-components/hooks/use-id.d.ts +9 -0
- package/es/app-components/hooks/use-namespace.d.ts +22 -0
- package/es/app-components/icon/index.d.ts +3 -0
- package/es/app-components/icon/style/index.d.ts +0 -0
- package/es/app-components/image/index.d.ts +3 -0
- package/es/app-components/image/style/index.d.ts +0 -0
- package/es/app-components/image/types.d.ts +13 -0
- package/es/app-components/index.d.ts +11 -0
- package/es/app-components/input/index.d.ts +3 -0
- package/es/app-components/input/style/index.d.ts +0 -0
- package/es/app-components/input/utils.d.ts +6 -0
- package/es/app-components/overlay/index.d.ts +2 -0
- package/es/app-components/overlay/style/index.d.ts +0 -0
- package/es/app-components/popup/index.d.ts +3 -0
- package/es/app-components/popup/style/index.d.ts +0 -0
- package/es/app-components/popup/types.d.ts +1 -0
- package/es/app-components/row/constants.d.ts +6 -0
- package/es/app-components/row/index.d.ts +5 -0
- package/es/app-components/row/style/index.d.ts +0 -0
- package/es/app-components/row/types.d.ts +2 -0
- package/es/app-components/super-form/component-map.d.ts +14 -0
- package/es/app-components/super-form/index.d.ts +5 -0
- package/es/app-components/super-form/style/index.d.ts +0 -0
- package/es/{components → app-components}/super-form/types.d.ts +67 -27
- package/es/app-components/super-form/use/helper.d.ts +17 -0
- package/es/app-components/super-form/use/use-auto-focus.d.ts +11 -0
- package/es/app-components/super-form/use/use-form-context.d.ts +8 -0
- package/{lib/components → es/app-components}/super-form/use/use-form-events.d.ts +1 -0
- package/{lib/components → es/app-components}/super-form/use/use-form-values.d.ts +2 -1
- package/es/app-components/super-form/use/use-form.d.ts +9 -0
- package/es/app-components/types.d.ts +6 -0
- package/es/app-components/upload/index.d.ts +3 -0
- package/es/app-components/upload/style/index.d.ts +0 -0
- package/es/app-components/upload/types.d.ts +33 -0
- package/es/app-components/upload/utils.d.ts +26 -0
- package/es/app-components/utils/index.d.ts +1 -0
- package/es/app-components/utils/interceptor.d.ts +6 -0
- package/es/components/affix/affix.js +4 -5
- package/es/components/affix/index.js +1 -1
- package/es/components/alert/alert.vue2.js +6 -3
- package/es/components/alert/index.js +1 -1
- package/es/components/autocomplete/autocomplete.vue.d.ts +6 -6
- package/es/components/autocomplete/autocomplete.vue2.js +25 -25
- package/es/components/autocomplete/index.d.ts +20 -20
- package/es/components/autocomplete/index.js +1 -1
- package/es/components/avatar/index.js +1 -1
- package/es/components/backtop/backtop.vue2.js +20 -20
- package/es/components/backtop/index.js +1 -1
- package/es/components/button/button-custom.d.ts +1 -0
- package/es/components/button/button-group.vue.d.ts +4 -10
- package/es/components/button/button-group.vue2.js +17 -16
- package/es/components/button/button.vue.d.ts +51 -13
- package/es/components/button/button.vue2.js +44 -47
- package/es/components/button/constants.d.ts +2 -6
- package/es/components/button/index.d.ts +52 -20
- package/es/components/button/index.js +1 -1
- package/es/components/button/mobile.d.ts +6 -0
- package/es/components/button/mobile.js +8 -0
- package/es/components/button/types.d.ts +5 -0
- package/es/components/button/use-button.d.ts +1 -2
- package/es/components/button/use-button.js +31 -29
- package/es/components/card/card.vue.d.ts +2 -2
- package/es/components/card/card.vue2.js +11 -11
- package/es/components/card/index.d.ts +4 -4
- package/es/components/card/index.js +1 -1
- package/es/components/carousel/carousel.vue.d.ts +12 -12
- package/es/components/carousel/carousel.vue2.js +6 -3
- package/es/components/carousel/index.d.ts +21 -21
- package/es/components/carousel/index.js +1 -1
- package/es/components/check-tag/check-tag.vue2.js +8 -8
- package/es/components/check-tag/index.js +1 -1
- package/es/components/checkbox/checkbox.vue.d.ts +8 -8
- package/es/components/checkbox/checkbox.vue2.js +12 -12
- package/es/components/checkbox/index.d.ts +19 -19
- package/es/components/checkbox/index.js +1 -1
- package/es/components/clamp/clamp.vue.d.ts +6 -6
- package/es/components/clamp/clamp.vue2.js +2 -2
- package/es/components/clamp/index.d.ts +10 -10
- package/es/components/clamp/index.js +1 -1
- package/es/components/clamp-toggle/clamp-toggle.vue2.js +17 -17
- package/es/components/clamp-toggle/index.js +1 -1
- package/es/components/col/col.vue.d.ts +12 -14
- package/es/components/col/col.vue2.js +21 -19
- package/es/components/col/index.d.ts +12 -12
- package/es/components/col/index.js +1 -1
- package/es/components/col/types.d.ts +4 -0
- package/es/components/collapse-transition/src/collapse-transition.vue2.js +8 -5
- package/es/components/color-picker/index.js +1 -1
- package/es/components/config-provider/config-provider.vue2.js +26 -26
- package/es/components/config-provider/index.js +1 -1
- package/es/components/container/aside.vue2.js +9 -9
- package/es/components/container/container.vue2.js +10 -10
- package/es/components/container/footer.vue2.js +5 -5
- package/es/components/container/header.vue2.js +15 -15
- package/es/components/container/index.js +1 -1
- package/es/components/container/main.vue2.js +7 -7
- package/es/components/context-menu/context-menu.vue2.js +25 -25
- package/es/components/date-picker/date-picker.d.ts +2 -2
- package/es/components/date-picker/index.d.ts +4 -4
- package/es/components/date-picker/props/basic-cell.js +2 -3
- package/es/components/date-picker/props/basic-date-table.js +2 -3
- package/es/components/date-picker/props/basic-month-table.js +2 -3
- package/es/components/date-picker/props/basic-year-table.js +4 -5
- package/es/components/date-picker/props/date-picker.js +2 -3
- package/es/components/date-picker/props/panel-date-pick.js +4 -5
- package/es/components/date-picker/props/panel-date-range.js +2 -3
- package/es/components/date-picker/props/panel-month-range.js +4 -5
- package/es/components/date-picker/props/shared.js +13 -14
- package/es/components/date-time-select/date-time-select.vue2.js +32 -32
- package/es/components/date-time-select/index.js +1 -1
- package/es/components/descriptions/description-item.vue2.js +12 -11
- package/es/components/descriptions/description.vue2.js +5 -5
- package/es/components/descriptions/descriptions-cell.js +5 -5
- package/es/components/descriptions/index.js +1 -1
- package/es/components/dialog/dialog.vue2.js +19 -19
- package/es/components/dialog/index.d.ts +1 -1
- package/es/components/dialog/index.js +1 -1
- package/es/components/divider/divider.vue.d.ts +5 -0
- package/es/components/divider/index.js +1 -1
- package/es/components/drawer/drawer.vue2.js +5 -5
- package/es/components/drawer/index.d.ts +1 -1
- package/es/components/drawer/index.js +1 -1
- package/es/components/dropdown/dropdown.vue.d.ts +18 -18
- package/es/components/dropdown/dropdown.vue2.js +23 -23
- package/es/components/dropdown/index.d.ts +30 -30
- package/es/components/dropdown/index.js +1 -1
- package/es/components/empty/empty.vue2.js +22 -22
- package/es/components/empty/index.js +1 -1
- package/es/components/exception/index.js +1 -1
- package/es/components/footer-layout/footer-layout.vue2.js +13 -13
- package/es/components/footer-layout/index.js +1 -1
- package/es/components/form/form-item.vue.d.ts +5 -4
- package/es/components/form/form-item.vue2.js +4 -5
- package/es/components/form/form.vue2.js +1 -1
- package/es/components/form/hooks/use-form-common-props.js +1 -1
- package/es/components/form/index.d.ts +12 -12
- package/es/components/form/index.js +1 -1
- package/es/components/full-screen/full-screen.vue2.js +15 -15
- package/es/components/full-screen/index.js +1 -1
- package/es/components/header-layout/header-layout.vue2.js +18 -18
- package/es/components/header-layout/index.js +1 -1
- package/es/components/horizontal-menu/horizontal-menu.vue2.js +46 -46
- package/es/components/horizontal-menu/index.js +1 -1
- package/es/components/icon/icon.vue2.js +12 -12
- package/es/components/icon/index.js +1 -1
- package/es/components/icon-text/icon-text.vue2.js +14 -14
- package/es/components/icon-text/index.js +1 -1
- package/es/components/iframe-layout/iframe-page.vue2.js +7 -7
- package/es/components/iframe-layout/index.js +1 -1
- package/es/components/image/index.d.ts +1 -1
- package/es/components/image/index.js +1 -1
- package/es/components/image-viewer/image-viewer.vue2.js +15 -15
- package/es/components/image-viewer/index.d.ts +2 -2
- package/es/components/image-viewer/index.js +1 -1
- package/es/components/input/index.d.ts +3 -3
- package/es/components/input/index.js +1 -1
- package/es/components/input/input.vue2.js +11 -12
- package/es/components/input-number/index.js +1 -1
- package/es/components/input-number/input-number.vue2.js +31 -31
- package/es/components/link/index.js +1 -1
- package/es/components/link/link.vue2.js +20 -20
- package/es/components/list-cell/index.js +1 -1
- package/es/components/list-cell/list-cell.vue2.js +14 -14
- package/es/components/logo/index.js +1 -1
- package/es/components/logo/logo.vue2.js +8 -8
- package/es/components/md-code-demo/index.js +1 -1
- package/es/components/md-code-tabs/index.js +1 -1
- package/es/components/md-comment/index.js +1 -1
- package/es/components/md-comment/md-comment.vue2.js +10 -10
- package/es/components/md-container/index.js +1 -1
- package/es/components/md-container/md-container.vue2.js +14 -14
- package/es/components/md-tabs/index.js +1 -1
- package/es/components/md-vue-playground/index.js +1 -1
- package/es/components/menu/index.js +1 -1
- package/es/components/menu/menu-item-group.vue2.js +14 -14
- package/es/components/menu/menu-item.vue2.js +21 -21
- package/es/components/menu/menu.vue2.js +21 -21
- package/es/components/menu/sub-menu.vue2.js +43 -43
- package/es/components/message/index.js +1 -1
- package/es/components/message/method.js +5 -5
- package/es/components/modal/index.js +1 -1
- package/es/components/modal/use/use-modal.d.ts +1 -1
- package/es/components/multiple-tabs/index.js +1 -1
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +49 -49
- package/es/components/overlay/index.js +1 -1
- package/es/components/overlay/overlay.vue2.js +21 -21
- package/es/components/page-wrapper/index.js +1 -1
- package/es/components/page-wrapper/page-wrapper.vue2.js +17 -17
- package/es/components/pagination/components/sizes.vue2.js +3 -1
- package/es/components/pagination/index.js +1 -1
- package/es/components/pagination/pagination.vue2.js +22 -22
- package/es/components/popconfirm/index.d.ts +9 -9
- package/es/components/popconfirm/index.js +1 -1
- package/es/components/popconfirm/popconfirm.vue.d.ts +5 -5
- package/es/components/popover/index.d.ts +5 -5
- package/es/components/popover/index.js +1 -1
- package/es/components/popover/popover.vue.d.ts +2 -2
- package/es/components/popover/popover.vue2.js +7 -7
- package/es/components/popper/composables/use-content-dom.d.ts +1 -1
- package/es/components/popper/content.vue.d.ts +6 -6
- package/es/components/popper/index.js +1 -1
- package/es/components/progress/index.d.ts +4 -4
- package/es/components/progress/index.js +1 -1
- package/es/components/progress/progress.vue.d.ts +2 -2
- package/es/components/progress/progress.vue2.js +7 -7
- package/es/components/progress-i/index.js +1 -1
- package/es/components/qrcode/index.js +1 -1
- package/es/components/radio/index.d.ts +2 -2
- package/es/components/radio/index.js +1 -1
- package/es/components/radio/radio.vue2.js +14 -14
- package/es/components/result/index.js +1 -1
- package/es/components/result/result.vue2.js +10 -10
- package/es/components/router-view-content/index.js +1 -1
- package/es/components/row/index.d.ts +15 -37
- package/es/components/row/index.js +1 -1
- package/es/components/row/row.vue.d.ts +12 -21
- package/es/components/row/row.vue2.js +17 -18
- package/es/components/scrollbar/index.d.ts +1 -1
- package/es/components/scrollbar/index.js +1 -1
- package/es/components/scrollbar/scrollbar.vue2.js +23 -23
- package/es/components/search/index.d.ts +1 -1
- package/es/components/search/index.js +1 -1
- package/es/components/search/search.vue2.js +14 -14
- package/es/components/select/defaults.js +4 -5
- package/es/components/select/index.d.ts +16 -16
- package/es/components/select/select.vue.d.ts +8 -8
- package/es/components/select/useSelect.d.ts +6 -6
- package/es/components/select/useSelect.js +4 -4
- package/es/components/side-menu/index.js +1 -1
- package/es/components/skeleton/index.js +1 -1
- package/es/components/skeleton/skeleton.vue2.js +13 -13
- package/es/components/slider/index.js +1 -1
- package/es/components/slider/slider.vue2.js +1 -1
- package/es/components/space/index.js +1 -1
- package/es/components/space/item.js +1 -1
- package/es/components/space/space.js +11 -12
- package/es/components/super-form/index.d.ts +26 -60
- package/es/components/super-form/index.js +1 -1
- package/es/components/super-form/super-form-item.vue.d.ts +18 -22
- package/es/components/super-form/super-form-item.vue2.js +176 -175
- package/es/components/super-form/super-form.vue.d.ts +13 -33
- package/es/components/super-form/super-form.vue2.js +108 -116
- package/es/components/super-form/use/helper.d.ts +14 -0
- package/es/components/super-form/use/use-auto-focus.d.ts +1 -0
- package/es/components/super-form/use/use-form-context.d.ts +1 -1
- package/es/components/super-form/use/use-form-values.js +43 -47
- package/es/components/switch/index.js +1 -1
- package/es/components/switch/switch.vue2.js +53 -53
- package/es/components/table/index.d.ts +35 -35
- package/es/components/table/index.js +1 -1
- package/es/components/table/table.vue.d.ts +15 -15
- package/es/components/table/table.vue2.js +19 -19
- package/es/components/table/use/use-data-source.d.ts +5 -5
- package/es/components/tabs/index.js +1 -1
- package/es/components/tabs/tab-nav.vue2.js +30 -30
- package/es/components/tabs/tab-pane.vue2.js +11 -11
- package/es/components/tabs/tabs.vue2.js +6 -6
- package/es/components/tag/index.js +1 -1
- package/es/components/time-picker/common/picker.vue.d.ts +2 -2
- package/es/components/time-picker/common/props.js +2 -3
- package/es/components/time-picker/index.d.ts +4 -4
- package/es/components/time-picker/props/basic-time-spinner.js +2 -3
- package/es/components/time-picker/props/panel-time-picker.js +4 -5
- package/es/components/time-picker/props/panel-time-range.js +2 -3
- package/es/components/time-picker/props/shared.js +2 -3
- package/es/components/time-picker/time-picker.d.ts +2 -2
- package/es/components/time-select/time-select.js +2 -3
- package/es/components/time-select/time-select.vue.d.ts +1 -1
- package/es/components/tooltip/content.vue.d.ts +6 -6
- package/es/components/tooltip/index.d.ts +7 -7
- package/es/components/tooltip/index.js +1 -1
- package/es/components/tooltip/tooltip.vue.d.ts +2 -2
- package/es/components/upload/index.d.ts +15 -15
- package/es/components/upload/index.js +1 -1
- package/es/components/upload/upload-content.vue.d.ts +9 -9
- package/es/components/upload/upload.vue.d.ts +9 -9
- package/es/components/verify-code/index.js +1 -1
- package/es/components/virtual-list/components/scrollbar.js +9 -9
- package/es/components/virtual-list/hooks/use-grid-wheel.js +1 -1
- package/es/components/virtual-list/hooks/use-wheel.js +1 -1
- package/es/components/virtual-list/props.js +6 -7
- package/es/hooks/index.d.ts +0 -2
- package/es/hooks/index.js +46 -50
- package/es/hooks/use-ordered-children/index.js +5 -5
- package/es/index.js +286 -292
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/es/utils/index.d.ts +0 -1
- package/es/utils/index.js +36 -38
- package/es/utils/vue/props/runtime.js +19 -20
- package/lib/app-components/base/style/index.d.ts +0 -0
- package/lib/app-components/button/button-custom.d.ts +5 -0
- package/lib/app-components/button/constants.d.ts +3 -0
- package/lib/app-components/button/index.d.ts +5 -0
- package/lib/app-components/button/style/index.d.ts +0 -0
- package/lib/app-components/button/types.d.ts +9 -0
- package/lib/app-components/button/use-button.d.ts +20 -0
- package/lib/app-components/clamp/index.d.ts +2 -0
- package/lib/app-components/clamp/style/index.d.ts +0 -0
- package/lib/app-components/col/index.d.ts +4 -0
- package/lib/app-components/col/style/index.d.ts +0 -0
- package/lib/app-components/col/types.d.ts +11 -0
- package/lib/app-components/form/constants.d.ts +4 -0
- package/lib/app-components/form/form-label-wrap.d.ts +11 -0
- package/lib/app-components/form/hooks/index.d.ts +2 -0
- package/lib/app-components/form/hooks/use-form-common-props.d.ts +7 -0
- package/lib/app-components/form/hooks/use-form-item.d.ts +18 -0
- package/lib/app-components/form/index.d.ts +5 -0
- package/lib/app-components/form/style/index.d.ts +0 -0
- package/lib/app-components/form/types.d.ts +43 -0
- package/lib/app-components/form/utils.d.ts +9 -0
- package/lib/app-components/hooks/index.d.ts +2 -0
- package/lib/app-components/hooks/use-id.d.ts +9 -0
- package/lib/app-components/hooks/use-namespace.d.ts +22 -0
- package/lib/app-components/icon/index.d.ts +3 -0
- package/lib/app-components/icon/style/index.d.ts +0 -0
- package/lib/app-components/image/index.d.ts +3 -0
- package/lib/app-components/image/style/index.d.ts +0 -0
- package/lib/app-components/image/types.d.ts +13 -0
- package/lib/app-components/index.d.ts +11 -0
- package/lib/app-components/input/index.d.ts +3 -0
- package/lib/app-components/input/style/index.d.ts +0 -0
- package/lib/app-components/input/utils.d.ts +6 -0
- package/lib/app-components/overlay/index.d.ts +2 -0
- package/lib/app-components/overlay/style/index.d.ts +0 -0
- package/lib/app-components/popup/index.d.ts +3 -0
- package/lib/app-components/popup/style/index.d.ts +0 -0
- package/lib/app-components/popup/types.d.ts +1 -0
- package/lib/app-components/row/constants.d.ts +6 -0
- package/lib/app-components/row/index.d.ts +5 -0
- package/lib/app-components/row/style/index.d.ts +0 -0
- package/lib/app-components/row/types.d.ts +2 -0
- package/lib/app-components/super-form/component-map.d.ts +14 -0
- package/lib/app-components/super-form/index.d.ts +5 -0
- package/lib/app-components/super-form/style/index.d.ts +0 -0
- package/lib/{components → app-components}/super-form/types.d.ts +67 -27
- package/lib/app-components/super-form/use/helper.d.ts +17 -0
- package/lib/app-components/super-form/use/use-auto-focus.d.ts +11 -0
- package/lib/app-components/super-form/use/use-form-context.d.ts +8 -0
- package/{es/components → lib/app-components}/super-form/use/use-form-events.d.ts +1 -0
- package/{es/components → lib/app-components}/super-form/use/use-form-values.d.ts +2 -1
- package/lib/app-components/super-form/use/use-form.d.ts +9 -0
- package/lib/app-components/types.d.ts +6 -0
- package/lib/app-components/upload/index.d.ts +3 -0
- package/lib/app-components/upload/style/index.d.ts +0 -0
- package/lib/app-components/upload/types.d.ts +33 -0
- package/lib/app-components/upload/utils.d.ts +26 -0
- package/lib/app-components/utils/index.d.ts +1 -0
- package/lib/app-components/utils/interceptor.d.ts +6 -0
- package/lib/components/affix/affix.cjs +1 -1
- package/lib/components/affix/index.cjs +1 -1
- package/lib/components/alert/alert.vue2.cjs +1 -1
- package/lib/components/alert/index.cjs +1 -1
- package/lib/components/autocomplete/autocomplete.vue.d.ts +6 -6
- package/lib/components/autocomplete/autocomplete.vue2.cjs +1 -1
- package/lib/components/autocomplete/index.cjs +1 -1
- package/lib/components/autocomplete/index.d.ts +20 -20
- package/lib/components/avatar/index.cjs +1 -1
- package/lib/components/backtop/backtop.vue2.cjs +1 -1
- package/lib/components/backtop/index.cjs +1 -1
- package/lib/components/button/button-custom.d.ts +1 -0
- package/lib/components/button/button-group.vue.d.ts +4 -10
- package/lib/components/button/button-group.vue2.cjs +1 -1
- package/lib/components/button/button.vue.d.ts +51 -13
- package/lib/components/button/button.vue2.cjs +1 -1
- package/lib/components/button/constants.d.ts +2 -6
- package/lib/components/button/index.cjs +1 -1
- package/lib/components/button/index.d.ts +52 -20
- package/lib/components/button/mobile.cjs +1 -0
- package/lib/components/button/mobile.d.ts +6 -0
- package/lib/components/button/types.d.ts +5 -0
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/button/use-button.d.ts +1 -2
- package/lib/components/card/card.vue.d.ts +2 -2
- package/lib/components/card/card.vue2.cjs +1 -1
- package/lib/components/card/index.cjs +1 -1
- package/lib/components/card/index.d.ts +4 -4
- package/lib/components/carousel/carousel.vue.d.ts +12 -12
- package/lib/components/carousel/carousel.vue2.cjs +1 -1
- package/lib/components/carousel/index.cjs +1 -1
- package/lib/components/carousel/index.d.ts +21 -21
- package/lib/components/check-tag/check-tag.vue2.cjs +1 -1
- package/lib/components/check-tag/index.cjs +1 -1
- package/lib/components/checkbox/checkbox.vue.d.ts +8 -8
- package/lib/components/checkbox/checkbox.vue2.cjs +1 -1
- package/lib/components/checkbox/index.cjs +1 -1
- package/lib/components/checkbox/index.d.ts +19 -19
- package/lib/components/clamp/clamp.vue.d.ts +6 -6
- package/lib/components/clamp/clamp.vue2.cjs +1 -1
- package/lib/components/clamp/index.cjs +1 -1
- package/lib/components/clamp/index.d.ts +10 -10
- package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
- package/lib/components/clamp-toggle/index.cjs +1 -1
- package/lib/components/col/col.vue.d.ts +12 -14
- package/lib/components/col/col.vue2.cjs +1 -1
- package/lib/components/col/index.cjs +1 -1
- package/lib/components/col/index.d.ts +12 -12
- package/lib/components/col/types.d.ts +4 -0
- package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
- package/lib/components/color-picker/index.cjs +1 -1
- package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
- package/lib/components/config-provider/index.cjs +1 -1
- package/lib/components/container/aside.vue2.cjs +1 -1
- package/lib/components/container/container.vue2.cjs +1 -1
- package/lib/components/container/footer.vue2.cjs +1 -1
- package/lib/components/container/header.vue2.cjs +1 -1
- package/lib/components/container/index.cjs +1 -1
- package/lib/components/container/main.vue2.cjs +1 -1
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker.d.ts +2 -2
- package/lib/components/date-picker/index.d.ts +4 -4
- package/lib/components/date-picker/props/basic-cell.cjs +1 -1
- package/lib/components/date-picker/props/basic-date-table.cjs +1 -1
- package/lib/components/date-picker/props/basic-month-table.cjs +1 -1
- package/lib/components/date-picker/props/basic-year-table.cjs +1 -1
- package/lib/components/date-picker/props/date-picker.cjs +1 -1
- package/lib/components/date-picker/props/panel-date-pick.cjs +1 -1
- package/lib/components/date-picker/props/panel-date-range.cjs +1 -1
- package/lib/components/date-picker/props/panel-month-range.cjs +1 -1
- package/lib/components/date-picker/props/shared.cjs +1 -1
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/date-time-select/index.cjs +1 -1
- package/lib/components/descriptions/description-item.vue2.cjs +1 -1
- package/lib/components/descriptions/description.vue2.cjs +1 -1
- package/lib/components/descriptions/descriptions-cell.cjs +1 -1
- package/lib/components/descriptions/index.cjs +1 -1
- package/lib/components/dialog/dialog.vue2.cjs +1 -1
- package/lib/components/dialog/index.cjs +1 -1
- package/lib/components/dialog/index.d.ts +1 -1
- package/lib/components/divider/divider.vue.d.ts +5 -0
- package/lib/components/divider/index.cjs +1 -1
- package/lib/components/drawer/drawer.vue2.cjs +1 -1
- package/lib/components/drawer/index.cjs +1 -1
- package/lib/components/drawer/index.d.ts +1 -1
- package/lib/components/dropdown/dropdown.vue.d.ts +18 -18
- package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
- package/lib/components/dropdown/index.cjs +1 -1
- package/lib/components/dropdown/index.d.ts +30 -30
- package/lib/components/empty/empty.vue2.cjs +1 -1
- package/lib/components/empty/index.cjs +1 -1
- package/lib/components/exception/index.cjs +1 -1
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/footer-layout/index.cjs +1 -1
- package/lib/components/form/form-item.vue.d.ts +5 -4
- package/lib/components/form/form-item.vue2.cjs +1 -1
- package/lib/components/form/form.vue2.cjs +1 -1
- package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
- package/lib/components/form/index.cjs +1 -1
- package/lib/components/form/index.d.ts +12 -12
- package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
- package/lib/components/full-screen/index.cjs +1 -1
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/header-layout/index.cjs +1 -1
- package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/index.cjs +1 -1
- package/lib/components/icon/icon.vue2.cjs +1 -1
- package/lib/components/icon/index.cjs +1 -1
- package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
- package/lib/components/icon-text/index.cjs +1 -1
- package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
- package/lib/components/iframe-layout/index.cjs +1 -1
- package/lib/components/image/index.cjs +1 -1
- package/lib/components/image/index.d.ts +1 -1
- package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
- package/lib/components/image-viewer/index.cjs +1 -1
- package/lib/components/image-viewer/index.d.ts +2 -2
- package/lib/components/input/index.cjs +1 -1
- package/lib/components/input/index.d.ts +3 -3
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/input-number/index.cjs +1 -1
- package/lib/components/input-number/input-number.vue2.cjs +1 -1
- package/lib/components/link/index.cjs +1 -1
- package/lib/components/link/link.vue2.cjs +1 -1
- package/lib/components/list-cell/index.cjs +1 -1
- package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
- package/lib/components/logo/index.cjs +1 -1
- package/lib/components/logo/logo.vue2.cjs +1 -1
- package/lib/components/md-code-demo/index.cjs +1 -1
- package/lib/components/md-code-tabs/index.cjs +1 -1
- package/lib/components/md-comment/index.cjs +1 -1
- package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
- package/lib/components/md-container/index.cjs +1 -1
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-tabs/index.cjs +1 -1
- package/lib/components/md-vue-playground/index.cjs +1 -1
- package/lib/components/menu/index.cjs +1 -1
- package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/menu.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/message/index.cjs +1 -1
- package/lib/components/message/method.cjs +1 -1
- package/lib/components/modal/index.cjs +1 -1
- package/lib/components/modal/use/use-modal.d.ts +1 -1
- package/lib/components/multiple-tabs/index.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/overlay/index.cjs +1 -1
- package/lib/components/overlay/overlay.vue2.cjs +1 -1
- package/lib/components/page-wrapper/index.cjs +1 -1
- package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
- package/lib/components/pagination/index.cjs +1 -1
- package/lib/components/pagination/pagination.vue2.cjs +1 -1
- package/lib/components/popconfirm/index.cjs +1 -1
- package/lib/components/popconfirm/index.d.ts +9 -9
- package/lib/components/popconfirm/popconfirm.vue.d.ts +5 -5
- package/lib/components/popover/index.cjs +1 -1
- package/lib/components/popover/index.d.ts +5 -5
- package/lib/components/popover/popover.vue.d.ts +2 -2
- package/lib/components/popover/popover.vue2.cjs +1 -1
- package/lib/components/popper/composables/use-content-dom.d.ts +1 -1
- package/lib/components/popper/content.vue.d.ts +6 -6
- package/lib/components/popper/index.cjs +1 -1
- package/lib/components/progress/index.cjs +1 -1
- package/lib/components/progress/index.d.ts +4 -4
- package/lib/components/progress/progress.vue.d.ts +2 -2
- package/lib/components/progress/progress.vue2.cjs +1 -1
- package/lib/components/progress-i/index.cjs +1 -1
- package/lib/components/qrcode/index.cjs +1 -1
- package/lib/components/radio/index.cjs +1 -1
- package/lib/components/radio/index.d.ts +2 -2
- package/lib/components/radio/radio.vue2.cjs +1 -1
- package/lib/components/result/index.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/router-view-content/index.cjs +1 -1
- package/lib/components/row/index.cjs +1 -1
- package/lib/components/row/index.d.ts +15 -37
- package/lib/components/row/row.vue.d.ts +12 -21
- package/lib/components/row/row.vue2.cjs +1 -1
- package/lib/components/scrollbar/index.cjs +1 -1
- package/lib/components/scrollbar/index.d.ts +1 -1
- package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -1
- package/lib/components/search/index.cjs +1 -1
- package/lib/components/search/index.d.ts +1 -1
- package/lib/components/search/search.vue2.cjs +1 -1
- package/lib/components/select/defaults.cjs +1 -1
- package/lib/components/select/index.d.ts +16 -16
- package/lib/components/select/select.vue.d.ts +8 -8
- package/lib/components/select/useSelect.cjs +1 -1
- package/lib/components/select/useSelect.d.ts +6 -6
- package/lib/components/side-menu/index.cjs +1 -1
- package/lib/components/skeleton/index.cjs +1 -1
- package/lib/components/skeleton/skeleton.vue2.cjs +1 -1
- package/lib/components/slider/index.cjs +1 -1
- package/lib/components/slider/slider.vue2.cjs +1 -1
- package/lib/components/space/index.cjs +1 -1
- package/lib/components/space/item.cjs +1 -1
- package/lib/components/space/space.cjs +1 -1
- package/lib/components/super-form/index.cjs +1 -1
- package/lib/components/super-form/index.d.ts +26 -60
- package/lib/components/super-form/super-form-item.vue.d.ts +18 -22
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/super-form/super-form.vue.d.ts +13 -33
- package/lib/components/super-form/super-form.vue2.cjs +1 -1
- package/lib/components/super-form/use/helper.d.ts +14 -0
- package/lib/components/super-form/use/use-auto-focus.d.ts +1 -0
- package/lib/components/super-form/use/use-form-context.d.ts +1 -1
- package/lib/components/super-form/use/use-form-values.cjs +1 -1
- package/lib/components/switch/index.cjs +1 -1
- package/lib/components/switch/switch.vue2.cjs +1 -1
- package/lib/components/table/index.cjs +1 -1
- package/lib/components/table/index.d.ts +35 -35
- package/lib/components/table/table.vue.d.ts +15 -15
- package/lib/components/table/table.vue2.cjs +1 -1
- package/lib/components/table/use/use-data-source.d.ts +5 -5
- package/lib/components/tabs/index.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
- package/lib/components/tabs/tabs.vue2.cjs +1 -1
- package/lib/components/tag/index.cjs +1 -1
- package/lib/components/time-picker/common/picker.vue.d.ts +2 -2
- package/lib/components/time-picker/common/props.cjs +1 -1
- package/lib/components/time-picker/index.d.ts +4 -4
- package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -1
- package/lib/components/time-picker/props/panel-time-picker.cjs +1 -1
- package/lib/components/time-picker/props/panel-time-range.cjs +1 -1
- package/lib/components/time-picker/props/shared.cjs +1 -1
- package/lib/components/time-picker/time-picker.d.ts +2 -2
- package/lib/components/time-select/time-select.cjs +1 -1
- package/lib/components/time-select/time-select.vue.d.ts +1 -1
- package/lib/components/tooltip/content.vue.d.ts +6 -6
- package/lib/components/tooltip/index.cjs +1 -1
- package/lib/components/tooltip/index.d.ts +7 -7
- package/lib/components/tooltip/tooltip.vue.d.ts +2 -2
- package/lib/components/upload/index.cjs +1 -1
- package/lib/components/upload/index.d.ts +15 -15
- package/lib/components/upload/upload-content.vue.d.ts +9 -9
- package/lib/components/upload/upload.vue.d.ts +9 -9
- package/lib/components/verify-code/index.cjs +1 -1
- package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
- package/lib/components/virtual-list/hooks/use-grid-wheel.cjs +1 -1
- package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -1
- package/lib/components/virtual-list/props.cjs +1 -1
- package/lib/hooks/index.cjs +1 -1
- package/lib/hooks/index.d.ts +0 -2
- package/lib/hooks/use-ordered-children/index.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/lib/utils/index.cjs +1 -1
- package/lib/utils/index.d.ts +0 -1
- package/lib/utils/vue/props/runtime.cjs +1 -1
- package/package.json +7 -7
- package/theme-style/base.css +1 -1
- package/theme-style/dark/css-vars.css +1 -1
- package/theme-style/index.css +1 -1
- package/theme-style/src/alert.scss +35 -35
- package/theme-style/src/avatar.scss +15 -16
- package/theme-style/src/backtop.scss +6 -5
- package/theme-style/src/button.scss +90 -90
- package/theme-style/src/col.scss +0 -1
- package/theme-style/src/color-picker.scss +45 -45
- package/theme-style/src/common/transition.scss +23 -30
- package/theme-style/src/common/var.scss +1137 -1196
- package/theme-style/src/dark/css-vars.scss +3 -4
- package/theme-style/src/dark/var.scss +56 -60
- package/theme-style/src/date-picker/date-picker.scss +29 -26
- package/theme-style/src/date-picker/time-spinner.scss +16 -12
- package/theme-style/src/date-picker.scss +0 -1
- package/theme-style/src/descriptions-item.scss +22 -19
- package/theme-style/src/descriptions.scss +35 -41
- package/theme-style/src/dialog.scss +16 -11
- package/theme-style/src/empty.scss +9 -10
- package/theme-style/src/form.scss +42 -39
- package/theme-style/src/full-screen.scss +2 -2
- package/theme-style/src/header-layout.scss +2 -1
- package/theme-style/src/horizontal-menu.scss +11 -11
- package/theme-style/src/icon-text.scss +5 -5
- package/theme-style/src/icon.scss +1 -1
- package/theme-style/src/image-viewer.scss +21 -12
- package/theme-style/src/input-number.scss +56 -57
- package/theme-style/src/input.scss +156 -145
- package/theme-style/src/link.scss +36 -37
- package/theme-style/src/list-cell.scss +8 -9
- package/theme-style/src/loading.scss +6 -2
- package/theme-style/src/logo.scss +0 -3
- package/theme-style/src/md/api.scss +2 -1
- package/theme-style/src/md/blockquote.scss +3 -3
- package/theme-style/src/md/code.scss +13 -15
- package/theme-style/src/md/demo-block.scss +6 -3
- package/theme-style/src/md/helper.scss +1 -1
- package/theme-style/src/md/link.scss +11 -7
- package/theme-style/src/md/one-light.scss +3 -3
- package/theme-style/src/md/pswp.scss +13 -16
- package/theme-style/src/md/svg.scss +10 -1
- package/theme-style/src/md/table.scss +0 -1
- package/theme-style/src/md/tasklist.scss +10 -21
- package/theme-style/src/md/title.scss +2 -1
- package/theme-style/src/md/toc.scss +10 -17
- package/theme-style/src/md-code-demo.scss +11 -37
- package/theme-style/src/md-code-tabs.scss +10 -18
- package/theme-style/src/md-comment.scss +384 -333
- package/theme-style/src/md-container.scss +66 -56
- package/theme-style/src/md-tabs.scss +9 -22
- package/theme-style/src/md-vue-playground.scss +234 -128
- package/theme-style/src/menu.scss +72 -56
- package/theme-style/src/message.scss +52 -37
- package/theme-style/src/mixins/_var.scss +18 -7
- package/theme-style/src/mixins/function.scss +5 -1
- package/theme-style/src/mixins/icon.scss +9 -9
- package/theme-style/src/mixins/mixins.scss +57 -21
- package/theme-style/src/multiple-tabs.scss +13 -7
- package/theme-style/src/pagination.scss +53 -48
- package/theme-style/src/popconfirm.scss +3 -1
- package/theme-style/src/progress.scss +20 -6
- package/theme-style/src/select.scss +75 -72
- package/theme-style/src/side-menu.scss +13 -10
- package/theme-style/src/skeleton-item.scss +3 -4
- package/theme-style/src/super-form.scss +2 -1
- package/theme-style/src/switch.scss +59 -63
- package/theme-style/src/table.scss +55 -40
- package/theme-style/src/tabs.scss +68 -47
- package/theme-style/src/tree.scss +15 -10
- package/theme-style/src/upload.scss +79 -82
- package/theme-style/src/var.scss +8 -5
- package/theme-style/vft-alert.css +1 -1
- package/theme-style/vft-autocomplete.css +1 -1
- package/theme-style/vft-avatar.css +1 -1
- package/theme-style/vft-backtop.css +1 -1
- package/theme-style/vft-button.css +1 -1
- package/theme-style/vft-cascader.css +1 -1
- package/theme-style/vft-clamp-toggle.css +1 -1
- package/theme-style/vft-collapse.css +1 -1
- package/theme-style/vft-color-picker.css +1 -1
- package/theme-style/vft-date-picker.css +1 -1
- package/theme-style/vft-date-time-select.css +1 -1
- package/theme-style/vft-descriptions-item.css +1 -1
- package/theme-style/vft-descriptions.css +1 -1
- package/theme-style/vft-dialog.css +1 -1
- package/theme-style/vft-drawer.css +1 -1
- package/theme-style/vft-dropdown.css +1 -1
- package/theme-style/vft-empty.css +1 -1
- package/theme-style/vft-form.css +1 -1
- package/theme-style/vft-full-screen.css +1 -1
- package/theme-style/vft-horizontal-menu.css +1 -1
- package/theme-style/vft-icon-text.css +1 -1
- package/theme-style/vft-image-viewer.css +1 -1
- package/theme-style/vft-input-number.css +1 -1
- package/theme-style/vft-input.css +1 -1
- package/theme-style/vft-link.css +1 -1
- package/theme-style/vft-list-cell.css +1 -1
- package/theme-style/vft-loading.css +1 -1
- package/theme-style/vft-logo.css +1 -1
- package/theme-style/vft-md-code-tabs.css +1 -1
- package/theme-style/vft-md-comment.css +1 -1
- package/theme-style/vft-md-container.css +1 -1
- package/theme-style/vft-md-tabs.css +1 -1
- package/theme-style/vft-md-vue-playground.css +1 -1
- package/theme-style/vft-menu.css +1 -1
- package/theme-style/vft-message.css +1 -1
- package/theme-style/vft-multiple-tabs.css +1 -1
- package/theme-style/vft-pagination.css +1 -1
- package/theme-style/vft-popconfirm.css +1 -1
- package/theme-style/vft-progress.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-skeleton-item.css +1 -1
- package/theme-style/vft-switch.css +1 -1
- package/theme-style/vft-table.css +1 -1
- package/theme-style/vft-tabs.css +1 -1
- package/theme-style/vft-tag.css +1 -1
- package/theme-style/vft-time-picker.css +1 -1
- package/theme-style/vft-time-select.css +1 -1
- package/theme-style/vft-transfer.css +1 -1
- package/theme-style/vft-tree.css +1 -1
- package/theme-style/vft-upload.css +1 -1
- package/theme-style/vft-var.css +1 -1
- package/web-types.json +1 -1
- package/es/components/button/instance.d.ts +0 -4
- package/es/components/button/instance.js +0 -1
- package/es/components/button/mobile/button.vue.d.ts +0 -2
- package/es/components/button/mobile/button.vue.js +0 -10
- package/es/components/context-menu/types.d.ts +0 -23
- package/es/components/dropdown/types.d.ts +0 -251
- package/es/components/popover/types.d.ts +0 -26
- package/es/components/popper/types.d.ts +0 -45
- package/es/components/qrcode/types.d.ts +0 -31
- package/es/components/table/types.d.ts +0 -55
- package/es/components/tooltip/types.d.ts +0 -53
- package/es/hooks/use-cursor/index.d.ts +0 -2
- package/es/hooks/use-cursor/index.js +0 -40
- package/es/hooks/use-prop/index.d.ts +0 -2
- package/es/hooks/use-prop/index.js +0 -11
- package/es/utils/ns-cover.d.ts +0 -16
- package/es/utils/objects.d.ts +0 -4
- package/es/utils/objects.js +0 -12
- package/lib/components/button/instance.cjs +0 -1
- package/lib/components/button/instance.d.ts +0 -4
- package/lib/components/button/mobile/button.vue.cjs +0 -1
- package/lib/components/button/mobile/button.vue.d.ts +0 -2
- package/lib/components/context-menu/types.d.ts +0 -23
- package/lib/components/dropdown/types.d.ts +0 -251
- package/lib/components/popover/types.d.ts +0 -26
- package/lib/components/popper/types.d.ts +0 -45
- package/lib/components/qrcode/types.d.ts +0 -31
- package/lib/components/table/types.d.ts +0 -55
- package/lib/components/tooltip/types.d.ts +0 -53
- package/lib/hooks/use-cursor/index.cjs +0 -1
- package/lib/hooks/use-cursor/index.d.ts +0 -2
- package/lib/hooks/use-prop/index.cjs +0 -1
- package/lib/hooks/use-prop/index.d.ts +0 -2
- package/lib/utils/ns-cover.d.ts +0 -16
- package/lib/utils/objects.cjs +0 -1
- package/lib/utils/objects.d.ts +0 -4
|
@@ -28,10 +28,61 @@ $name: md-comment;
|
|
|
28
28
|
--waline-info-font-size: 0.625em;
|
|
29
29
|
--waline-border: 1px solid var(--waline-border-color);
|
|
30
30
|
--waline-avatar-radius: 50%;
|
|
31
|
-
--waline-box-shadow: none
|
|
31
|
+
--waline-box-shadow: none;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
@include b($name) {
|
|
35
|
+
@media (width <= 720px) {
|
|
36
|
+
.wl-avatar {
|
|
37
|
+
width: var(--waline-m-avatar-size);
|
|
38
|
+
height: var(--waline-m-avatar-size);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@media (width <= 580px) {
|
|
43
|
+
.wl-header {
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@media (width <= 580px) {
|
|
49
|
+
.wl-header-item:not(:last-child) {
|
|
50
|
+
border-bottom: 2px dashed var(--waline-border-color);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@media (width <= 580px) {
|
|
55
|
+
.wl-header-2 .wl-header-item {
|
|
56
|
+
flex: 0;
|
|
57
|
+
width: 100%;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@media (width <= 580px) {
|
|
62
|
+
.wl-header-3 .wl-header-item {
|
|
63
|
+
width: 100%;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@media (width <= 720px) {
|
|
68
|
+
.wl-cards .wl-user {
|
|
69
|
+
--avatar-size: var(--waline-m-avatar-size);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@media (width <= 580px) {
|
|
74
|
+
.wl-reaction-list {
|
|
75
|
+
gap: 12px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@media (width <= 580px) {
|
|
80
|
+
.wl-reaction-img {
|
|
81
|
+
width: 32px;
|
|
82
|
+
height: 32px;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
35
86
|
#vft-md-comment__waline {
|
|
36
87
|
max-width: getCssVar('md-container-content-max-width');
|
|
37
88
|
min-width: 300px;
|
|
@@ -45,27 +96,28 @@ $name: md-comment;
|
|
|
45
96
|
display: block;
|
|
46
97
|
}
|
|
47
98
|
|
|
48
|
-
.wl-power,
|
|
99
|
+
.wl-power,
|
|
100
|
+
.wl-like {
|
|
49
101
|
display: none;
|
|
50
102
|
}
|
|
51
103
|
}
|
|
52
104
|
|
|
53
105
|
[data-waline] {
|
|
54
106
|
font-size: var(--waline-font-size);
|
|
55
|
-
text-align: start
|
|
107
|
+
text-align: start;
|
|
56
108
|
}
|
|
57
109
|
|
|
58
|
-
[dir=rtl] [data-waline] {
|
|
59
|
-
direction: rtl
|
|
110
|
+
[dir='rtl'] [data-waline] {
|
|
111
|
+
direction: rtl;
|
|
60
112
|
}
|
|
61
113
|
|
|
62
114
|
[data-waline] * {
|
|
63
115
|
box-sizing: content-box;
|
|
64
|
-
line-height: 1.75
|
|
116
|
+
line-height: 1.75;
|
|
65
117
|
}
|
|
66
118
|
|
|
67
119
|
[data-waline] p {
|
|
68
|
-
color: var(--waline-color)
|
|
120
|
+
color: var(--waline-color);
|
|
69
121
|
}
|
|
70
122
|
|
|
71
123
|
[data-waline] a {
|
|
@@ -74,55 +126,56 @@ $name: md-comment;
|
|
|
74
126
|
color: var(--waline-theme-color);
|
|
75
127
|
text-decoration: none;
|
|
76
128
|
word-break: break-word;
|
|
77
|
-
cursor: pointer
|
|
129
|
+
cursor: pointer;
|
|
78
130
|
}
|
|
79
131
|
|
|
80
132
|
[data-waline] a:hover {
|
|
81
|
-
color: var(--waline-active-color)
|
|
133
|
+
color: var(--waline-active-color);
|
|
82
134
|
}
|
|
83
135
|
|
|
84
136
|
[data-waline] img {
|
|
85
137
|
max-width: 100%;
|
|
86
138
|
max-height: 400px;
|
|
87
|
-
border: none
|
|
139
|
+
border: none;
|
|
88
140
|
}
|
|
89
141
|
|
|
90
142
|
[data-waline] hr {
|
|
91
|
-
margin: .825em 0;
|
|
143
|
+
margin: 0.825em 0;
|
|
92
144
|
border-style: dashed;
|
|
93
|
-
border-color: var(--waline-bgcolor-light)
|
|
145
|
+
border-color: var(--waline-bgcolor-light);
|
|
94
146
|
}
|
|
95
147
|
|
|
96
|
-
[data-waline] code,
|
|
148
|
+
[data-waline] code,
|
|
149
|
+
[data-waline] pre {
|
|
97
150
|
margin: 0;
|
|
98
|
-
padding: .2em .4em;
|
|
151
|
+
padding: 0.2em 0.4em;
|
|
99
152
|
border-radius: 3px;
|
|
100
153
|
background: var(--waline-bgcolor-light);
|
|
101
|
-
font-size: 85
|
|
154
|
+
font-size: 85%;
|
|
102
155
|
}
|
|
103
156
|
|
|
104
157
|
[data-waline] pre {
|
|
105
158
|
overflow: auto;
|
|
106
159
|
padding: 10px;
|
|
107
|
-
line-height: 1.45
|
|
160
|
+
line-height: 1.45;
|
|
108
161
|
}
|
|
109
162
|
|
|
110
163
|
[data-waline] pre::-webkit-scrollbar {
|
|
111
164
|
width: 6px;
|
|
112
|
-
height: 6px
|
|
165
|
+
height: 6px;
|
|
113
166
|
}
|
|
114
167
|
|
|
115
168
|
[data-waline] pre::-webkit-scrollbar-track-piece:horizontal {
|
|
116
169
|
-webkit-border-radius: 6px;
|
|
117
170
|
border-radius: 6px;
|
|
118
|
-
background: rgba(0, 0, 0, .1)
|
|
171
|
+
background: rgba(0, 0, 0, 0.1);
|
|
119
172
|
}
|
|
120
173
|
|
|
121
174
|
[data-waline] pre::-webkit-scrollbar-thumb:horizontal {
|
|
122
175
|
width: 6px;
|
|
123
176
|
-webkit-border-radius: 6px;
|
|
124
177
|
border-radius: 6px;
|
|
125
|
-
background: var(--waline-theme-color)
|
|
178
|
+
background: var(--waline-theme-color);
|
|
126
179
|
}
|
|
127
180
|
|
|
128
181
|
[data-waline] pre code {
|
|
@@ -130,29 +183,31 @@ $name: md-comment;
|
|
|
130
183
|
background: rgba(0, 0, 0, 0);
|
|
131
184
|
color: var(--waline-color);
|
|
132
185
|
white-space: pre-wrap;
|
|
133
|
-
word-break: keep-all
|
|
186
|
+
word-break: keep-all;
|
|
134
187
|
}
|
|
135
188
|
|
|
136
189
|
[data-waline] blockquote {
|
|
137
|
-
margin: .5em 0;
|
|
138
|
-
padding: .5em 0 .5em 1em;
|
|
190
|
+
margin: 0.5em 0;
|
|
191
|
+
padding: 0.5em 0 0.5em 1em;
|
|
139
192
|
border-inline-start: 8px solid var(--waline-bq-color);
|
|
140
|
-
color: var(--waline-dark-grey)
|
|
193
|
+
color: var(--waline-dark-grey);
|
|
141
194
|
}
|
|
142
195
|
|
|
143
196
|
[data-waline] blockquote > p {
|
|
144
|
-
margin: 0
|
|
197
|
+
margin: 0;
|
|
145
198
|
}
|
|
146
199
|
|
|
147
|
-
[data-waline] ol,
|
|
200
|
+
[data-waline] ol,
|
|
201
|
+
[data-waline] ul {
|
|
148
202
|
margin-inline-start: 1.25em;
|
|
149
|
-
padding: 0
|
|
203
|
+
padding: 0;
|
|
150
204
|
}
|
|
151
205
|
|
|
152
|
-
[data-waline] input[type=checkbox],
|
|
206
|
+
[data-waline] input[type='checkbox'],
|
|
207
|
+
[data-waline] input[type='radio'] {
|
|
153
208
|
display: inline-block;
|
|
154
209
|
vertical-align: middle;
|
|
155
|
-
margin-top: -2px
|
|
210
|
+
margin-top: -2px;
|
|
156
211
|
}
|
|
157
212
|
|
|
158
213
|
.wl-btn {
|
|
@@ -160,65 +215,67 @@ $name: md-comment;
|
|
|
160
215
|
vertical-align: middle;
|
|
161
216
|
min-width: 2.5em;
|
|
162
217
|
margin-bottom: 0;
|
|
163
|
-
padding: .5em 1em;
|
|
218
|
+
padding: 0.5em 1em;
|
|
164
219
|
border: 1px solid var(--waline-border-color);
|
|
165
|
-
border-radius: .5em;
|
|
220
|
+
border-radius: 0.5em;
|
|
166
221
|
background: rgba(0, 0, 0, 0);
|
|
167
222
|
color: var(--waline-color);
|
|
168
223
|
font-weight: 400;
|
|
169
|
-
font-size: .75em;
|
|
224
|
+
font-size: 0.75em;
|
|
170
225
|
line-height: 1.5;
|
|
171
226
|
text-align: center;
|
|
172
227
|
white-space: nowrap;
|
|
173
228
|
cursor: pointer;
|
|
174
229
|
user-select: none;
|
|
175
|
-
transition-duration: .4s;
|
|
176
|
-
touch-action: manipulation
|
|
230
|
+
transition-duration: 0.4s;
|
|
231
|
+
touch-action: manipulation;
|
|
177
232
|
}
|
|
178
233
|
|
|
179
|
-
.wl-btn:hover,
|
|
234
|
+
.wl-btn:hover,
|
|
235
|
+
.wl-btn:active {
|
|
180
236
|
border-color: var(--waline-theme-color);
|
|
181
|
-
color: var(--waline-theme-color)
|
|
237
|
+
color: var(--waline-theme-color);
|
|
182
238
|
}
|
|
183
239
|
|
|
184
240
|
.wl-btn:disabled {
|
|
185
241
|
border-color: var(--waline-border-color);
|
|
186
242
|
background: var(--waline-disable-bgcolor);
|
|
187
243
|
color: var(--waline-disable-color);
|
|
188
|
-
cursor: not-allowed
|
|
244
|
+
cursor: not-allowed;
|
|
189
245
|
}
|
|
190
246
|
|
|
191
247
|
.wl-btn.primary {
|
|
192
248
|
border-color: var(--waline-theme-color);
|
|
193
249
|
background: var(--waline-theme-color);
|
|
194
|
-
color: var(--waline-white)
|
|
250
|
+
color: var(--waline-white);
|
|
195
251
|
}
|
|
196
252
|
|
|
197
|
-
.wl-btn.primary:hover,
|
|
253
|
+
.wl-btn.primary:hover,
|
|
254
|
+
.wl-btn.primary:active {
|
|
198
255
|
border-color: var(--waline-active-color);
|
|
199
256
|
background: var(--waline-active-color);
|
|
200
|
-
color: var(--waline-white)
|
|
257
|
+
color: var(--waline-white);
|
|
201
258
|
}
|
|
202
259
|
|
|
203
260
|
.wl-btn.primary:disabled {
|
|
204
261
|
border-color: var(--waline-border-color);
|
|
205
262
|
background: var(--waline-disable-bgcolor);
|
|
206
263
|
color: var(--waline-disable-color);
|
|
207
|
-
cursor: not-allowed
|
|
264
|
+
cursor: not-allowed;
|
|
208
265
|
}
|
|
209
266
|
|
|
210
267
|
.wl-loading {
|
|
211
|
-
text-align: center
|
|
268
|
+
text-align: center;
|
|
212
269
|
}
|
|
213
270
|
|
|
214
271
|
.wl-loading svg {
|
|
215
|
-
margin: 0 auto
|
|
272
|
+
margin: 0 auto;
|
|
216
273
|
}
|
|
217
274
|
|
|
218
275
|
.wl-comment {
|
|
219
276
|
position: relative;
|
|
220
277
|
display: flex;
|
|
221
|
-
margin-bottom: .75em
|
|
278
|
+
margin-bottom: 0.75em;
|
|
222
279
|
}
|
|
223
280
|
|
|
224
281
|
.wl-close {
|
|
@@ -229,13 +286,13 @@ $name: md-comment;
|
|
|
229
286
|
border: none;
|
|
230
287
|
background: rgba(0, 0, 0, 0);
|
|
231
288
|
line-height: 1;
|
|
232
|
-
cursor: pointer
|
|
289
|
+
cursor: pointer;
|
|
233
290
|
}
|
|
234
291
|
|
|
235
292
|
.wl-login-info {
|
|
236
293
|
max-width: 80px;
|
|
237
|
-
margin-top: .75em;
|
|
238
|
-
text-align: center
|
|
294
|
+
margin-top: 0.75em;
|
|
295
|
+
text-align: center;
|
|
239
296
|
}
|
|
240
297
|
|
|
241
298
|
.wl-logout-btn {
|
|
@@ -246,7 +303,7 @@ $name: md-comment;
|
|
|
246
303
|
border: none;
|
|
247
304
|
background: rgba(0, 0, 0, 0);
|
|
248
305
|
line-height: 0;
|
|
249
|
-
cursor: pointer
|
|
306
|
+
cursor: pointer;
|
|
250
307
|
}
|
|
251
308
|
|
|
252
309
|
.wl-avatar {
|
|
@@ -255,38 +312,31 @@ $name: md-comment;
|
|
|
255
312
|
height: var(--waline-avatar-size);
|
|
256
313
|
margin: 0 auto;
|
|
257
314
|
border: var(--waline-border);
|
|
258
|
-
border-radius: var(--waline-avatar-radius)
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
@media (max-width: 720px) {
|
|
262
|
-
.wl-avatar {
|
|
263
|
-
width: var(--waline-m-avatar-size);
|
|
264
|
-
height: var(--waline-m-avatar-size)
|
|
265
|
-
}
|
|
315
|
+
border-radius: var(--waline-avatar-radius);
|
|
266
316
|
}
|
|
267
317
|
|
|
268
318
|
.wl-avatar img {
|
|
269
319
|
width: 100%;
|
|
270
320
|
height: 100%;
|
|
271
|
-
border-radius: var(--waline-avatar-radius)
|
|
321
|
+
border-radius: var(--waline-avatar-radius);
|
|
272
322
|
}
|
|
273
323
|
|
|
274
324
|
.wl-login-nick {
|
|
275
325
|
display: block;
|
|
276
326
|
color: var(--waline-theme-color);
|
|
277
|
-
font-size: .75em;
|
|
278
|
-
word-break: break-all
|
|
327
|
+
font-size: 0.75em;
|
|
328
|
+
word-break: break-all;
|
|
279
329
|
}
|
|
280
330
|
|
|
281
331
|
.wl-panel {
|
|
282
332
|
position: relative;
|
|
283
333
|
flex-shrink: 1;
|
|
284
334
|
width: 100%;
|
|
285
|
-
margin: .5em;
|
|
335
|
+
margin: 0.5em;
|
|
286
336
|
border: var(--waline-border);
|
|
287
|
-
border-radius: .75em;
|
|
337
|
+
border-radius: 0.75em;
|
|
288
338
|
background: var(--waline-bgcolor);
|
|
289
|
-
box-shadow: var(--waline-box-shadow)
|
|
339
|
+
box-shadow: var(--waline-box-shadow);
|
|
290
340
|
}
|
|
291
341
|
|
|
292
342
|
.wl-header {
|
|
@@ -294,128 +344,105 @@ $name: md-comment;
|
|
|
294
344
|
overflow: hidden;
|
|
295
345
|
padding: 0 4px;
|
|
296
346
|
border-bottom: 2px dashed var(--waline-border-color);
|
|
297
|
-
border-top-left-radius: .75em;
|
|
298
|
-
border-top-right-radius: .75em
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
@media (max-width: 580px) {
|
|
302
|
-
.wl-header {
|
|
303
|
-
display: block
|
|
304
|
-
}
|
|
347
|
+
border-top-left-radius: 0.75em;
|
|
348
|
+
border-top-right-radius: 0.75em;
|
|
305
349
|
}
|
|
306
350
|
|
|
307
351
|
.wl-header label {
|
|
308
352
|
min-width: 40px;
|
|
309
|
-
padding: .75em .5em;
|
|
353
|
+
padding: 0.75em 0.5em;
|
|
310
354
|
color: var(--waline-color);
|
|
311
|
-
font-size: .75em;
|
|
312
|
-
text-align: center
|
|
355
|
+
font-size: 0.75em;
|
|
356
|
+
text-align: center;
|
|
313
357
|
}
|
|
314
358
|
|
|
315
359
|
.wl-header input {
|
|
316
360
|
flex: 1;
|
|
317
361
|
width: 0;
|
|
318
|
-
padding: .5em;
|
|
362
|
+
padding: 0.5em;
|
|
319
363
|
background: rgba(0, 0, 0, 0);
|
|
320
|
-
font-size: .625em;
|
|
321
|
-
resize: none
|
|
364
|
+
font-size: 0.625em;
|
|
365
|
+
resize: none;
|
|
322
366
|
}
|
|
323
367
|
|
|
324
368
|
.wl-header-item {
|
|
325
369
|
display: flex;
|
|
326
|
-
flex: 1
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
@media (max-width: 580px) {
|
|
330
|
-
.wl-header-item:not(:last-child) {
|
|
331
|
-
border-bottom: 2px dashed var(--waline-border-color)
|
|
332
|
-
}
|
|
370
|
+
flex: 1;
|
|
333
371
|
}
|
|
334
372
|
|
|
335
373
|
.wl-header-1 .wl-header-item {
|
|
336
|
-
width: 100
|
|
374
|
+
width: 100%;
|
|
337
375
|
}
|
|
338
376
|
|
|
339
377
|
.wl-header-2 .wl-header-item {
|
|
340
|
-
width: 50
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
@media (max-width: 580px) {
|
|
344
|
-
.wl-header-2 .wl-header-item {
|
|
345
|
-
flex: 0;
|
|
346
|
-
width: 100%
|
|
347
|
-
}
|
|
378
|
+
width: 50%;
|
|
348
379
|
}
|
|
349
380
|
|
|
350
381
|
.wl-header-3 .wl-header-item {
|
|
351
|
-
width: 33.33
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
@media (max-width: 580px) {
|
|
355
|
-
.wl-header-3 .wl-header-item {
|
|
356
|
-
width: 100%
|
|
357
|
-
}
|
|
382
|
+
width: 33.33%;
|
|
358
383
|
}
|
|
359
384
|
|
|
360
385
|
.wl-editor {
|
|
361
386
|
position: relative;
|
|
362
387
|
width: calc(100% - 1em);
|
|
363
388
|
min-height: 8.75em;
|
|
364
|
-
margin: .75em .5em;
|
|
365
|
-
border-radius: .5em;
|
|
389
|
+
margin: 0.75em 0.5em;
|
|
390
|
+
border-radius: 0.5em;
|
|
366
391
|
background: rgba(0, 0, 0, 0);
|
|
367
|
-
font-size: .875em;
|
|
368
|
-
resize: vertical
|
|
392
|
+
font-size: 0.875em;
|
|
393
|
+
resize: vertical;
|
|
369
394
|
}
|
|
370
395
|
|
|
371
|
-
.wl-editor,
|
|
396
|
+
.wl-editor,
|
|
397
|
+
.wl-input {
|
|
372
398
|
max-width: 100%;
|
|
373
399
|
border: none;
|
|
374
400
|
color: var(--waline-color);
|
|
375
401
|
outline: none;
|
|
376
|
-
transition: all .25s ease
|
|
402
|
+
transition: all 0.25s ease;
|
|
377
403
|
}
|
|
378
404
|
|
|
379
|
-
.wl-editor:focus,
|
|
380
|
-
|
|
405
|
+
.wl-editor:focus,
|
|
406
|
+
.wl-input:focus {
|
|
407
|
+
background: var(--waline-bgcolor-light);
|
|
381
408
|
}
|
|
382
409
|
|
|
383
410
|
.wl-preview {
|
|
384
|
-
padding: 0 .5em .5em
|
|
411
|
+
padding: 0 0.5em 0.5em;
|
|
385
412
|
}
|
|
386
413
|
|
|
387
414
|
.wl-preview h4 {
|
|
388
|
-
margin: .25em;
|
|
415
|
+
margin: 0.25em;
|
|
389
416
|
font-weight: bold;
|
|
390
|
-
font-size: .9375em
|
|
417
|
+
font-size: 0.9375em;
|
|
391
418
|
}
|
|
392
419
|
|
|
393
420
|
.wl-preview .wl-content {
|
|
394
421
|
min-height: 1.25em;
|
|
395
|
-
padding: .25em;
|
|
422
|
+
padding: 0.25em;
|
|
396
423
|
word-break: break-word;
|
|
397
|
-
hyphens: auto
|
|
424
|
+
hyphens: auto;
|
|
398
425
|
}
|
|
399
426
|
|
|
400
427
|
.wl-preview .wl-content > *:first-child {
|
|
401
|
-
margin-top: 0
|
|
428
|
+
margin-top: 0;
|
|
402
429
|
}
|
|
403
430
|
|
|
404
431
|
.wl-preview .wl-content > *:last-child {
|
|
405
|
-
margin-bottom: 0
|
|
432
|
+
margin-bottom: 0;
|
|
406
433
|
}
|
|
407
434
|
|
|
408
435
|
.wl-footer {
|
|
409
436
|
position: relative;
|
|
410
437
|
display: flex;
|
|
411
438
|
flex-wrap: wrap;
|
|
412
|
-
margin: .5em .75em
|
|
439
|
+
margin: 0.5em 0.75em;
|
|
413
440
|
}
|
|
414
441
|
|
|
415
442
|
.wl-actions {
|
|
416
443
|
display: flex;
|
|
417
444
|
flex: 2;
|
|
418
|
-
align-items: center
|
|
445
|
+
align-items: center;
|
|
419
446
|
}
|
|
420
447
|
|
|
421
448
|
.wl-action {
|
|
@@ -430,53 +457,53 @@ $name: md-comment;
|
|
|
430
457
|
background: rgba(0, 0, 0, 0);
|
|
431
458
|
color: var(--waline-color);
|
|
432
459
|
font-size: 16px;
|
|
433
|
-
cursor: pointer
|
|
460
|
+
cursor: pointer;
|
|
434
461
|
}
|
|
435
462
|
|
|
436
463
|
.wl-action:hover {
|
|
437
|
-
color: var(--waline-theme-color)
|
|
464
|
+
color: var(--waline-theme-color);
|
|
438
465
|
}
|
|
439
466
|
|
|
440
467
|
.wl-action.active {
|
|
441
|
-
color: var(--waline-active-color)
|
|
468
|
+
color: var(--waline-active-color);
|
|
442
469
|
}
|
|
443
470
|
|
|
444
471
|
#wl-image-upload {
|
|
445
|
-
display: none
|
|
472
|
+
display: none;
|
|
446
473
|
}
|
|
447
474
|
|
|
448
475
|
#wl-image-upload:focus + label {
|
|
449
|
-
color: var(--waline-color)
|
|
476
|
+
color: var(--waline-color);
|
|
450
477
|
}
|
|
451
478
|
|
|
452
479
|
#wl-image-upload:focus-visible + label {
|
|
453
|
-
outline: -webkit-focus-ring-color auto 1px
|
|
480
|
+
outline: -webkit-focus-ring-color auto 1px;
|
|
454
481
|
}
|
|
455
482
|
|
|
456
483
|
.wl-info {
|
|
457
484
|
display: flex;
|
|
458
485
|
flex: 3;
|
|
459
486
|
align-items: center;
|
|
460
|
-
justify-content: flex-end
|
|
487
|
+
justify-content: flex-end;
|
|
461
488
|
}
|
|
462
489
|
|
|
463
490
|
.wl-info .wl-text-number {
|
|
464
491
|
color: var(--waline-info-color);
|
|
465
|
-
font-size: .75em
|
|
492
|
+
font-size: 0.75em;
|
|
466
493
|
}
|
|
467
494
|
|
|
468
495
|
.wl-info .wl-text-number .illegal {
|
|
469
|
-
color: red
|
|
496
|
+
color: red;
|
|
470
497
|
}
|
|
471
498
|
|
|
472
499
|
.wl-info button {
|
|
473
|
-
margin-inline-start: .75em
|
|
500
|
+
margin-inline-start: 0.75em;
|
|
474
501
|
}
|
|
475
502
|
|
|
476
503
|
.wl-info button svg {
|
|
477
504
|
display: block;
|
|
478
505
|
margin: 0 auto;
|
|
479
|
-
line-height: 18px
|
|
506
|
+
line-height: 18px;
|
|
480
507
|
}
|
|
481
508
|
|
|
482
509
|
.wl-emoji-popup {
|
|
@@ -491,106 +518,106 @@ $name: md-comment;
|
|
|
491
518
|
box-shadow: var(--waline-box-shadow);
|
|
492
519
|
opacity: 0;
|
|
493
520
|
visibility: hidden;
|
|
494
|
-
transition: transform .2s ease-out, opacity .2s ease-out;
|
|
521
|
+
transition: transform 0.2s ease-out, opacity 0.2s ease-out;
|
|
495
522
|
transform: scale(0.9, 0.9);
|
|
496
|
-
transform-origin: 0 0
|
|
523
|
+
transform-origin: 0 0;
|
|
497
524
|
}
|
|
498
525
|
|
|
499
526
|
.wl-emoji-popup.display {
|
|
500
527
|
opacity: 1;
|
|
501
528
|
visibility: visible;
|
|
502
|
-
transform: none
|
|
529
|
+
transform: none;
|
|
503
530
|
}
|
|
504
531
|
|
|
505
532
|
.wl-emoji-popup button {
|
|
506
533
|
display: inline-block;
|
|
507
534
|
vertical-align: middle;
|
|
508
535
|
width: 2em;
|
|
509
|
-
margin: .125em;
|
|
536
|
+
margin: 0.125em;
|
|
510
537
|
padding: 0;
|
|
511
538
|
border-width: 0;
|
|
512
539
|
background: rgba(0, 0, 0, 0);
|
|
513
540
|
font-size: inherit;
|
|
514
541
|
line-height: 2;
|
|
515
542
|
text-align: center;
|
|
516
|
-
cursor: pointer
|
|
543
|
+
cursor: pointer;
|
|
517
544
|
}
|
|
518
545
|
|
|
519
546
|
.wl-emoji-popup button:hover {
|
|
520
|
-
background: var(--waline-bgcolor-hover)
|
|
547
|
+
background: var(--waline-bgcolor-hover);
|
|
521
548
|
}
|
|
522
549
|
|
|
523
550
|
.wl-emoji-popup .wl-emoji {
|
|
524
551
|
display: inline-block;
|
|
525
552
|
vertical-align: middle;
|
|
526
553
|
max-width: 1.5em;
|
|
527
|
-
max-height: 1.5em
|
|
554
|
+
max-height: 1.5em;
|
|
528
555
|
}
|
|
529
556
|
|
|
530
557
|
.wl-emoji-popup .wl-tab-wrapper {
|
|
531
558
|
overflow-y: auto;
|
|
532
559
|
max-height: 145px;
|
|
533
|
-
padding: .5em
|
|
560
|
+
padding: 0.5em;
|
|
534
561
|
}
|
|
535
562
|
|
|
536
563
|
.wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar {
|
|
537
564
|
width: 6px;
|
|
538
|
-
height: 6px
|
|
565
|
+
height: 6px;
|
|
539
566
|
}
|
|
540
567
|
|
|
541
568
|
.wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-track-piece:vertical {
|
|
542
569
|
-webkit-border-radius: 6px;
|
|
543
570
|
border-radius: 6px;
|
|
544
|
-
background: rgba(0, 0, 0, .1)
|
|
571
|
+
background: rgba(0, 0, 0, 0.1);
|
|
545
572
|
}
|
|
546
573
|
|
|
547
574
|
.wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-thumb:vertical {
|
|
548
575
|
width: 6px;
|
|
549
576
|
-webkit-border-radius: 6px;
|
|
550
577
|
border-radius: 6px;
|
|
551
|
-
background: var(--waline-theme-color)
|
|
578
|
+
background: var(--waline-theme-color);
|
|
552
579
|
}
|
|
553
580
|
|
|
554
581
|
.wl-emoji-popup .wl-tabs {
|
|
555
582
|
position: relative;
|
|
556
583
|
overflow-x: auto;
|
|
557
584
|
padding: 0 6px;
|
|
558
|
-
white-space: nowrap
|
|
585
|
+
white-space: nowrap;
|
|
559
586
|
}
|
|
560
587
|
|
|
561
588
|
.wl-emoji-popup .wl-tabs::before {
|
|
562
|
-
content:
|
|
589
|
+
content: ' ';
|
|
563
590
|
position: absolute;
|
|
564
591
|
top: 0;
|
|
565
592
|
right: 0;
|
|
566
593
|
left: 0;
|
|
567
594
|
z-index: 2;
|
|
568
595
|
height: 1px;
|
|
569
|
-
background: var(--waline-border-color)
|
|
596
|
+
background: var(--waline-border-color);
|
|
570
597
|
}
|
|
571
598
|
|
|
572
599
|
.wl-emoji-popup .wl-tabs::-webkit-scrollbar {
|
|
573
600
|
width: 6px;
|
|
574
|
-
height: 6px
|
|
601
|
+
height: 6px;
|
|
575
602
|
}
|
|
576
603
|
|
|
577
604
|
.wl-emoji-popup .wl-tabs::-webkit-scrollbar-track-piece:horizontal {
|
|
578
605
|
-webkit-border-radius: 6px;
|
|
579
606
|
border-radius: 6px;
|
|
580
|
-
background: rgba(0, 0, 0, .1)
|
|
607
|
+
background: rgba(0, 0, 0, 0.1);
|
|
581
608
|
}
|
|
582
609
|
|
|
583
610
|
.wl-emoji-popup .wl-tabs::-webkit-scrollbar-thumb:horizontal {
|
|
584
611
|
height: 6px;
|
|
585
612
|
-webkit-border-radius: 6px;
|
|
586
613
|
border-radius: 6px;
|
|
587
|
-
background: var(--waline-theme-color)
|
|
614
|
+
background: var(--waline-theme-color);
|
|
588
615
|
}
|
|
589
616
|
|
|
590
617
|
.wl-emoji-popup .wl-tab {
|
|
591
618
|
position: relative;
|
|
592
619
|
margin: 0;
|
|
593
|
-
padding: 0 .5em
|
|
620
|
+
padding: 0 0.5em;
|
|
594
621
|
}
|
|
595
622
|
|
|
596
623
|
.wl-emoji-popup .wl-tab.active {
|
|
@@ -599,7 +626,7 @@ $name: md-comment;
|
|
|
599
626
|
border-top-width: 0;
|
|
600
627
|
border-bottom-right-radius: 6px;
|
|
601
628
|
border-bottom-left-radius: 6px;
|
|
602
|
-
background: var(--waline-bgcolor)
|
|
629
|
+
background: var(--waline-bgcolor);
|
|
603
630
|
}
|
|
604
631
|
|
|
605
632
|
.wl-gif-popup {
|
|
@@ -608,22 +635,22 @@ $name: md-comment;
|
|
|
608
635
|
inset-inline-start: 1.25em;
|
|
609
636
|
z-index: 10;
|
|
610
637
|
width: calc(100% - 3em);
|
|
611
|
-
padding: .75em .75em .25em;
|
|
638
|
+
padding: 0.75em 0.75em 0.25em;
|
|
612
639
|
border: var(--waline-border);
|
|
613
640
|
border-radius: 6px;
|
|
614
641
|
background: var(--waline-bgcolor);
|
|
615
642
|
box-shadow: var(--waline-box-shadow);
|
|
616
643
|
opacity: 0;
|
|
617
644
|
visibility: hidden;
|
|
618
|
-
transition: transform .2s ease-out, opacity .2s ease-out;
|
|
645
|
+
transition: transform 0.2s ease-out, opacity 0.2s ease-out;
|
|
619
646
|
transform: scale(0.9, 0.9);
|
|
620
|
-
transform-origin: 0 0
|
|
647
|
+
transform-origin: 0 0;
|
|
621
648
|
}
|
|
622
649
|
|
|
623
650
|
.wl-gif-popup.display {
|
|
624
651
|
opacity: 1;
|
|
625
652
|
visibility: visible;
|
|
626
|
-
transform: none
|
|
653
|
+
transform: none;
|
|
627
654
|
}
|
|
628
655
|
|
|
629
656
|
.wl-gif-popup input {
|
|
@@ -631,7 +658,7 @@ $name: md-comment;
|
|
|
631
658
|
width: 100%;
|
|
632
659
|
margin-bottom: 10px;
|
|
633
660
|
padding: 3px 5px;
|
|
634
|
-
border: var(--waline-border)
|
|
661
|
+
border: var(--waline-border);
|
|
635
662
|
}
|
|
636
663
|
|
|
637
664
|
.wl-gif-popup img {
|
|
@@ -641,18 +668,18 @@ $name: md-comment;
|
|
|
641
668
|
border-width: 2px;
|
|
642
669
|
border-style: solid;
|
|
643
670
|
border-color: #fff;
|
|
644
|
-
cursor: pointer
|
|
671
|
+
cursor: pointer;
|
|
645
672
|
}
|
|
646
673
|
|
|
647
674
|
.wl-gif-popup img:hover {
|
|
648
675
|
border-color: var(--waline-theme-color);
|
|
649
|
-
border-radius: 2px
|
|
676
|
+
border-radius: 2px;
|
|
650
677
|
}
|
|
651
678
|
|
|
652
679
|
.wl-gallery {
|
|
653
680
|
display: flex;
|
|
654
681
|
overflow-y: auto;
|
|
655
|
-
max-height: 80vh
|
|
682
|
+
max-height: 80vh;
|
|
656
683
|
}
|
|
657
684
|
|
|
658
685
|
.wl-gallery-column {
|
|
@@ -661,26 +688,21 @@ $name: md-comment;
|
|
|
661
688
|
flex-direction: column;
|
|
662
689
|
height: -webkit-max-content;
|
|
663
690
|
height: -moz-max-content;
|
|
664
|
-
height: max-content
|
|
691
|
+
height: max-content;
|
|
665
692
|
}
|
|
666
693
|
|
|
667
694
|
.wl-cards .wl-user {
|
|
668
695
|
--avatar-size: var(--waline-avatar-size);
|
|
669
|
-
position: relative;
|
|
670
|
-
margin-inline-end: .75em
|
|
671
|
-
}
|
|
672
696
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
--avatar-size: var(--waline-m-avatar-size)
|
|
676
|
-
}
|
|
697
|
+
position: relative;
|
|
698
|
+
margin-inline-end: 0.75em;
|
|
677
699
|
}
|
|
678
700
|
|
|
679
701
|
.wl-cards .wl-user img {
|
|
680
702
|
width: var(--avatar-size);
|
|
681
703
|
height: var(--avatar-size);
|
|
682
704
|
border-radius: var(--waline-avatar-radius);
|
|
683
|
-
box-shadow: var(--waline-box-shadow)
|
|
705
|
+
box-shadow: var(--waline-box-shadow);
|
|
684
706
|
}
|
|
685
707
|
|
|
686
708
|
.wl-cards .wl-user .verified-icon {
|
|
@@ -689,105 +711,108 @@ $name: md-comment;
|
|
|
689
711
|
inset-inline-start: calc(var(--avatar-size) * 3 / 4);
|
|
690
712
|
border-radius: 50%;
|
|
691
713
|
background: var(--waline-bgcolor);
|
|
692
|
-
box-shadow: var(--waline-box-shadow)
|
|
714
|
+
box-shadow: var(--waline-box-shadow);
|
|
693
715
|
}
|
|
694
716
|
|
|
695
717
|
.wl-card-item {
|
|
696
718
|
position: relative;
|
|
697
719
|
display: flex;
|
|
698
|
-
padding: .5em
|
|
720
|
+
padding: 0.5em;
|
|
699
721
|
}
|
|
700
722
|
|
|
701
723
|
.wl-card-item .wl-card-item {
|
|
702
|
-
padding-inline-end: 0
|
|
724
|
+
padding-inline-end: 0;
|
|
703
725
|
}
|
|
704
726
|
|
|
705
727
|
.wl-card {
|
|
706
728
|
flex: 1;
|
|
707
729
|
width: 0;
|
|
708
|
-
padding-bottom: .5em;
|
|
709
|
-
border-bottom: 1px dashed var(--waline-border-color)
|
|
730
|
+
padding-bottom: 0.5em;
|
|
731
|
+
border-bottom: 1px dashed var(--waline-border-color);
|
|
710
732
|
}
|
|
711
733
|
|
|
712
734
|
.wl-card:first-child {
|
|
713
|
-
margin-inline-start: 1em
|
|
735
|
+
margin-inline-start: 1em;
|
|
714
736
|
}
|
|
715
737
|
|
|
716
738
|
.wl-card-item:last-child > .wl-card {
|
|
717
|
-
border-bottom: none
|
|
739
|
+
border-bottom: none;
|
|
718
740
|
}
|
|
719
741
|
|
|
720
742
|
.wl-card .wl-nick svg {
|
|
721
743
|
position: relative;
|
|
722
744
|
bottom: -0.125em;
|
|
723
|
-
line-height: 1
|
|
745
|
+
line-height: 1;
|
|
724
746
|
}
|
|
725
747
|
|
|
726
748
|
.wl-card .wl-head {
|
|
727
749
|
overflow: hidden;
|
|
728
|
-
line-height: 1.5
|
|
750
|
+
line-height: 1.5;
|
|
729
751
|
}
|
|
730
752
|
|
|
731
753
|
.wl-card .wl-head .wl-nick {
|
|
732
754
|
position: relative;
|
|
733
755
|
display: inline-block;
|
|
734
|
-
margin-inline-end: .5em;
|
|
756
|
+
margin-inline-end: 0.5em;
|
|
735
757
|
font-weight: bold;
|
|
736
|
-
font-size: .875em;
|
|
758
|
+
font-size: 0.875em;
|
|
737
759
|
line-height: 1;
|
|
738
|
-
text-decoration: none
|
|
760
|
+
text-decoration: none;
|
|
739
761
|
}
|
|
740
762
|
|
|
741
763
|
.wl-card span.wl-nick {
|
|
742
|
-
color: var(--waline-dark-grey)
|
|
764
|
+
color: var(--waline-dark-grey);
|
|
743
765
|
}
|
|
744
766
|
|
|
745
767
|
.wl-card .wl-badge {
|
|
746
768
|
display: inline-block;
|
|
747
769
|
margin-inline-end: 1em;
|
|
748
|
-
padding: 0 .3em;
|
|
770
|
+
padding: 0 0.3em;
|
|
749
771
|
border: 1px solid var(--waline-badge-color);
|
|
750
772
|
border-radius: 4px;
|
|
751
773
|
color: var(--waline-badge-color);
|
|
752
|
-
font-size: var(--waline-badge-font-size)
|
|
774
|
+
font-size: var(--waline-badge-font-size);
|
|
753
775
|
}
|
|
754
776
|
|
|
755
777
|
.wl-card .wl-time {
|
|
756
|
-
margin-inline-end: .875em;
|
|
778
|
+
margin-inline-end: 0.875em;
|
|
757
779
|
color: var(--waline-info-color);
|
|
758
|
-
font-size: .75em
|
|
780
|
+
font-size: 0.75em;
|
|
759
781
|
}
|
|
760
782
|
|
|
761
783
|
.wl-card .wl-meta {
|
|
762
784
|
position: relative;
|
|
763
|
-
line-height: 1
|
|
785
|
+
line-height: 1;
|
|
764
786
|
}
|
|
765
787
|
|
|
766
788
|
.wl-card .wl-meta > span {
|
|
767
789
|
display: inline-block;
|
|
768
|
-
margin-inline-end: .25em;
|
|
790
|
+
margin-inline-end: 0.25em;
|
|
769
791
|
padding: 2px 4px;
|
|
770
|
-
border-radius: .2em;
|
|
792
|
+
border-radius: 0.2em;
|
|
771
793
|
background: var(--waline-info-bgcolor);
|
|
772
794
|
color: var(--waline-info-color);
|
|
773
795
|
font-size: var(--waline-info-font-size);
|
|
774
|
-
line-height: 1.5
|
|
796
|
+
line-height: 1.5;
|
|
775
797
|
}
|
|
776
798
|
|
|
777
799
|
.wl-card .wl-meta > span:empty {
|
|
778
|
-
display: none
|
|
800
|
+
display: none;
|
|
779
801
|
}
|
|
780
802
|
|
|
781
803
|
.wl-card .wl-comment-actions {
|
|
782
804
|
float: right;
|
|
783
|
-
line-height: 1
|
|
805
|
+
line-height: 1;
|
|
784
806
|
}
|
|
785
807
|
|
|
786
|
-
[dir=rtl] .wl-card .wl-comment-actions {
|
|
787
|
-
float: left
|
|
808
|
+
[dir='rtl'] .wl-card .wl-comment-actions {
|
|
809
|
+
float: left;
|
|
788
810
|
}
|
|
789
811
|
|
|
790
|
-
.wl-card .wl-delete,
|
|
812
|
+
.wl-card .wl-delete,
|
|
813
|
+
.wl-card .wl-like,
|
|
814
|
+
.wl-card .wl-reply,
|
|
815
|
+
.wl-card .wl-edit {
|
|
791
816
|
display: inline-flex;
|
|
792
817
|
align-items: center;
|
|
793
818
|
border: none;
|
|
@@ -795,34 +820,40 @@ $name: md-comment;
|
|
|
795
820
|
color: var(--waline-color);
|
|
796
821
|
line-height: 1;
|
|
797
822
|
cursor: pointer;
|
|
798
|
-
transition: color .2s ease
|
|
823
|
+
transition: color 0.2s ease;
|
|
799
824
|
}
|
|
800
825
|
|
|
801
|
-
.wl-card .wl-delete:hover,
|
|
802
|
-
|
|
826
|
+
.wl-card .wl-delete:hover,
|
|
827
|
+
.wl-card .wl-like:hover,
|
|
828
|
+
.wl-card .wl-reply:hover,
|
|
829
|
+
.wl-card .wl-edit:hover {
|
|
830
|
+
color: var(--waline-theme-color);
|
|
803
831
|
}
|
|
804
832
|
|
|
805
|
-
.wl-card .wl-delete.active,
|
|
806
|
-
|
|
833
|
+
.wl-card .wl-delete.active,
|
|
834
|
+
.wl-card .wl-like.active,
|
|
835
|
+
.wl-card .wl-reply.active,
|
|
836
|
+
.wl-card .wl-edit.active {
|
|
837
|
+
color: var(--waline-active-color);
|
|
807
838
|
}
|
|
808
839
|
|
|
809
840
|
.wl-card .wl-content {
|
|
810
841
|
position: relative;
|
|
811
|
-
margin-bottom: .75em;
|
|
812
|
-
padding-top: .625em;
|
|
813
|
-
font-size: .875em;
|
|
842
|
+
margin-bottom: 0.75em;
|
|
843
|
+
padding-top: 0.625em;
|
|
844
|
+
font-size: 0.875em;
|
|
814
845
|
line-height: 2;
|
|
815
|
-
word-wrap: break-word
|
|
846
|
+
word-wrap: break-word;
|
|
816
847
|
}
|
|
817
848
|
|
|
818
849
|
.wl-card .wl-content.expand {
|
|
819
850
|
overflow: hidden;
|
|
820
851
|
max-height: 8em;
|
|
821
|
-
cursor: pointer
|
|
852
|
+
cursor: pointer;
|
|
822
853
|
}
|
|
823
854
|
|
|
824
855
|
.wl-card .wl-content.expand::before {
|
|
825
|
-
content:
|
|
856
|
+
content: '';
|
|
826
857
|
position: absolute;
|
|
827
858
|
top: 0;
|
|
828
859
|
bottom: 3.15em;
|
|
@@ -830,7 +861,7 @@ $name: md-comment;
|
|
|
830
861
|
z-index: 999;
|
|
831
862
|
display: block;
|
|
832
863
|
width: 100%;
|
|
833
|
-
background: linear-gradient(180deg, #000, rgba(255, 255, 255, 0.9))
|
|
864
|
+
background: linear-gradient(180deg, #000, rgba(255, 255, 255, 0.9));
|
|
834
865
|
}
|
|
835
866
|
|
|
836
867
|
.wl-card .wl-content.expand::after {
|
|
@@ -842,167 +873,168 @@ $name: md-comment;
|
|
|
842
873
|
display: block;
|
|
843
874
|
width: 100%;
|
|
844
875
|
height: 3.15em;
|
|
845
|
-
background: rgba(255, 255, 255, .9);
|
|
876
|
+
background: rgba(255, 255, 255, 0.9);
|
|
846
877
|
color: #828586;
|
|
847
878
|
line-height: 3.15em;
|
|
848
|
-
text-align: center
|
|
879
|
+
text-align: center;
|
|
849
880
|
}
|
|
850
881
|
|
|
851
882
|
.wl-card .wl-content > *:first-child {
|
|
852
|
-
margin-top: 0
|
|
883
|
+
margin-top: 0;
|
|
853
884
|
}
|
|
854
885
|
|
|
855
886
|
.wl-card .wl-content > *:last-child {
|
|
856
|
-
margin-bottom: 0
|
|
887
|
+
margin-bottom: 0;
|
|
857
888
|
}
|
|
858
889
|
|
|
859
890
|
.wl-card .wl-admin-actions {
|
|
860
891
|
margin: 8px 0;
|
|
861
892
|
font-size: 12px;
|
|
862
|
-
text-align: right
|
|
893
|
+
text-align: right;
|
|
863
894
|
}
|
|
864
895
|
|
|
865
896
|
.wl-card .wl-comment-status {
|
|
866
|
-
margin: 0 8px
|
|
897
|
+
margin: 0 8px;
|
|
867
898
|
}
|
|
868
899
|
|
|
869
900
|
.wl-card .wl-comment-status .wl-btn {
|
|
870
|
-
border-radius: 0
|
|
901
|
+
border-radius: 0;
|
|
871
902
|
}
|
|
872
903
|
|
|
873
904
|
.wl-card .wl-comment-status .wl-btn:first-child {
|
|
874
905
|
border-inline-end: 0;
|
|
875
|
-
border-radius: .5em 0 0 .5em
|
|
906
|
+
border-radius: 0.5em 0 0 0.5em;
|
|
876
907
|
}
|
|
877
908
|
|
|
878
909
|
.wl-card .wl-comment-status .wl-btn:last-child {
|
|
879
910
|
border-inline-start: 0;
|
|
880
|
-
border-radius: 0 .5em .5em 0
|
|
911
|
+
border-radius: 0 0.5em 0.5em 0;
|
|
881
912
|
}
|
|
882
913
|
|
|
883
914
|
.wl-card .wl-quote {
|
|
884
|
-
border-inline-start: 1px dashed rgba(237, 237, 237, .5)
|
|
915
|
+
border-inline-start: 1px dashed rgba(237, 237, 237, 0.5);
|
|
885
916
|
}
|
|
886
917
|
|
|
887
918
|
.wl-card .wl-quote .wl-user {
|
|
888
|
-
--avatar-size: var(--waline-m-avatar-size)
|
|
919
|
+
--avatar-size: var(--waline-m-avatar-size);
|
|
889
920
|
}
|
|
890
921
|
|
|
891
922
|
.wl-close-icon {
|
|
892
|
-
color: var(--waline-border-color)
|
|
923
|
+
color: var(--waline-border-color);
|
|
893
924
|
}
|
|
894
925
|
|
|
895
|
-
.wl-content .vemoji,
|
|
926
|
+
.wl-content .vemoji,
|
|
927
|
+
.wl-content .wl-emoji {
|
|
896
928
|
display: inline-block;
|
|
897
929
|
vertical-align: baseline;
|
|
898
930
|
height: 1.25em;
|
|
899
|
-
margin: -0.125em .25em
|
|
931
|
+
margin: -0.125em 0.25em;
|
|
900
932
|
}
|
|
901
933
|
|
|
902
934
|
.wl-content .wl-tex {
|
|
903
935
|
background: var(--waline-info-bgcolor);
|
|
904
|
-
color: var(--waline-info-color)
|
|
936
|
+
color: var(--waline-info-color);
|
|
905
937
|
}
|
|
906
938
|
|
|
907
939
|
.wl-content span.wl-tex {
|
|
908
940
|
display: inline-block;
|
|
909
|
-
margin-inline-end: .25em;
|
|
941
|
+
margin-inline-end: 0.25em;
|
|
910
942
|
padding: 2px 4px;
|
|
911
|
-
border-radius: .2em;
|
|
943
|
+
border-radius: 0.2em;
|
|
912
944
|
font-size: var(--waline-info-font-size);
|
|
913
|
-
line-height: 1.5
|
|
945
|
+
line-height: 1.5;
|
|
914
946
|
}
|
|
915
947
|
|
|
916
948
|
.wl-content p.wl-tex {
|
|
917
|
-
text-align: center
|
|
949
|
+
text-align: center;
|
|
918
950
|
}
|
|
919
951
|
|
|
920
952
|
.wl-content .katex-display {
|
|
921
953
|
overflow: auto hidden;
|
|
922
954
|
-webkit-overflow-scrolling: touch;
|
|
923
|
-
padding-top: .2em;
|
|
924
|
-
padding-bottom: .2em
|
|
955
|
+
padding-top: 0.2em;
|
|
956
|
+
padding-bottom: 0.2em;
|
|
925
957
|
}
|
|
926
958
|
|
|
927
959
|
.wl-content .katex-display::-webkit-scrollbar {
|
|
928
|
-
height: 3px
|
|
960
|
+
height: 3px;
|
|
929
961
|
}
|
|
930
962
|
|
|
931
963
|
.wl-content .katex-error {
|
|
932
|
-
color: red
|
|
964
|
+
color: red;
|
|
933
965
|
}
|
|
934
966
|
|
|
935
967
|
.wl-count {
|
|
936
968
|
flex: 1;
|
|
937
969
|
font-weight: bold;
|
|
938
|
-
font-size: 1.25em
|
|
970
|
+
font-size: 1.25em;
|
|
939
971
|
}
|
|
940
972
|
|
|
941
973
|
.wl-empty {
|
|
942
974
|
overflow: auto;
|
|
943
975
|
padding: 1.25em;
|
|
944
976
|
color: var(--waline-color);
|
|
945
|
-
text-align: center
|
|
977
|
+
text-align: center;
|
|
946
978
|
}
|
|
947
979
|
|
|
948
980
|
.wl-operation {
|
|
949
|
-
text-align: center
|
|
981
|
+
text-align: center;
|
|
950
982
|
}
|
|
951
983
|
|
|
952
984
|
.wl-operation button {
|
|
953
|
-
margin: 1em 0
|
|
985
|
+
margin: 1em 0;
|
|
954
986
|
}
|
|
955
987
|
|
|
956
988
|
.wl-power {
|
|
957
|
-
padding: .5em 0;
|
|
989
|
+
padding: 0.5em 0;
|
|
958
990
|
color: var(--waline-light-grey);
|
|
959
991
|
font-size: var(--waline-info-font-size);
|
|
960
|
-
text-align: end
|
|
992
|
+
text-align: end;
|
|
961
993
|
}
|
|
962
994
|
|
|
963
995
|
.wl-meta-head {
|
|
964
996
|
display: flex;
|
|
965
997
|
flex-direction: row;
|
|
966
998
|
align-items: center;
|
|
967
|
-
padding: .375em
|
|
999
|
+
padding: 0.375em;
|
|
968
1000
|
}
|
|
969
1001
|
|
|
970
1002
|
.wl-sort {
|
|
971
1003
|
margin: 0;
|
|
972
|
-
list-style-type: none
|
|
1004
|
+
list-style-type: none;
|
|
973
1005
|
}
|
|
974
1006
|
|
|
975
1007
|
.wl-sort li {
|
|
976
1008
|
display: inline-block;
|
|
977
1009
|
color: var(--waline-info-color);
|
|
978
|
-
font-size: .75em;
|
|
979
|
-
cursor: pointer
|
|
1010
|
+
font-size: 0.75em;
|
|
1011
|
+
cursor: pointer;
|
|
980
1012
|
}
|
|
981
1013
|
|
|
982
1014
|
.wl-sort li.active {
|
|
983
|
-
color: var(--waline-theme-color)
|
|
1015
|
+
color: var(--waline-theme-color);
|
|
984
1016
|
}
|
|
985
1017
|
|
|
986
1018
|
.wl-sort li + li {
|
|
987
|
-
margin-inline-start: 1em
|
|
1019
|
+
margin-inline-start: 1em;
|
|
988
1020
|
}
|
|
989
1021
|
|
|
990
1022
|
.wl-reaction {
|
|
991
1023
|
overflow: auto hidden;
|
|
992
1024
|
margin-bottom: 1.75em;
|
|
993
|
-
text-align: center
|
|
1025
|
+
text-align: center;
|
|
994
1026
|
}
|
|
995
1027
|
|
|
996
1028
|
.wl-reaction img {
|
|
997
1029
|
width: 100%;
|
|
998
1030
|
height: 100%;
|
|
999
|
-
transition: all 250ms ease-in-out
|
|
1031
|
+
transition: all 250ms ease-in-out;
|
|
1000
1032
|
}
|
|
1001
1033
|
|
|
1002
1034
|
.wl-reaction-title {
|
|
1003
1035
|
margin: 16px auto;
|
|
1004
1036
|
font-weight: bold;
|
|
1005
|
-
font-size: 18px
|
|
1037
|
+
font-size: 18px;
|
|
1006
1038
|
}
|
|
1007
1039
|
|
|
1008
1040
|
.wl-reaction-list {
|
|
@@ -1012,41 +1044,29 @@ $name: md-comment;
|
|
|
1012
1044
|
justify-content: center;
|
|
1013
1045
|
margin: 0;
|
|
1014
1046
|
padding: 8px;
|
|
1015
|
-
list-style-type: none
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
@media (max-width: 580px) {
|
|
1019
|
-
.wl-reaction-list {
|
|
1020
|
-
gap: 12px
|
|
1021
|
-
}
|
|
1047
|
+
list-style-type: none;
|
|
1022
1048
|
}
|
|
1023
1049
|
|
|
1024
1050
|
[data-waline] .wl-reaction-list {
|
|
1025
|
-
margin-inline-start: 0
|
|
1051
|
+
margin-inline-start: 0;
|
|
1026
1052
|
}
|
|
1027
1053
|
|
|
1028
1054
|
.wl-reaction-item {
|
|
1029
1055
|
display: flex;
|
|
1030
1056
|
flex-direction: column;
|
|
1031
1057
|
align-items: center;
|
|
1032
|
-
cursor: pointer
|
|
1058
|
+
cursor: pointer;
|
|
1033
1059
|
}
|
|
1034
1060
|
|
|
1035
|
-
.wl-reaction-item:hover img,
|
|
1036
|
-
|
|
1061
|
+
.wl-reaction-item:hover img,
|
|
1062
|
+
.wl-reaction-item.active img {
|
|
1063
|
+
transform: scale(1.15);
|
|
1037
1064
|
}
|
|
1038
1065
|
|
|
1039
1066
|
.wl-reaction-img {
|
|
1040
1067
|
position: relative;
|
|
1041
1068
|
width: 42px;
|
|
1042
|
-
height: 42px
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
@media (max-width: 580px) {
|
|
1046
|
-
.wl-reaction-img {
|
|
1047
|
-
width: 32px;
|
|
1048
|
-
height: 32px
|
|
1049
|
-
}
|
|
1069
|
+
height: 42px;
|
|
1050
1070
|
}
|
|
1051
1071
|
|
|
1052
1072
|
.wl-reaction-loading {
|
|
@@ -1055,7 +1075,7 @@ $name: md-comment;
|
|
|
1055
1075
|
inset-inline-end: -5px;
|
|
1056
1076
|
width: 18px;
|
|
1057
1077
|
height: 18px;
|
|
1058
|
-
color: var(--waline-theme-color)
|
|
1078
|
+
color: var(--waline-theme-color);
|
|
1059
1079
|
}
|
|
1060
1080
|
|
|
1061
1081
|
.wl-reaction-votes {
|
|
@@ -1069,41 +1089,44 @@ $name: md-comment;
|
|
|
1069
1089
|
background: var(--waline-bgcolor);
|
|
1070
1090
|
color: var(--waline-theme-color);
|
|
1071
1091
|
font-weight: 700;
|
|
1072
|
-
font-size: .75em;
|
|
1073
|
-
line-height: 1
|
|
1092
|
+
font-size: 0.75em;
|
|
1093
|
+
line-height: 1;
|
|
1074
1094
|
}
|
|
1075
1095
|
|
|
1076
1096
|
.wl-reaction-item.active .wl-reaction-votes {
|
|
1077
1097
|
background: var(--waline-theme-color);
|
|
1078
|
-
color: var(--waline-bgcolor)
|
|
1098
|
+
color: var(--waline-bgcolor);
|
|
1079
1099
|
}
|
|
1080
1100
|
|
|
1081
1101
|
.wl-reaction-text {
|
|
1082
|
-
font-size: .875em
|
|
1102
|
+
font-size: 0.875em;
|
|
1083
1103
|
}
|
|
1084
1104
|
|
|
1085
1105
|
.wl-reaction-item.active .wl-reaction-text {
|
|
1086
|
-
color: var(--waline-theme-color)
|
|
1106
|
+
color: var(--waline-theme-color);
|
|
1087
1107
|
}
|
|
1088
1108
|
|
|
1089
|
-
.wl-content pre,
|
|
1109
|
+
.wl-content pre,
|
|
1110
|
+
.wl-content pre[class*='language-'] {
|
|
1090
1111
|
overflow: auto;
|
|
1091
|
-
margin: .75rem 0;
|
|
1112
|
+
margin: 0.75rem 0;
|
|
1092
1113
|
padding: 1rem 1.25rem;
|
|
1093
1114
|
border-radius: 6px;
|
|
1094
1115
|
background: var(--waline-code-bgcolor);
|
|
1095
|
-
line-height: 1.4
|
|
1116
|
+
line-height: 1.4;
|
|
1096
1117
|
}
|
|
1097
1118
|
|
|
1098
|
-
.wl-content pre code,
|
|
1119
|
+
.wl-content pre code,
|
|
1120
|
+
.wl-content pre[class*='language-'] code {
|
|
1099
1121
|
padding: 0;
|
|
1100
1122
|
border-radius: 0;
|
|
1101
1123
|
background: rgba(0, 0, 0, 0) !important;
|
|
1102
1124
|
color: #bbb;
|
|
1103
|
-
direction: ltr
|
|
1125
|
+
direction: ltr;
|
|
1104
1126
|
}
|
|
1105
1127
|
|
|
1106
|
-
.wl-content code[class*=language-],
|
|
1128
|
+
.wl-content code[class*='language-'],
|
|
1129
|
+
.wl-content pre[class*='language-'] {
|
|
1107
1130
|
background: none;
|
|
1108
1131
|
color: #ccc;
|
|
1109
1132
|
font-size: 1em;
|
|
@@ -1113,87 +1136,113 @@ $name: md-comment;
|
|
|
1113
1136
|
word-wrap: normal;
|
|
1114
1137
|
word-break: normal;
|
|
1115
1138
|
tab-size: 4;
|
|
1116
|
-
hyphens: none
|
|
1139
|
+
hyphens: none;
|
|
1117
1140
|
}
|
|
1118
1141
|
|
|
1119
|
-
.wl-content pre[class*=language-] {
|
|
1120
|
-
overflow: auto
|
|
1142
|
+
.wl-content pre[class*='language-'] {
|
|
1143
|
+
overflow: auto;
|
|
1121
1144
|
}
|
|
1122
1145
|
|
|
1123
|
-
.wl-content :not(pre) > code[class*=language-],
|
|
1124
|
-
|
|
1146
|
+
.wl-content :not(pre) > code[class*='language-'],
|
|
1147
|
+
.wl-content pre[class*='language-'] {
|
|
1148
|
+
background: #2d2d2d;
|
|
1125
1149
|
}
|
|
1126
1150
|
|
|
1127
|
-
.wl-content :not(pre) > code[class*=language-] {
|
|
1128
|
-
padding: .1em;
|
|
1129
|
-
border-radius: .3em;
|
|
1130
|
-
white-space: normal
|
|
1151
|
+
.wl-content :not(pre) > code[class*='language-'] {
|
|
1152
|
+
padding: 0.1em;
|
|
1153
|
+
border-radius: 0.3em;
|
|
1154
|
+
white-space: normal;
|
|
1131
1155
|
}
|
|
1132
1156
|
|
|
1133
|
-
.wl-content .token.comment,
|
|
1134
|
-
|
|
1157
|
+
.wl-content .token.comment,
|
|
1158
|
+
.wl-content .token.block-comment,
|
|
1159
|
+
.wl-content .token.prolog,
|
|
1160
|
+
.wl-content .token.doctype,
|
|
1161
|
+
.wl-content .token.cdata {
|
|
1162
|
+
color: #999;
|
|
1135
1163
|
}
|
|
1136
1164
|
|
|
1137
1165
|
.wl-content .token.punctuation {
|
|
1138
|
-
color: #ccc
|
|
1166
|
+
color: #ccc;
|
|
1139
1167
|
}
|
|
1140
1168
|
|
|
1141
|
-
.wl-content .token.tag,
|
|
1142
|
-
|
|
1169
|
+
.wl-content .token.tag,
|
|
1170
|
+
.wl-content .token.attr-name,
|
|
1171
|
+
.wl-content .token.namespace,
|
|
1172
|
+
.wl-content .token.deleted {
|
|
1173
|
+
color: #e2777a;
|
|
1143
1174
|
}
|
|
1144
1175
|
|
|
1145
1176
|
.wl-content .token.function-name {
|
|
1146
|
-
color: #6196cc
|
|
1177
|
+
color: #6196cc;
|
|
1147
1178
|
}
|
|
1148
1179
|
|
|
1149
|
-
.wl-content .token.boolean,
|
|
1150
|
-
|
|
1180
|
+
.wl-content .token.boolean,
|
|
1181
|
+
.wl-content .token.number,
|
|
1182
|
+
.wl-content .token.function {
|
|
1183
|
+
color: #f08d49;
|
|
1151
1184
|
}
|
|
1152
1185
|
|
|
1153
|
-
.wl-content .token.property,
|
|
1154
|
-
|
|
1186
|
+
.wl-content .token.property,
|
|
1187
|
+
.wl-content .token.class-name,
|
|
1188
|
+
.wl-content .token.constant,
|
|
1189
|
+
.wl-content .token.symbol {
|
|
1190
|
+
color: #f8c555;
|
|
1155
1191
|
}
|
|
1156
1192
|
|
|
1157
|
-
.wl-content .token.selector,
|
|
1158
|
-
|
|
1193
|
+
.wl-content .token.selector,
|
|
1194
|
+
.wl-content .token.important,
|
|
1195
|
+
.wl-content .token.atrule,
|
|
1196
|
+
.wl-content .token.keyword,
|
|
1197
|
+
.wl-content .token.builtin {
|
|
1198
|
+
color: #cc99cd;
|
|
1159
1199
|
}
|
|
1160
1200
|
|
|
1161
|
-
.wl-content .token.string,
|
|
1162
|
-
|
|
1201
|
+
.wl-content .token.string,
|
|
1202
|
+
.wl-content .token.char,
|
|
1203
|
+
.wl-content .token.attr-value,
|
|
1204
|
+
.wl-content .token.regex,
|
|
1205
|
+
.wl-content .token.variable {
|
|
1206
|
+
color: #7ec699;
|
|
1163
1207
|
}
|
|
1164
1208
|
|
|
1165
|
-
.wl-content .token.operator,
|
|
1166
|
-
|
|
1209
|
+
.wl-content .token.operator,
|
|
1210
|
+
.wl-content .token.entity,
|
|
1211
|
+
.wl-content .token.url {
|
|
1212
|
+
color: #67cdcc;
|
|
1167
1213
|
}
|
|
1168
1214
|
|
|
1169
|
-
.wl-content .token.important,
|
|
1170
|
-
|
|
1215
|
+
.wl-content .token.important,
|
|
1216
|
+
.wl-content .token.bold {
|
|
1217
|
+
font-weight: bold;
|
|
1171
1218
|
}
|
|
1172
1219
|
|
|
1173
1220
|
.wl-content .token.italic {
|
|
1174
|
-
font-style: italic
|
|
1221
|
+
font-style: italic;
|
|
1175
1222
|
}
|
|
1176
1223
|
|
|
1177
1224
|
.wl-content .token.entity {
|
|
1178
|
-
cursor: help
|
|
1225
|
+
cursor: help;
|
|
1179
1226
|
}
|
|
1180
1227
|
|
|
1181
1228
|
.wl-content .token.inserted {
|
|
1182
|
-
color: green
|
|
1229
|
+
color: green;
|
|
1183
1230
|
}
|
|
1184
1231
|
|
|
1185
1232
|
.wl-recent-item p {
|
|
1186
|
-
display: inline
|
|
1233
|
+
display: inline;
|
|
1187
1234
|
}
|
|
1188
1235
|
|
|
1189
1236
|
.wl-user-list {
|
|
1190
1237
|
padding: 0;
|
|
1191
|
-
list-style: none
|
|
1238
|
+
list-style: none;
|
|
1192
1239
|
}
|
|
1193
1240
|
|
|
1194
|
-
.wl-user-list a,
|
|
1241
|
+
.wl-user-list a,
|
|
1242
|
+
.wl-user-list a:hover,
|
|
1243
|
+
.wl-user-list a:visited {
|
|
1195
1244
|
color: var(--waline-color);
|
|
1196
|
-
text-decoration: none
|
|
1245
|
+
text-decoration: none;
|
|
1197
1246
|
}
|
|
1198
1247
|
|
|
1199
1248
|
.wl-user-list .wl-user-avatar {
|
|
@@ -1202,126 +1251,128 @@ $name: md-comment;
|
|
|
1202
1251
|
overflow: hidden;
|
|
1203
1252
|
margin-inline-end: 10px;
|
|
1204
1253
|
border-radius: 4px;
|
|
1205
|
-
line-height: 0
|
|
1254
|
+
line-height: 0;
|
|
1206
1255
|
}
|
|
1207
1256
|
|
|
1208
1257
|
.wl-user-list .wl-user-avatar > img {
|
|
1209
1258
|
width: var(--waline-user-avatar-size, 48px);
|
|
1210
|
-
height: var(--waline-user-avatar-size, 48px)
|
|
1259
|
+
height: var(--waline-user-avatar-size, 48px);
|
|
1211
1260
|
}
|
|
1212
1261
|
|
|
1213
1262
|
.wl-user-list .wl-user-badge {
|
|
1214
1263
|
position: absolute;
|
|
1215
1264
|
bottom: 0;
|
|
1216
1265
|
inset-inline-end: 0;
|
|
1217
|
-
min-width: .7em;
|
|
1266
|
+
min-width: 0.7em;
|
|
1218
1267
|
height: 1.5em;
|
|
1219
|
-
padding: 0 .4em;
|
|
1268
|
+
padding: 0 0.4em;
|
|
1220
1269
|
border-radius: 4px;
|
|
1221
1270
|
background: var(--waline-info-bgcolor);
|
|
1222
1271
|
color: var(--waline-info-color);
|
|
1223
1272
|
font-weight: bold;
|
|
1224
1273
|
font-size: 10px;
|
|
1225
1274
|
line-height: 1.5em;
|
|
1226
|
-
text-align: center
|
|
1275
|
+
text-align: center;
|
|
1227
1276
|
}
|
|
1228
1277
|
|
|
1229
1278
|
.wl-user-list .wl-user-item {
|
|
1230
|
-
margin: 10px 0
|
|
1279
|
+
margin: 10px 0;
|
|
1231
1280
|
}
|
|
1232
1281
|
|
|
1233
1282
|
.wl-user-list .wl-user-item:nth-child(1) .wl-user-badge {
|
|
1234
1283
|
background: var(--waline-rank-gold-bgcolor, #fa3939);
|
|
1235
1284
|
color: var(--waline-white);
|
|
1236
|
-
font-weight: bold
|
|
1285
|
+
font-weight: bold;
|
|
1237
1286
|
}
|
|
1238
1287
|
|
|
1239
1288
|
.wl-user-list .wl-user-item:nth-child(2) .wl-user-badge {
|
|
1240
1289
|
background: var(--waline-rank-silver-bgcolor, #fb811c);
|
|
1241
1290
|
color: var(--waline-white);
|
|
1242
|
-
font-weight: bold
|
|
1291
|
+
font-weight: bold;
|
|
1243
1292
|
}
|
|
1244
1293
|
|
|
1245
1294
|
.wl-user-list .wl-user-item:nth-child(3) .wl-user-badge {
|
|
1246
1295
|
background: var(--waline-rank-copper-bgcolor, #feb207);
|
|
1247
|
-
color: var(--waline-white)
|
|
1296
|
+
color: var(--waline-white);
|
|
1248
1297
|
}
|
|
1249
1298
|
|
|
1250
1299
|
.wl-user-list .wl-user-meta {
|
|
1251
1300
|
display: inline-block;
|
|
1252
|
-
vertical-align: top
|
|
1301
|
+
vertical-align: top;
|
|
1253
1302
|
}
|
|
1254
1303
|
|
|
1255
1304
|
.wl-user-list .wl-badge {
|
|
1256
1305
|
display: inline-block;
|
|
1257
1306
|
vertical-align: text-top;
|
|
1258
|
-
margin-inline-start: .5em;
|
|
1259
|
-
padding: 0 .3em;
|
|
1307
|
+
margin-inline-start: 0.5em;
|
|
1308
|
+
padding: 0 0.3em;
|
|
1260
1309
|
border: 1px solid var(--waline-badge-color);
|
|
1261
1310
|
border-radius: 4px;
|
|
1262
1311
|
color: var(--waline-badge-color);
|
|
1263
|
-
font-size: var(--waline-badge-font-size)
|
|
1312
|
+
font-size: var(--waline-badge-font-size);
|
|
1264
1313
|
}
|
|
1265
1314
|
|
|
1266
1315
|
.wl-user-wall {
|
|
1267
1316
|
padding: 0;
|
|
1268
|
-
list-style: none
|
|
1317
|
+
list-style: none;
|
|
1269
1318
|
}
|
|
1270
1319
|
|
|
1271
|
-
.wl-user-wall .wl-user-badge,
|
|
1272
|
-
|
|
1320
|
+
.wl-user-wall .wl-user-badge,
|
|
1321
|
+
.wl-user-wall .wl-user-meta {
|
|
1322
|
+
display: none;
|
|
1273
1323
|
}
|
|
1274
1324
|
|
|
1275
1325
|
.wl-user-wall .wl-user-item {
|
|
1276
1326
|
position: relative;
|
|
1277
1327
|
display: inline-block;
|
|
1278
|
-
transition: transform ease-in-out .2s
|
|
1328
|
+
transition: transform ease-in-out 0.2s;
|
|
1279
1329
|
}
|
|
1280
1330
|
|
|
1281
|
-
.wl-user-wall .wl-user-item::before,
|
|
1331
|
+
.wl-user-wall .wl-user-item::before,
|
|
1332
|
+
.wl-user-wall .wl-user-item::after {
|
|
1282
1333
|
position: absolute;
|
|
1283
1334
|
bottom: 100%;
|
|
1284
1335
|
left: 50%;
|
|
1285
1336
|
z-index: 10;
|
|
1286
1337
|
opacity: 0;
|
|
1287
1338
|
pointer-events: none;
|
|
1288
|
-
transition: all .18s ease-out .18s;
|
|
1339
|
+
transition: all 0.18s ease-out 0.18s;
|
|
1289
1340
|
transform: translate(-50%, 4px);
|
|
1290
|
-
transform-origin: top
|
|
1341
|
+
transform-origin: top;
|
|
1291
1342
|
}
|
|
1292
1343
|
|
|
1293
1344
|
.wl-user-wall .wl-user-item::before {
|
|
1294
|
-
content:
|
|
1345
|
+
content: '';
|
|
1295
1346
|
width: 0;
|
|
1296
1347
|
height: 0;
|
|
1297
1348
|
border: 5px solid rgba(0, 0, 0, 0);
|
|
1298
|
-
border-top-color: rgba(16, 16, 16, .95)
|
|
1349
|
+
border-top-color: rgba(16, 16, 16, 0.95);
|
|
1299
1350
|
}
|
|
1300
1351
|
|
|
1301
1352
|
.wl-user-wall .wl-user-item::after {
|
|
1302
1353
|
content: attr(aria-label);
|
|
1303
1354
|
margin-bottom: 10px;
|
|
1304
|
-
padding: .5em 1em;
|
|
1355
|
+
padding: 0.5em 1em;
|
|
1305
1356
|
border-radius: 2px;
|
|
1306
|
-
background: rgba(16, 16, 16, .95);
|
|
1357
|
+
background: rgba(16, 16, 16, 0.95);
|
|
1307
1358
|
color: #fff;
|
|
1308
1359
|
font-size: 12px;
|
|
1309
|
-
white-space: nowrap
|
|
1360
|
+
white-space: nowrap;
|
|
1310
1361
|
}
|
|
1311
1362
|
|
|
1312
1363
|
.wl-user-wall .wl-user-item:hover {
|
|
1313
|
-
transform: scale(1.1)
|
|
1364
|
+
transform: scale(1.1);
|
|
1314
1365
|
}
|
|
1315
1366
|
|
|
1316
|
-
.wl-user-wall .wl-user-item:hover::before,
|
|
1367
|
+
.wl-user-wall .wl-user-item:hover::before,
|
|
1368
|
+
.wl-user-wall .wl-user-item:hover::after {
|
|
1317
1369
|
opacity: 1;
|
|
1318
1370
|
pointer-events: none;
|
|
1319
|
-
transform: translate(-50%, 0)
|
|
1371
|
+
transform: translate(-50%, 0);
|
|
1320
1372
|
}
|
|
1321
1373
|
|
|
1322
1374
|
.wl-user-wall .wl-user-item img {
|
|
1323
1375
|
width: var(--waline-user-avatar-size, 48px);
|
|
1324
|
-
height: var(--waline-user-avatar-size, 48px)
|
|
1376
|
+
height: var(--waline-user-avatar-size, 48px);
|
|
1325
1377
|
}
|
|
1326
1378
|
}
|
|
1327
|
-
|