oxy-uni-ui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +13 -0
- package/attributes.json +1 -0
- package/components/common/AbortablePromise.ts +28 -0
- package/components/common/abstracts/_config.scss +7 -0
- package/components/common/abstracts/_function.scss +89 -0
- package/components/common/abstracts/_mixin.scss +385 -0
- package/components/common/abstracts/variable.scss +974 -0
- package/components/common/base64.ts +29 -0
- package/components/common/canvasHelper.ts +49 -0
- package/components/common/clickoutside.ts +25 -0
- package/components/common/event.ts +8 -0
- package/components/common/interceptor.ts +43 -0
- package/components/common/props.ts +51 -0
- package/components/common/util.ts +778 -0
- package/components/composables/index.ts +11 -0
- package/components/composables/useCell.ts +13 -0
- package/components/composables/useChildren.ts +113 -0
- package/components/composables/useCountDown.ts +138 -0
- package/components/composables/useLockScroll.ts +37 -0
- package/components/composables/useParent.ts +41 -0
- package/components/composables/usePopover.ts +176 -0
- package/components/composables/useQueue.ts +52 -0
- package/components/composables/useRaf.ts +37 -0
- package/components/composables/useTouch.ts +43 -0
- package/components/composables/useTranslate.ts +12 -0
- package/components/composables/useUpload.ts +364 -0
- package/components/oxy-action-sheet/index.scss +204 -0
- package/components/oxy-action-sheet/oxy-action-sheet.vue +155 -0
- package/components/oxy-action-sheet/types.ts +118 -0
- package/components/oxy-backtop/index.scss +25 -0
- package/components/oxy-backtop/oxy-backtop.vue +45 -0
- package/components/oxy-backtop/types.ts +37 -0
- package/components/oxy-badge/index.scss +63 -0
- package/components/oxy-badge/oxy-badge.vue +61 -0
- package/components/oxy-badge/types.ts +41 -0
- package/components/oxy-button/index.scss +336 -0
- package/components/oxy-button/oxy-button.vue +195 -0
- package/components/oxy-button/types.ts +133 -0
- package/components/oxy-calendar/index.scss +158 -0
- package/components/oxy-calendar/oxy-calendar.vue +451 -0
- package/components/oxy-calendar/types.ts +217 -0
- package/components/oxy-calendar-view/index.scss +0 -0
- package/components/oxy-calendar-view/month/index.scss +162 -0
- package/components/oxy-calendar-view/month/month.vue +389 -0
- package/components/oxy-calendar-view/month/types.ts +20 -0
- package/components/oxy-calendar-view/monthPanel/index.scss +89 -0
- package/components/oxy-calendar-view/monthPanel/month-panel.vue +374 -0
- package/components/oxy-calendar-view/monthPanel/types.ts +48 -0
- package/components/oxy-calendar-view/oxy-calendar-view.vue +111 -0
- package/components/oxy-calendar-view/types.ts +109 -0
- package/components/oxy-calendar-view/utils.ts +429 -0
- package/components/oxy-calendar-view/year/index.scss +153 -0
- package/components/oxy-calendar-view/year/types.ts +20 -0
- package/components/oxy-calendar-view/year/year.vue +202 -0
- package/components/oxy-calendar-view/yearPanel/index.scss +24 -0
- package/components/oxy-calendar-view/yearPanel/types.ts +38 -0
- package/components/oxy-calendar-view/yearPanel/year-panel.vue +135 -0
- package/components/oxy-card/index.scss +71 -0
- package/components/oxy-card/oxy-card.vue +37 -0
- package/components/oxy-card/types.ts +30 -0
- package/components/oxy-cell/index.scss +206 -0
- package/components/oxy-cell/oxy-cell.vue +140 -0
- package/components/oxy-cell/types.ts +111 -0
- package/components/oxy-cell-group/index.scss +56 -0
- package/components/oxy-cell-group/oxy-cell-group.vue +45 -0
- package/components/oxy-cell-group/types.ts +32 -0
- package/components/oxy-checkbox/index.scss +285 -0
- package/components/oxy-checkbox/oxy-checkbox.vue +177 -0
- package/components/oxy-checkbox/types.ts +68 -0
- package/components/oxy-checkbox-group/index.scss +20 -0
- package/components/oxy-checkbox-group/oxy-checkbox-group.vue +100 -0
- package/components/oxy-checkbox-group/types.ts +59 -0
- package/components/oxy-circle/index.scss +18 -0
- package/components/oxy-circle/oxy-circle.vue +296 -0
- package/components/oxy-circle/types.ts +54 -0
- package/components/oxy-col/index.scss +19 -0
- package/components/oxy-col/oxy-col.vue +49 -0
- package/components/oxy-col/types.ts +15 -0
- package/components/oxy-col-picker/index.scss +168 -0
- package/components/oxy-col-picker/oxy-col-picker.vue +498 -0
- package/components/oxy-col-picker/types.ts +166 -0
- package/components/oxy-collapse/index.scss +55 -0
- package/components/oxy-collapse/oxy-collapse.vue +151 -0
- package/components/oxy-collapse/types.ts +58 -0
- package/components/oxy-collapse-item/index.scss +90 -0
- package/components/oxy-collapse-item/oxy-collapse-item.vue +171 -0
- package/components/oxy-collapse-item/types.ts +48 -0
- package/components/oxy-config-provider/oxy-config-provider.vue +73 -0
- package/components/oxy-config-provider/types.ts +1052 -0
- package/components/oxy-count-down/index.scss +15 -0
- package/components/oxy-count-down/oxy-count-down.vue +60 -0
- package/components/oxy-count-down/types.ts +41 -0
- package/components/oxy-count-down/utils.ts +52 -0
- package/components/oxy-count-to/index.scss +7 -0
- package/components/oxy-count-to/oxy-count-to.vue +125 -0
- package/components/oxy-count-to/types.ts +117 -0
- package/components/oxy-curtain/index.scss +85 -0
- package/components/oxy-curtain/oxy-curtain.vue +172 -0
- package/components/oxy-curtain/types.ts +73 -0
- package/components/oxy-datetime-picker/index.scss +164 -0
- package/components/oxy-datetime-picker/oxy-datetime-picker.vue +801 -0
- package/components/oxy-datetime-picker/types.ts +231 -0
- package/components/oxy-datetime-picker-view/oxy-datetime-picker-view.vue +499 -0
- package/components/oxy-datetime-picker-view/types.ts +120 -0
- package/components/oxy-datetime-picker-view/util.ts +30 -0
- package/components/oxy-design-uni/oxy-design-uni.vue +5 -0
- package/components/oxy-divider/index.scss +100 -0
- package/components/oxy-divider/oxy-divider.vue +52 -0
- package/components/oxy-divider/types.ts +35 -0
- package/components/oxy-drop-menu/index.scss +86 -0
- package/components/oxy-drop-menu/oxy-drop-menu.vue +166 -0
- package/components/oxy-drop-menu/types.ts +38 -0
- package/components/oxy-drop-menu-item/index.scss +66 -0
- package/components/oxy-drop-menu-item/oxy-drop-menu-item.vue +221 -0
- package/components/oxy-drop-menu-item/types.ts +94 -0
- package/components/oxy-fab/index.scss +116 -0
- package/components/oxy-fab/oxy-fab.vue +276 -0
- package/components/oxy-fab/types.ts +66 -0
- package/components/oxy-floating-panel/index.scss +64 -0
- package/components/oxy-floating-panel/oxy-floating-panel.vue +140 -0
- package/components/oxy-floating-panel/type.ts +32 -0
- package/components/oxy-form/oxy-form.vue +207 -0
- package/components/oxy-form/types.ts +76 -0
- package/components/oxy-form-item/index.scss +18 -0
- package/components/oxy-form-item/oxy-form-item.vue +56 -0
- package/components/oxy-form-item/types.ts +16 -0
- package/components/oxy-gap/index.scss +9 -0
- package/components/oxy-gap/oxy-gap.vue +36 -0
- package/components/oxy-gap/types.ts +17 -0
- package/components/oxy-grid/index.scss +9 -0
- package/components/oxy-grid/oxy-grid.vue +106 -0
- package/components/oxy-grid/types.ts +50 -0
- package/components/oxy-grid-item/index.scss +148 -0
- package/components/oxy-grid-item/oxy-grid-item.vue +176 -0
- package/components/oxy-grid-item/types.ts +77 -0
- package/components/oxy-icon/index.scss +1230 -0
- package/components/oxy-icon/oxy-icon.vue +53 -0
- package/components/oxy-icon/oxy-icons.ttf +0 -0
- package/components/oxy-icon/types.ts +21 -0
- package/components/oxy-img/index.scss +19 -0
- package/components/oxy-img/oxy-img.vue +81 -0
- package/components/oxy-img/types.ts +61 -0
- package/components/oxy-img-cropper/index.scss +231 -0
- package/components/oxy-img-cropper/oxy-img-cropper.vue +664 -0
- package/components/oxy-img-cropper/types.ts +76 -0
- package/components/oxy-index-anchor/index.scss +35 -0
- package/components/oxy-index-anchor/oxy-index-anchor.vue +55 -0
- package/components/oxy-index-anchor/type.ts +9 -0
- package/components/oxy-index-bar/index.scss +39 -0
- package/components/oxy-index-bar/oxy-index-bar.vue +156 -0
- package/components/oxy-index-bar/type.ts +23 -0
- package/components/oxy-input/index.scss +323 -0
- package/components/oxy-input/oxy-input.vue +300 -0
- package/components/oxy-input/placeholder.scss +21 -0
- package/components/oxy-input/types.ts +189 -0
- package/components/oxy-input-number/index.scss +132 -0
- package/components/oxy-input-number/oxy-input-number.vue +464 -0
- package/components/oxy-input-number/types.ts +101 -0
- package/components/oxy-keyboard/constants.ts +81 -0
- package/components/oxy-keyboard/index.scss +102 -0
- package/components/oxy-keyboard/key/index.scss +79 -0
- package/components/oxy-keyboard/key/index.vue +76 -0
- package/components/oxy-keyboard/key/types.ts +11 -0
- package/components/oxy-keyboard/oxy-keyboard.vue +206 -0
- package/components/oxy-keyboard/types.ts +92 -0
- package/components/oxy-loading/index.scss +37 -0
- package/components/oxy-loading/oxy-loading.vue +90 -0
- package/components/oxy-loading/types.ts +22 -0
- package/components/oxy-loadmore/index.scss +39 -0
- package/components/oxy-loadmore/oxy-loadmore.vue +59 -0
- package/components/oxy-loadmore/types.ts +30 -0
- package/components/oxy-message-box/index.scss +108 -0
- package/components/oxy-message-box/index.ts +87 -0
- package/components/oxy-message-box/oxy-message-box.vue +291 -0
- package/components/oxy-message-box/types.ts +132 -0
- package/components/oxy-navbar/index.scss +93 -0
- package/components/oxy-navbar/oxy-navbar.vue +111 -0
- package/components/oxy-navbar/types.ts +52 -0
- package/components/oxy-navbar-capsule/index.scss +66 -0
- package/components/oxy-navbar-capsule/oxy-navbar-capsule.vue +35 -0
- package/components/oxy-navbar-capsule/types.ts +8 -0
- package/components/oxy-notice-bar/index.scss +68 -0
- package/components/oxy-notice-bar/oxy-notice-bar.vue +266 -0
- package/components/oxy-notice-bar/types.ts +67 -0
- package/components/oxy-notify/index.scss +34 -0
- package/components/oxy-notify/index.ts +61 -0
- package/components/oxy-notify/oxy-notify.vue +85 -0
- package/components/oxy-notify/types.ts +66 -0
- package/components/oxy-number-keyboard/index.scss +78 -0
- package/components/oxy-number-keyboard/key/index.scss +81 -0
- package/components/oxy-number-keyboard/key/index.vue +78 -0
- package/components/oxy-number-keyboard/key/types.ts +11 -0
- package/components/oxy-number-keyboard/oxy-number-keyboard.vue +151 -0
- package/components/oxy-number-keyboard/types.ts +83 -0
- package/components/oxy-overlay/index.scss +17 -0
- package/components/oxy-overlay/oxy-overlay.vue +47 -0
- package/components/oxy-overlay/types.ts +25 -0
- package/components/oxy-pagination/index.scss +57 -0
- package/components/oxy-pagination/oxy-pagination.vue +110 -0
- package/components/oxy-pagination/types.ts +41 -0
- package/components/oxy-password-input/index.scss +124 -0
- package/components/oxy-password-input/oxy-password-input.vue +49 -0
- package/components/oxy-password-input/types.ts +33 -0
- package/components/oxy-picker/index.scss +110 -0
- package/components/oxy-picker/oxy-picker.vue +412 -0
- package/components/oxy-picker/types.ts +189 -0
- package/components/oxy-picker-view/index.scss +92 -0
- package/components/oxy-picker-view/oxy-picker-view.vue +369 -0
- package/components/oxy-picker-view/types.ts +152 -0
- package/components/oxy-popover/index.scss +116 -0
- package/components/oxy-popover/oxy-popover.vue +180 -0
- package/components/oxy-popover/types.ts +69 -0
- package/components/oxy-popup/index.scss +84 -0
- package/components/oxy-popup/oxy-popup.vue +169 -0
- package/components/oxy-popup/types.ts +95 -0
- package/components/oxy-progress/index.scss +68 -0
- package/components/oxy-progress/oxy-progress.vue +197 -0
- package/components/oxy-progress/types.ts +35 -0
- package/components/oxy-radio/index.scss +301 -0
- package/components/oxy-radio/oxy-radio.vue +118 -0
- package/components/oxy-radio/types.ts +42 -0
- package/components/oxy-radio-group/index.scss +23 -0
- package/components/oxy-radio-group/oxy-radio-group.vue +51 -0
- package/components/oxy-radio-group/types.ts +39 -0
- package/components/oxy-rate/index.scss +25 -0
- package/components/oxy-rate/oxy-rate.vue +178 -0
- package/components/oxy-rate/types.ts +103 -0
- package/components/oxy-resize/index.scss +27 -0
- package/components/oxy-resize/oxy-resize.vue +144 -0
- package/components/oxy-resize/types.ts +6 -0
- package/components/oxy-root-portal/oxy-root-portal.vue +50 -0
- package/components/oxy-row/index.scss +10 -0
- package/components/oxy-row/oxy-row.vue +42 -0
- package/components/oxy-row/types.ts +16 -0
- package/components/oxy-search/index.scss +148 -0
- package/components/oxy-search/oxy-search.vue +187 -0
- package/components/oxy-search/types.ts +93 -0
- package/components/oxy-segmented/index.scss +101 -0
- package/components/oxy-segmented/oxy-segmented.vue +143 -0
- package/components/oxy-segmented/types.ts +71 -0
- package/components/oxy-select-picker/index.scss +102 -0
- package/components/oxy-select-picker/oxy-select-picker.vue +432 -0
- package/components/oxy-select-picker/types.ts +123 -0
- package/components/oxy-sidebar/index.scss +25 -0
- package/components/oxy-sidebar/oxy-sidebar.vue +63 -0
- package/components/oxy-sidebar/types.ts +38 -0
- package/components/oxy-sidebar-item/index.scss +97 -0
- package/components/oxy-sidebar-item/oxy-sidebar-item.vue +116 -0
- package/components/oxy-sidebar-item/types.ts +31 -0
- package/components/oxy-signature/index.scss +31 -0
- package/components/oxy-signature/oxy-signature.vue +630 -0
- package/components/oxy-signature/types.ts +108 -0
- package/components/oxy-skeleton/index.scss +96 -0
- package/components/oxy-skeleton/index.ts +1 -0
- package/components/oxy-skeleton/oxy-skeleton.vue +110 -0
- package/components/oxy-skeleton/types.ts +69 -0
- package/components/oxy-slider/index.scss +98 -0
- package/components/oxy-slider/oxy-slider.vue +356 -0
- package/components/oxy-slider/types.ts +138 -0
- package/components/oxy-sort-button/index.scss +89 -0
- package/components/oxy-sort-button/oxy-sort-button.vue +69 -0
- package/components/oxy-sort-button/types.ts +43 -0
- package/components/oxy-status-tip/images/collect.png +0 -0
- package/components/oxy-status-tip/images/content.png +0 -0
- package/components/oxy-status-tip/images/network.png +0 -0
- package/components/oxy-status-tip/images/search.png +0 -0
- package/components/oxy-status-tip/index.scss +37 -0
- package/components/oxy-status-tip/oxy-status-tip.vue +71 -0
- package/components/oxy-status-tip/types.ts +50 -0
- package/components/oxy-step/index.scss +235 -0
- package/components/oxy-step/oxy-step.vue +150 -0
- package/components/oxy-step/types.ts +33 -0
- package/components/oxy-steps/index.scss +10 -0
- package/components/oxy-steps/oxy-steps.vue +28 -0
- package/components/oxy-steps/types.ts +50 -0
- package/components/oxy-sticky/index.scss +9 -0
- package/components/oxy-sticky/oxy-sticky.vue +190 -0
- package/components/oxy-sticky/types.ts +13 -0
- package/components/oxy-sticky-box/index.scss +6 -0
- package/components/oxy-sticky-box/oxy-sticky-box.vue +155 -0
- package/components/oxy-sticky-box/types.ts +11 -0
- package/components/oxy-swipe-action/index.scss +22 -0
- package/components/oxy-swipe-action/oxy-swipe-action.vue +294 -0
- package/components/oxy-swipe-action/types.ts +40 -0
- package/components/oxy-swiper/index.scss +53 -0
- package/components/oxy-swiper/oxy-swiper.vue +318 -0
- package/components/oxy-swiper/types.ts +264 -0
- package/components/oxy-swiper-nav/index.scss +159 -0
- package/components/oxy-swiper-nav/oxy-swiper-nav.vue +37 -0
- package/components/oxy-swiper-nav/types.ts +42 -0
- package/components/oxy-switch/index.scss +58 -0
- package/components/oxy-switch/oxy-switch.vue +83 -0
- package/components/oxy-switch/types.ts +58 -0
- package/components/oxy-tab/index.scss +16 -0
- package/components/oxy-tab/oxy-tab.vue +88 -0
- package/components/oxy-tab/types.ts +30 -0
- package/components/oxy-tabbar/index.scss +62 -0
- package/components/oxy-tabbar/oxy-tabbar.vue +91 -0
- package/components/oxy-tabbar/types.ts +73 -0
- package/components/oxy-tabbar-item/index.scss +55 -0
- package/components/oxy-tabbar-item/oxy-tabbar-item.vue +99 -0
- package/components/oxy-tabbar-item/types.ts +51 -0
- package/components/oxy-table/index.scss +163 -0
- package/components/oxy-table/oxy-table.vue +283 -0
- package/components/oxy-table/types.ts +58 -0
- package/components/oxy-table-col/index.scss +46 -0
- package/components/oxy-table-col/oxy-table-col.vue +149 -0
- package/components/oxy-table-col/types.ts +54 -0
- package/components/oxy-tabs/index.scss +299 -0
- package/components/oxy-tabs/oxy-tabs.vue +443 -0
- package/components/oxy-tabs/types.ts +107 -0
- package/components/oxy-tag/index.scss +115 -0
- package/components/oxy-tag/oxy-tag.vue +148 -0
- package/components/oxy-tag/types.ts +81 -0
- package/components/oxy-text/index.scss +37 -0
- package/components/oxy-text/oxy-text.vue +139 -0
- package/components/oxy-text/types.ts +98 -0
- package/components/oxy-textarea/index.scss +340 -0
- package/components/oxy-textarea/oxy-textarea.vue +296 -0
- package/components/oxy-textarea/placeholder.scss +20 -0
- package/components/oxy-textarea/types.ts +288 -0
- package/components/oxy-toast/index.scss +75 -0
- package/components/oxy-toast/index.ts +92 -0
- package/components/oxy-toast/oxy-toast.vue +198 -0
- package/components/oxy-toast/types.ts +181 -0
- package/components/oxy-tooltip/index.scss +66 -0
- package/components/oxy-tooltip/oxy-tooltip.vue +141 -0
- package/components/oxy-tooltip/types.ts +107 -0
- package/components/oxy-transition/index.scss +95 -0
- package/components/oxy-transition/oxy-transition.vue +232 -0
- package/components/oxy-transition/types.ts +98 -0
- package/components/oxy-upload/index.scss +175 -0
- package/components/oxy-upload/oxy-upload.vue +673 -0
- package/components/oxy-upload/types.ts +391 -0
- package/components/oxy-video-preview/index.scss +34 -0
- package/components/oxy-video-preview/oxy-video-preview.vue +72 -0
- package/components/oxy-video-preview/types.ts +23 -0
- package/components/oxy-watermark/index.scss +18 -0
- package/components/oxy-watermark/oxy-watermark.vue +486 -0
- package/components/oxy-watermark/types.ts +76 -0
- package/dayjs/constant.js +26 -0
- package/dayjs/index.d.ts +430 -0
- package/dayjs/index.js +542 -0
- package/dayjs/locale/en.js +13 -0
- package/dayjs/utils.js +59 -0
- package/global.d.ts +101 -0
- package/index.ts +12 -0
- package/locale/index.ts +32 -0
- package/locale/lang/ar-SA.ts +133 -0
- package/locale/lang/en-US.ts +133 -0
- package/locale/lang/zh-CN.ts +137 -0
- package/package.json +1 -0
- package/tags.json +1 -0
- package/web-types.json +1 -0
|
@@ -0,0 +1,974 @@
|
|
|
1
|
+
@import './function';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* UI规范基础变量
|
|
5
|
+
*/
|
|
6
|
+
/*----------------------------------------- Theme color. start ----------------------------------------*/
|
|
7
|
+
/* 主题颜色 */
|
|
8
|
+
$-color-theme: var(--oxy-color-theme, $default-theme) !default; // 主题色
|
|
9
|
+
$-color-white: var(--oxy-color-white, rgb(255, 255, 255)) !default; // 用于mix的白色
|
|
10
|
+
$-color-black: var(--oxy-color-black, rgb(0, 0, 0)) !default; // 用于mix的黑色
|
|
11
|
+
|
|
12
|
+
/* 辅助色 */
|
|
13
|
+
$-color-success: var(--oxy-color-success, #34d19d) !default; // 成功色
|
|
14
|
+
$-color-warning: var(--oxy-color-warning, #f0883a) !default; // 警告色
|
|
15
|
+
$-color-danger: var(--oxy-color-danger, #fa4350) !default; // 危险出错色
|
|
16
|
+
$-color-purple: var(--oxy-color-purple, #8268de) !default; // 紫色
|
|
17
|
+
$-color-yellow: var(--oxy-color-yellow, #f0cd1d) !default; // 黄色
|
|
18
|
+
$-color-blue: var(--oxy-color-blue, #2bb3ed) !default; // 蓝色
|
|
19
|
+
$-color-info: var(--oxy-color-info, #909399) !default;
|
|
20
|
+
|
|
21
|
+
$-color-gray-1: var(--oxy-color-gray-1, #f7f8fa) !default;
|
|
22
|
+
$-color-gray-2: var(--oxy-color-gray-2, #f2f3f5) !default;
|
|
23
|
+
$-color-gray-3: var(--oxy-color-gray-3, #ebedf0) !default;
|
|
24
|
+
$-color-gray-4: var(--oxy-color-gray-4, #dcdee0) !default;
|
|
25
|
+
$-color-gray-5: var(--oxy-color-gray-5, #c8c9cc) !default;
|
|
26
|
+
$-color-gray-6: var(--oxy-color-gray-6, #969799) !default;
|
|
27
|
+
$-color-gray-7: var(--oxy-color-gray-7, #646566) !default;
|
|
28
|
+
$-color-gray-8: var(--oxy-color-gray-8, #323233) !default;
|
|
29
|
+
|
|
30
|
+
$-font-gray-1: var(--oxy-font-gray-1, rgba(0, 0, 0, 0.9));
|
|
31
|
+
$-font-gray-2: var(--oxy-font-gray-2, rgba(0, 0, 0, 0.6));
|
|
32
|
+
$-font-gray-3: var(--oxy-font-gray-3, rgba(0, 0, 0, 0.4));
|
|
33
|
+
$-font-gray-4: var(--oxy-font-gray-4, rgba(0, 0, 0, 0.26));
|
|
34
|
+
|
|
35
|
+
$-font-white-1: var(--oxy-font-white-1, rgba(255, 255, 255, 1));
|
|
36
|
+
$-font-white-2: var(--oxy-font-white-2, rgba(255, 255, 255, 0.55));
|
|
37
|
+
$-font-white-3: var(--oxy-font-white-3, rgba(255, 255, 255, 0.35));
|
|
38
|
+
$-font-white-4: var(--oxy-font-white-4, rgba(255, 255, 255, 0.22));
|
|
39
|
+
|
|
40
|
+
/* 文字颜色(默认浅色背景下 */
|
|
41
|
+
$-color-title: var(--oxy-color-title, $-color-black) !default; // 模块标题/重要正文 000
|
|
42
|
+
$-color-content: var(--oxy-color-content, #262626) !default; // 普通正文 262626
|
|
43
|
+
$-color-secondary: var(--oxy-color-secondary, #595959) !default; // 次要信息,注释/补充/正文 595959
|
|
44
|
+
$-color-aid: var(--oxy-color-aid, #8c8c8c) !default; // 辅助文字字号,弱化信息,引导性/不可点文字 8c8c8c
|
|
45
|
+
$-color-tip: var(--oxy-color-tip, #bfbfbf) !default; // 失效、默认提示文字 bfbfbf
|
|
46
|
+
$-color-border: var(--oxy-color-border, #d9d9d9) !default; // 控件边框线 d9d9d9
|
|
47
|
+
$-color-border-light: var(--oxy-color-border-light, #e8e8e8) !default; // 分割线颜色 e8e8e8
|
|
48
|
+
$-color-bg: var(--oxy-color-bg, #f5f5f5) !default; // 背景色、禁用填充色 f5f5f5
|
|
49
|
+
|
|
50
|
+
/* 暗黑模式 */
|
|
51
|
+
$-dark-background: var(--oxy-dark-background, #131313) !default;
|
|
52
|
+
$-dark-background2: var(--oxy-dark-background2, #1b1b1b) !default;
|
|
53
|
+
$-dark-background3: var(--oxy-dark-background3, #141414) !default;
|
|
54
|
+
$-dark-background4: var(--oxy-dark-background4, #323233) !default;
|
|
55
|
+
$-dark-background5: var(--oxy-dark-background5, #646566) !default;
|
|
56
|
+
$-dark-background6: var(--oxy-dark-background6, #380e08) !default;
|
|
57
|
+
$-dark-background7: var(--oxy-dark-background7, #707070) !default;
|
|
58
|
+
$-dark-color: var(--oxy-dark-color, $-color-white) !default;
|
|
59
|
+
$-dark-color2: var(--oxy-dark-color2, #f2270c) !default;
|
|
60
|
+
$-dark-color3: var(--oxy-dark-color3, rgba(232, 230, 227, 0.8)) !default;
|
|
61
|
+
$-dark-color-gray: var(--oxy-dark-color-gray, $-color-secondary) !default;
|
|
62
|
+
$-dark-border-color: var(--oxy-dark-border-color, #3a3a3c) !default;
|
|
63
|
+
|
|
64
|
+
/* 图形颜色 */
|
|
65
|
+
$-color-icon: var(--oxy-color-icon, #d9d9d9) !default; // icon颜色
|
|
66
|
+
$-color-icon-active: var(--oxy-color-icon-active, #eee) !default; // icon颜色hover
|
|
67
|
+
$-color-icon-disabled: var(--oxy-color-icon-disabled, #a7a7a7) !default; // icon颜色disabled
|
|
68
|
+
|
|
69
|
+
/*----------------------------------------- Theme color. end -------------------------------------------*/
|
|
70
|
+
|
|
71
|
+
/*-------------------------------- Theme color application size. start --------------------------------*/
|
|
72
|
+
|
|
73
|
+
/* 文字字号 */
|
|
74
|
+
$-fs-big: var(--oxy-fs-big, 24px) !default; // 大型标题
|
|
75
|
+
$-fs-important: var(--oxy-fs-important, 19px) !default; // 重要数据
|
|
76
|
+
$-fs-title: var(--oxy-fs-title, 16px) !default; // 标题字号/重要正文字号
|
|
77
|
+
$-fs-content: var(--oxy-fs-content, 14px) !default; // 普通正文
|
|
78
|
+
$-fs-secondary: var(--oxy-fs-secondary, 12px) !default; // 次要信息,注释/补充/正文
|
|
79
|
+
$-fs-aid: var(--oxy-fs-aid, 10px) !default; // 辅助文字字号,弱化信息,引导性/不可点文字
|
|
80
|
+
|
|
81
|
+
/* 文字字重 */
|
|
82
|
+
$-fw-medium: var(--oxy-fw-medium, 500) !default; // PingFangSC-Medium
|
|
83
|
+
$-fw-semibold: var(--oxy-fw-semibold, 600) !default; // PingFangSC-Semibold
|
|
84
|
+
|
|
85
|
+
/* 尺寸 */
|
|
86
|
+
$-size-side-padding: var(--oxy-size-side-padding, 15px) !default; // 屏幕两边留白
|
|
87
|
+
$-size-side-padding-small: var(--oxy-size-side-padding-small, 6px) !default; // 屏幕两边留白小值
|
|
88
|
+
|
|
89
|
+
/*-------------------------------- Theme color application size. end --------------------------------*/
|
|
90
|
+
|
|
91
|
+
/* component var */
|
|
92
|
+
|
|
93
|
+
/* action-sheet */
|
|
94
|
+
$-action-sheet-weight: var(--oxy-action-sheet-weight, 500) !default; // 面板字重
|
|
95
|
+
$-action-sheet-radius: var(--oxy-action-sheet-radius, 16px) !default; // 面板圆角大小
|
|
96
|
+
$-action-sheet-loading-size: var(--oxy-action-sheet-loading-size, 20px) !default; // loading动画尺寸
|
|
97
|
+
$-action-sheet-action-height: var(--oxy-action-sheet-action-height, 48px) !default; // 单条菜单高度
|
|
98
|
+
$-action-sheet-color: var(--oxy-action-sheet-color, rgba(0, 0, 0, 0.85)) !default; // 选项名称颜色
|
|
99
|
+
$-action-sheet-fs: var(--oxy-action-sheet-fs, $-fs-title) !default; // 选项名称字号
|
|
100
|
+
$-action-sheet-active-color: var(--oxy-action-sheet-active-color, $-color-bg) !default; // 点击高亮颜色
|
|
101
|
+
$-action-sheet-subname-fs: var(--oxy-action-sheet-subname-fs, $-fs-secondary) !default; // 描述信息字号
|
|
102
|
+
$-action-sheet-subname-color: var(--oxy-action-sheet-subname-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息颜色
|
|
103
|
+
$-action-sheet-disabled-color: var(--oxy-action-sheet-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
|
|
104
|
+
$-action-sheet-bg: var(--oxy-action-sheet-bg, $-color-white) !default; // 菜单容器颜色(取消按钮上方的颜色)
|
|
105
|
+
$-action-sheet-title-height: var(--oxy-action-sheet-title-height, 64px) !default; // 标题高度
|
|
106
|
+
$-action-sheet-title-fs: var(--oxy-action-sheet-title-fs, $-fs-title) !default; // 标题字号
|
|
107
|
+
$-action-sheet-close-fs: var(--oxy-action-sheet-close-fs, $-fs-title) !default; // 关闭按钮大小
|
|
108
|
+
$-action-sheet-close-color: var(--oxy-action-sheet-close-color, rgba(0, 0, 0, 0.65)) !default; // 关闭按钮颜色
|
|
109
|
+
$-action-sheet-close-top: var(--oxy-action-sheet-close-top, 25px) !default; // 关闭按钮距离标题顶部距离
|
|
110
|
+
$-action-sheet-close-right: var(--oxy-action-sheet-close-right, 15px) !default; // 关闭按钮距离标题右侧距离
|
|
111
|
+
$-action-sheet-cancel-color: var(--oxy-action-sheet-cancel-color, #131415) !default; // 取消按钮颜色
|
|
112
|
+
$-action-sheet-cancel-height: var(--oxy-action-sheet-cancel-height, 44px) !default; // 取消按钮高度
|
|
113
|
+
$-action-sheet-cancel-bg: var(--oxy-action-sheet-cancel-bg, rgba(240, 240, 240, 1)) !default; // 取消按钮背景色
|
|
114
|
+
$-action-sheet-cancel-radius: var(--oxy-action-sheet-cancel-radius, 22px) !default; // 取消按钮圆角大小
|
|
115
|
+
$-action-sheet-panel-padding: var(--oxy-action-sheet-panel-padding, 12px 0 11px) !default; // 自定义面板内边距大小
|
|
116
|
+
$-action-sheet-panel-img-fs: var(--oxy-action-sheet-panel-img-fs, 40px) !default; // 自定义面板图片大小
|
|
117
|
+
$-action-sheet-panel-img-radius: var(--oxy-action-sheet-panel-img-radius, 4px) !default; // 自定义面板图片圆角大小
|
|
118
|
+
|
|
119
|
+
/* badge */
|
|
120
|
+
$-badge-bg: var(--oxy-badge-bg, $-color-danger) !default; // 背景填充颜色
|
|
121
|
+
$-badge-color: var(--oxy-badge-color, #fff) !default; // 文字颜色
|
|
122
|
+
$-badge-fs: var(--oxy-badge-fs, 12px) !default; // 文字字号
|
|
123
|
+
$-badge-padding: var(--oxy-badge-padding, 0 5px) !default; // padding
|
|
124
|
+
$-badge-height: var(--oxy-badge-height, 16px) !default; // 高度
|
|
125
|
+
$-badge-primary: var(--oxy-badge-primary, $-color-theme) !default;
|
|
126
|
+
$-badge-success: var(--oxy-badge-success, $-color-success) !default;
|
|
127
|
+
$-badge-warning: var(--oxy-badge-warning, $-color-warning) !default;
|
|
128
|
+
$-badge-danger: var(--oxy-badge-danger, $-color-danger) !default;
|
|
129
|
+
$-badge-info: var(--oxy-badge-info, $-color-info) !default;
|
|
130
|
+
$-badge-dot-size: var(--oxy-badge-dot-size, 6px) !default; // dot 类型大小
|
|
131
|
+
$-badge-border: var(--oxy-badge-border, 2px solid $-badge-color) !default; // 边框样式
|
|
132
|
+
|
|
133
|
+
/* button */
|
|
134
|
+
$-button-disabled-opacity: var(--oxy-button-disabled-opacity, 0.6) !default; // button禁用透明度
|
|
135
|
+
$-button-small-height: var(--oxy-button-small-height, 28px) !default; // 小型按钮高度
|
|
136
|
+
$-button-small-padding: var(--oxy-button-small-padding, 0 12px) !default; // 小型按钮padding
|
|
137
|
+
$-button-small-fs: var(--oxy-button-small-fs, $-fs-secondary) !default; // 小型按钮字号
|
|
138
|
+
$-button-small-radius: var(--oxy-button-small-radius, 2px) !default; // 小型按钮圆角大小
|
|
139
|
+
$-button-small-loading: var(--oxy-button-small-loading, 14px) !default; // 小型按钮loading图标大小
|
|
140
|
+
$-button-medium-height: var(--oxy-button-medium-height, 36px) !default; // 中型按钮高度
|
|
141
|
+
$-button-medium-padding: var(--oxy-button-medium-padding, 0 16px) !default; // 中型按钮padding
|
|
142
|
+
$-button-medium-fs: var(--oxy-button-medium-fs, $-fs-content) !default; // 中型按钮字号
|
|
143
|
+
$-button-medium-radius: var(--oxy-button-medium-radius, 4px) !default; // 中型按钮圆角大小
|
|
144
|
+
$-button-medium-loading: var(--oxy-button-medium-loading, 18px) !default; // 中型按钮loading图标大小
|
|
145
|
+
$-button-medium-box-shadow-size: var(--oxy-button-medium-box-shadow-size, 0px 2px 4px 0px) !default; // 中尺寸阴影尺寸
|
|
146
|
+
$-button-large-height: var(--oxy-button-large-height, 44px) !default; // 大型按钮高度
|
|
147
|
+
$-button-large-padding: var(--oxy-button-large-padding, 0 36px) !default; // 大型按钮padding
|
|
148
|
+
$-button-large-fs: var(--oxy-button-large-fs, $-fs-title) !default; // 大型按钮字号
|
|
149
|
+
$-button-large-radius: var(--oxy-button-large-radius, 8px) !default; // 大型按钮圆角大小
|
|
150
|
+
$-button-large-loading: var(--oxy-button-large-loading, 24px) !default; // 大小按钮loading图标大小
|
|
151
|
+
$-button-large-box-shadow-size: var(--oxy-button-large-box-shadow-size, 0px 4px 8px 0px) !default; // 大尺寸阴影尺寸
|
|
152
|
+
$-button-icon-fs: var(--oxy-button-icon-fs, 18px) !default; // 带图标的按钮的图标大小
|
|
153
|
+
$-button-icon-size: var(--oxy-button-icon-size, 40px) !default; // icon 类型按钮尺寸
|
|
154
|
+
$-button-icon-color: var(--oxy-button-icon-color, rgba(0, 0, 0, 0.65)) !default; // icon 类型按钮颜色
|
|
155
|
+
$-button-icon-disabled-color: var(--oxy-button-icon-disabled-color, $-color-icon-disabled) !default; // icon 类型按钮禁用颜色
|
|
156
|
+
$-button-normal-color: var(--oxy-button-normal-color, $-color-title) !default; // 文字颜色
|
|
157
|
+
$-button-normal-disabled-color: var(--oxy-button-normal-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 默认按钮禁用文字色
|
|
158
|
+
$-button-plain-bg-color: var(--oxy-button-plain-bg-color, $-color-white) !default; // 幽灵按钮背景色
|
|
159
|
+
$-button-primary-color: var(--oxy-button-primary-color, $-color-white) !default; // 主要按钮颜色
|
|
160
|
+
$-button-primary-bg-color: var(--oxy-button-primary-bg-color, $-color-theme) !default; // 主要按钮背景颜色
|
|
161
|
+
$-button-success-color: var(--oxy-button-success-color, $-color-white) !default; // 成功按钮文字颜色
|
|
162
|
+
$-button-success-bg-color: var(--oxy-button-success-bg-color, $-color-success) !default; // 成功按钮颜色
|
|
163
|
+
$-button-info-color: var(--oxy-button-info-color, $-color-title) !default; // 信息按钮颜色
|
|
164
|
+
$-button-info-bg-color: var(--oxy-button-info-bg-color, #f0f0f0) !default; // 信息按钮背景颜色
|
|
165
|
+
$-button-info-plain-border-color: var(--oxy-button-info-plain-border-color, rgba(0, 0, 0, 0.45)) !default; // 信息按钮禁用颜色
|
|
166
|
+
$-button-info-plain-normal-color: var(--oxy-button-info-plain-normal-color, rgba(0, 0, 0, 0.85)) !default; // 信息幽灵按钮默认颜色
|
|
167
|
+
$-button-warning-color: var(--oxy-button-warning-color, $-color-white) !default; // 警告按钮字体颜色
|
|
168
|
+
$-button-warning-bg-color: var(--oxy-button-warning-bg-color, $-color-warning) !default; // 警告按钮背景颜色
|
|
169
|
+
$-button-error-color: var(--oxy-button-error-color, $-color-white) !default; // 错误按钮颜色
|
|
170
|
+
$-button-error-bg-color: var(--oxy-button-error-bg-color, $-color-danger) !default; // 错误按钮背景颜色
|
|
171
|
+
$-button-text-hover-opacity: var(--oxy-button-text-hover-opacity, 0.7) !default; // 文字button激活时透明度
|
|
172
|
+
|
|
173
|
+
/* cell */
|
|
174
|
+
$-cell-padding: var(--oxy-cell-padding, $-size-side-padding) !default; // cell 左右padding距离
|
|
175
|
+
$-cell-line-height: var(--oxy-cell-line-height, 24px) !default; // 行高
|
|
176
|
+
|
|
177
|
+
$-cell-group-title-fs: var(--oxy-cell-group-title-fs, $-fs-title) !default; // 组标题字号
|
|
178
|
+
$-cell-group-padding: var(--oxy-cell-group-padding, 13px $-cell-padding) !default; // 组padding
|
|
179
|
+
$-cell-group-title-color: var(--oxy-cell-group-title-color, rgba(0, 0, 0, 0.85)) !default; // 组标题文字颜色
|
|
180
|
+
$-cell-group-value-fs: var(--oxy-cell-group-value-fs, $-fs-content) !default; // 组值字号
|
|
181
|
+
$-cell-group-value-color: var(--oxy-cell-group-value-color, $-color-content) !default; // 组值文字颜色
|
|
182
|
+
|
|
183
|
+
$-cell-wrapper-padding: var(--oxy-cell-wrapper-padding, 10px) !default; // cell 容器padding
|
|
184
|
+
$-cell-wrapper-padding-large: var(--oxy-cell-wrapper-padding-large, 12px) !default; // large类型cell容器padding
|
|
185
|
+
|
|
186
|
+
$-cell-wrapper-padding-with-label: var(--oxy-cell-wrapper-padding-with-label, 16px) !default; // cell 容器上下padding(有label情况下)
|
|
187
|
+
$-cell-icon-right: var(--oxy-cell-icon-right, 4px) !default; // 图标距离右边缘
|
|
188
|
+
$-cell-icon-size: var(--oxy-cell-icon-size, 16px) !default; // 图标大小
|
|
189
|
+
$-cell-title-fs: var(--oxy-cell-title-fs, 14px) !default; // 标题字号
|
|
190
|
+
$-cell-title-color: var(--oxy-cell-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题文字颜色
|
|
191
|
+
$-cell-label-fs: var(--oxy-cell-label-fs, 12px) !default; // 描述信息字号
|
|
192
|
+
$-cell-label-color: var(--oxy-cell-label-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息文字颜色
|
|
193
|
+
$-cell-value-fs: var(--oxy-cell-value-fs, 14px) !default; // 右侧内容字号
|
|
194
|
+
$-cell-value-fs-large: var(--oxy-cell-value-fs-large, 16px) !default; // 大尺寸右侧内容字号
|
|
195
|
+
$-cell-value-color: var(--oxy-cell-value-color, rgba(0, 0, 0, 0.85)) !default; // 右侧内容文字颜色
|
|
196
|
+
$-cell-arrow-size: var(--oxy-cell-arrow-size, 18px) !default; // 右箭头大小
|
|
197
|
+
$-cell-arrow-color: var(--oxy-cell-arrow-color, rgba(0, 0, 0, 0.25)) !default; // 右箭头颜色
|
|
198
|
+
$-cell-clear-color: var(--oxy-cell-clear-color, #585858) !default; // 清空按钮颜色
|
|
199
|
+
$-cell-tap-bg: var(--oxy-cell-tap-bg, rgba(0, 0, 0, 0.06)) !default; // 点击态背景色
|
|
200
|
+
|
|
201
|
+
$-cell-title-fs-large: var(--oxy-cell-title-fs-large, 16px) !default; // 大尺寸标题字号
|
|
202
|
+
$-cell-label-fs-large: var(--oxy-cell-label-fs-large, 14px) !default; // 描述信息字号
|
|
203
|
+
$-cell-icon-size-large: var(--oxy-cell-icon-size-large, 18px) !default; // 图标大小
|
|
204
|
+
|
|
205
|
+
$-cell-required-color: var(--oxy-cell-required-color, $-color-danger) !default; // 要求必填*颜色
|
|
206
|
+
$-cell-required-size: var(--oxy-cell-required-size, 18px) !default; // 必填*字号
|
|
207
|
+
$-cell-required-margin: var(--oxy-cell-required-margin, 4px) !default; // 必填*间距
|
|
208
|
+
$-cell-vertical-top: var(--oxy-cell-vertical-top, 16px) !default; // 表单类型-上下结构的间距
|
|
209
|
+
|
|
210
|
+
/* calendar */
|
|
211
|
+
$-calendar-fs: var(--oxy-calendar-fs, 16px) !default;
|
|
212
|
+
$-calendar-panel-padding: var(--oxy-calendar-panel-padding, 0 12px) !default;
|
|
213
|
+
$-calendar-panel-title-fs: var(--oxy-calendar-panel-title-fs, 14px) !default;
|
|
214
|
+
$-calendar-panel-title-color: var(--oxy-calendar-panel-title-color, rgba(0, 0, 0, 0.85)) !default;
|
|
215
|
+
$-calendar-week-color: var(--oxy-calendar-week-color, rgba(0, 0, 0, 0.85)) !default;
|
|
216
|
+
$-calendar-week-height: var(--oxy-calendar-week-height, 36px) !default;
|
|
217
|
+
$-calendar-week-fs: var(--oxy-calendar-week-fs, 12px) !default;
|
|
218
|
+
$-calendar-day-fs: var(--oxy-calendar-day-fs, 16px) !default;
|
|
219
|
+
$-calendar-day-color: var(--oxy-calendar-day-color, rgba(0, 0, 0, 0.85)) !default;
|
|
220
|
+
$-calendar-day-fw: var(--oxy-calendar-day-fw, 500) !default;
|
|
221
|
+
$-calendar-day-height: var(--oxy-calendar-day-height, 64px) !default;
|
|
222
|
+
$-calendar-month-width: var(--oxy-calendar-month-width, 50px) !default;
|
|
223
|
+
$-calendar-active-color: var(--oxy-calendar-active-color, $-color-theme) !default;
|
|
224
|
+
$-calendar-selected-color: var(--oxy-calendar-selected-color, $-color-white) !default;
|
|
225
|
+
$-calendar-disabled-color: var(--oxy-calendar-disabled-color, rgba(0, 0, 0, 0.25)) !default;
|
|
226
|
+
$-calendar-range-color: var(--oxy-calendar-range-color, rgba(#4d80f0, 0.09)) !default;
|
|
227
|
+
$-calendar-active-border: var(--oxy-calendar-active-border, 8px) !default;
|
|
228
|
+
$-calendar-info-fs: var(--oxy-calendar-info-fs, 10px) !default;
|
|
229
|
+
$-calendar-item-margin-bottom: var(--oxy-calendar-item-margin-bottom, 4px) !default;
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
/* checkbox */
|
|
233
|
+
$-checkbox-margin: var(--oxy-checkbox-margin, 10px) !default; // 多个复选框距离
|
|
234
|
+
$-checkbox-bg: var(--oxy-checkbox-bg, $-color-white) !default; // 多个复选框距离
|
|
235
|
+
$-checkbox-label-margin: var(--oxy-checkbox-label-margin, 9px) !default; // 右侧文字与左侧图标距离
|
|
236
|
+
$-checkbox-size: var(--oxy-checkbox-size, 16px) !default; // 左侧图标尺寸
|
|
237
|
+
$-checkbox-icon-size: var(--oxy-checkbox-icon-size, 14px) !default; // 左侧图标尺寸
|
|
238
|
+
$-checkbox-border-color: var(--oxy-checkbox-border-color, #dcdcdc) !default; // 左侧图标边框颜色
|
|
239
|
+
$-checkbox-check-color: var(--oxy-checkbox-check-color, $-color-white) !default; // 左侧图标边框颜色
|
|
240
|
+
$-checkbox-label-fs: var(--oxy-checkbox-label-fs, 14px) !default; // 右侧文字字号
|
|
241
|
+
$-checkbox-label-color: var(--oxy-checkbox-label-color, rgba(0, 0, 0, 0.85)) !default; // 右侧文字颜色
|
|
242
|
+
$-checkbox-checked-color: var(--oxy-checkbox-checked-color, $-color-theme) !default; // 选中颜色
|
|
243
|
+
|
|
244
|
+
$-checkbox-disabled-color: var(--oxy-checkbox-disabled-color, rgba(0, 0, 0, 0.04)) !default; // 禁用背景颜色
|
|
245
|
+
$-checkbox-disabled-label-color: var(--oxy-checkbox-disabled-label-color, rgba(0, 0, 0, 0.25)) !default; // 禁用文字颜色
|
|
246
|
+
$-checkbox-disabled-check-color: var(--oxy-checkbox-disabled-check-color, rgba(0, 0, 0, 0.15)) !default; // 禁用图标颜色
|
|
247
|
+
$-checkbox-disabled-check-bg: var(--oxy-checkbox-disabled-check-bg, rgba(0, 0, 0, 0.15)) !default; // 禁用边框背景颜色
|
|
248
|
+
$-checkbox-square-radius: var(--oxy-checkbox-square-radius, 4px) !default; // 方型圆角大小
|
|
249
|
+
|
|
250
|
+
$-checkbox-large-size: var(--oxy-checkbox-large-size, 18px) !default; // 左侧图标尺寸
|
|
251
|
+
$-checkbox-large-label-fs: var(--oxy-checkbox-large-label-fs, 16px) !default; // 右侧文字字号
|
|
252
|
+
|
|
253
|
+
$-checkbox-button-height: var(--oxy-checkbox-button-height, 32px) !default; // 按钮模式复选框高
|
|
254
|
+
$-checkbox-button-min-width: var(--oxy-checkbox-button-min-width, 78px) !default; // 按钮模式最小宽
|
|
255
|
+
$-checkbox-button-radius: var(--oxy-checkbox-button-radius, 16px) !default; // 按钮圆角大小
|
|
256
|
+
$-checkbox-button-bg: var(--oxy-checkbox-button-bg, rgba(0, 0, 0, 0.04)) !default; // 按钮模式背景颜色
|
|
257
|
+
$-checkbox-button-font-size: var(--oxy-checkbox-button-font-size, 14px) !default; // 按钮模式字号
|
|
258
|
+
$-checkbox-button-border: var(--oxy-checkbox-button-border, #f5f5f5) !default; // 按钮边框颜色
|
|
259
|
+
$-checkbox-button-disabled-border: var(--oxy-checkbox-button-disabled-border, rgba(0, 0, 0, 0.15)) !default; // 按钮禁用边框颜色
|
|
260
|
+
|
|
261
|
+
/* collapse */
|
|
262
|
+
$-collapse-side-padding: var(--oxy-collapse-side-padding, $-size-side-padding) !default; // 左右间距
|
|
263
|
+
$-collapse-body-padding: var(--oxy-collapse-body-padding, 14px $-size-side-padding) !default; // body padding
|
|
264
|
+
$-collapse-header-padding: var(--oxy-collapse-header-padding, 13px $-size-side-padding) !default; // 头部padding
|
|
265
|
+
$-collapse-title-color: var(--oxy-collapse-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
|
|
266
|
+
$-collapse-title-fs: var(--oxy-collapse-title-fs, 16px) !default; // 标题字号
|
|
267
|
+
$-collapse-arrow-size: var(--oxy-collapse-arrow-size, 18px) !default; // 箭头大小
|
|
268
|
+
$-collapse-arrow-color: var(--oxy-collapse-arrow-color, #d8d8d8) !default; // 箭头颜色
|
|
269
|
+
$-collapse-body-fs: var(--oxy-collapse-body-fs, 14px) !default; // 内容字号
|
|
270
|
+
$-collapse-body-color: var(--oxy-collapse-body-color, rgba(0, 0, 0, 0.65)) !default; // 内容颜色
|
|
271
|
+
$-collapse-disabled-color: var(--oxy-collapse-disabled-color, rgba(0, 0, 0, 0.15)) !default; // 禁用颜色
|
|
272
|
+
$-collapse-retract-fs: var(--oxy-collapse-retract-fs, 14px) !default; // 更多 字号
|
|
273
|
+
$-collapse-more-color: var(--oxy-collapse-more-color, $-color-theme) !default; // 更多 颜色
|
|
274
|
+
|
|
275
|
+
/* divider */
|
|
276
|
+
$-divider-padding: var(--oxy-divider-padding, 0 $-size-side-padding) !default; // 两边间距
|
|
277
|
+
$-divider-margin: var(--oxy-divider-margin, 16px 0) !default; // 上下间距
|
|
278
|
+
$-divider-color: var(--oxy-divider-color, rgba(0, 0, 0, 0.45)) !default; // 字体颜色
|
|
279
|
+
$-divider-line-color: var(--oxy-divider-line-color, currentColor) !default; // 线条颜色
|
|
280
|
+
$-divider-line-height: var(--oxy-divider-line-height, 1px) !default; // 线条高度
|
|
281
|
+
$-divider-fs: var(--oxy-divider-fs, 14px) !default; // 字体大小
|
|
282
|
+
$-divider-content-left-width: var(--oxy-divider-content-left-width, 10%) !default; // 左侧内容宽度
|
|
283
|
+
$-divider-content-left-margin: var(--oxy-divider-content-left-margin, 12px) !default; // 左侧内容距离线距离
|
|
284
|
+
$-divider-content-right-margin: var(--oxy-divider-content-right-margin, 12px) !default; // 右侧内容距离线距离
|
|
285
|
+
$-divider-content-right-width: var(--oxy-divider-content-right-width, 10%) !default; // 右侧内容宽度
|
|
286
|
+
$-divider-vertical-height: var(--oxy-divider-vertical-height, 16px) !default; // 垂直分割线高度
|
|
287
|
+
$-divider-vertical-content-margin: var(--oxy-divider-vertical-content-margin, 0 8px) !default; // 垂直分割线内容间距
|
|
288
|
+
$-divider-vertical-line-width: var(--oxy-divider-vertical-line-width, 1px) !default; // 线条高度
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
/* drop-menu */
|
|
294
|
+
$-drop-menu-height: var(--oxy-drop-menu-height, 48px) !default; // 展示选中项的高度
|
|
295
|
+
$-drop-menu-color: var(--oxy-drop-menu-color, $-color-content) !default; // 展示选中项的颜色
|
|
296
|
+
$-drop-menu-fs: var(--oxy-drop-menu-fs, $-fs-content) !default; // 展示选中项的字号
|
|
297
|
+
$-drop-menu-arrow-fs: var(--oxy-drop-menu-arrow-fs, $-fs-secondary) !default; // 箭头图标大小
|
|
298
|
+
|
|
299
|
+
$-drop-menu-side-padding: var(--oxy-drop-menu-side-padding, $-size-side-padding) !default; // 两边留白间距
|
|
300
|
+
$-drop-menu-disabled-color: var(--oxy-drop-menu-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
|
|
301
|
+
$-drop-menu-item-height: var(--oxy-drop-menu-item-height, 48px) !default; // 选项高度
|
|
302
|
+
$-drop-menu-item-color: var(--oxy-drop-menu-item-color, $-color-content) !default; // 选项颜色
|
|
303
|
+
$-drop-menu-item-fs: var(--oxy-drop-menu-item-fs, $-fs-content) !default; // 选项字号
|
|
304
|
+
$-drop-menu-item-color-active: var(--oxy-drop-menu-item-color-active, $-color-theme) !default; // 选中颜色
|
|
305
|
+
$-drop-menu-item-color-tip: var(--oxy-drop-menu-item-color-tip, rgba(0, 0, 0, 0.45)) !default; // 提示文字颜色
|
|
306
|
+
$-drop-menu-item-fs-tip: var(--oxy-drop-menu-item-fs-tip, $-fs-secondary) !default; // 提示文字字号
|
|
307
|
+
$-drop-menu-option-check-size: var(--oxy-drop-menu-option-check-size, 20px) !default; // check 图标大小
|
|
308
|
+
$-drop-menu-line-color: var(--oxy-drop-menu-line-color, $-color-theme) !default; // 下划线颜色
|
|
309
|
+
$-drop-menu-line-height: var(--oxy-drop-menu-line-height, 3px) !default; // 下划线高度
|
|
310
|
+
|
|
311
|
+
/* input-number */
|
|
312
|
+
$-input-number-color: var(--oxy-input-number-color, #262626) !default; // 文字颜色
|
|
313
|
+
$-input-number-border-color: var(--oxy-input-number-border-color, #e8e8e8) !default; // 边框颜色
|
|
314
|
+
$-input-number-disabled-color: var(--oxy-input-number-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
|
|
315
|
+
$-input-number-height: var(--oxy-input-number-height, 24px) !default; // 加减号按钮高度
|
|
316
|
+
$-input-number-btn-width: var(--oxy-input-number-btn-width, 26px) !default; // 加减号按钮宽度
|
|
317
|
+
$-input-number-input-width: var(--oxy-input-number-input-width, 36px) !default; // 输入框宽度
|
|
318
|
+
$-input-number-radius: var(--oxy-input-number-radius, 4px) !default; // 加减号按钮圆角大小
|
|
319
|
+
$-input-number-fs: var(--oxy-input-number-fs, 12px) !default; // 输入框字号
|
|
320
|
+
$-input-number-icon-size: var(--oxy-input-number-icon-size, 14px) !default; // 加减号图标大小
|
|
321
|
+
$-input-number-icon-color: var(--oxy-input-number-icon-color, rgba(0, 0, 0, 0.65)) !default; // icon颜色
|
|
322
|
+
|
|
323
|
+
/* input */
|
|
324
|
+
$-input-padding: var(--oxy-input-padding, $-size-side-padding) !default; // input 左右padding距离
|
|
325
|
+
$-input-border-color: var(--oxy-input-border-color, #dadada) !default; // 无label边框颜色
|
|
326
|
+
$-input-not-empty-border-color: var(--oxy-input-not-empty-border-color, #262626) !default; // 输入框有值时 无label边框颜色
|
|
327
|
+
$-input-fs: var(--oxy-input-fs, $-cell-title-fs) !default; // 字号
|
|
328
|
+
$-input-fs-large: var(--oxy-input-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
|
|
329
|
+
$-input-icon-margin: var(--oxy-input-icon-margin, 8px) !default; // 图标距离
|
|
330
|
+
$-input-color: var(--oxy-input-color, #262626) !default; // 文字颜色
|
|
331
|
+
$-input-placeholder-color: var(--oxy-input-placeholder-color, #bfbfbf) !default; // 占位符颜色
|
|
332
|
+
$-input-disabled-color: var(--oxy-input-disabled-color, #d9d9d9) !default; // 输入框禁用颜色
|
|
333
|
+
$-input-error-color: var(--oxy-input-error-color, $-color-danger) !default; // 输入框错误颜色
|
|
334
|
+
$-input-icon-color: var(--oxy-input-icon-color, #bfbfbf) !default; // 图标颜色
|
|
335
|
+
$-input-clear-color: var(--oxy-input-clear-color, #585858) !default; // 关闭按钮颜色
|
|
336
|
+
$-input-count-color: var(--oxy-input-count-color, #bfbfbf) !default; // 计数文字颜色
|
|
337
|
+
$-input-count-current-color: var(--oxy-input-count-current-color, #262626) !default; // 当前长度颜色
|
|
338
|
+
$-input-bg: var(--oxy-input-bg, $-color-white) !default; // 默认背景颜色
|
|
339
|
+
|
|
340
|
+
$-input-cell-bg: var(--oxy-input-cell-bg, $-color-white) !default; // cell 类型背景色
|
|
341
|
+
$-input-cell-border-color: var(--oxy-input-cell-border-color, $-color-border-light) !default; // cell 类型边框颜色
|
|
342
|
+
$-input-cell-padding: var(--oxy-input-cell-padding, 10px) !default; // cell 容器padding
|
|
343
|
+
$-input-cell-padding-large: var(--oxy-input-cell-padding-large, 12px) !default; // large类型cell容器padding
|
|
344
|
+
$-input-cell-height: var(--oxy-input-cell-height, 24px) !default; // cell 高度
|
|
345
|
+
$-input-cell-label-width: var(--oxy-input-cell-label-width, 33%) !default; // cell 下 label 的宽度
|
|
346
|
+
$-input-inner-height: var(--oxy-input-inner-height, 34px) !default; // 非cell和textarea下的高度
|
|
347
|
+
$-input-inner-height-no-border: var(--oxy-input-inner-height-no-border, 24px) !default; // 无边框下的高度
|
|
348
|
+
$-input-count-fs: var(--oxy-input-count-fs, 14px) !default; // 计数字号
|
|
349
|
+
$-input-count-fs-large: var(--oxy-input-count-fs-large, 14px) !default; // 大尺寸计数字号
|
|
350
|
+
$-input-icon-size: var(--oxy-input-icon-size, 16px) !default; // 图标大小
|
|
351
|
+
$-input-icon-size-large: var(--oxy-input-icon-size-large, 18px) !default; // 大尺寸图标大小
|
|
352
|
+
|
|
353
|
+
/* textarea */
|
|
354
|
+
$-textarea-padding: var(--oxy-textarea-padding, $-size-side-padding) !default; // textarea 左右padding距离
|
|
355
|
+
$-textarea-border-color: var(--oxy-textarea-border-color, #dadada) !default; // 无label边框颜色
|
|
356
|
+
$-textarea-not-empty-border-color: var(--oxy-textarea-not-empty-border-color, #262626) !default; // 输入框有值时 无label边框颜色
|
|
357
|
+
$-textarea-fs: var(--oxy-textarea-fs, $-cell-title-fs) !default; // 字号
|
|
358
|
+
$-textarea-fs-large: var(--oxy-textarea-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
|
|
359
|
+
$-textarea-icon-margin: var(--oxy-textarea-icon-margin, 8px) !default; // 图标距离
|
|
360
|
+
$-textarea-color: var(--oxy-textarea-color, #262626) !default; // 文字颜色
|
|
361
|
+
$-textarea-icon-color: var(--oxy-textarea-icon-color, #bfbfbf) !default; // 图标颜色
|
|
362
|
+
$-textarea-clear-color: var(--oxy-textarea-clear-color, #585858) !default; // 关闭按钮颜色
|
|
363
|
+
$-textarea-count-color: var(--oxy-textarea-count-color, #bfbfbf) !default; // 计数文字颜色
|
|
364
|
+
$-textarea-count-current-color: var(--oxy-textarea-count-current-color, #262626) !default; // 当前长度颜色
|
|
365
|
+
$-textarea-bg: var(--oxy-textarea-bg, $-color-white) !default; // 默认背景颜色
|
|
366
|
+
$-textarea-cell-border-color: var(--oxy-textarea-cell-border-color, $-color-border-light) !default; // cell 类型边框颜色
|
|
367
|
+
$-textarea-cell-padding: var(--oxy-textarea-cell-padding, 10px) !default; // cell 容器padding
|
|
368
|
+
$-textarea-cell-padding-large: var(--oxy-textarea-cell-padding-large, 12px) !default; // large类型cell容器padding
|
|
369
|
+
$-textarea-cell-height: var(--oxy-textarea-cell-height, 24px) !default; // cell 高度
|
|
370
|
+
$-textarea-count-fs: var(--oxy-textarea-count-fs, 14px) !default; // 计数字号
|
|
371
|
+
$-textarea-count-fs-large: var(--oxy-textarea-count-fs-large, 14px) !default; // 大尺寸计数字号
|
|
372
|
+
$-textarea-icon-size: var(--oxy-textarea-icon-size, 16px) !default; // 图标大小
|
|
373
|
+
$-textarea-icon-size-large: var(--oxy-textarea-icon-size-large, 18px) !default; // 大尺寸图标大小
|
|
374
|
+
|
|
375
|
+
/* loadmore */
|
|
376
|
+
$-loadmore-height: var(--oxy-loadmore-height, 48px) !default; // 高度
|
|
377
|
+
$-loadmore-color: var(--oxy-loadmore-color, rgba(0, 0, 0, 0.45)) !default; // 颜色
|
|
378
|
+
$-loadmore-fs: var(--oxy-loadmore-fs, 14px) !default; // 字号
|
|
379
|
+
$-loadmore-error-color: var(--oxy-loadmore-error-color, $-color-theme) !default; // 点击重试颜色
|
|
380
|
+
$-loadmore-refresh-fs: var(--oxy-loadmore-refresh-fs, $-fs-title) !default; // refresh图标字号
|
|
381
|
+
$-loadmore-loading-size: var(--oxy-loadmore-loading-size, $-fs-title) !default; // loading尺寸
|
|
382
|
+
|
|
383
|
+
/* message-box */
|
|
384
|
+
$-message-box-width: var(--oxy-message-box-width, 300px) !default; // 宽度
|
|
385
|
+
$-message-box-bg: var(--oxy-message-box-bg, $-color-white) !default; // 默认背景颜色
|
|
386
|
+
$-message-box-radius: var(--oxy-message-box-radius, 16px) !default; // 圆角大小
|
|
387
|
+
$-message-box-padding: var(--oxy-message-box-padding, 25px 24px 0) !default; // 主体内容padding
|
|
388
|
+
$-message-box-title-fs: var(--oxy-message-box-title-fs, 16px) !default; // 标题字号
|
|
389
|
+
$-message-box-title-color: var(--oxy-message-box-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
|
|
390
|
+
$-message-box-content-fs: var(--oxy-message-box-content-fs, 14px) !default; // 内容字号
|
|
391
|
+
$-message-box-content-color: var(--oxy-message-box-content-color, #666666) !default; // 内容颜色
|
|
392
|
+
$-message-box-content-max-height: var(--oxy-message-box-content-max-height, 264px) !default; // 内容最大高度
|
|
393
|
+
$-message-box-content-scrollbar-width: var(--oxy-message-box-content-scrollbar-width, 4px) !default; // 内容滚动条宽度
|
|
394
|
+
$-message-box-content-scrollbar-color: var(--oxy-message-box-content-scrollbar-color, rgba(0, 0, 0, 0.1)) !default; // 内容滚动条颜色
|
|
395
|
+
$-message-box-input-error-color: var(--oxy-message-box-input-error-color, $-input-error-color) !default; // 输入框错误颜色
|
|
396
|
+
|
|
397
|
+
/* notice-bar */
|
|
398
|
+
$-notice-bar-fs: var(--oxy-notice-bar-fs, 12px) !default; // 字号
|
|
399
|
+
$-notice-bar-line-height: var(--oxy-notice-bar-line-height, 18px) !default; // 行高
|
|
400
|
+
$-notice-bar-border-radius: var(--oxy-notice-bar-border-radius, 8px) !default; // 圆角
|
|
401
|
+
$-notice-bar-padding: var(--oxy-notice-bar-padding, 9px 20px 9px 15px) !default; // 非换行下的padding
|
|
402
|
+
$-notice-bar-warning-bg: var(--oxy-notice-bar-warning-bg, #fff6c8) !default; // 背景色
|
|
403
|
+
$-notice-bar-info-bg: var(--oxy-notice-bar-info-bg, #f4f9ff) !default; // 背景色
|
|
404
|
+
$-notice-bar-danger-bg: var(--oxy-notice-bar-danger-bg, #feeced) !default; // 背景色
|
|
405
|
+
$-notice-bar-warning-color: var(--oxy-notice-bar-warning-color, $-color-warning) !default; // 文字和图标颜色
|
|
406
|
+
$-notice-bar-info-color: var(--oxy-notice-bar-info-color, $-color-theme) !default; // 文字和图标颜色
|
|
407
|
+
$-notice-bar-danger-color: var(--oxy-notice-bar-danger-color, $-color-danger) !default; // 文字和图标颜色
|
|
408
|
+
$-notice-bar-prefix-size: var(--oxy-notice-bar-prefix-size, 18px) !default; // 图标大小
|
|
409
|
+
$-notice-bar-close-bg: var(--oxy-notice-bar-close-bg, rgba(0, 0, 0, 0.15)) !default; // 右侧关闭按钮背景颜色
|
|
410
|
+
$-notice-bar-close-size: var(--oxy-notice-bar-close-size, 18px) !default; // 右侧关闭按钮背景颜色
|
|
411
|
+
$-notice-bar-close-color: var(--oxy-notice-bar-close-color, $-color-white) !default; // 右侧关闭按钮颜色
|
|
412
|
+
$-notice-bar-wrap-padding: var(--oxy-notice-bar-wrap-padding, 14px $-size-side-padding) !default; // 换行下的padding
|
|
413
|
+
|
|
414
|
+
/* pagination */
|
|
415
|
+
$-pagination-content-padding: var(--oxy-pagination-content-padding, 10px 15px) !default;
|
|
416
|
+
$-pagination-message-padding: var(--oxy-pagination-message-padding, 1px 0 16px 0) !default;
|
|
417
|
+
$-pagination-message-fs: var(--oxy-pagination-message-fs, 12px) !default;
|
|
418
|
+
$-pagination-message-color: var(--oxy-pagination-message-color, rgba(0, 0, 0, 0.69)) !default;
|
|
419
|
+
$-pagination-nav-border: var(--oxy-pagination-nav-border, 1px solid rgba(0, 0, 0, 0.45)) !default;
|
|
420
|
+
$-pagination-nav-border-radius: var(--oxy-pagination-nav-border-radius, 16px) !default;
|
|
421
|
+
$-pagination-nav-fs: var(--oxy-pagination-nav-fs, 12px) !default;
|
|
422
|
+
$-pagination-nav-width: var(--oxy-pagination-nav-width, 60px) !default;
|
|
423
|
+
$-pagination-nav-color: var(--oxy-pagination-nav-color, rgba(0, 0, 0, 0.85)) !default;
|
|
424
|
+
$-pagination-nav-content-fs: var(--oxy-pagination-nav-content-fs, 12px) !default;
|
|
425
|
+
$-pagination-nav-sepatator-padding: var(--oxy-pagination-nav-sepatator-padding, 0 4px) !default;
|
|
426
|
+
$-pagination-nav-current-color: var(--oxy-pagination-nav-current-color, $-color-theme) !default;
|
|
427
|
+
$-pagination-icon-size: var(--oxy-pagination-icon-size, $-fs-content) !default;
|
|
428
|
+
|
|
429
|
+
/* picker */
|
|
430
|
+
$-picker-toolbar-height: var(--oxy-picker-toolbar-height, 54px) !default; // toolbar 操作条的高度
|
|
431
|
+
$-picker-action-height: var(--oxy-picker-action-height, 16px) !default; // toolbar 操作条的高度
|
|
432
|
+
$-picker-toolbar-finish-color: var(--oxy-picker-toolbar-finish-color, $-color-theme) !default; // toolbar 操作条完成按钮的颜色
|
|
433
|
+
$-picker-toolbar-cancel-color: var(--oxy-picker-toolbar-cancel-color, #666666) !default; // toolbar 操作条的边框颜色
|
|
434
|
+
$-picker-toolbar-fs: var(--oxy-picker-toolbar-fs, $-fs-title) !default; // toolbar 操作条的字号
|
|
435
|
+
$-picker-toolbar-title-color: var(--oxy-picker-toolbar-title-color, rgba(0, 0, 0, 0.85)) !default; // toolbar 操作台的标题颜色
|
|
436
|
+
$-picker-column-fs: var(--oxy-picker-column-fs, 16px) !default; // 选择器选项的字号
|
|
437
|
+
$-picker-bg: var(--oxy-picker-bg, $-color-white) !default; // 选择器选项的字号
|
|
438
|
+
$-picker-column-active-fs: var(--oxy-picker-column-active-fs, 18px) !default; // 选择器选项被选中的字号
|
|
439
|
+
$-picker-column-color: var(--oxy-picker-column-color, rgba(0, 0, 0, 0.85)) !default; // 选择器选项的颜色
|
|
440
|
+
$-picker-column-height: var(--oxy-picker-column-height, 210px) !default; // 列高 滚筒外部的高度
|
|
441
|
+
$-picker-column-item-height: var(--oxy-picker-column-item-height, 35px) !default; // 列高 滚筒外部的高度
|
|
442
|
+
$-picker-column-select-bg: var(--oxy-picker-column-select-bg, #f5f5f5) !default;
|
|
443
|
+
$-picker-loading-button-color: var(--oxy-picker-loading-button-color, rgba(0, 0, 0, 0.25)) !default; // loading 背景颜色
|
|
444
|
+
$-picker-column-padding: var(--oxy-picker-column-padding, 0 $-size-side-padding-small) !default; // 选项内间距
|
|
445
|
+
|
|
446
|
+
$-picker-column-disabled-color: var(--oxy-picker-column-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 选择器选项禁用的颜色
|
|
447
|
+
$-picker-mask: var(--oxy-picker-mask, linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25)))
|
|
448
|
+
linear-gradient(0deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25)) !default; // 上下阴影
|
|
449
|
+
$-picker-loading-bg: var(--oxy-picker-loading-bg, rgba($-color-white, 0.8)) !default; // loading 背景颜色
|
|
450
|
+
$-picker-region-separator-color: var(--oxy-picker-region-separator-color, rgba(0, 0, 0, 0.65)) !default; // 区域选择文字颜色
|
|
451
|
+
$-picker-cell-arrow-size-large: var(--oxy-picker-cell-arrow-size-large, $-cell-icon-size) !default; // cell 类型的大尺寸 右侧icon尺寸
|
|
452
|
+
|
|
453
|
+
$-picker-region-color: var(--oxy-picker-region-color, rgba(0, 0, 0, 0.45)) !default; // 区域选择文字颜色
|
|
454
|
+
$-picker-region-bg-active-color: var(--oxy-picker-region-bg-active-color, $-color-theme) !default; // 区域选择激活选中背景颜色
|
|
455
|
+
|
|
456
|
+
$-picker-region-fs: var(--oxy-picker-region-fs, 14px) !default; // 区域选择文字字号
|
|
457
|
+
|
|
458
|
+
/* col-picker */
|
|
459
|
+
$-col-picker-selected-height: var(--oxy-col-picker-selected-height, 44px) !default; // 弹框顶部值高度
|
|
460
|
+
$-col-picker-selected-padding: var(--oxy-col-picker-selected-padding, 0 16px) !default; // 弹框顶部值左右间距
|
|
461
|
+
$-col-picker-selected-fs: var(--oxy-col-picker-selected-fs, 14px) !default; // 弹框顶部值字号
|
|
462
|
+
$-col-picker-selected-color: var(--oxy-col-picker-selected-color, rgba(0, 0, 0, 0.85)) !default; // 弹框顶部值文字颜色
|
|
463
|
+
$-col-picker-selected-fw: var(--oxy-col-picker-selected-fw, 700) !default; // 弹框顶部值高亮字重
|
|
464
|
+
$-col-picker-line-width: var(--oxy-col-picker-line-width, 16px) !default; // 弹框顶部值高亮线条宽度
|
|
465
|
+
$-col-picker-line-height: var(--oxy-col-picker-line-height, 3px) !default; // 弹框顶部值高亮线条高度
|
|
466
|
+
$-col-picker-line-color: var(
|
|
467
|
+
--oxy-col-picker-line-color,
|
|
468
|
+
linear-gradient(315deg, rgba(81, 124, 240, 1), rgba(118, 158, 245, 1))
|
|
469
|
+
) !default; // 弹框顶部值高亮线条颜色
|
|
470
|
+
$-col-picker-line-box-shadow: var(--oxy-col-picker-line-box-shadow, 0px 1px 2px 0px rgba(1, 87, 255, 0.2)) !default; // 弹框顶部值高亮线条阴影
|
|
471
|
+
$-col-picker-list-height: var(--oxy-col-picker-list-height, 53vh) !default; // 弹框列表高度
|
|
472
|
+
$-col-picker-list-padding-bottom: var(--oxy-col-picker-list-padding-bottom, 30px) !default; // 弹框列表底部间距
|
|
473
|
+
$-col-picker-list-color: var(--oxy-col-picker-list-color, rgba(0, 0, 0, 0.85)) !default; // 弹框列表文字颜色
|
|
474
|
+
$-col-picker-list-color-disabled: var(--oxy-col-picker-list-color-disabled, rgba(0, 0, 0, 0.15)) !default; // 弹框列表文字禁用颜色
|
|
475
|
+
$-col-picker-list-color-tip: var(--oxy-col-picker-list-color-tip, rgba(0, 0, 0, 0.45)) !default; // 弹框列表提示文字颜色
|
|
476
|
+
$-col-picker-list-fs: var(--oxy-col-picker-list-fs, 14px) !default; // 弹框列表文字字号
|
|
477
|
+
$-col-picker-list-fs-tip: var(--oxy-col-picker-list-fs-tip, 12px) !default; // 弹框列表提示文字字号
|
|
478
|
+
$-col-picker-list-item-padding: var(--oxy-col-picker-list-item-padding, 12px 15px) !default; // 弹框列表选项间距
|
|
479
|
+
$-col-picker-list-checked-icon-size: var(--oxy-col-picker-list-checked-icon-size, 18px) !default; // 弹框列表选中箭头大小
|
|
480
|
+
$-col-picker-list-color-checked: var(--oxy-col-picker-list-color-checked, $-color-theme) !default; // 弹框列表选中选项颜色
|
|
481
|
+
|
|
482
|
+
/* overlay */
|
|
483
|
+
$-overlay-bg: var(--oxy-overlay-bg, rgba(0, 0, 0, 0.65)) !default;
|
|
484
|
+
$-overlay-bg-dark: var(--oxy-overlay-bg-dark, rgba(0, 0, 0, 0.75)) !default;
|
|
485
|
+
|
|
486
|
+
/* popup */
|
|
487
|
+
$-popup-close-size: var(--oxy-popup-close-size, 24px) !default; // 关闭按钮尺寸
|
|
488
|
+
$-popup-close-color: var(--oxy-popup-close-color, #666) !default; // 关闭按钮颜色
|
|
489
|
+
|
|
490
|
+
/* progress */
|
|
491
|
+
$-progress-padding: var(--oxy-progress-padding, 9px 0 8px) !default; // 进度条内边距
|
|
492
|
+
$-progress-bg: var(--oxy-progress-bg, rgba(229, 229, 229, 1)) !default; // 进度条底色
|
|
493
|
+
$-progress-danger-color: var(--oxy-progress-danger-color, $-color-danger) !default; // 进度条danger颜色
|
|
494
|
+
$-progress-success-color: var(--oxy-progress-success-color, $-color-success) !default; // 进度条success进度条颜色
|
|
495
|
+
$-progress-warning-color: var(--oxy-progress-warning-color, $-color-warning) !default; // 进度条warning进度条颜色
|
|
496
|
+
|
|
497
|
+
$-progress-color: var(--oxy-progress-color, $-color-theme) !default; // 进度条颜色
|
|
498
|
+
$-progress-height: var(--oxy-progress-height, 3px) !default; // 进度条高度
|
|
499
|
+
$-progress-label-color: var(--oxy-progress-label-color, #333) !default; // 文字颜色
|
|
500
|
+
$-progress-label-fs: var(--oxy-progress-label-fs, 14px) !default; // 文字字号
|
|
501
|
+
$-progress-icon-fs: var(--oxy-progress-icon-fs, 18px) !default; // 图标字号
|
|
502
|
+
|
|
503
|
+
/* radio */
|
|
504
|
+
$-radio-margin: var(--oxy-radio-margin, $-checkbox-margin) !default; // 多个单选框距离
|
|
505
|
+
$-radio-label-margin: var(--oxy-radio-label-margin, $-checkbox-label-margin) !default; // 右侧文字与左侧图标距离
|
|
506
|
+
$-radio-size: var(--oxy-radio-size, 16px) !default; // 左侧图标尺寸
|
|
507
|
+
$-radio-bg: var(--oxy-radio-bg, $-color-white) !default; // 左侧图标尺寸
|
|
508
|
+
$-radio-label-fs: var(--oxy-radio-label-fs, $-checkbox-label-fs) !default; // 右侧文字字号
|
|
509
|
+
$-radio-label-color: var(--oxy-radio-label-color, $-checkbox-label-color) !default; // 右侧文字颜色
|
|
510
|
+
$-radio-checked-color: var(--oxy-radio-checked-color, $-checkbox-checked-color) !default; // 选中颜色
|
|
511
|
+
$-radio-disabled-color: var(--oxy-radio-disabled-color, $-checkbox-disabled-color) !default; // 禁用颜色
|
|
512
|
+
$-radio-disabled-label-color: var(--oxy-radio-disabled-label-color, $-checkbox-disabled-label-color) !default; // 禁用文字颜色
|
|
513
|
+
|
|
514
|
+
$-radio-large-size: var(--oxy-radio-large-size, $-checkbox-large-size) !default; // 左侧图标尺寸
|
|
515
|
+
$-radio-large-label-fs: var(--oxy-radio-large-label-fs, $-checkbox-large-label-fs) !default; // 右侧文字字号
|
|
516
|
+
|
|
517
|
+
$-radio-button-height: var(--oxy-radio-button-height, $-checkbox-button-height) !default; // 按钮模式复选框高
|
|
518
|
+
$-radio-button-min-width: var(--oxy-radio-button-min-width, 60px) !default; // 按钮模式最小宽
|
|
519
|
+
$-radio-button-max-width: var(--oxy-radio-button-max-width, 144px) !default; // 按钮模式最大宽
|
|
520
|
+
$-radio-button-radius: var(--oxy-radio-button-radius, $-checkbox-button-radius) !default; // 按钮圆角大小
|
|
521
|
+
$-radio-button-bg: var(--oxy-radio-button-bg, $-checkbox-button-bg) !default; // 按钮模式背景颜色
|
|
522
|
+
$-radio-button-fs: var(--oxy-radio-button-fs, $-checkbox-button-font-size) !default; // 按钮模式字号
|
|
523
|
+
$-radio-button-border: var(--oxy-radio-button-border, $-checkbox-button-border) !default; // 按钮边框颜色
|
|
524
|
+
$-radio-button-disabled-border: var(--oxy-radio-button-disabled-border, $-checkbox-button-disabled-border) !default; // 按钮禁用边框颜色
|
|
525
|
+
|
|
526
|
+
$-radio-dot-size: var(--oxy-radio-dot-size, 8px) !default; // 单选dot模式圆点尺寸
|
|
527
|
+
$-radio-dot-large-size: var(--oxy-radio-dot-large-size, 10px) !default; // 单选dot模式大尺寸圆点尺寸
|
|
528
|
+
$-radio-dot-checked-bg: var(--oxy-radio-dot-checked-bg, $-color-theme) !default; // 单选dot模式选中背景色
|
|
529
|
+
$-radio-dot-checked-border-color: var(--oxy-radio-dot-checked-border-color, $-color-theme) !default; // 单选dot模式选中边框色
|
|
530
|
+
$-radio-dot-border-color: var(--oxy-radio-dot-border-color, #dcdcdc) !default; // 单选dot模式边框色
|
|
531
|
+
$-radio-dot-disabled-border: var(--oxy-radio-dot-disabled-border, #d9d9d9) !default; // 单选dot模式禁用边框颜色
|
|
532
|
+
$-radio-dot-disabled-bg: var(--oxy-radio-dot-disabled-bg, #d9d9d9) !default; // 单选dot模式禁用背景颜色
|
|
533
|
+
|
|
534
|
+
/* search */
|
|
535
|
+
$-search-side-padding: var(--oxy-search-side-padding, $-size-side-padding) !default; // 左右间距
|
|
536
|
+
$-search-padding: var(--oxy-search-padding, 10px 0 10px $-search-side-padding) !default; // 不包含取消按钮的间距
|
|
537
|
+
$-search-input-radius: var(--oxy-search-input-radius, 15px) !default; // 输入框圆角大小
|
|
538
|
+
$-search-input-bg: var(--oxy-search-input-bg, $-color-bg) !default; // 输入框背景色
|
|
539
|
+
$-search-input-height: var(--oxy-search-input-height, 30px) !default; // 输入框高度
|
|
540
|
+
$-search-input-padding: var(--oxy-search-input-padding, 0 32px 0 42px) !default; // 输入框间距
|
|
541
|
+
$-search-input-fs: var(--oxy-search-input-fs, $-fs-content) !default; // 输入框字号
|
|
542
|
+
$-search-input-color: var(--oxy-search-input-color, #262626) !default; // 输入框文字颜色
|
|
543
|
+
$-search-icon-color: var(--oxy-search-icon-color, $-color-icon) !default; // 图标颜色
|
|
544
|
+
$-search-icon-size: var(--oxy-search-icon-size, 18px) !default; // 图标大小
|
|
545
|
+
$-search-clear-icon-size: var(--oxy-search-clear-icon-size, $-fs-title) !default; // 清除图标大小
|
|
546
|
+
$-search-placeholder-color: var(--oxy-search-placeholder-color, #bfbfbf) !default; // placeholder 颜色
|
|
547
|
+
$-search-cancel-padding: var(--oxy-search-cancel-padding, 0 $-search-side-padding 0 10px) !default; // 取消按钮间距
|
|
548
|
+
$-search-cancel-fs: var(--oxy-search-cancel-fs, $-fs-title) !default; // 取消按钮字号
|
|
549
|
+
$-search-cancel-color: var(--oxy-search-cancel-color, rgba(0, 0, 0, 0.65)) !default; // 取消按钮颜色
|
|
550
|
+
$-search-light-bg: var(--oxy-search-light-bg, $-color-bg) !default; // light 类型的容器背景色
|
|
551
|
+
|
|
552
|
+
/* slider */
|
|
553
|
+
$-slider-fs: var(--oxy-slider-fs, $-fs-content) !default; // 字体大小
|
|
554
|
+
$-slider-handle-radius: var(--oxy-slider-handle-radius, 12px) !default; // 滑块半径
|
|
555
|
+
$-slider-handle-bg: var(--oxy-slider-handle-bg, resultColor(139deg, $-color-theme, 'dark' 'light', #ffffff #f7f7f7, 0% 100%)) !default; // 滑块背景
|
|
556
|
+
$-slider-axie-height: var(--oxy-slider-axie-height, 3px) !default; // 滑轴高度
|
|
557
|
+
$-slider-color: var(--oxy-slider-color, #333) !default; // 字体颜色
|
|
558
|
+
$-slider-axie-bg: var(--oxy-slider-axie-bg, #e5e5e5) !default; // 滑轴的默认背景色
|
|
559
|
+
$-slider-line-color: var(
|
|
560
|
+
--oxy-slider-line-color,
|
|
561
|
+
resultColor(315deg, $-color-theme, 'dark' 'light', #517cf0 #769ef5, 0% 100%)
|
|
562
|
+
) !default; // 进度条颜色
|
|
563
|
+
$-slider-disabled-color: var(--oxy-slider-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用状态下字体颜色
|
|
564
|
+
|
|
565
|
+
/* sort-button */
|
|
566
|
+
$-sort-button-fs: var(--oxy-sort-button-fs, $-fs-content) !default; // 字号
|
|
567
|
+
$-sort-button-color: var(--oxy-sort-button-color, $-color-content) !default; // 颜色
|
|
568
|
+
$-sort-button-height: var(--oxy-sort-button-height, 48px) !default; // 高度
|
|
569
|
+
$-sort-button-line-height: var(--oxy-sort-button-line-height, 3px) !default; // 下划线高度
|
|
570
|
+
$-sort-button-line-color: var(--oxy-sort-button-line-color, $-color-theme) !default; // 下划线颜色
|
|
571
|
+
|
|
572
|
+
/* steps */
|
|
573
|
+
$-steps-icon-size: var(--oxy-steps-icon-size, 22px) !default; // 图标尺寸
|
|
574
|
+
$-steps-inactive-color: var(--oxy-steps-inactive-color, rgba(0, 0, 0, 0.25)) !default; // 等待状态文字颜色
|
|
575
|
+
$-steps-finished-color: var(--oxy-steps-finished-color, $-color-theme) !default; // 完成文字颜色
|
|
576
|
+
$-steps-icon-text-fs: var(--oxy-steps-icon-text-fs, $-fs-content) !default; // 数字图标文字字号
|
|
577
|
+
$-steps-error-color: var(--oxy-steps-error-color, $-color-danger) !default; // 异常颜色
|
|
578
|
+
$-steps-title-fs: var(--oxy-steps-title-fs, $-fs-content) !default; // 标题字号
|
|
579
|
+
$-steps-title-fw: var(--oxy-steps-title-fw, $-fw-medium) !default; // 标题字重
|
|
580
|
+
$-steps-label-fs: var(--oxy-steps-label-fs, $-fs-secondary) !default; // 描述信息字号
|
|
581
|
+
$-steps-description-color: var(--oxy-steps-description-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息颜色
|
|
582
|
+
$-steps-is-icon-width: var(--oxy-steps-is-icon-width, 30px) !default; // 自定义图标的宽度,给左右留白
|
|
583
|
+
$-steps-line-color: var(--oxy-steps-line-color, rgba(0, 0, 0, 0.15)) !default; // 线条颜色
|
|
584
|
+
$-steps-dot-size: var(--oxy-steps-dot-size, 7px) !default; // 点状大小
|
|
585
|
+
$-steps-dot-active-size: var(--oxy-steps-dot-active-size, 9px) !default; // 点状高亮大小
|
|
586
|
+
|
|
587
|
+
/* switch */
|
|
588
|
+
$-switch-size: var(--oxy-switch-size, 28px) !default; // switch大小
|
|
589
|
+
$-switch-width: var(--oxy-switch-width, calc(1.8em + 4px)) !default; // 宽度
|
|
590
|
+
$-switch-height: var(--oxy-switch-height, calc(1em + 4px)) !default; // 高度
|
|
591
|
+
$-switch-circle-size: var(--oxy-switch-circle-size, 1em) !default; // 圆点大小
|
|
592
|
+
$-switch-border-color: var(--oxy-switch-border-color, #e5e5e5) !default; // 边框颜色选中状态背景颜色
|
|
593
|
+
$-switch-active-color: var(--oxy-switch-active-color, $-color-theme) !default; // 选中状态背景
|
|
594
|
+
$-switch-active-shadow-color: var(--oxy-switch-active-shadow-color, rgba(0, 83, 162, 0.5)) !default; // 选中状态shadow颜色
|
|
595
|
+
$-switch-inactive-color: var(--oxy-switch-inactive-color, #eaeaea) !default; // 非选中背景颜色
|
|
596
|
+
$-switch-inactive-shadow-color: var(--oxy-switch-inactive-shadow-color, rgba(155, 155, 155, 0.5)) !default; // 非选中状态shadow颜色
|
|
597
|
+
|
|
598
|
+
/* tabs */
|
|
599
|
+
$-tabs-nav-arrow-fs: var(--oxy-tabs-nav-arrow-fs, 18px) !default; // 全部Icon字号
|
|
600
|
+
$-tabs-nav-arrow-open-fs: var(--oxy-tabs-nav-arrow-open-fs, 14px) !default; // 展开Icon字号
|
|
601
|
+
$-tabs-nav-width: var(--oxy-tabs-nav-width, 100vw) !default; // tabs 头部切换宽度
|
|
602
|
+
$-tabs-nav-height: var(--oxy-tabs-nav-height, 42px) !default; // 头部切换高度
|
|
603
|
+
$-tabs-nav-fs: var(--oxy-tabs-nav-fs, $-fs-content) !default; // 头部切换文字大小
|
|
604
|
+
$-tabs-nav-color: var(--oxy-tabs-nav-color, rgba(0, 0, 0, 0.85)) !default; // 头部切换文字颜色
|
|
605
|
+
$-tabs-nav-bg: var(--oxy-tabs-nav-bg, $-color-white) !default; // 背景颜色
|
|
606
|
+
$-tabs-nav-active-color: var(--oxy-tabs-nav-active-color, $-color-theme) !default; // 头部高亮颜色
|
|
607
|
+
$-tabs-nav-disabled-color: var(--oxy-tabs-nav-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 头部禁用颜色
|
|
608
|
+
$-tabs-nav-line-height: var(--oxy-tabs-nav-line-height, 3px) !default; // 高亮边框高度
|
|
609
|
+
$-tabs-nav-line-width: var(--oxy-tabs-nav-line-width, 19px) !default; // 高亮边框宽度
|
|
610
|
+
$-tabs-nav-line-bg-color: var(--oxy-tabs-nav-line-bg-color, $-color-theme) !default; // 底部条颜色
|
|
611
|
+
$-tabs-nav-map-fs: var(--oxy-tabs-nav-map-fs, $-fs-content) !default; // map 类型按钮字号
|
|
612
|
+
$-tabs-nav-map-color: var(--oxy-tabs-nav-map-color, rgba(0, 0, 0, 0.85)) !default; // map 类型按钮文字颜色
|
|
613
|
+
$-tabs-nav-map-arrow-color: var(--oxy-tabs-nav-map-arrow-color, rgba(0, 0, 0, 0.65)) !default; // map 类型箭头颜色
|
|
614
|
+
$-tabs-nav-map-btn-before-bg: var(
|
|
615
|
+
--oxy-tabs-nav-map-btn-before-bg,
|
|
616
|
+
linear-gradient(270deg, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0) 100%)
|
|
617
|
+
) !default; // 左侧map遮罩阴影
|
|
618
|
+
$-tabs-nav-map-button-back-color: var(--oxy-tabs-nav-map-button-back-color, rgba(0, 0, 0, 0.04)) !default; // map 类型按钮边框颜色
|
|
619
|
+
$-tabs-nav-map-button-radius: var(--oxy-tabs-nav-map-button-radius, 16px) !default; // map 类型按钮圆角大小
|
|
620
|
+
$-tabs-nav-map-modal-bg: var(--oxy-tabs-nav-map-modal-bg, $-overlay-bg) !default; // map 类型蒙层背景色
|
|
621
|
+
|
|
622
|
+
/* tag */
|
|
623
|
+
$-tag-fs: var(--oxy-tag-fs, $-fs-secondary) !default; // 字号
|
|
624
|
+
$-tag-color: var(--oxy-tag-color, $-color-white) !default; // 字体颜色
|
|
625
|
+
$-tag-small-fs: var(--oxy-tag-small-fs, $-fs-aid) !default; // 小尺寸字号
|
|
626
|
+
$-tag-info-color: var(--oxy-tag-info-color, #585858) !default; // info 颜色
|
|
627
|
+
$-tag-primary-color: var(--oxy-tag-primary-color, $-color-theme) !default; // 主颜色
|
|
628
|
+
$-tag-danger-color: var(--oxy-tag-danger-color, $-color-danger) !default; // danger 颜色
|
|
629
|
+
$-tag-warning-color: var(--oxy-tag-warning-color, $-color-warning) !default; // warning 颜色
|
|
630
|
+
$-tag-success-color: var(--oxy-tag-success-color, $-color-success) !default; // success 颜色
|
|
631
|
+
$-tag-info-bg: var(--oxy-tag-info-bg, resultColor(49deg, $-color-black, 'dark' 'light', #808080 #999999, 0% 100%)) !default; // info 背景颜色
|
|
632
|
+
$-tag-primary-bg: var(--oxy-tag-primary-bg, $-color-theme) !default; // 主背景颜色
|
|
633
|
+
$-tag-danger-bg: var(--oxy-tag-danger-bg, $-color-danger) !default; // danger 背景颜色
|
|
634
|
+
$-tag-warning-bg: var(--oxy-tag-warning-bg, $-color-warning) !default; // warning 背景颜色
|
|
635
|
+
$-tag-success-bg: var(--oxy-tag-success-bg, $-color-success) !default; // success 背景颜色
|
|
636
|
+
$-tag-round-color: var(--oxy-tag-round-color, rgba(102, 102, 102, 1)) !default; // round 字体颜色
|
|
637
|
+
$-tag-round-border-color: var(--oxy-tag-round-border-color, rgba(225, 225, 225, 1)) !default; // round 边框颜色
|
|
638
|
+
$-tag-round-radius: var(--oxy-tag-round-radius, 12px) !default; // round 圆角大小
|
|
639
|
+
$-tag-mark-radius: var(--oxy-tag-mark-radius, 6px 2px 6px 2px) !default; // mark 圆角大小
|
|
640
|
+
$-tag-close-size: var(--oxy-tag-close-size, 14px) !default; // 关闭按钮字号
|
|
641
|
+
$-tag-close-color: var(--oxy-tag-close-color, $-tag-info-color) !default; // 关闭按钮颜色
|
|
642
|
+
$-tag-close-active-color: var(--oxy-tag-close-active-color, rgba(0, 0, 0, 0.45)) !default; // 关闭按钮 active 颜色
|
|
643
|
+
|
|
644
|
+
/* toast */
|
|
645
|
+
$-toast-color: var(--oxy-toast-color, $-color-white) !default; // 文字颜色
|
|
646
|
+
$-toast-padding: var(--oxy-toast-padding, 16px 24px) !default; // padding
|
|
647
|
+
$-toast-max-width: var(--oxy-toast-max-width, 300px) !default; // 最大宽度
|
|
648
|
+
$-toast-radius: var(--oxy-toast-radius, 8px) !default; // 圆角大小
|
|
649
|
+
$-toast-bg: var(--oxy-toast-bg, $-overlay-bg) !default; // 背景色
|
|
650
|
+
$-toast-fs: var(--oxy-toast-fs, $-fs-content) !default; // 字号
|
|
651
|
+
$-toast-line-height: var(--oxy-toast-line-height, 20px) !default; // 行高
|
|
652
|
+
$-toast-with-icon-min-width: var(--oxy-toast-with-icon-min-width, 150px) !default; // 有图标的情况下最小宽度
|
|
653
|
+
$-toast-icon-size: var(--oxy-toast-icon-size, 32px) !default; // 图标大小
|
|
654
|
+
$-toast-icon-margin-right: var(--oxy-toast-icon-margin-right, 12px) !default; // 图标右边距
|
|
655
|
+
$-toast-icon-margin-bottom: var(--oxy-toast-icon-margin-bottom, 12px) !default; // 图标下边距
|
|
656
|
+
$-toast-loading-padding: var(--oxy-toast-loading-padding, 10px) !default; // loading状态下的padding
|
|
657
|
+
$-toast-loading-margin-bottom: var(--oxy-toast-loading-margin-bottom, 16px) !default; // loading动画的margin-bottom
|
|
658
|
+
$-toast-box-shadow: var(--oxy-toast-box-shadow, 0px 6px 16px 0px rgba(0, 0, 0, 0.08)) !default; // 外部阴影
|
|
659
|
+
|
|
660
|
+
/* loading */
|
|
661
|
+
$-loading-size: var(--oxy-loading-size, 32px) !default; // loading 大小
|
|
662
|
+
|
|
663
|
+
/* tooltip */
|
|
664
|
+
$-tooltip-bg: var(--oxy-tooltip-bg, rgba(38, 39, 40, 0.8)) !default; // 背景色
|
|
665
|
+
$-tooltip-color: var(--oxy-tooltip-color, $-color-white) !default; // 文字颜色
|
|
666
|
+
$-tooltip-radius: var(--oxy-tooltip-radius, 8px) !default; // 圆角大小
|
|
667
|
+
$-tooltip-arrow-size: var(--oxy-tooltip-arrow-size, 5px) !default; // 箭头大小
|
|
668
|
+
$-tooltip-fs: var(--oxy-tooltip-fs, $-fs-content) !default; // 字号
|
|
669
|
+
$-tooltip-blur: var(--oxy-tooltip-blur, 10px) !default; // 背景高斯模糊效果
|
|
670
|
+
$-tooltip-padding: var(--oxy-tooltip-padding, 9px 20px) !default; // 间距
|
|
671
|
+
$-tooltip-close-size: var(--oxy-tooltip-close-size, 6px) !default; // 背景高斯模糊效果
|
|
672
|
+
$-tooltip-z-index: var(--oxy-tooltip-z-index, 500) !default;
|
|
673
|
+
$-tooltip-line-height: var(--oxy-tooltip-line-height, 18px) !default; // 行高
|
|
674
|
+
|
|
675
|
+
/* popover */
|
|
676
|
+
$-popover-bg: var(--oxy-popover-bg, $-color-white) !default; // 背景色
|
|
677
|
+
$-popover-color: var(--oxy-popover-color, rgba(0, 0, 0, 0.85)) !default; // 文字颜色
|
|
678
|
+
$-popover-box-shadow: var(--oxy-popover-box-shadow, 0px 2px 10px 0px rgba(0, 0, 0, 0.1)) !default; // 阴影颜色
|
|
679
|
+
$-popover-arrow-box-shadow: var(--oxy-popover-arrow-box-shadow, 0px 2px 10px 0px rgba(0, 0, 0, 0.2)) !default; // 阴影颜色
|
|
680
|
+
$-popover-border-color: var(--oxy-popover-border-color, rgba(0, 0, 0, 0.09)) !default; // 阴影颜色
|
|
681
|
+
$-popover-radius: var(--oxy-popover-radius, 4px) !default; // 圆角大小
|
|
682
|
+
$-popover-arrow-size: var(--oxy-popover-arrow-size, 6px) !default; // 箭头大小
|
|
683
|
+
$-popover-fs: var(--oxy-popover-fs, $-fs-content) !default; // 字号
|
|
684
|
+
$-popover-padding: var(--oxy-popover-padding, 15px) !default; // 间距
|
|
685
|
+
$-popover-line-height: var(--oxy-popover-line-height, 18px) !default; // 行高
|
|
686
|
+
$-popover-z-index: var(--oxy-popover-z-index, $-tooltip-z-index) !default;
|
|
687
|
+
|
|
688
|
+
/* grid-item */
|
|
689
|
+
$-grid-item-fs: var(--oxy-grid-item-fs, 12px) !default; // 字号
|
|
690
|
+
$-grid-item-bg: var(--oxy-grid-item-bg, $-color-white) !default; // 字号
|
|
691
|
+
$-grid-item-padding: var(--oxy-grid-item-padding, 14px 0px) !default; // 内容的 padding
|
|
692
|
+
$-grid-item-border-color: var(--oxy-grid-item-border-color, $-color-border-light) !default; // 边框颜色
|
|
693
|
+
$-grid-item-hover-bg: var(--oxy-grid-item-hover-bg, $-color-gray-3) !default; // hover背景色
|
|
694
|
+
$-grid-item-hover-bg-dark: var(--oxy-grid-item-hover-bg-dark, $-color-gray-7) !default; // 暗黑模式hover背景色
|
|
695
|
+
|
|
696
|
+
/* statustip */
|
|
697
|
+
$-statustip-fs: var(--oxy-statustip-fs, $-fs-content) !default; // 字号
|
|
698
|
+
$-statustip-color: var(--oxy-statustip-color, rgba(0, 0, 0, 0.45)) !default; // 文字颜色
|
|
699
|
+
$-statustip-line-height: var(--oxy-statustip-line-height, 16px) !default; // 文字行高
|
|
700
|
+
$-statustip-padding: var(--oxy-statustip-padding, 5px 10px) !default; // 间距
|
|
701
|
+
|
|
702
|
+
/* card */
|
|
703
|
+
$-card-bg: var(--oxy-card-bg, $-color-white) !default; // 背景色
|
|
704
|
+
$-card-fs: var(--oxy-card-fs, $-fs-content) !default; // 卡片字号
|
|
705
|
+
$-card-padding: var(--oxy-card-padding, 0 $-size-side-padding) !default; // 内边距
|
|
706
|
+
$-card-footer-padding: var(--oxy-card-footer-padding, 12px 0 16px) !default; // 底部内边距
|
|
707
|
+
$-card-shadow-color: var(--oxy-card-shadow-color, 0px 4px 8px 0px rgba(0, 0, 0, 0.02)) !default; // 阴影
|
|
708
|
+
$-card-radius: var(--oxy-card-radius, 8px) !default; // 圆角大小
|
|
709
|
+
$-card-line-height: var(--oxy-card-line-height, 1.1) !default; // 行高
|
|
710
|
+
$-card-margin: var(--oxy-card-margin, 0 $-size-side-padding) !default; // 外边距
|
|
711
|
+
$-card-title-color: var(--oxy-card-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
|
|
712
|
+
$-card-title-fs: var(--oxy-card-title-fs, $-fs-title) !default; // 矩形卡片标题字号
|
|
713
|
+
$-card-content-border-color: var(--oxy-card-content-border-color, rgba(0, 0, 0, 0.09)) !default; // 内容边框
|
|
714
|
+
$-card-rectangle-title-padding: var(--oxy-card-rectangle-title-padding, 15px 15px 12px) !default; // 矩形卡片头部内边距
|
|
715
|
+
$-card-rectangle-content-padding: var(--oxy-card-rectangle-content-padding, 16px 0) !default; // 矩形卡片内容内边距
|
|
716
|
+
$-card-rectangle-footer-padding: var(--oxy-card-rectangle-footer-padding, 12px 0) !default; // 矩形卡片底部内边距
|
|
717
|
+
$-card-content-color: var(--oxy-card-content-color, rgba(0, 0, 0, 0.45)) !default; // 文本内容颜色
|
|
718
|
+
$-card-content-line-height: var(--oxy-card-content-line-height, 1.428) !default; // 文本内容行高
|
|
719
|
+
$-card-content-margin: var(--oxy-card-content-margin, 13px 0 12px) !default; // 内容外边距
|
|
720
|
+
$-card-content-rectangle-margin: var(--oxy-card-content-rectangle-margin, 14px 0 12px) !default; // 矩形卡片内容外边距
|
|
721
|
+
|
|
722
|
+
/* upload */
|
|
723
|
+
$-upload-size: var(--oxy-upload-size, 80px) !default; // upload的外边框默认尺寸
|
|
724
|
+
$-upload-evoke-icon-size: var(--oxy-upload-evoke-icon-size, 32px) !default; // 唤起项的图标大小
|
|
725
|
+
$-upload-evoke-bg: var(--oxy-upload-evoke-bg, rgba(0, 0, 0, 0.04)) !default; // 唤起项的背景色
|
|
726
|
+
$-upload-evoke-color: var(--oxy-upload-evoke-color, rgba(0, 0, 0, 0.25)) !default; // 唤起项的图标颜色
|
|
727
|
+
$-upload-evoke-disabled-color: var(--oxy-upload-evoke-disabled-color, rgba(0, 0, 0, 0.09)) !default; // 唤起项禁用颜色
|
|
728
|
+
$-upload-close-icon-size: var(--oxy-upload-close-icon-size, 16px) !default; // 移除按钮尺寸
|
|
729
|
+
$-upload-close-icon-color: var(--oxy-upload-close-icon-color, rgba(0, 0, 0, 0.65)) !default; // 移除按钮颜色
|
|
730
|
+
$-upload-progress-fs: var(--oxy-upload-progress-fs, 14px) !default; // 进度文字字号
|
|
731
|
+
$-upload-file-fs: var(--oxy-upload-file-fs, 12px) !default; // 文件名字号
|
|
732
|
+
$-upload-file-color: var(--oxy-upload-file-color, $-color-secondary) !default; // 文件名字颜色
|
|
733
|
+
$-upload-preview-name-fs: var(--oxy-upload-preview-name-fs, 12px) !default; // 预览图片名字号
|
|
734
|
+
$-upload-preview-icon-size: var(--oxy-upload-preview-icon-size, 24px) !default; // 预览内部图标尺寸
|
|
735
|
+
$-upload-preview-name-bg: var(--oxy-upload-preview-name-bg, rgba(0, 0, 0, 0.6)) !default; // 预览文件名背景色
|
|
736
|
+
$-upload-preview-name-height: var(--oxy-upload-preview-name-height, 22px) !default; // 预览文件名背景高度
|
|
737
|
+
$-upload-cover-icon-size: var(--oxy-upload-cover-icon-size, 22px) !default; // 视频/文件图标尺寸
|
|
738
|
+
|
|
739
|
+
/* curtain */
|
|
740
|
+
$-curtain-content-radius: var(--oxy-curtain-content-radius, 24px) !default; // 内容圆角
|
|
741
|
+
$-curtain-content-close-color: var(--oxy-curtain-content-close-color, $-color-white) !default; // 关闭按钮颜色
|
|
742
|
+
$-curtain-content-close-fs: var(--oxy-curtain-content-close-fs, $-fs-big) !default; // 关闭按钮大小
|
|
743
|
+
|
|
744
|
+
/* notify */
|
|
745
|
+
$-notify-text-color: var(--oxy-notify-text-color, $-color-white) !default;
|
|
746
|
+
$-notify-padding: var(--oxy-notify-padding, 8px 16px) !default;
|
|
747
|
+
$-notify-font-size: var(--oxy-notify-font-size, $-fs-content) !default;
|
|
748
|
+
$-notify-line-height: var(--oxy-notify-line-height, 20px) !default;
|
|
749
|
+
$-notify-primary-background: var(--oxy-notify-primary-background, $-color-theme) !default;
|
|
750
|
+
$-notify-success-background: var(--oxy-notify-success-background, $-color-success) !default;
|
|
751
|
+
$-notify-danger-background: var(--oxy-notify-danger-background, $-color-danger) !default;
|
|
752
|
+
$-notify-warning-background: var(--oxy-notify-warning-background, $-color-warning) !default;
|
|
753
|
+
|
|
754
|
+
/* skeleton */
|
|
755
|
+
$-skeleton-background-color: var(--oxy-skeleton-background-color, #eee) !default;
|
|
756
|
+
$-skeleton-animation-gradient: var(--oxy-skeleton-animation-gradient, rgba(0, 0, 0, 0.04)) !default;
|
|
757
|
+
$-skeleton-animation-flashed: var(--oxy-skeleton-animation-flashed, rgba(230, 230, 230, 0.3)) !default;
|
|
758
|
+
$-skeleton-text-height-default: var(--oxy-skeleton-text-height-default, 16px) !default;
|
|
759
|
+
$-skeleton-rect-height-default: var(--oxy-skeleton-rect-height-default, 16px) !default;
|
|
760
|
+
$-skeleton-circle-height-default: var(--oxy-skeleton-circle-height-default, 48px) !default;
|
|
761
|
+
$-skeleton-row-margin-bottom: var(--oxy-skeleton-row-margin-bottom, 16px) !default;
|
|
762
|
+
$-skeleton-border-radius-text: var(--oxy-skeleton-border-radius-text, 2px) !default;
|
|
763
|
+
$-skeleton-border-radius-rect: var(--oxy-skeleton-border-radius-rect, 4px) !default;
|
|
764
|
+
$-skeleton-border-radius-circle: var(--oxy-skeleton-border-radius-circle, 50%) !default;
|
|
765
|
+
|
|
766
|
+
/* circle */
|
|
767
|
+
$-circle-text-color: var(--oxy-circle-text-color, $-color-content) !default; // circle文字颜色
|
|
768
|
+
|
|
769
|
+
/* swiper */
|
|
770
|
+
$-swiper-radius: var(--oxy-swiper-radius, 8px);
|
|
771
|
+
$-swiper-item-padding: var(--oxy-swiper-item-padding, 0);
|
|
772
|
+
$-swiper-item-text-color: var(--oxy-swiper-item-text-color, #ffffff);
|
|
773
|
+
$-swiper-item-text-fs: var(--oxy-swiper-item-text-fs, $-fs-title);
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
/* swiper-nav */
|
|
777
|
+
// dot & dots-bar
|
|
778
|
+
$-swiper-nav-dot-color: var(--oxy-swiper-nav-dot-color, $-font-white-2) !default;
|
|
779
|
+
$-swiper-nav-dot-active-color: var(--oxy-swiper-nav-dot-active-color, $-font-white-1) !default;
|
|
780
|
+
$-swiper-nav-dot-size: var(--oxy-swiper-nav-dot-size, 12rpx) !default;
|
|
781
|
+
$-swiper-nav-dots-bar-active-width: var(--oxy-swiper-nav-dots-bar-active-width, 40rpx) !default;
|
|
782
|
+
// fraction
|
|
783
|
+
$-swiper-nav-fraction-color: var(--oxy-swiper-nav-fraction-color, $-font-white-1) !default;
|
|
784
|
+
$-swiper-nav-fraction-bg-color: var(--oxy-swiper-nav-fraction-bg-color, $-font-gray-3) !default;
|
|
785
|
+
$-swiper-nav-fraction-height: var(--oxy-swiper-nav-fraction-height, 48rpx) !default;
|
|
786
|
+
$-swiper-nav-fraction-font-size: var(--oxy-swiper-nav-fraction-font-size, 24rpx) !default;
|
|
787
|
+
// button
|
|
788
|
+
$-swiper-nav-btn-color: var(--oxy-swiper-nav-btn-color, $-font-white-1) !default;
|
|
789
|
+
$-swiper-nav-btn-bg-color: var(--oxy-swiper-nav-btn-bg-color, $-font-gray-3) !default;
|
|
790
|
+
$-swiper-nav-btn-size: var(--oxy-swiper-nav-btn-size, 48rpx) !default;
|
|
791
|
+
|
|
792
|
+
/* segmented */
|
|
793
|
+
$-segmented-padding: var(--oxy-segmented-padding, 4px) !default; // 分段器padding
|
|
794
|
+
$-segmented-item-bg-color: var(--oxy-segmented-item-bg-color, #eeeeee) !default;
|
|
795
|
+
$-segmented-item-color: var(--oxy-segmented-item-color, rgba(0, 0, 0, 0.85)) !default; // 标题文字颜色
|
|
796
|
+
$-segmented-item-acitve-bg: var(--oxy-segmented-item-acitve-bg, #ffffff) !default; // 标题文字颜色
|
|
797
|
+
$-segmented-item-disabled-color: var(--oxy-segmented-item-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 标题文字禁用颜色
|
|
798
|
+
|
|
799
|
+
/* tabbar */
|
|
800
|
+
$-tabbar-height: var(--oxy-tabbar-height, 50px) !default;
|
|
801
|
+
$-tabbar-box-shadow: var(
|
|
802
|
+
--oxy-tabbar-box-shadow,
|
|
803
|
+
0 6px 30px 5px rgba(0, 0, 0, 0.05),
|
|
804
|
+
0 16px 24px 2px rgba(0, 0, 0, 0.04),
|
|
805
|
+
0 8px 10px -5px rgba(0, 0, 0, 0.08)
|
|
806
|
+
) !default; // round类型tabbar阴影
|
|
807
|
+
|
|
808
|
+
/* tabbar-item */
|
|
809
|
+
$-tabbar-item-title-font-size: var(--oxy-tabbar-item-title-font-size, 10px) !default; // tabbar选项文字大小
|
|
810
|
+
$-tabbar-item-title-line-height: var(--oxy-tabbar-item-title-line-height, initial) !default; // tabbar选项标题文字行高
|
|
811
|
+
$-tabbar-inactive-color: var(--oxy-tabbar-inactive-color, $-color-title) !default; // 标题文字和图标颜色
|
|
812
|
+
$-tabbar-active-color: var(--oxy-tabbar-active-color, $-color-theme) !default; // 选中文字和图标颜色
|
|
813
|
+
$-tabbar-item-icon-size: var(--oxy-tabbar-item-icon-size, 20px) !default; // tabbar选项图标大小
|
|
814
|
+
|
|
815
|
+
/* navbar */
|
|
816
|
+
$-navbar-height: var(--oxy-navbar-height, 44px) !default; // navbar高度
|
|
817
|
+
$-navbar-color: var(--oxy-navbar-color, $-font-gray-1) !default; // navbar字体颜色
|
|
818
|
+
$-navbar-background: var(--oxy-navbar-background, $-color-white) !default; // navbar背景颜色
|
|
819
|
+
$-navbar-arrow-size: var(--oxy-navbar-arrow-size, 24px) !default; // navbar左箭头图标大小
|
|
820
|
+
$-navbar-desc-font-size: var(--oxy-navbar-desc-font-size, 16px); // navbar 左箭头字体大小
|
|
821
|
+
$-navbar-desc-font-color: var(--oxy-navbar-desc-font-color, $-font-gray-1) !default; // navbar左右两侧字体颜色
|
|
822
|
+
$-navbar-title-font-size: var(--oxy-navbar-title-font-size, 18px); // navbar title字体大小
|
|
823
|
+
$-navbar-title-font-weight: var(--oxy-navbar-title-font-weight, 600); // navbar title字重
|
|
824
|
+
$-navbar-disabled-opacity: var(--oxy-navbar-disabled-opacity, 0.6) !default; // navbar左右两侧字体禁用
|
|
825
|
+
$-navbar-hover-color: var(--oxy-navbar-hover-color, #eee) !default; // navbar hover样式
|
|
826
|
+
|
|
827
|
+
/* navbar-capsule */
|
|
828
|
+
$-navbar-capsule-border-color: var(--oxy-navbar-capsule-border-color, #e7e7e7) !default;
|
|
829
|
+
$-navbar-capsule-border-radius: var(--oxy-navbar-capsule-border-radius, 16px) !default;
|
|
830
|
+
$-navbar-capsule-width: var(--oxy-navbar-capsule-width, 88px) !default;
|
|
831
|
+
$-navbar-capsule-height: var(--oxy-navbar-capsule-height, 32px) !default;
|
|
832
|
+
$-navbar-capsule-icon-size: var(--oxy-navbar-capsule-icon-size, 20px) !default; // navbar capsule图标大小
|
|
833
|
+
|
|
834
|
+
/* table */
|
|
835
|
+
$-table-color: var(--oxy-table-color, $-font-gray-1) !default; // 表格字体颜色
|
|
836
|
+
$-table-bg: var(--oxy-table-bg, #ffffff) !default; // 表格背景颜色
|
|
837
|
+
$-table-stripe-bg: var(--oxy-table-stripe-bg, #f3f3f3) !default; // 表格背景颜色
|
|
838
|
+
$-table-border-color: var(--oxy-table-border-color, #ececec) !default; // 表格边框颜色
|
|
839
|
+
$-table-font-size: var(--oxy-table-font-size, 13px) !default; // 表格字体大小
|
|
840
|
+
|
|
841
|
+
/* sidebar */
|
|
842
|
+
$-sidebar-bg: var(--oxy-sidebar-bg, $-color-gray-1) !default; // 侧边栏背景色
|
|
843
|
+
$-sidebar-width: var(--oxy-sidebar-width, 104px) !default; // 侧边栏宽度
|
|
844
|
+
$-sidebar-height: var(--oxy-sidebar-height, 100%) !default; // 侧边栏高度
|
|
845
|
+
|
|
846
|
+
/* sidebar-item */
|
|
847
|
+
$-sidebar-color: var(--oxy-sidebar-color, $-font-gray-1) !default;
|
|
848
|
+
$-sidebar-item-height: var(--oxy-sidebar-item-height, 56px) !default;
|
|
849
|
+
$-sidebar-item-line-height: var(--oxy-sidebar-item-line-height, 24px) !default;
|
|
850
|
+
$-sidebar-disabled-color: var(--oxy-side-bar-disabled-color, $-font-gray-4) !default;
|
|
851
|
+
$-sidebar-active-color: var(--oxy-sidebar-active-color, $-color-theme) !default; // 激活项字体颜色
|
|
852
|
+
$-sidebar-active-bg: var(--oxy-sidebar-active-bg, $-color-white) !default; // 激活项背景颜色
|
|
853
|
+
$-sidebar-hover-bg: var(--oxy-sidebar-hover-bg, $-color-gray-2) !default; // 激活项点击背景颜色
|
|
854
|
+
$-sidebar-border-radius: var(--oxy-sidebar-border-radius, 8px) !default;
|
|
855
|
+
$-sidebar-font-size: var(--oxy-sidebar-font-size, 16px) !default;
|
|
856
|
+
$-sidebar-icon-size: var(--oxy-sidebar-icon-size, 20px) !default;
|
|
857
|
+
$-sidebar-active-border-width: var(--oxy-sidebar-active-border-width, 4px) !default;
|
|
858
|
+
$-sidebar-active-border-height: var(--oxy-sidebar-active-border-height, 16px) !default;
|
|
859
|
+
|
|
860
|
+
/* fab */
|
|
861
|
+
$-fab-trigger-height: var(--oxy-fab-trigger-height, 56px) !default;
|
|
862
|
+
$-fab-trigger-width: var(--oxy-fab-trigger-width, 56px) !default;
|
|
863
|
+
$-fab-actions-padding: var(--oxy-actions-padding, 12px) !default;
|
|
864
|
+
$-fab-icon-fs: var(--oxy-fab-icon-fs, 20px) !default;
|
|
865
|
+
|
|
866
|
+
/* count-down */
|
|
867
|
+
$-count-down-text-color: var(--oxy-count-down-text-color, $-color-gray-8) !default;
|
|
868
|
+
$-count-down-font-size: var(--oxy-count-down-font-size, $-fs-content) !default;
|
|
869
|
+
$-count-down-line-height: var(--oxy-count-down-line-height, 20px) !default;
|
|
870
|
+
|
|
871
|
+
/* keyboard */
|
|
872
|
+
$-keyboard-key-height: var(--oxy-keyboard-key-height, 48px) !default;
|
|
873
|
+
$-keyboard-key-font-size: var(--oxy-keyboard-key-font-size, 28px) !default;
|
|
874
|
+
$-keyboard-key-background: var(--oxy-keyboard-key-background, $-color-white) !default;
|
|
875
|
+
$-keyboard-key-border-radius: var(--oxy-keyboard-key-border-radius, 8px) !default;
|
|
876
|
+
$-keyboard-delete-font-size: var(--oxy-keyboard-delete-font-size, 16px) !default;
|
|
877
|
+
$-keyboard-key-active-color: var(--oxy-keyboard-key-active-color, $-color-gray-3) !default;
|
|
878
|
+
$-keyboard-button-text-color: var(--oxy-keyboard-button-text-color, $-color-white) !default;
|
|
879
|
+
$-keyboard-button-background: var(--oxy-keyboard--button-background, $-color-theme) !default;
|
|
880
|
+
$-keyboard-button-active-opacity: var(--oxy-keyboard-button-active-opacity, 0.6) !default;
|
|
881
|
+
$-keyboard-background: var(--oxy-keyboard-background, $-color-gray-2) !default;
|
|
882
|
+
$-keyboard-title-height: var(--oxy-keyboard-title-height, 34px) !default;
|
|
883
|
+
$-keyboard-title-color: var(--oxy-keyboard-title-color, $-color-gray-7) !default;
|
|
884
|
+
$-keyboard-title-font-size: var(--oxy-keyboard-title-font-size, 16px) !default;
|
|
885
|
+
$-keyboard-close-padding: var(--oxy-keyboard-title-font-size, 0 16px) !default;
|
|
886
|
+
$-keyboard-close-color: var(--oxy-keyboard-close-color, $-color-theme) !default;
|
|
887
|
+
$-keyboard-close-font-size: var(--oxy-keyboard-close-font-size, 14px) !default;
|
|
888
|
+
$-keyboard-icon-size: var(--oxy-keyboard-icon-size, 22px) !default;
|
|
889
|
+
|
|
890
|
+
/* number-keyboard */
|
|
891
|
+
$-number-keyboard-key-height: var(--oxy-number-keyboard-key-height, 48px) !default;
|
|
892
|
+
$-number-keyboard-key-font-size: var(--oxy-number-keyboard-key-font-size, 28px) !default;
|
|
893
|
+
$-number-keyboard-key-background: var(--oxy-number-keyboard-key-background, $-color-white) !default;
|
|
894
|
+
$-number-keyboard-key-border-radius: var(--oxy-number-keyboard-key-border-radius, 8px) !default;
|
|
895
|
+
$-number-keyboard-delete-font-size: var(--oxy-number-keyboard-delete-font-size, 16px) !default;
|
|
896
|
+
$-number-keyboard-key-active-color: var(--oxy-number-keyboard-key-active-color, $-color-gray-3) !default;
|
|
897
|
+
$-number-keyboard-button-text-color: var(--oxy-number-keyboard-button-text-color, $-color-white) !default;
|
|
898
|
+
$-number-keyboard-button-background: var(--oxy-number-keyboard--button-background, $-color-theme) !default;
|
|
899
|
+
$-number-keyboard-button-active-opacity: var(--oxy-number-keyboard-button-active-opacity, 0.6) !default;
|
|
900
|
+
$-number-keyboard-background: var(--oxy-number-keyboard-background, $-color-gray-2) !default;
|
|
901
|
+
$-number-keyboard-title-height: var(--oxy-number-keyboard-title-height, 34px) !default;
|
|
902
|
+
$-number-keyboard-title-color: var(--oxy-number-keyboard-title-color, $-color-gray-7) !default;
|
|
903
|
+
$-number-keyboard-title-font-size: var(--oxy-number-keyboard-title-font-size, 16px) !default;
|
|
904
|
+
$-number-keyboard-close-padding: var(--oxy-number-keyboard-title-font-size, 0 16px) !default;
|
|
905
|
+
$-number-keyboard-close-color: var(--oxy-number-keyboard-close-color, $-color-theme) !default;
|
|
906
|
+
$-number-keyboard-close-font-size: var(--oxy-number-keyboard-close-font-size, 14px) !default;
|
|
907
|
+
$-number-keyboard-icon-size: var(--oxy-number-keyboard-icon-size, 22px) !default;
|
|
908
|
+
|
|
909
|
+
/* passwod-input */
|
|
910
|
+
$-password-input-height: var(--oxy-password-input-height, 50px);
|
|
911
|
+
$-password-input-margin: var(--oxy-password-input-margin, 16px);
|
|
912
|
+
$-password-input-font-size: var(--oxy-password-input-margin, 20px);
|
|
913
|
+
$-password-input-radius: var(--oxy-password-input-radius, 6px);
|
|
914
|
+
$-password-input-background: var(--oxy-password-input-background, #fff);
|
|
915
|
+
$-password-input-info-color: var(--oxy-password-input-info-color, $-color-info);
|
|
916
|
+
$-password-input-info-font-size: var(--oxy-password-input-info-font-size, $-fs-content);
|
|
917
|
+
$-password-input-border-color: var(--oxy-password-border-color, #ebedf0);
|
|
918
|
+
$-password-input-error-info-color: var(--oxy-password-input-error-info-color, $-color-danger);
|
|
919
|
+
$-password-input-dot-size: var(--oxy-password-input-dot-size, 10px);
|
|
920
|
+
$-password-input-dot-color: var(--oxy-password-input-dot-color, $-color-gray-8);
|
|
921
|
+
$-password-input-text-color: var(--oxy-password-input-text-color, $-color-gray-8);
|
|
922
|
+
$-password-input-cursor-color: var(--oxy-password-input-cursor-color, $-color-gray-8);
|
|
923
|
+
$-password-input-cursor-width: var(--oxy-password-input-cursor-width, 1px);
|
|
924
|
+
$-password-input-cursor-height: var(--oxy-password-input-cursor-height, 40%);
|
|
925
|
+
$-password-input-cursor-duration: var(--oxy-password-input-cursor-duration, 1s);
|
|
926
|
+
|
|
927
|
+
/* form-item */
|
|
928
|
+
$-form-item-error-message-color: var(--oxy-form-item-error-message-color, $-color-danger) !default;
|
|
929
|
+
$-form-item-error-message-font-size: var(--oxy-form-item-error-message-font-size, $-fs-secondary) !default;
|
|
930
|
+
$-form-item-error-message-line-height: var(--oxy-form-item-error-message-line-height, 24px) !default;
|
|
931
|
+
|
|
932
|
+
/* backtop */
|
|
933
|
+
$-backtop-bg: var(--oxy-backtop-bg, #e1e1e1) !default;
|
|
934
|
+
$-backtop-icon-size: var(--oxy-backtop-icon-size, 20px) !default;
|
|
935
|
+
|
|
936
|
+
/* index-bar */
|
|
937
|
+
$-index-bar-index-font-size: var(--oxy-index-bar-index-font-size, $-fs-aid) !default;
|
|
938
|
+
|
|
939
|
+
/* text */
|
|
940
|
+
$-text-info-color: var(--oxy-text-info-color, $-color-info) !default;
|
|
941
|
+
$-text-primary-color: var(--oxy-text-primary-color, $-color-theme) !default;
|
|
942
|
+
$-text-error-color: var(--oxy-text-error-color, $-color-danger) !default;
|
|
943
|
+
$-text-warning-color: var(--oxy-text-warning-color, $-color-warning) !default;
|
|
944
|
+
$-text-success-color: var(--oxy-text-success-color, $-color-success) !default;
|
|
945
|
+
|
|
946
|
+
/* video-preview */
|
|
947
|
+
$-video-preview-bg: var(--oxy-video-preview-bg, rgba(0, 0, 0, 0.8)) !default; // 背景色
|
|
948
|
+
$-video-preview-close-color: var(--oxy-video-preview-close-color, #fff) !default; // 图标颜色
|
|
949
|
+
$-video-preview-close-font-size: var(--oxy-video-preview-close-font-size, 20px) !default; // 图标大小
|
|
950
|
+
|
|
951
|
+
/* img-cropper */
|
|
952
|
+
$-img-cropper-icon-size: var(--oxy-img-cropper-icon-size, $-fs-big) !default; // 图标大小
|
|
953
|
+
$-img-cropper-icon-color: var(--oxy-img-cropper-icon-color, #fff) !default; // 图标颜色
|
|
954
|
+
|
|
955
|
+
/* floating-panel */
|
|
956
|
+
$-floating-panel-bg: var(--oxy-floating-panel-bg, $-color-white) !default; // 背景色
|
|
957
|
+
$-floating-panel-radius: var(--oxy-floating-panel-radius, 16px) !default; // 圆角
|
|
958
|
+
$-floating-panel-z-index: var(--oxy-floating-panel-z-index, 99) !default; // 层级
|
|
959
|
+
$-floating-panel-header-height: var(--oxy-floating-panel-header-height, 30px) !default; // 头部高度
|
|
960
|
+
$-floating-panel-bar-width: var(--oxy-floating-panel-bar-width, 20px) !default; // bar 宽度
|
|
961
|
+
$-floating-panel-bar-height: var(--oxy-floating-panel-bar-height, 3px) !default; // bar 高度
|
|
962
|
+
$-floating-panel-bar-bg: var(--oxy-floating-panel-bar-bg, $-color-gray-5) !default; // bar 背景色
|
|
963
|
+
$-floating-panel-bar-radius: var(--oxy-floating-panel-bar-radius, 4px) !default; // bar 圆角
|
|
964
|
+
$-floating-panel-content-bg: var(--oxy-floating-panel-content-bg, $-color-white) !default; // 内容背景色
|
|
965
|
+
|
|
966
|
+
/* signature */
|
|
967
|
+
$-signature-bg: var(--oxy-signature-bg, $-color-white) !default; // 背景色
|
|
968
|
+
$-signature-radius: var(--oxy-signature-radius, 4px) !default; // 圆角
|
|
969
|
+
$-signature-border: var(--oxy-signature-border, 1px solid $-color-gray-5) !default; // 边框圆角
|
|
970
|
+
$-signature-footer-margin-top: var(--oxy-signature-footer-margin-top, 8px) !default; // 底部按钮上边距
|
|
971
|
+
$-signature-button-margin-left: var(--oxy-signature-button-margin-left, 8px) !default; // 底部按钮左边距
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
|