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,1230 @@
|
|
|
1
|
+
@import '../common/abstracts/variable';
|
|
2
|
+
@import '../common/abstracts/mixin';
|
|
3
|
+
|
|
4
|
+
@font-face {
|
|
5
|
+
font-family: 'oxy-icons';
|
|
6
|
+
src: url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.woff2?t=1696817709651') format('woff2'),
|
|
7
|
+
url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.woff?t=1696817709651') format('woff'),
|
|
8
|
+
url('https://at.alicdn.com/t/c/font_4245058_s5cpwl25n7o.ttf?t=1696817709651') format('truetype');
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* #ifdef APP-PLUS || H5 */
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'oxy-icons';
|
|
16
|
+
src:
|
|
17
|
+
url('./oxy-icons.ttf') format('truetype');
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/* #endif */
|
|
23
|
+
|
|
24
|
+
@include b(icon) {
|
|
25
|
+
display: inline-block;
|
|
26
|
+
font-family: 'oxy-icons' !important;
|
|
27
|
+
font-style: normal;
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
font-variant: normal;
|
|
30
|
+
text-transform: none;
|
|
31
|
+
/* Better Font Rendering =========== */
|
|
32
|
+
-webkit-font-smoothing: antialiased;
|
|
33
|
+
-moz-osx-font-smoothing: grayscale;
|
|
34
|
+
|
|
35
|
+
&::before {
|
|
36
|
+
display: inline-block;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@include m(image) {
|
|
40
|
+
width: 1em;
|
|
41
|
+
height: 1em;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@include e(image) {
|
|
45
|
+
width: 100%;
|
|
46
|
+
height: 100%;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
.oxy-icon-usergroup-clear:before {
|
|
53
|
+
content: "\e739";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.oxy-icon-user-circle:before {
|
|
57
|
+
content: "\e73a";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.oxy-icon-user-talk:before {
|
|
61
|
+
content: "\e73b";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.oxy-icon-user-clear:before {
|
|
65
|
+
content: "\e73c";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.oxy-icon-user:before {
|
|
69
|
+
content: "\e73d";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.oxy-icon-usergroup-add:before {
|
|
73
|
+
content: "\e73e";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.oxy-icon-usergroup:before {
|
|
77
|
+
content: "\e73f";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.oxy-icon-user-add:before {
|
|
81
|
+
content: "\e740";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.oxy-icon-user-avatar:before {
|
|
85
|
+
content: "\e741";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.oxy-icon-pointing-hand:before {
|
|
89
|
+
content: "\e742";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.oxy-icon-cursor:before {
|
|
93
|
+
content: "\e743";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.oxy-icon-fullsreen:before {
|
|
97
|
+
content: "\e72c";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.oxy-icon-cloud-download:before {
|
|
101
|
+
content: "\e72d";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.oxy-icon-chevron-down-rectangle:before {
|
|
105
|
+
content: "\e72e";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.oxy-icon-edit:before {
|
|
109
|
+
content: "\e72f";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.oxy-icon-fullscreen-exit:before {
|
|
113
|
+
content: "\e730";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.oxy-icon-circle1:before {
|
|
117
|
+
content: "\e731";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.oxy-icon-close-normal:before {
|
|
121
|
+
content: "\e732";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.oxy-icon-browse:before {
|
|
125
|
+
content: "\e733";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.oxy-icon-browse-off:before {
|
|
129
|
+
content: "\e734";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.oxy-icon-chevron-up-rectangle:before {
|
|
133
|
+
content: "\e735";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.oxy-icon-add-rectangle:before {
|
|
137
|
+
content: "\e736";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.oxy-icon-add1:before {
|
|
141
|
+
content: "\e737";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.oxy-icon-add-circle1:before {
|
|
145
|
+
content: "\e738";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.oxy-icon-download1:before {
|
|
149
|
+
content: "\e71c";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.oxy-icon-link:before {
|
|
153
|
+
content: "\e71d";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.oxy-icon-edit-1:before {
|
|
157
|
+
content: "\e71e";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.oxy-icon-jump:before {
|
|
161
|
+
content: "\e71f";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.oxy-icon-chevron-down-circle:before {
|
|
165
|
+
content: "\e720";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.oxy-icon-delete1:before {
|
|
169
|
+
content: "\e721";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.oxy-icon-filter-clear:before {
|
|
173
|
+
content: "\e722";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.oxy-icon-check-rectangle-filled:before {
|
|
177
|
+
content: "\e723";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.oxy-icon-minus-circle-filled:before {
|
|
181
|
+
content: "\e724";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.oxy-icon-play:before {
|
|
185
|
+
content: "\e725";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.oxy-icon-pause-circle-filled:before {
|
|
189
|
+
content: "\e726";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.oxy-icon-filter1:before {
|
|
193
|
+
content: "\e727";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.oxy-icon-move:before {
|
|
197
|
+
content: "\e728";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.oxy-icon-login:before {
|
|
201
|
+
content: "\e729";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.oxy-icon-minus-circle:before {
|
|
205
|
+
content: "\e72a";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.oxy-icon-close-circle:before {
|
|
209
|
+
content: "\e72b";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.oxy-icon-logout:before {
|
|
213
|
+
content: "\e70b";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.oxy-icon-search1:before {
|
|
217
|
+
content: "\e70c";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.oxy-icon-pause-circle:before {
|
|
221
|
+
content: "\e70d";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.oxy-icon-play-circle:before {
|
|
225
|
+
content: "\e70e";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.oxy-icon-more1:before {
|
|
229
|
+
content: "\e70f";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.oxy-icon-minus-rectangle:before {
|
|
233
|
+
content: "\e710";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.oxy-icon-stop:before {
|
|
237
|
+
content: "\e711";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.oxy-icon-scan1:before {
|
|
241
|
+
content: "\e712";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.oxy-icon-close-rectangle:before {
|
|
245
|
+
content: "\e713";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.oxy-icon-rollback:before {
|
|
249
|
+
content: "\e714";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.oxy-icon-a-order-adjustmentcolumn:before {
|
|
253
|
+
content: "\e715";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.oxy-icon-pause:before {
|
|
257
|
+
content: "\e716";
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.oxy-icon-ellipsis:before {
|
|
261
|
+
content: "\e717";
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.oxy-icon-cloud-upload:before {
|
|
265
|
+
content: "\e718";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.oxy-icon-stop-circle-filled:before {
|
|
269
|
+
content: "\e719";
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.oxy-icon-clear:before {
|
|
273
|
+
content: "\e71a";
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.oxy-icon-remove:before {
|
|
277
|
+
content: "\e71b";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.oxy-icon-zoom-out:before {
|
|
281
|
+
content: "\e6fb";
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.oxy-icon-thumb-down:before {
|
|
285
|
+
content: "\e6fc";
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.oxy-icon-setting1:before {
|
|
289
|
+
content: "\e6fd";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.oxy-icon-save:before {
|
|
293
|
+
content: "\e6fe";
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.oxy-icon-unfold-more:before {
|
|
297
|
+
content: "\e6ff";
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.oxy-icon-zoom-in:before {
|
|
301
|
+
content: "\e700";
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.oxy-icon-thumb-up:before {
|
|
305
|
+
content: "\e701";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.oxy-icon-unfold-less:before {
|
|
309
|
+
content: "\e702";
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.oxy-icon-play-circle-filled:before {
|
|
313
|
+
content: "\e703";
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.oxy-icon-poweroff:before {
|
|
317
|
+
content: "\e704";
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.oxy-icon-share:before {
|
|
321
|
+
content: "\e705";
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.oxy-icon-refresh1:before {
|
|
325
|
+
content: "\e706";
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.oxy-icon-link-unlink:before {
|
|
329
|
+
content: "\e707";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.oxy-icon-upload:before {
|
|
333
|
+
content: "\e708";
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.oxy-icon-rectangle:before {
|
|
337
|
+
content: "\e709";
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.oxy-icon-stop-circle:before {
|
|
341
|
+
content: "\e70a";
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.oxy-icon-backtop-rectangle:before {
|
|
345
|
+
content: "\e6ea";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.oxy-icon-caret-down:before {
|
|
349
|
+
content: "\e6eb";
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.oxy-icon-arrow-left1:before {
|
|
353
|
+
content: "\e6ec";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.oxy-icon-help-circle:before {
|
|
357
|
+
content: "\e6ed";
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.oxy-icon-help-circle-filled:before {
|
|
361
|
+
content: "\e6ee";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.oxy-icon-time-filled:before {
|
|
365
|
+
content: "\e6ef";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.oxy-icon-close-circle-filled:before {
|
|
369
|
+
content: "\e6f0";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.oxy-icon-info-circle:before {
|
|
373
|
+
content: "\e6f1";
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.oxy-icon-info-circle-filled:before {
|
|
377
|
+
content: "\e6f2";
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.oxy-icon-check1:before {
|
|
381
|
+
content: "\e6f3";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.oxy-icon-help:before {
|
|
385
|
+
content: "\e6f4";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.oxy-icon-error:before {
|
|
389
|
+
content: "\e6f5";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.oxy-icon-check-circle:before {
|
|
393
|
+
content: "\e6f6";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.oxy-icon-error-circle-filled:before {
|
|
397
|
+
content: "\e6f7";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.oxy-icon-error-circle:before {
|
|
401
|
+
content: "\e6f8";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.oxy-icon-check-rectangle:before {
|
|
405
|
+
content: "\e6f9";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.oxy-icon-check-circle-filled:before {
|
|
409
|
+
content: "\e6fa";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.oxy-icon-chevron-up:before {
|
|
413
|
+
content: "\e6da";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.oxy-icon-chevron-up-circle:before {
|
|
417
|
+
content: "\e6db";
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.oxy-icon-chevron-right:before {
|
|
421
|
+
content: "\e6dc";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.oxy-icon-arrow-down-rectangle:before {
|
|
425
|
+
content: "\e6dd";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.oxy-icon-caret-up-small:before {
|
|
429
|
+
content: "\e6de";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.oxy-icon-chevron-right-rectangle:before {
|
|
433
|
+
content: "\e6df";
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.oxy-icon-caret-right-small:before {
|
|
437
|
+
content: "\e6e0";
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.oxy-icon-arrow-right1:before {
|
|
441
|
+
content: "\e6e1";
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.oxy-icon-backtop:before {
|
|
445
|
+
content: "\e6e2";
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.oxy-icon-arrow-up1:before {
|
|
449
|
+
content: "\e6e3";
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.oxy-icon-caret-up:before {
|
|
453
|
+
content: "\e6e4";
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.oxy-icon-backward:before {
|
|
457
|
+
content: "\e6e5";
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.oxy-icon-arrow-down1:before {
|
|
461
|
+
content: "\e6e6";
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.oxy-icon-chevron-left:before {
|
|
465
|
+
content: "\e6e7";
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.oxy-icon-caret-right:before {
|
|
469
|
+
content: "\e6e8";
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.oxy-icon-caret-left:before {
|
|
473
|
+
content: "\e6e9";
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.oxy-icon-page-last:before {
|
|
477
|
+
content: "\e6c9";
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.oxy-icon-next:before {
|
|
481
|
+
content: "\e6ca";
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.oxy-icon-swap:before {
|
|
485
|
+
content: "\e6cb";
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.oxy-icon-round:before {
|
|
489
|
+
content: "\e6cc";
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.oxy-icon-previous:before {
|
|
493
|
+
content: "\e6cd";
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.oxy-icon-enter:before {
|
|
497
|
+
content: "\e6ce";
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.oxy-icon-chevron-down:before {
|
|
501
|
+
content: "\e6cf";
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.oxy-icon-caret-down-small:before {
|
|
505
|
+
content: "\e6d0";
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.oxy-icon-swap-right:before {
|
|
509
|
+
content: "\e6d1";
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.oxy-icon-chevron-left-circle:before {
|
|
513
|
+
content: "\e6d2";
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.oxy-icon-caret-left-small:before {
|
|
517
|
+
content: "\e6d3";
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.oxy-icon-chevron-right-circle:before {
|
|
521
|
+
content: "\e6d4";
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.oxy-icon-a-chevron-leftdouble:before {
|
|
525
|
+
content: "\e6d5";
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.oxy-icon-chevron-left-rectangle:before {
|
|
529
|
+
content: "\e6d6";
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.oxy-icon-a-chevron-rightdouble:before {
|
|
533
|
+
content: "\e6d7";
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.oxy-icon-page-first:before {
|
|
537
|
+
content: "\e6d8";
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.oxy-icon-forward:before {
|
|
541
|
+
content: "\e6d9";
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.oxy-icon-view-column:before {
|
|
545
|
+
content: "\e6b9";
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.oxy-icon-view-module:before {
|
|
549
|
+
content: "\e6ba";
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.oxy-icon-format-vertical-align-right:before {
|
|
553
|
+
content: "\e6bb";
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.oxy-icon-view-list:before {
|
|
557
|
+
content: "\e6bc";
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.oxy-icon-order-descending:before {
|
|
561
|
+
content: "\e6bd";
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.oxy-icon-format-horizontal-align-bottom:before {
|
|
565
|
+
content: "\e6be";
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.oxy-icon-queue:before {
|
|
569
|
+
content: "\e6bf";
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.oxy-icon-menu-fold:before {
|
|
573
|
+
content: "\e6c0";
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.oxy-icon-menu-unfold:before {
|
|
577
|
+
content: "\e6c1";
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.oxy-icon-format-horizontal-align-top:before {
|
|
581
|
+
content: "\e6c2";
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.oxy-icon-a-rootlist:before {
|
|
585
|
+
content: "\e6c3";
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.oxy-icon-order-ascending:before {
|
|
589
|
+
content: "\e6c4";
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.oxy-icon-format-vertical-align-left:before {
|
|
593
|
+
content: "\e6c5";
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.oxy-icon-format-horizontal-align-center:before {
|
|
597
|
+
content: "\e6c6";
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.oxy-icon-format-vertical-align-center:before {
|
|
601
|
+
content: "\e6c7";
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.oxy-icon-swap-left:before {
|
|
605
|
+
content: "\e6c8";
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.oxy-icon-flag:before {
|
|
609
|
+
content: "\e6aa";
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.oxy-icon-code:before {
|
|
613
|
+
content: "\e6ab";
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.oxy-icon-cart:before {
|
|
617
|
+
content: "\e6ac";
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.oxy-icon-attach:before {
|
|
621
|
+
content: "\e6ad";
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.oxy-icon-chart:before {
|
|
625
|
+
content: "\e6ae";
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.oxy-icon-creditcard:before {
|
|
629
|
+
content: "\e6af";
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.oxy-icon-calendar:before {
|
|
633
|
+
content: "\e6b0";
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.oxy-icon-app:before {
|
|
637
|
+
content: "\e6b1";
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.oxy-icon-books:before {
|
|
641
|
+
content: "\e6b2";
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.oxy-icon-barcode:before {
|
|
645
|
+
content: "\e6b3";
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.oxy-icon-chart-pie:before {
|
|
649
|
+
content: "\e6b4";
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.oxy-icon-chart-bar:before {
|
|
653
|
+
content: "\e6b5";
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.oxy-icon-chart-bubble:before {
|
|
657
|
+
content: "\e6b6";
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.oxy-icon-bulletpoint:before {
|
|
661
|
+
content: "\e6b7";
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.oxy-icon-bianjiliebiao:before {
|
|
665
|
+
content: "\e6b8";
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.oxy-icon-image:before {
|
|
669
|
+
content: "\e69a";
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.oxy-icon-laptop:before {
|
|
673
|
+
content: "\e69b";
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.oxy-icon-hourglass:before {
|
|
677
|
+
content: "\e69c";
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.oxy-icon-call:before {
|
|
681
|
+
content: "\e69d";
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.oxy-icon-mobile-vibrate:before {
|
|
685
|
+
content: "\e69e";
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.oxy-icon-mail:before {
|
|
689
|
+
content: "\e69f";
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.oxy-icon-notification-filled:before {
|
|
693
|
+
content: "\e6a0";
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.oxy-icon-desktop:before {
|
|
697
|
+
content: "\e6a1";
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.oxy-icon-history:before {
|
|
701
|
+
content: "\e6a2";
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.oxy-icon-discount-filled:before {
|
|
705
|
+
content: "\e6a3";
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.oxy-icon-dashboard:before {
|
|
709
|
+
content: "\e6a4";
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.oxy-icon-discount:before {
|
|
713
|
+
content: "\e6a5";
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.oxy-icon-heart-filled:before {
|
|
717
|
+
content: "\e6a6";
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.oxy-icon-chat1:before {
|
|
721
|
+
content: "\e6a7";
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.oxy-icon-a-controlplatform:before {
|
|
725
|
+
content: "\e6a8";
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.oxy-icon-gift:before {
|
|
729
|
+
content: "\e6a9";
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.oxy-icon-photo:before {
|
|
733
|
+
content: "\e692";
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.oxy-icon-play-circle-stroke:before {
|
|
737
|
+
content: "\e693";
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.oxy-icon-notification:before {
|
|
741
|
+
content: "\e694";
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.oxy-icon-cloud:before {
|
|
745
|
+
content: "\e695";
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.oxy-icon-gender-female:before {
|
|
749
|
+
content: "\e696";
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.oxy-icon-fork:before {
|
|
753
|
+
content: "\e697";
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.oxy-icon-layers:before {
|
|
757
|
+
content: "\e698";
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.oxy-icon-lock-off:before {
|
|
761
|
+
content: "\e699";
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.oxy-icon-location:before {
|
|
765
|
+
content: "\e68a";
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.oxy-icon-mobile:before {
|
|
769
|
+
content: "\e68b";
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.oxy-icon-qrcode:before {
|
|
773
|
+
content: "\e68c";
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.oxy-icon-home1:before {
|
|
777
|
+
content: "\e68d";
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.oxy-icon-time:before {
|
|
781
|
+
content: "\e68e";
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.oxy-icon-heart:before {
|
|
785
|
+
content: "\e68f";
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.oxy-icon-lock-on:before {
|
|
789
|
+
content: "\e690";
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.oxy-icon-print:before {
|
|
793
|
+
content: "\e691";
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.oxy-icon-slash:before {
|
|
797
|
+
content: "\e67a";
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.oxy-icon-usb:before {
|
|
801
|
+
content: "\e67b";
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.oxy-icon-tools:before {
|
|
805
|
+
content: "\e67c";
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.oxy-icon-wifi:before {
|
|
809
|
+
content: "\e67d";
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.oxy-icon-star-filled:before {
|
|
813
|
+
content: "\e67e";
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.oxy-icon-server:before {
|
|
817
|
+
content: "\e67f";
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.oxy-icon-sound:before {
|
|
821
|
+
content: "\e680";
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.oxy-icon-a-precisemonitor:before {
|
|
825
|
+
content: "\e681";
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.oxy-icon-service:before {
|
|
829
|
+
content: "\e682";
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.oxy-icon-tips:before {
|
|
833
|
+
content: "\e683";
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.oxy-icon-pin:before {
|
|
837
|
+
content: "\e684";
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.oxy-icon-secured:before {
|
|
841
|
+
content: "\e685";
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.oxy-icon-star:before {
|
|
845
|
+
content: "\e686";
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.oxy-icon-gender-male:before {
|
|
849
|
+
content: "\e687";
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.oxy-icon-shop:before {
|
|
853
|
+
content: "\e688";
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.oxy-icon-money-circle:before {
|
|
857
|
+
content: "\e689";
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.oxy-icon-file-word:before {
|
|
861
|
+
content: "\e66a";
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.oxy-icon-file-unknown:before {
|
|
865
|
+
content: "\e66b";
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.oxy-icon-folder-open:before {
|
|
869
|
+
content: "\e66c";
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.oxy-icon-file-pdf:before {
|
|
873
|
+
content: "\e66d";
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.oxy-icon-folder:before {
|
|
877
|
+
content: "\e66e";
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.oxy-icon-folder-add:before {
|
|
881
|
+
content: "\e66f";
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.oxy-icon-file:before {
|
|
885
|
+
content: "\e670";
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.oxy-icon-file-image:before {
|
|
889
|
+
content: "\e671";
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.oxy-icon-file-powerpoint:before {
|
|
893
|
+
content: "\e672";
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.oxy-icon-file-add:before {
|
|
897
|
+
content: "\e673";
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.oxy-icon-file-icon:before {
|
|
901
|
+
content: "\e674";
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.oxy-icon-file-paste:before {
|
|
905
|
+
content: "\e675";
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.oxy-icon-file-excel:before {
|
|
909
|
+
content: "\e676";
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.oxy-icon-file-copy:before {
|
|
913
|
+
content: "\e677";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.oxy-icon-video1:before {
|
|
917
|
+
content: "\e678";
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.oxy-icon-wallet:before {
|
|
921
|
+
content: "\e679";
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.oxy-icon-ie:before {
|
|
925
|
+
content: "\e65d";
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.oxy-icon-logo-codepen:before {
|
|
929
|
+
content: "\e65e";
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.oxy-icon-github-filled:before {
|
|
933
|
+
content: "\e65f";
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.oxy-icon-ie-filled:before {
|
|
937
|
+
content: "\e660";
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.oxy-icon-apple:before {
|
|
941
|
+
content: "\e661";
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.oxy-icon-windows-filled:before {
|
|
945
|
+
content: "\e662";
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.oxy-icon-internet:before {
|
|
949
|
+
content: "\e663";
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.oxy-icon-github:before {
|
|
953
|
+
content: "\e664";
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.oxy-icon-windows:before {
|
|
957
|
+
content: "\e665";
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.oxy-icon-apple-filled:before {
|
|
961
|
+
content: "\e666";
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.oxy-icon-chrome-filled:before {
|
|
965
|
+
content: "\e667";
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.oxy-icon-chrome:before {
|
|
969
|
+
content: "\e668";
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.oxy-icon-android:before {
|
|
973
|
+
content: "\e669";
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.oxy-icon-edit-outline:before {
|
|
977
|
+
content: "\e64a";
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.oxy-icon-detection:before {
|
|
981
|
+
content: "\e64b";
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.oxy-icon-check-outline:before {
|
|
985
|
+
content: "\e64c";
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.oxy-icon-close:before {
|
|
989
|
+
content: "\e64d";
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.oxy-icon-check:before {
|
|
993
|
+
content: "\e64e";
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.oxy-icon-arrow-left:before {
|
|
997
|
+
content: "\e64f";
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.oxy-icon-computer:before {
|
|
1001
|
+
content: "\e650";
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.oxy-icon-clock:before {
|
|
1005
|
+
content: "\e651";
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.oxy-icon-check-bold:before {
|
|
1009
|
+
content: "\e652";
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.oxy-icon-bags:before {
|
|
1013
|
+
content: "\e653";
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.oxy-icon-arrow-down:before {
|
|
1017
|
+
content: "\e654";
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.oxy-icon-arrow-right:before {
|
|
1021
|
+
content: "\e655";
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.oxy-icon-circle:before {
|
|
1025
|
+
content: "\e656";
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.oxy-icon-arrow-thin-down:before {
|
|
1029
|
+
content: "\e657";
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.oxy-icon-camera:before {
|
|
1033
|
+
content: "\e658";
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.oxy-icon-close-bold:before {
|
|
1037
|
+
content: "\e659";
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.oxy-icon-add-circle:before {
|
|
1041
|
+
content: "\e65a";
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.oxy-icon-arrow-thin-up:before {
|
|
1045
|
+
content: "\e65b";
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.oxy-icon-add:before {
|
|
1049
|
+
content: "\e65c";
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.oxy-icon-keyboard-delete:before {
|
|
1053
|
+
content: "\e634";
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.oxy-icon-transfer:before {
|
|
1057
|
+
content: "\e635";
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.oxy-icon-eye-close:before {
|
|
1061
|
+
content: "\e61f";
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.oxy-icon-delete:before {
|
|
1065
|
+
content: "\e61e";
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.oxy-icon-download:before {
|
|
1069
|
+
content: "\e636";
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.oxy-icon-picture:before {
|
|
1073
|
+
content: "\e637";
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.oxy-icon-refresh:before {
|
|
1077
|
+
content: "\e638";
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.oxy-icon-read:before {
|
|
1081
|
+
content: "\e639";
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.oxy-icon-note:before {
|
|
1085
|
+
content: "\e63a";
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.oxy-icon-phone:before {
|
|
1089
|
+
content: "\e63b";
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.oxy-icon-lenovo:before {
|
|
1093
|
+
content: "\e63c";
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.oxy-icon-home:before {
|
|
1097
|
+
content: "\e63d";
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.oxy-icon-search:before {
|
|
1101
|
+
content: "\e63e";
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.oxy-icon-fill-camera:before {
|
|
1105
|
+
content: "\e63f";
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.oxy-icon-fill-arrow-down:before {
|
|
1109
|
+
content: "\e640";
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.oxy-icon-arrow-up:before {
|
|
1113
|
+
content: "\e61d";
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.oxy-icon-delete-thin:before {
|
|
1117
|
+
content: "\e641";
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.oxy-icon-filter:before {
|
|
1121
|
+
content: "\e642";
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.oxy-icon-evaluation:before {
|
|
1125
|
+
content: "\e643";
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.oxy-icon-close-outline:before {
|
|
1129
|
+
content: "\e644";
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.oxy-icon-dong:before {
|
|
1133
|
+
content: "\e645";
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.oxy-icon-error-fill:before {
|
|
1137
|
+
content: "\e646";
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.oxy-icon-chat:before {
|
|
1141
|
+
content: "\e647";
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.oxy-icon-decrease:before {
|
|
1145
|
+
content: "\e648";
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.oxy-icon-copy:before {
|
|
1149
|
+
content: "\e649";
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.oxy-icon-setting:before {
|
|
1153
|
+
content: "\e621";
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.oxy-icon-subscribe:before {
|
|
1157
|
+
content: "\e622";
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.oxy-icon-jdm:before {
|
|
1161
|
+
content: "\e620";
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.oxy-icon-spool:before {
|
|
1165
|
+
content: "\e623";
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.oxy-icon-warning:before {
|
|
1169
|
+
content: "\e624";
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.oxy-icon-wifi-error:before {
|
|
1173
|
+
content: "\e625";
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.oxy-icon-star-on:before {
|
|
1177
|
+
content: "\e626";
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.oxy-icon-rotate:before {
|
|
1181
|
+
content: "\e627";
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.oxy-icon-translate-bold:before {
|
|
1185
|
+
content: "\e628";
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.oxy-icon-keyboard-collapse:before {
|
|
1189
|
+
content: "\e629";
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.oxy-icon-keywords:before {
|
|
1193
|
+
content: "\e62a";
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.oxy-icon-scan:before {
|
|
1197
|
+
content: "\e62b";
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.oxy-icon-view:before {
|
|
1201
|
+
content: "\e62c";
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.oxy-icon-phone-compute:before {
|
|
1205
|
+
content: "\e62d";
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.oxy-icon-video:before {
|
|
1209
|
+
content: "\e62e";
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.oxy-icon-thin-arrow-left:before {
|
|
1213
|
+
content: "\e62f";
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.oxy-icon-goods:before {
|
|
1217
|
+
content: "\e630";
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.oxy-icon-list:before {
|
|
1221
|
+
content: "\e631";
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.oxy-icon-warn-bold:before {
|
|
1225
|
+
content: "\e632";
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.oxy-icon-more:before {
|
|
1229
|
+
content: "\e633";
|
|
1230
|
+
}
|