cc-core-cli 1.0.131 → 1.0.135
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/bin/index.js +4 -4
- package/package.json +1 -1
- package/template/admin/Dockerfile +4 -7
- package/template/admin/config/service-account.json +1 -0
- package/template/admin/index.js +67 -0
- package/template/admin/next.config.js +66 -0
- package/template/admin/package.json +10 -23
- package/template/admin/pages/404.js +13 -0
- package/template/admin/pages/[...url_key].js +21 -0
- package/template/admin/pages/_app.js +16 -0
- package/template/admin/pages/_document.js +43 -0
- package/template/admin/pages/callback/[channel].js +13 -0
- package/template/admin/pages/callback.js +13 -0
- package/template/admin/pages/change_password_expired.js +13 -0
- package/template/admin/pages/check_session.js +13 -0
- package/template/admin/pages/cognito.js +13 -0
- package/template/admin/pages/confirmpassword.js +12 -0
- package/template/admin/pages/forgotpassword.js +12 -0
- package/template/admin/pages/index.js +13 -0
- package/template/admin/pages/login.js +13 -0
- package/template/admin/pages/maintenance.js +12 -0
- package/template/admin/pages/password_expired.js +13 -0
- package/template/admin/pages/permission_denied.js +13 -0
- package/template/admin/pages/profile.js +14 -0
- package/template/admin/pages/register.js +13 -0
- package/template/admin/pages/setting/[...setting_url_key].js +13 -0
- package/template/admin/pages/setting/entities/[subList]/detail.js +14 -0
- package/template/admin/pages/setting/entities/[subList]/detail_compare.js +8 -0
- package/template/admin/pages/setting/entities/[subList]/index.js +7 -0
- package/template/admin/pages/setting/entities/detail/index.js +14 -0
- package/template/admin/pages/setting/entities/index.js +14 -0
- package/template/admin/pages/social.js +13 -0
- package/template/admin/pages/token_expired.js +12 -0
- package/template/admin/public/icon-192x192.png +0 -0
- package/template/admin/public/icon-256x256.png +0 -0
- package/template/admin/public/icon-384x384.png +0 -0
- package/template/admin/public/icon-512x512.png +0 -0
- package/template/admin/public/manifest.json +32 -0
- package/template/admin/public/private-image-worker.js +7 -10
- package/template/admin/public/static/images/adv_settings.svg +130 -0
- package/template/admin/public/static/images/aws-cognito.png +0 -0
- package/template/admin/public/static/images/azure-ad.svg +1 -0
- package/template/admin/public/static/images/bin_icon.svg +1 -0
- package/template/admin/public/static/images/color-picker.png +0 -0
- package/template/admin/public/static/images/csv_icon.svg +1 -0
- package/template/admin/public/static/images/default-file.png +0 -0
- package/template/admin/public/static/images/default-img.png +0 -0
- package/template/admin/public/static/images/default-map.png +0 -0
- package/template/admin/public/static/images/default-profile.png +0 -0
- package/template/admin/public/static/images/doc_icon.svg +1 -0
- package/template/admin/public/static/images/exe_icon.svg +1 -0
- package/template/admin/public/static/images/gif_icon.svg +1 -0
- package/template/admin/public/static/images/google.png +0 -0
- package/template/admin/public/static/images/icon-youtub.webp +0 -0
- package/template/admin/public/static/images/id-connect.png +0 -0
- package/template/admin/public/static/images/iso_icon.svg +1 -0
- package/template/admin/public/static/images/json_icon.png +0 -0
- package/template/admin/public/static/images/lang/af-ZA.svg +41 -0
- package/template/admin/public/static/images/lang/ar-AE.svg +38 -0
- package/template/admin/public/static/images/lang/ar-BH.svg +36 -0
- package/template/admin/public/static/images/lang/ar-DZ.svg +40 -0
- package/template/admin/public/static/images/lang/ar-EG.svg +38 -0
- package/template/admin/public/static/images/lang/ar-IQ.svg +46 -0
- package/template/admin/public/static/images/lang/ar-JO.svg +39 -0
- package/template/admin/public/static/images/lang/ar-KW.svg +38 -0
- package/template/admin/public/static/images/lang/ar-LB.svg +40 -0
- package/template/admin/public/static/images/lang/ar-LY.svg +41 -0
- package/template/admin/public/static/images/lang/ar-MA.svg +36 -0
- package/template/admin/public/static/images/lang/ar-OM.svg +70 -0
- package/template/admin/public/static/images/lang/ar-QA.svg +36 -0
- package/template/admin/public/static/images/lang/ar-SA.svg +62 -0
- package/template/admin/public/static/images/lang/ar-TN.svg +40 -0
- package/template/admin/public/static/images/lang/ar-YE.svg +37 -0
- package/template/admin/public/static/images/lang/az-AZ.svg +41 -0
- package/template/admin/public/static/images/lang/be-BY.svg +38 -0
- package/template/admin/public/static/images/lang/bg-BG.svg +37 -0
- package/template/admin/public/static/images/lang/bs-BA.svg +48 -0
- package/template/admin/public/static/images/lang/ca-ES.svg +89 -0
- package/template/admin/public/static/images/lang/cs-CZ.svg +37 -0
- package/template/admin/public/static/images/lang/cy-GB.svg +43 -0
- package/template/admin/public/static/images/lang/da-DK.svg +36 -0
- package/template/admin/public/static/images/lang/de-AT.svg +39 -0
- package/template/admin/public/static/images/lang/de-CH.svg +36 -0
- package/template/admin/public/static/images/lang/de-DE.svg +37 -0
- package/template/admin/public/static/images/lang/de-LI.svg +45 -0
- package/template/admin/public/static/images/lang/de-LU.svg +37 -0
- package/template/admin/public/static/images/lang/dv-MV.svg +37 -0
- package/template/admin/public/static/images/lang/el-GR.svg +46 -0
- package/template/admin/public/static/images/lang/en-AU.svg +51 -0
- package/template/admin/public/static/images/lang/en-BZ.svg +196 -0
- package/template/admin/public/static/images/lang/en-CA.svg +43 -0
- package/template/admin/public/static/images/lang/en-GB.svg +43 -0
- package/template/admin/public/static/images/lang/en-IE.svg +37 -0
- package/template/admin/public/static/images/lang/en-JM.svg +40 -0
- package/template/admin/public/static/images/lang/en-NZ.svg +51 -0
- package/template/admin/public/static/images/lang/en-PH.svg +51 -0
- package/template/admin/public/static/images/lang/en-SG.svg +44 -0
- package/template/admin/public/static/images/lang/en-TT.svg +40 -0
- package/template/admin/public/static/images/lang/en-US.svg +88 -0
- package/template/admin/public/static/images/lang/en-ZA.svg +41 -0
- package/template/admin/public/static/images/lang/en-ZW.svg +50 -0
- package/template/admin/public/static/images/lang/es-AR.svg +41 -0
- package/template/admin/public/static/images/lang/es-BO.svg +101 -0
- package/template/admin/public/static/images/lang/es-CL.svg +38 -0
- package/template/admin/public/static/images/lang/es-CO.svg +37 -0
- package/template/admin/public/static/images/lang/es-CR.svg +111 -0
- package/template/admin/public/static/images/lang/es-DO.svg +103 -0
- package/template/admin/public/static/images/lang/es-EC.svg +87 -0
- package/template/admin/public/static/images/lang/es-ES.svg +89 -0
- package/template/admin/public/static/images/lang/es-GT.svg +109 -0
- package/template/admin/public/static/images/lang/es-HN.svg +46 -0
- package/template/admin/public/static/images/lang/es-MX.svg +60 -0
- package/template/admin/public/static/images/lang/es-NI.svg +82 -0
- package/template/admin/public/static/images/lang/es-PA.svg +41 -0
- package/template/admin/public/static/images/lang/es-PE.svg +37 -0
- package/template/admin/public/static/images/lang/es-PR.svg +43 -0
- package/template/admin/public/static/images/lang/es-PY.svg +41 -0
- package/template/admin/public/static/images/lang/es-SV.svg +115 -0
- package/template/admin/public/static/images/lang/es-UY.svg +75 -0
- package/template/admin/public/static/images/lang/es-VE.svg +49 -0
- package/template/admin/public/static/images/lang/et-EE.svg +37 -0
- package/template/admin/public/static/images/lang/eu-ES.svg +89 -0
- package/template/admin/public/static/images/lang/fa-IR.svg +81 -0
- package/template/admin/public/static/images/lang/fi-FI.svg +36 -0
- package/template/admin/public/static/images/lang/fr-BE.svg +37 -0
- package/template/admin/public/static/images/lang/fr-CA.svg +43 -0
- package/template/admin/public/static/images/lang/fr-CH.svg +36 -0
- package/template/admin/public/static/images/lang/fr-FR.svg +37 -0
- package/template/admin/public/static/images/lang/fr-LU.svg +37 -0
- package/template/admin/public/static/images/lang/fr-MC.svg +36 -0
- package/template/admin/public/static/images/lang/gl-ES.svg +89 -0
- package/template/admin/public/static/images/lang/gu-IN.svg +59 -0
- package/template/admin/public/static/images/lang/he-IL.svg +37 -0
- package/template/admin/public/static/images/lang/hi-IN.svg +59 -0
- package/template/admin/public/static/images/lang/hr-BA.svg +48 -0
- package/template/admin/public/static/images/lang/hr-HR.svg +101 -0
- package/template/admin/public/static/images/lang/hu-HU.svg +37 -0
- package/template/admin/public/static/images/lang/hy-AM.svg +37 -0
- package/template/admin/public/static/images/lang/id-ID.svg +36 -0
- package/template/admin/public/static/images/lang/is-IS.svg +37 -0
- package/template/admin/public/static/images/lang/it-CH.svg +36 -0
- package/template/admin/public/static/images/lang/it-IT.svg +37 -0
- package/template/admin/public/static/images/lang/ja-JP.svg +36 -0
- package/template/admin/public/static/images/lang/ka-GE.svg +42 -0
- package/template/admin/public/static/images/lang/kk-KZ.svg +72 -0
- package/template/admin/public/static/images/lang/kn-IN.svg +59 -0
- package/template/admin/public/static/images/lang/ko-KR.svg +57 -0
- package/template/admin/public/static/images/lang/kok-IN.svg +59 -0
- package/template/admin/public/static/images/lang/ky-KG.svg +54 -0
- package/template/admin/public/static/images/lang/lt-LT.svg +37 -0
- package/template/admin/public/static/images/lang/lv-LV.svg +36 -0
- package/template/admin/public/static/images/lang/mi-NZ.svg +51 -0
- package/template/admin/public/static/images/lang/mk-MK.svg +46 -0
- package/template/admin/public/static/images/lang/mn-MN.svg +50 -0
- package/template/admin/public/static/images/lang/mr-IN.svg +59 -0
- package/template/admin/public/static/images/lang/ms-BN.svg +47 -0
- package/template/admin/public/static/images/lang/ms-MY.svg +53 -0
- package/template/admin/public/static/images/lang/mt-MT.svg +50 -0
- package/template/admin/public/static/images/lang/nb-NO.svg +37 -0
- package/template/admin/public/static/images/lang/nl-BE.svg +37 -0
- package/template/admin/public/static/images/lang/nl-NL.svg +37 -0
- package/template/admin/public/static/images/lang/nn-NO.svg +37 -0
- package/template/admin/public/static/images/lang/ns-ZA.svg +41 -0
- package/template/admin/public/static/images/lang/pa-IN.svg +59 -0
- package/template/admin/public/static/images/lang/pl-PL.svg +36 -0
- package/template/admin/public/static/images/lang/ps-AR.svg +68 -0
- package/template/admin/public/static/images/lang/pt-BR.svg +51 -0
- package/template/admin/public/static/images/lang/pt-PT.svg +55 -0
- package/template/admin/public/static/images/lang/qu-BO.svg +101 -0
- package/template/admin/public/static/images/lang/qu-EC.svg +87 -0
- package/template/admin/public/static/images/lang/qu-PE.svg +37 -0
- package/template/admin/public/static/images/lang/ro-RO.svg +37 -0
- package/template/admin/public/static/images/lang/ru-RU.svg +37 -0
- package/template/admin/public/static/images/lang/sa-IN.svg +59 -0
- package/template/admin/public/static/images/lang/se-FI.svg +36 -0
- package/template/admin/public/static/images/lang/se-NO.svg +37 -0
- package/template/admin/public/static/images/lang/se-SE.svg +36 -0
- package/template/admin/public/static/images/lang/sk-SK.svg +41 -0
- package/template/admin/public/static/images/lang/sl-SI.svg +51 -0
- package/template/admin/public/static/images/lang/sq-AL.svg +36 -0
- package/template/admin/public/static/images/lang/sr-BA.svg +48 -0
- package/template/admin/public/static/images/lang/sr-SP.svg +79 -0
- package/template/admin/public/static/images/lang/sv-FI.svg +36 -0
- package/template/admin/public/static/images/lang/sv-SE.svg +36 -0
- package/template/admin/public/static/images/lang/sw-KE.svg +55 -0
- package/template/admin/public/static/images/lang/syr-SY.svg +41 -0
- package/template/admin/public/static/images/lang/ta-IN.svg +59 -0
- package/template/admin/public/static/images/lang/te-IN.svg +59 -0
- package/template/admin/public/static/images/lang/th-TH.svg +40 -0
- package/template/admin/public/static/images/lang/tl-PH.svg +51 -0
- package/template/admin/public/static/images/lang/tn-ZA.svg +41 -0
- package/template/admin/public/static/images/lang/tr-TR.svg +39 -0
- package/template/admin/public/static/images/lang/tt-RU.svg +37 -0
- package/template/admin/public/static/images/lang/uk-UA.svg +36 -0
- package/template/admin/public/static/images/lang/ur-PK.svg +40 -0
- package/template/admin/public/static/images/lang/vi-VN.svg +36 -0
- package/template/admin/public/static/images/lang/xh-ZA.svg +41 -0
- package/template/admin/public/static/images/lang/zh-CN.svg +42 -0
- package/template/admin/public/static/images/lang/zh-HK.svg +42 -0
- package/template/admin/public/static/images/lang/zh-SG.svg +44 -0
- package/template/admin/public/static/images/lang/zh-TW.svg +43 -0
- package/template/admin/public/static/images/lang/zu-ZA.svg +41 -0
- package/template/admin/public/static/images/logo-company-default.svg +1 -0
- package/template/admin/public/static/images/logo.png +0 -0
- package/template/admin/public/static/images/m_logo.png +0 -0
- package/template/admin/public/static/images/maintenance-icon.png +0 -0
- package/template/admin/public/static/images/member_logo.png +0 -0
- package/template/admin/public/static/images/pdf_icon.svg +1 -0
- package/template/admin/public/static/images/png_icon.svg +1 -0
- package/template/admin/public/static/images/security.png +0 -0
- package/template/admin/public/static/images/template-bar.svg +820 -0
- package/template/admin/public/static/images/template-bubble.png +0 -0
- package/template/admin/public/static/images/template-line.png +0 -0
- package/template/admin/public/static/images/template-mixed.jpeg +0 -0
- package/template/admin/public/static/images/template-pie.png +0 -0
- package/template/admin/public/static/images/template-polar-area.png +0 -0
- package/template/admin/public/static/images/template-radar.jpg +0 -0
- package/template/admin/public/static/images/template-radar.png +0 -0
- package/template/admin/public/static/images/template-scatter.png +0 -0
- package/template/admin/public/static/images/translation.svg +82 -0
- package/template/admin/public/static/images/txt_icon.svg +1 -0
- package/template/admin/public/static/images/widget-bubble.png +0 -0
- package/template/admin/public/static/images/widget-column.png +0 -0
- package/template/admin/public/static/images/widget-combo.png +0 -0
- package/template/admin/public/static/images/widget-doughnut.png +0 -0
- package/template/admin/public/static/images/widget-line.png +0 -0
- package/template/admin/public/static/images/widget-pie.png +0 -0
- package/template/admin/public/static/images/widget-scatter.png +0 -0
- package/template/admin/public/static/images/widget-summary_box.png +0 -0
- package/template/admin/public/static/images/widget-treemap.png +0 -0
- package/template/admin/public/static/images/xls_icon.svg +1 -0
- package/template/admin/public/static/images/xml_icon.svg +1 -0
- package/template/admin/public/static/images/zip_icon.svg +1 -0
- package/template/admin/public/static/styles/activity_log.less +157 -0
- package/template/admin/public/static/styles/calendar.less +145 -0
- package/template/admin/public/static/styles/collections.less +123 -0
- package/template/admin/public/static/styles/compute_field.less +250 -0
- package/template/admin/public/static/styles/custom-antd.less +80 -0
- package/template/admin/public/static/styles/custom_icon.less +556 -0
- package/template/admin/public/static/styles/date_search.less +63 -0
- package/template/admin/public/static/styles/datepicker.less +323 -0
- package/template/admin/public/static/styles/detail.less +2690 -0
- package/template/admin/public/static/styles/editTable.less +23 -0
- package/template/admin/public/static/styles/entities.less +897 -0
- package/template/admin/public/static/styles/filter.less +24 -0
- package/template/admin/public/static/styles/filter_new.less +154 -0
- package/template/admin/public/static/styles/hook.less +142 -0
- package/template/admin/public/static/styles/import_export.less +62 -0
- package/template/admin/public/static/styles/input.less +386 -0
- package/template/admin/public/static/styles/layout.less +1455 -0
- package/template/admin/public/static/styles/login.less +263 -0
- package/template/admin/public/static/styles/mainheader.less +32 -0
- package/template/admin/public/static/styles/matrix.less +105 -0
- package/template/admin/public/static/styles/permission_denied.less +13 -0
- package/template/admin/public/static/styles/pipeline.less +84 -0
- package/template/admin/public/static/styles/print_template.less +730 -0
- package/template/admin/public/static/styles/rabbitmq.less +3 -0
- package/template/admin/public/static/styles/restful.less +22 -0
- package/template/admin/public/static/styles/setting.less +534 -0
- package/template/admin/public/static/styles/style.less +1957 -0
- package/template/admin/public/static/styles/system.less +11 -0
- package/template/admin/public/static/styles/tree_theme_minimal.less +321 -0
- package/template/admin/public/static/styles/versioning_control.less +24 -0
- package/template/admin/public/static/styles/wysiwyg.less +8 -0
- package/template/admin/theme/main.less +1 -0
- package/template/admin/theme/vars.less +41 -0
- package/template/admin_v3/src/pages/api/database/[type]/index.ts +23 -0
- package/template/admin_v3/src/pages/api/layout_chart_widget/[name]/index.ts +18 -0
- package/template/admin_v3/src/pages/api/layout_chart_widget/compare_matrix.ts +17 -0
- package/template/admin_v3/src/pages/api/redis/[type]/[connect]/index.ts +20 -0
- package/template/admin_v3/src/pages/api/redis/custom.ts +10 -0
- package/template/{admin/src/pages/api/entity/schema/index.ts → admin_v3/src/pages/api/setting/module/[code].ts} +12 -5
- package/template/admin_v3/src/pages/api/template/[type].ts +21 -0
- package/template/{admin/src/pages/api/import_export/execute/index.ts → admin_v3/src/pages/api/template/bulk_print/[id].ts} +4 -2
- package/template/admin_v3/src/pages/api/template/print/[id]/[doc_ref].ts +11 -0
- package/template/core_v3/Dockerfile +60 -0
- package/template/core_v3/_env +12 -0
- package/template/core_v3/_gitignore +52 -0
- package/template/core_v3/_npmrc +1 -0
- package/template/core_v3/buildspec.yml +29 -0
- package/template/core_v3/docker-compose.yml +11 -0
- package/template/core_v3/jest.config.js +43 -0
- package/template/core_v3/newrelic.sh +15 -0
- package/template/core_v3/package.json +54 -0
- package/template/core_v3/post-install.js +34 -0
- package/template/core_v3/sonar-project.properties +27 -0
- package/template/core_v3/src/app.controller.ts +39 -0
- package/template/core_v3/src/app.module.ts +174 -0
- package/template/core_v3/src/app.service.ts +21 -0
- package/template/core_v3/src/app_cluster.service.ts +61 -0
- package/template/core_v3/src/core/core.controller.ts +444 -0
- package/template/core_v3/src/core/core.module.ts +90 -0
- package/template/core_v3/src/core/core.service.ts +737 -0
- package/template/core_v3/src/core/setting/_settings/about.layout.json +105 -0
- package/template/core_v3/src/core/setting/_settings/cache.layout.json +309 -0
- package/template/core_v3/src/core/setting/_settings/global_login.json +299 -0
- package/template/core_v3/src/core/setting/_settings/header_footer.json +83 -0
- package/template/core_v3/src/core/setting/_settings/import_export.layout.json +69 -0
- package/template/core_v3/src/core/setting/_settings/list_detail.json +685 -0
- package/template/core_v3/src/core/setting/_settings/logs.layout.json +39 -0
- package/template/core_v3/src/core/setting/_settings/queue.layout.json +63 -0
- package/template/core_v3/src/core/setting/_settings/schedule.layout.json +132 -0
- package/template/core_v3/src/core/setting/_settings/security.layout.json +1110 -0
- package/template/core_v3/src/core/setting/_settings/storage.layout.json +158 -0
- package/template/core_v3/src/core/setting/_settings/swagger.layout.json +128 -0
- package/template/core_v3/src/core/setting/_settings/toast.json +344 -0
- package/template/core_v3/src/main.ts +308 -0
- package/template/core_v3/src/modules/modules.ts +16 -0
- package/template/core_v3/src/private.controller.ts +18 -0
- package/template/core_v3/storage/documents/index.html +14 -0
- package/template/core_v3/storage/public/system/menu/icons/company.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/deploy.svg +2 -0
- package/template/core_v3/storage/public/system/menu/icons/entities.svg +55 -0
- package/template/core_v3/storage/public/system/menu/icons/files.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/gateway.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/import-export.svg +41 -0
- package/template/core_v3/storage/public/system/menu/icons/integration.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/master_data.svg +53 -0
- package/template/core_v3/storage/public/system/menu/icons/modules.svg +79 -0
- package/template/core_v3/storage/public/system/menu/icons/monitoring.svg +114 -0
- package/template/core_v3/storage/public/system/menu/icons/pipeline.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/provider.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/report.svg +69 -0
- package/template/core_v3/storage/public/system/menu/icons/schedule.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/security.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/storage.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/template.svg +44 -0
- package/template/core_v3/storage/public/system/menu/icons/theme-layout.svg +1 -0
- package/template/core_v3/test/__mocks__/cc-core-lib.d.ts +161 -0
- package/template/core_v3/test/__mocks__/cc-core-lib.js +311 -0
- package/template/core_v3/test/__mocks__/pdf-img-convert.js +5 -0
- package/template/core_v3/test/jest.setup.ts +25 -0
- package/template/core_v3/tsconfig.build.json +4 -0
- package/template/core_v3/tsconfig.json +22 -0
- package/template/core_v3/tsconfig.test.json +17 -0
- package/template/core_v3/version.json +5 -0
- package/template/admin/next-env.d.ts +0 -5
- package/template/admin/postcss.config.js +0 -6
- package/template/admin/public/images/component/barchart.svg +0 -20
- package/template/admin/public/images/component/bubble_chart.svg +0 -17
- package/template/admin/public/images/component/button.svg +0 -17
- package/template/admin/public/images/component/calendar.svg +0 -63
- package/template/admin/public/images/component/checkbox.svg +0 -25
- package/template/admin/public/images/component/color_picker.svg +0 -25
- package/template/admin/public/images/component/cron_tab.svg +0 -33
- package/template/admin/public/images/component/currency.svg +0 -34
- package/template/admin/public/images/component/custom_fields.svg +0 -34
- package/template/admin/public/images/component/data_table.svg +0 -101
- package/template/admin/public/images/component/date_picker.svg +0 -47
- package/template/admin/public/images/component/donut.svg +0 -23
- package/template/admin/public/images/component/edit_table.svg +0 -96
- package/template/admin/public/images/component/entity_field.svg +0 -36
- package/template/admin/public/images/component/entity_layout.svg +0 -40
- package/template/admin/public/images/component/entity_list.svg +0 -88
- package/template/admin/public/images/component/file.svg +0 -36
- package/template/admin/public/images/component/hidden_field.svg +0 -34
- package/template/admin/public/images/component/image.svg +0 -38
- package/template/admin/public/images/component/input.svg +0 -34
- package/template/admin/public/images/component/input_icon.svg +0 -13
- package/template/admin/public/images/component/input_number.svg +0 -34
- package/template/admin/public/images/component/input_translate.svg +0 -47
- package/template/admin/public/images/component/json.svg +0 -31
- package/template/admin/public/images/component/label.svg +0 -11
- package/template/admin/public/images/component/line_chart.svg +0 -19
- package/template/admin/public/images/component/matrix_table.svg +0 -34
- package/template/admin/public/images/component/mixed_chart.svg +0 -25
- package/template/admin/public/images/component/polar_chart.svg +0 -33
- package/template/admin/public/images/component/radio.svg +0 -24
- package/template/admin/public/images/component/redar_chart.svg +0 -17
- package/template/admin/public/images/component/scatter_chart.svg +0 -25
- package/template/admin/public/images/component/select.svg +0 -34
- package/template/admin/public/images/component/summary_box.svg +0 -31
- package/template/admin/public/images/component/switch.svg +0 -12
- package/template/admin/public/images/component/translate.svg +0 -35
- package/template/admin/public/images/component/tree.svg +0 -78
- package/template/admin/public/images/default-profile.png +0 -0
- package/template/admin/public/images/empty-data.png +0 -0
- package/template/admin/public/images/file.png +0 -0
- package/template/admin/public/images/forgot-step-1.png +0 -0
- package/template/admin/public/images/forgot-step-2.png +0 -0
- package/template/admin/public/images/forgot-step-3.png +0 -0
- package/template/admin/public/images/form.png +0 -0
- package/template/admin/public/images/info-panel.png +0 -0
- package/template/admin/public/images/panel.png +0 -0
- package/template/admin/public/images/stack.png +0 -0
- package/template/admin/public/images/type-all.png +0 -0
- package/template/admin/public/images/type-boolean.png +0 -0
- package/template/admin/public/images/type-date.png +0 -0
- package/template/admin/public/images/type-file.png +0 -0
- package/template/admin/public/images/type-image.png +0 -0
- package/template/admin/public/images/type-json.png +0 -0
- package/template/admin/public/images/type-number.png +0 -0
- package/template/admin/public/images/type-options.png +0 -0
- package/template/admin/public/images/type-password.png +0 -0
- package/template/admin/public/images/type-related.png +0 -0
- package/template/admin/public/images/type-string.png +0 -0
- package/template/admin/public/images/type-trash.png +0 -0
- package/template/admin/public/images/type-unknown.png +0 -0
- package/template/admin/public/images/upload.png +0 -0
- package/template/admin/src/pages/[...url_key].tsx +0 -9
- package/template/admin/src/pages/_app.tsx +0 -22
- package/template/admin/src/pages/activate.tsx +0 -9
- package/template/admin/src/pages/api/auth/activate_account/confirm.ts +0 -13
- package/template/admin/src/pages/api/auth/activate_account/index.ts +0 -13
- package/template/admin/src/pages/api/auth/activate_account/resend.ts +0 -13
- package/template/admin/src/pages/api/auth/activate_account/set_password.ts +0 -17
- package/template/admin/src/pages/api/auth/authen/confirm.ts +0 -24
- package/template/admin/src/pages/api/auth/authen/resend.ts +0 -13
- package/template/admin/src/pages/api/auth/callback/index.ts +0 -24
- package/template/admin/src/pages/api/auth/forgot_password/confirm.ts +0 -13
- package/template/admin/src/pages/api/auth/forgot_password/index.ts +0 -13
- package/template/admin/src/pages/api/auth/forgot_password/resend.ts +0 -13
- package/template/admin/src/pages/api/auth/forgot_password/reset.ts +0 -17
- package/template/admin/src/pages/api/auth/login.ts +0 -24
- package/template/admin/src/pages/api/auth/logout.ts +0 -30
- package/template/admin/src/pages/api/custom/[...path].ts +0 -16
- package/template/admin/src/pages/api/download.ts +0 -79
- package/template/admin/src/pages/api/entity/[entity]/[id].ts +0 -46
- package/template/admin/src/pages/api/entity/[entity]/delete.ts +0 -18
- package/template/admin/src/pages/api/entity/[entity]/find.ts +0 -17
- package/template/admin/src/pages/api/entity/[entity]/index.ts +0 -30
- package/template/admin/src/pages/api/entity/[entity]/update.ts +0 -18
- package/template/admin/src/pages/api/entity/approve/[entity]/[id].ts +0 -19
- package/template/admin/src/pages/api/entity/schema/[entity]/index.ts +0 -27
- package/template/admin/src/pages/api/entity/schema/[entity]/relate.ts +0 -16
- package/template/admin/src/pages/api/import_export/example/index.ts +0 -13
- package/template/admin/src/pages/api/import_export/export/index.ts +0 -13
- package/template/admin/src/pages/api/import_export/import/index.ts +0 -13
- package/template/admin/src/pages/api/import_export/progresses/index.ts +0 -13
- package/template/admin/src/pages/api/import_export/verify_progress/index.ts +0 -13
- package/template/admin/src/pages/api/language/set.ts +0 -15
- package/template/admin/src/pages/api/media/private.ts +0 -49
- package/template/admin/src/pages/api/queue/[queue]/count.ts +0 -17
- package/template/admin/src/pages/api/queue/[queue]/flush.ts +0 -17
- package/template/admin/src/pages/api/queue/[queue]/flushall.ts +0 -16
- package/template/admin/src/pages/api/queue/[queue]/index.ts +0 -20
- package/template/admin/src/pages/api/queue/index.ts +0 -13
- package/template/admin/src/pages/api/redis/index.ts +0 -0
- package/template/admin/src/pages/api/setting/[code].ts +0 -21
- package/template/admin/src/pages/api/system/config.ts +0 -13
- package/template/admin/src/pages/api/system/data_source/[code].ts +0 -17
- package/template/admin/src/pages/api/system/endpoint/[method].ts +0 -17
- package/template/admin/src/pages/api/system/queue.ts +0 -13
- package/template/admin/src/pages/api/system/role.ts +0 -13
- package/template/admin/src/pages/api/user/change_password.ts +0 -13
- package/template/admin/src/pages/api/user/filter/index.ts +0 -13
- package/template/admin/src/pages/api/user/me.ts +0 -24
- package/template/admin/src/pages/api/user/register.ts +0 -13
- package/template/admin/src/pages/callback/[channel].tsx +0 -9
- package/template/admin/src/pages/entity/[entity]/[layout]/[id].tsx +0 -17
- package/template/admin/src/pages/entity/[entity]/[layout]/index.tsx +0 -19
- package/template/admin/src/pages/forgot_password.tsx +0 -9
- package/template/admin/src/pages/index.tsx +0 -7
- package/template/admin/src/pages/login.tsx +0 -9
- package/template/admin/src/pages/profile.tsx +0 -9
- package/template/admin/src/pages/register.tsx +0 -9
- package/template/admin/src/pages/setting/entities/[key].tsx +0 -10
- package/template/admin/src/pages/setting/entities/index.tsx +0 -10
- package/template/admin/src/pages/setting/module/[module]/[layout].tsx +0 -16
- package/template/admin/src/pages/setting/modules.tsx +0 -10
- package/template/admin/src/styles/global.css +0 -101
- package/template/admin/src/styles/workflow.css +0 -40
- package/template/admin/src/utils/color.ts +0 -88
- package/template/admin/tailwind.config.js +0 -57
- package/template/admin/tsconfig.json +0 -36
- /package/template/admin/public/{images → static/images}/split.svg +0 -0
- /package/template/admin/{src/pages/api/redis/[connect]/index.ts → public/static/styles/custom.less} +0 -0
|
@@ -0,0 +1,1957 @@
|
|
|
1
|
+
@import "~antd/dist/antd.less";
|
|
2
|
+
@import "custom-antd.less";
|
|
3
|
+
@import "login.less";
|
|
4
|
+
@import "mainheader.less";
|
|
5
|
+
@import "layout.less";
|
|
6
|
+
@import "system.less";
|
|
7
|
+
@import "permission_denied.less";
|
|
8
|
+
@import "entities.less";
|
|
9
|
+
@import "input.less";
|
|
10
|
+
@import "hook.less";
|
|
11
|
+
@import "setting.less";
|
|
12
|
+
@import "wysiwyg.less";
|
|
13
|
+
@import "activity_log.less";
|
|
14
|
+
@import "filter.less";
|
|
15
|
+
@import "versioning_control.less";
|
|
16
|
+
@import "print_template.less";
|
|
17
|
+
@import "import_export.less";
|
|
18
|
+
@import "compute_field.less";
|
|
19
|
+
@import "detail.less";
|
|
20
|
+
@import "restful.less";
|
|
21
|
+
@import "collections.less";
|
|
22
|
+
@import "rabbitmq.less";
|
|
23
|
+
@import "custom_icon.less";
|
|
24
|
+
@import "filter_new.less";
|
|
25
|
+
@import "date_search.less";
|
|
26
|
+
@import "react-big-calendar/lib/css/react-big-calendar.css";
|
|
27
|
+
@import "calendar.less";
|
|
28
|
+
@import "datepicker.less";
|
|
29
|
+
@import "pipeline.less";
|
|
30
|
+
@import "tree_theme_minimal.less";
|
|
31
|
+
@import "matrix.less";
|
|
32
|
+
@import "editTable.less";
|
|
33
|
+
|
|
34
|
+
//----- Custom table ------//
|
|
35
|
+
.ant-table-column-sorters {
|
|
36
|
+
padding-left: 0px;
|
|
37
|
+
padding-right: 0px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.header-table-border {
|
|
41
|
+
border-bottom: 1px solid @border-color-split;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.header-table {
|
|
45
|
+
min-height: 65px;
|
|
46
|
+
|
|
47
|
+
.right-section {
|
|
48
|
+
padding-right: 15px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.refresh {
|
|
52
|
+
margin-right: 8px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.search {
|
|
56
|
+
display: flex;
|
|
57
|
+
max-height: 32px;
|
|
58
|
+
margin-right: 8px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.btn-filter {
|
|
62
|
+
width: 32px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.right {
|
|
66
|
+
text-align: right;
|
|
67
|
+
|
|
68
|
+
.filter-icon {
|
|
69
|
+
margin-left: 10px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.ant-input-affix-wrapper {
|
|
74
|
+
padding: 7px 11px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ant-btn {
|
|
78
|
+
height: 100%;
|
|
79
|
+
max-height: 32px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.btn-action {
|
|
83
|
+
.ant-btn {
|
|
84
|
+
margin-left: 8px;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.btn-config {
|
|
89
|
+
.ant-btn {
|
|
90
|
+
margin-left: 8px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.ant-table {
|
|
96
|
+
.ant-table-tbody {
|
|
97
|
+
img.render-image {
|
|
98
|
+
height: 40px;
|
|
99
|
+
width: 40px;
|
|
100
|
+
object-fit: contain;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
object.render-image {
|
|
104
|
+
height: 40px;
|
|
105
|
+
width: 40px;
|
|
106
|
+
object-fit: contain;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.ant-card.ant-card-bordered.table-card {
|
|
112
|
+
border: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.table-card {
|
|
116
|
+
.ant-table {
|
|
117
|
+
border-radius: 0px;
|
|
118
|
+
|
|
119
|
+
table {
|
|
120
|
+
border-radius: 0px;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.ant-table-container table>thead>tr:first-child th:last-child {
|
|
125
|
+
border-radius: 0px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.ant-card-body {
|
|
129
|
+
padding: 0;
|
|
130
|
+
|
|
131
|
+
.table-row-selected {
|
|
132
|
+
padding: 16px;
|
|
133
|
+
border-bottom: 1px solid @border-color-split;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.relate-table {
|
|
137
|
+
.ant-table-thead>tr>th {
|
|
138
|
+
padding: 8px 16px;
|
|
139
|
+
font-weight: 500;
|
|
140
|
+
font-size: 13px;
|
|
141
|
+
|
|
142
|
+
&.ant-table-column-sort {
|
|
143
|
+
padding: 0px 16px;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.common-table {
|
|
149
|
+
.ant-table-content {
|
|
150
|
+
overflow: auto !important;
|
|
151
|
+
|
|
152
|
+
.ant-table-thead>tr>th {
|
|
153
|
+
padding: 8px 16px;
|
|
154
|
+
font-weight: 500;
|
|
155
|
+
font-size: 13px;
|
|
156
|
+
|
|
157
|
+
&.ant-table-column-sort {
|
|
158
|
+
padding: 0px 16px;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
164
|
+
padding-right: 16px;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.editable-cell {
|
|
168
|
+
position: relative;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.editable-cell-value-wrap {
|
|
172
|
+
padding: 5px 12px;
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
|
|
175
|
+
&.editable-cell-read-only {
|
|
176
|
+
cursor: not-allowed;
|
|
177
|
+
background-color: #f5f5f5;
|
|
178
|
+
color: @text-color-disabled;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.editable-row .editable-cell-value-wrap {
|
|
183
|
+
border: 1px solid #d9d9d9;
|
|
184
|
+
border-radius: 4px;
|
|
185
|
+
padding: 4px 11px;
|
|
186
|
+
min-height: 32px;
|
|
187
|
+
|
|
188
|
+
&.input_reason {
|
|
189
|
+
border: none;
|
|
190
|
+
padding: 0px 5px;
|
|
191
|
+
|
|
192
|
+
.select-input-reason {
|
|
193
|
+
border: 1px solid #d9d9d9;
|
|
194
|
+
border-radius: 4px;
|
|
195
|
+
min-height: 32px;
|
|
196
|
+
padding: 4px 0px;
|
|
197
|
+
|
|
198
|
+
span {
|
|
199
|
+
padding: 0px 6px;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.icon-comment {
|
|
204
|
+
svg {
|
|
205
|
+
width: 18px;
|
|
206
|
+
height: 18px;
|
|
207
|
+
margin-left: 4px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
&.not-editable {
|
|
211
|
+
position: relative;
|
|
212
|
+
|
|
213
|
+
.area-icon-comment {
|
|
214
|
+
position: absolute;
|
|
215
|
+
width: 80%;
|
|
216
|
+
height: 28px;
|
|
217
|
+
z-index: 2;
|
|
218
|
+
top: -4px;
|
|
219
|
+
background: transparent;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
[data-theme="dark"] .editable-row .editable-cell-value-wrap {
|
|
227
|
+
border: 1px solid #434343;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
img.render-image {
|
|
231
|
+
height: 40px;
|
|
232
|
+
width: 40px;
|
|
233
|
+
object-fit: contain;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
&.select-list {
|
|
237
|
+
|
|
238
|
+
.ant-table-thead th,
|
|
239
|
+
.ant-table-tbody td {
|
|
240
|
+
vertical-align: middle;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
&.data-table {
|
|
245
|
+
.ant-table-thead {
|
|
246
|
+
.ant-table-cell {
|
|
247
|
+
text-align: center;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.editable {
|
|
254
|
+
margin-bottom: 24px;
|
|
255
|
+
|
|
256
|
+
.editable-row:hover>td {
|
|
257
|
+
background-color: inherit !important;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.disabled-sort-list {
|
|
262
|
+
.drag-visible {
|
|
263
|
+
.anticon.anticon-menu {
|
|
264
|
+
cursor: not-allowed !important;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.pagination-custom {
|
|
270
|
+
width: 100%;
|
|
271
|
+
margin: 16px 0px;
|
|
272
|
+
padding: 0px 16px;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.ant-dropdown-menu.table-action-menu {
|
|
278
|
+
min-width: 150px;
|
|
279
|
+
|
|
280
|
+
.ant-dropdown-menu-item {
|
|
281
|
+
.ant-typography {
|
|
282
|
+
width: 100%;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.modal-display-reason {
|
|
288
|
+
border: 1px solid #d9d9d9;
|
|
289
|
+
border-radius: 4px;
|
|
290
|
+
padding: 4px 11px;
|
|
291
|
+
min-height: 32px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
//----- Custom Ant Card ------//
|
|
295
|
+
.ant-card.ant-card-bordered {
|
|
296
|
+
border-radius: 5px;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
//----- Custom Page Header ------//
|
|
300
|
+
.page-header-title {
|
|
301
|
+
padding: 8px 0px;
|
|
302
|
+
|
|
303
|
+
h1 {
|
|
304
|
+
font-weight: 400;
|
|
305
|
+
font-size: 26px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
button {
|
|
309
|
+
margin-left: 8px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.ant-page-header {
|
|
314
|
+
padding: 16px 30px;
|
|
315
|
+
|
|
316
|
+
.ant-page-header-heading {
|
|
317
|
+
display: none;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
&.hide-title {
|
|
321
|
+
.ant-page-header-heading-title {
|
|
322
|
+
display: none;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
//----- Custom Font ------//
|
|
328
|
+
h3.ant-typography,
|
|
329
|
+
h4.ant-typography {
|
|
330
|
+
font-weight: 400;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
//----- Custom Modal ------//
|
|
334
|
+
.ant-modal {
|
|
335
|
+
@media (max-width: 991px) {
|
|
336
|
+
width: 100% !important;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
@media (min-width: 992px) {
|
|
340
|
+
width: 60% !important;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
&.default {
|
|
344
|
+
width: 520px !important;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
&.full-width {
|
|
348
|
+
width: 100% !important;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
//----- Custom Form ------//
|
|
353
|
+
.ant-form,
|
|
354
|
+
.ant-modal-body {
|
|
355
|
+
.one2many-required {
|
|
356
|
+
.ant-form-item-explain {
|
|
357
|
+
display: none;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.one2many-required,
|
|
362
|
+
.ant-form-item-has-error {
|
|
363
|
+
.text-label {
|
|
364
|
+
&::before {
|
|
365
|
+
display: none !important;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
&::after {
|
|
369
|
+
display: inline-block !important;
|
|
370
|
+
margin-right: 4px;
|
|
371
|
+
color: #f5222d;
|
|
372
|
+
font-size: 14px;
|
|
373
|
+
font-family: SimSun, sans-serif;
|
|
374
|
+
line-height: 1;
|
|
375
|
+
content: "*";
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.no-margin {
|
|
381
|
+
.ant-form-item {
|
|
382
|
+
margin-bottom: 1px !important;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.text-label-required,
|
|
387
|
+
.ant-form-item-required {
|
|
388
|
+
&::before {
|
|
389
|
+
display: none !important;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
&::after {
|
|
393
|
+
display: inline-block !important;
|
|
394
|
+
margin-right: 4px;
|
|
395
|
+
color: #f5222d;
|
|
396
|
+
font-size: 14px;
|
|
397
|
+
font-family: SimSun, sans-serif;
|
|
398
|
+
line-height: 1;
|
|
399
|
+
content: "*";
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
&.space-left::after {
|
|
403
|
+
margin-left: 2px;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.ant-form-item {
|
|
408
|
+
.ant-input-number {
|
|
409
|
+
width: 100%;
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.ant-form-item-has-feedback.ant-form-item-has-success {
|
|
414
|
+
.ant-form-item-children-icon {
|
|
415
|
+
display: none;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.ant-input,
|
|
419
|
+
.ant-picker,
|
|
420
|
+
.ant-input-affix-wrapper .ant-input-suffix {
|
|
421
|
+
padding-right: 11px;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.ant-select .ant-select-arrow,
|
|
425
|
+
.ant-select .ant-select-clear,
|
|
426
|
+
:not(.ant-input-group-addon)>.ant-select .ant-select-arrow,
|
|
427
|
+
:not(.ant-input-group-addon)>.ant-select .ant-select-clear {
|
|
428
|
+
right: 11px;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.ant-form-item-has-feedback {
|
|
433
|
+
.ant-form-item-children-icon {
|
|
434
|
+
display: initial;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.ant-form-item-control {
|
|
438
|
+
&:hover {
|
|
439
|
+
.ant-form-item-explain div {
|
|
440
|
+
visibility: visible;
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.ant-form-item-explain {
|
|
445
|
+
min-height: 0px !important;
|
|
446
|
+
z-index: 2;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.ant-form-item-explain div {
|
|
450
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
451
|
+
position: absolute;
|
|
452
|
+
margin-top: 5px;
|
|
453
|
+
right: 0px;
|
|
454
|
+
padding: 3px 5px;
|
|
455
|
+
border-radius: 5px;
|
|
456
|
+
color: white;
|
|
457
|
+
visibility: hidden;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.ant-form-item-with-help {
|
|
463
|
+
margin-bottom: 24px;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.full-list-editable-form {
|
|
468
|
+
.ant-row.ant-form-item {
|
|
469
|
+
margin-bottom: 0;
|
|
470
|
+
flex-direction: row;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.ant-table-row {
|
|
474
|
+
vertical-align: baseline;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.ant-form-item-has-feedback.ant-form-item-has-error {
|
|
479
|
+
.input-number-container.ant-input-affix-wrapper {
|
|
480
|
+
.ant-input-number {
|
|
481
|
+
.ant-input-number-handler-wrap {
|
|
482
|
+
right: 30px;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.ant-input-number-handler-up {
|
|
486
|
+
border-top-right-radius: 0px;
|
|
487
|
+
border-right: 1px solid #d9d9d9;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.ant-input-number-handler-down {
|
|
491
|
+
border-right: 1px solid #d9d9d9;
|
|
492
|
+
border-bottom-right-radius: 0px;
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
&.suffix {
|
|
497
|
+
.ant-input-number {
|
|
498
|
+
.ant-input-number-handler-wrap {
|
|
499
|
+
right: 0px;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.ant-input-suffix {
|
|
504
|
+
padding-right: 28px;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.ant-form-item-has-feedback.ant-form-item-has-error {
|
|
511
|
+
.ant-input-number-handler-wrap {
|
|
512
|
+
right: 30px;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.ant-input-number-handler-up {
|
|
516
|
+
border-top-right-radius: 0px;
|
|
517
|
+
border-right: 1px solid #d9d9d9;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.ant-input-number-handler-down {
|
|
521
|
+
border-right: 1px solid #d9d9d9;
|
|
522
|
+
border-bottom-right-radius: 0px;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.text-label {
|
|
527
|
+
color: @text-color-label;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
//----- Custom Ant Tree------//
|
|
531
|
+
.ant-tree {
|
|
532
|
+
.ant-tree-treenode.drag-over>[draggable] {
|
|
533
|
+
background-color: #d4eaff;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.ant-tree-treenode.drag-over-gap-top>[draggable] {
|
|
537
|
+
border-top-color: #d4eaff;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.ant-tree-treenode.drag-over-gap-bottom>[draggable] {
|
|
541
|
+
border-bottom-color: #d4eaff;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.ant-tree-node-content-wrapper.ant-tree-node-selected {
|
|
545
|
+
background-color: transparent;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
@media (max-width: @screen-sm-max) {
|
|
550
|
+
.table-card {
|
|
551
|
+
.ant-card-body {
|
|
552
|
+
.pagination-custom {
|
|
553
|
+
.pagination {
|
|
554
|
+
width: 100%;
|
|
555
|
+
text-align: center;
|
|
556
|
+
margin-right: 0;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.per-page {
|
|
561
|
+
margin-top: 16px;
|
|
562
|
+
width: 100%;
|
|
563
|
+
text-align: center;
|
|
564
|
+
font-size: 12px;
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.addable-table-minus-button {
|
|
571
|
+
height: 20px;
|
|
572
|
+
width: 20px;
|
|
573
|
+
border-radius: 10px;
|
|
574
|
+
border: 1px solid #efefef;
|
|
575
|
+
color: red;
|
|
576
|
+
background-color: white;
|
|
577
|
+
align-items: center;
|
|
578
|
+
justify-content: center;
|
|
579
|
+
display: flex;
|
|
580
|
+
cursor: pointer;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
//----- custom upload drag container of image field ------
|
|
584
|
+
|
|
585
|
+
.image-field {
|
|
586
|
+
margin-bottom: 20px;
|
|
587
|
+
|
|
588
|
+
.ant-upload-drag-container {
|
|
589
|
+
display: table !important;
|
|
590
|
+
width: 100%;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.ant-row {
|
|
594
|
+
flex-flow: column;
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.file-field {
|
|
599
|
+
margin-bottom: 20px;
|
|
600
|
+
|
|
601
|
+
.ant-upload.ant-upload-drag {
|
|
602
|
+
.ant-upload {
|
|
603
|
+
padding: 0;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.ant-upload {
|
|
608
|
+
.ant-upload-btn {
|
|
609
|
+
display: flex;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.ant-upload-drag-container {
|
|
614
|
+
display: table-cell !important;
|
|
615
|
+
width: 100%;
|
|
616
|
+
padding-top: 30px;
|
|
617
|
+
|
|
618
|
+
.add-button-icon {
|
|
619
|
+
position: absolute;
|
|
620
|
+
top: 8px;
|
|
621
|
+
right: 13px;
|
|
622
|
+
cursor: pointer;
|
|
623
|
+
|
|
624
|
+
.ant-upload {
|
|
625
|
+
padding: 0;
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.ant-row-column {
|
|
631
|
+
flex-flow: column;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.ant-form-item-control {
|
|
635
|
+
display: block;
|
|
636
|
+
width: 100%;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.ant-form-item-control-input {
|
|
640
|
+
min-height: auto;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.type-icon-wrapper {
|
|
644
|
+
min-height: 150px;
|
|
645
|
+
text-align: center;
|
|
646
|
+
|
|
647
|
+
.image-type-icon {
|
|
648
|
+
width: 100%;
|
|
649
|
+
height: auto;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.file-type-icon {
|
|
653
|
+
min-height: 0;
|
|
654
|
+
height: 100px;
|
|
655
|
+
width: auto;
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.ant-tooltip-inner {
|
|
661
|
+
display: flex;
|
|
662
|
+
justify-content: center;
|
|
663
|
+
align-items: center;
|
|
664
|
+
font-size: 10px;
|
|
665
|
+
padding: 2px 4px;
|
|
666
|
+
min-height: unset;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.mutiple-upload-files-container {
|
|
670
|
+
.ant-row-middle {
|
|
671
|
+
text-align: left;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.ant-upload.ant-upload-drag {
|
|
675
|
+
border: 0;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.multiple-image-container {
|
|
679
|
+
border: 0;
|
|
680
|
+
|
|
681
|
+
.scrollable {
|
|
682
|
+
min-height: 212px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.ant-upload {
|
|
686
|
+
padding: 0;
|
|
687
|
+
|
|
688
|
+
.anticon-plus {
|
|
689
|
+
font-size: 20px;
|
|
690
|
+
color: #00000090;
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.notice-arrow {
|
|
695
|
+
position: absolute;
|
|
696
|
+
right: 0;
|
|
697
|
+
top: 38%;
|
|
698
|
+
display: flex;
|
|
699
|
+
width: 50px;
|
|
700
|
+
height: 50px;
|
|
701
|
+
background: #00000050;
|
|
702
|
+
justify-content: center;
|
|
703
|
+
align-items: center;
|
|
704
|
+
color: white;
|
|
705
|
+
font-size: 25px;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.list-image {
|
|
709
|
+
display: flex;
|
|
710
|
+
|
|
711
|
+
.meta-data-overlay {
|
|
712
|
+
position: absolute;
|
|
713
|
+
bottom: 2px;
|
|
714
|
+
left: 0;
|
|
715
|
+
right: 0;
|
|
716
|
+
background-color: white;
|
|
717
|
+
z-index: 4;
|
|
718
|
+
padding: 5px 10px;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.image {
|
|
722
|
+
position: relative;
|
|
723
|
+
width: 150px;
|
|
724
|
+
|
|
725
|
+
&:hover {
|
|
726
|
+
&::before {
|
|
727
|
+
position: absolute;
|
|
728
|
+
width: 100%;
|
|
729
|
+
height: 100%;
|
|
730
|
+
left: 0;
|
|
731
|
+
// background-color: rgba(164, 160, 160, 0.5);
|
|
732
|
+
opacity: 0.9;
|
|
733
|
+
transition: all 0.3s;
|
|
734
|
+
content: " ";
|
|
735
|
+
z-index: 5;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
img {
|
|
739
|
+
opacity: 0.8;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.multiple-upload-actions {
|
|
743
|
+
width: 100%;
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.ant-upload {
|
|
750
|
+
.ant-upload-btn {
|
|
751
|
+
display: flex;
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.ant-upload-drag-container {
|
|
756
|
+
display: table-cell !important;
|
|
757
|
+
width: 100%;
|
|
758
|
+
height: 100%;
|
|
759
|
+
left: 0;
|
|
760
|
+
// background-color: rgba(0, 0, 0, 0.5);แ
|
|
761
|
+
opacity: 0.9;
|
|
762
|
+
transition: all 0.3s;
|
|
763
|
+
content: " ";
|
|
764
|
+
padding-top: 30px;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.add-button-icon {
|
|
768
|
+
position: absolute;
|
|
769
|
+
top: 8px;
|
|
770
|
+
right: 13px;
|
|
771
|
+
cursor: pointer;
|
|
772
|
+
|
|
773
|
+
.ant-upload {
|
|
774
|
+
padding: 0;
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.ant-row-column {
|
|
780
|
+
flex-flow: column;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.ant-form-item-control {
|
|
784
|
+
display: block;
|
|
785
|
+
width: 100%;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.ant-form-item-control-input {
|
|
789
|
+
min-height: auto;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.type-icon-wrapper {
|
|
793
|
+
min-height: 150px;
|
|
794
|
+
text-align: center;
|
|
795
|
+
|
|
796
|
+
.image-type-icon {
|
|
797
|
+
width: 100%;
|
|
798
|
+
height: auto;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.file-type-icon {
|
|
802
|
+
min-height: 0;
|
|
803
|
+
height: 100px;
|
|
804
|
+
width: auto;
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.ant-tooltip-inner {
|
|
810
|
+
display: flex;
|
|
811
|
+
justify-content: center;
|
|
812
|
+
align-items: center;
|
|
813
|
+
font-size: 10px;
|
|
814
|
+
padding: 2px 4px;
|
|
815
|
+
min-height: unset;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.mutiple-upload-files-container {
|
|
819
|
+
.ant-row-middle {
|
|
820
|
+
text-align: left;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.ant-upload.ant-upload-drag {
|
|
824
|
+
border: 0;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.multiple-image-container {
|
|
828
|
+
border: 0;
|
|
829
|
+
|
|
830
|
+
.scrollable {
|
|
831
|
+
min-height: 212px;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.ant-upload {
|
|
835
|
+
padding: 0;
|
|
836
|
+
|
|
837
|
+
.anticon-plus {
|
|
838
|
+
font-size: 20px;
|
|
839
|
+
color: #00000090;
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.notice-arrow {
|
|
844
|
+
position: absolute;
|
|
845
|
+
right: 0;
|
|
846
|
+
top: 38%;
|
|
847
|
+
display: flex;
|
|
848
|
+
width: 50px;
|
|
849
|
+
height: 50px;
|
|
850
|
+
background: #00000050;
|
|
851
|
+
justify-content: center;
|
|
852
|
+
align-items: center;
|
|
853
|
+
color: white;
|
|
854
|
+
font-size: 25px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.list-image {
|
|
858
|
+
display: flex;
|
|
859
|
+
|
|
860
|
+
.meta-data-overlay {
|
|
861
|
+
position: absolute;
|
|
862
|
+
bottom: 2px;
|
|
863
|
+
left: 0;
|
|
864
|
+
right: 0;
|
|
865
|
+
background-color: white;
|
|
866
|
+
z-index: 4;
|
|
867
|
+
padding: 5px 10px;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.image {
|
|
871
|
+
position: relative;
|
|
872
|
+
width: 150px;
|
|
873
|
+
|
|
874
|
+
&:hover {
|
|
875
|
+
&::before {
|
|
876
|
+
position: absolute;
|
|
877
|
+
width: 100%;
|
|
878
|
+
height: 100%;
|
|
879
|
+
left: 0;
|
|
880
|
+
// background-color: rgba(164, 160, 160, 0.5);
|
|
881
|
+
opacity: 0.9;
|
|
882
|
+
transition: all 0.3s;
|
|
883
|
+
content: " ";
|
|
884
|
+
z-index: 5;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
img {
|
|
888
|
+
opacity: 0.8;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.multiple-upload-actions {
|
|
892
|
+
width: 100%;
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.ant-upload {
|
|
899
|
+
.ant-upload-btn {
|
|
900
|
+
display: flex;
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.ant-upload-drag-container {
|
|
905
|
+
display: table-cell !important;
|
|
906
|
+
width: 100%;
|
|
907
|
+
height: 100%;
|
|
908
|
+
left: 0;
|
|
909
|
+
// background-color: rgba(0, 0, 0, 0.5);
|
|
910
|
+
// background-color: rgba(164, 160, 160, 0.5);
|
|
911
|
+
opacity: 0.9;
|
|
912
|
+
transition: all 0.3s;
|
|
913
|
+
content: " ";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.add-button-icon {
|
|
917
|
+
position: absolute;
|
|
918
|
+
top: 8px;
|
|
919
|
+
right: 13px;
|
|
920
|
+
cursor: pointer;
|
|
921
|
+
|
|
922
|
+
.ant-upload {
|
|
923
|
+
padding: 0;
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.ant-row-column {
|
|
929
|
+
flex-flow: column;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.ant-form-item-control {
|
|
933
|
+
display: block;
|
|
934
|
+
width: 100%;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.ant-form-item-control-input {
|
|
938
|
+
min-height: auto;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.type-icon-wrapper {
|
|
942
|
+
min-height: 150px;
|
|
943
|
+
text-align: center;
|
|
944
|
+
|
|
945
|
+
.image-type-icon {
|
|
946
|
+
width: 100%;
|
|
947
|
+
height: auto;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.file-type-icon {
|
|
951
|
+
min-height: 0;
|
|
952
|
+
height: 100px;
|
|
953
|
+
width: auto;
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.ant-tooltip-inner {
|
|
959
|
+
display: flex;
|
|
960
|
+
justify-content: center;
|
|
961
|
+
align-items: center;
|
|
962
|
+
font-size: 10px;
|
|
963
|
+
padding: 2px 4px;
|
|
964
|
+
min-height: unset;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.mutiple-upload-files-container {
|
|
968
|
+
.ant-row-middle {
|
|
969
|
+
text-align: left;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.ant-upload.ant-upload-drag {
|
|
973
|
+
border: 0;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.multiple-image-container {
|
|
977
|
+
border: 0;
|
|
978
|
+
|
|
979
|
+
.scrollable {
|
|
980
|
+
min-height: 212px;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.ant-upload {
|
|
984
|
+
padding: 0;
|
|
985
|
+
|
|
986
|
+
.anticon-plus {
|
|
987
|
+
font-size: 20px;
|
|
988
|
+
color: #00000090;
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.notice-arrow {
|
|
993
|
+
position: absolute;
|
|
994
|
+
right: 0;
|
|
995
|
+
top: 38%;
|
|
996
|
+
display: flex;
|
|
997
|
+
width: 50px;
|
|
998
|
+
height: 50px;
|
|
999
|
+
background: #00000050;
|
|
1000
|
+
justify-content: center;
|
|
1001
|
+
align-items: center;
|
|
1002
|
+
color: white;
|
|
1003
|
+
font-size: 25px;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.list-image {
|
|
1007
|
+
display: flex;
|
|
1008
|
+
|
|
1009
|
+
.meta-data-overlay {
|
|
1010
|
+
position: absolute;
|
|
1011
|
+
bottom: 2px;
|
|
1012
|
+
left: 0;
|
|
1013
|
+
right: 0;
|
|
1014
|
+
background-color: white;
|
|
1015
|
+
z-index: 4;
|
|
1016
|
+
padding: 5px 10px;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.image {
|
|
1020
|
+
position: relative;
|
|
1021
|
+
width: 150px;
|
|
1022
|
+
|
|
1023
|
+
&:hover {
|
|
1024
|
+
&::before {
|
|
1025
|
+
position: absolute;
|
|
1026
|
+
width: 100%;
|
|
1027
|
+
height: 100%;
|
|
1028
|
+
left: 0;
|
|
1029
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
1030
|
+
opacity: 0.9;
|
|
1031
|
+
transition: all 0.3s;
|
|
1032
|
+
content: " ";
|
|
1033
|
+
z-index: 5;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
img {
|
|
1037
|
+
opacity: 0.8;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.multiple-upload-actions {
|
|
1041
|
+
width: 100%;
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.truncate-middle {
|
|
1050
|
+
position: relative;
|
|
1051
|
+
max-width: 96px;
|
|
1052
|
+
|
|
1053
|
+
&:after {
|
|
1054
|
+
content: attr(data-truncate);
|
|
1055
|
+
position: absolute;
|
|
1056
|
+
left: 100%;
|
|
1057
|
+
top: 0;
|
|
1058
|
+
white-space: nowrap;
|
|
1059
|
+
background-color: white;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
div {
|
|
1063
|
+
white-space: nowrap;
|
|
1064
|
+
text-overflow: ellipsis;
|
|
1065
|
+
overflow: hidden;
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.single-upload-images-container.imageUrl {
|
|
1070
|
+
.single-upload-actions {
|
|
1071
|
+
margin: 0 !important;
|
|
1072
|
+
display: none;
|
|
1073
|
+
flex-direction: row;
|
|
1074
|
+
justify-content: center;
|
|
1075
|
+
position: absolute;
|
|
1076
|
+
top: 50%;
|
|
1077
|
+
left: 50%;
|
|
1078
|
+
z-index: 2;
|
|
1079
|
+
-webkit-transform: translate(-50%, -50%);
|
|
1080
|
+
transition: all 0.3s;
|
|
1081
|
+
|
|
1082
|
+
svg {
|
|
1083
|
+
cursor: pointer;
|
|
1084
|
+
color: white;
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.no-preview-single {
|
|
1089
|
+
.ant-avatar-string {
|
|
1090
|
+
line-height: 46px !important;
|
|
1091
|
+
padding-top: 38px;
|
|
1092
|
+
font-size: 40px;
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.ant-upload-drag-container {
|
|
1097
|
+
position: relative;
|
|
1098
|
+
|
|
1099
|
+
.image-content::before {
|
|
1100
|
+
position: absolute;
|
|
1101
|
+
z-index: 1;
|
|
1102
|
+
width: 100%;
|
|
1103
|
+
height: 100%;
|
|
1104
|
+
left: 0;
|
|
1105
|
+
// background-color: rgba(0, 0, 0, 0.5);
|
|
1106
|
+
opacity: 0.9;
|
|
1107
|
+
transition: all 0.3s;
|
|
1108
|
+
content: " ";
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.image-content {
|
|
1112
|
+
position: relative;
|
|
1113
|
+
height: 140px;
|
|
1114
|
+
line-height: 140px;
|
|
1115
|
+
background-color: transparent;
|
|
1116
|
+
text-align: center;
|
|
1117
|
+
|
|
1118
|
+
img {
|
|
1119
|
+
max-height: 100%;
|
|
1120
|
+
max-width: 100%;
|
|
1121
|
+
vertical-align: middle;
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
&:hover {
|
|
1127
|
+
.single-upload-actions {
|
|
1128
|
+
display: flex;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.ant-upload-drag-container {
|
|
1132
|
+
.image-content::before {
|
|
1133
|
+
position: absolute;
|
|
1134
|
+
z-index: 1;
|
|
1135
|
+
width: 100%;
|
|
1136
|
+
height: 100%;
|
|
1137
|
+
left: 0;
|
|
1138
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
1139
|
+
opacity: 0.9;
|
|
1140
|
+
transition: all 0.3s;
|
|
1141
|
+
content: " ";
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
img {
|
|
1145
|
+
opacity: 0.8;
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
|
|
1151
|
+
border-color: #d9d9d9;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.ant-upload.ant-upload-drag:hover {
|
|
1155
|
+
cursor: default;
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.single-upload-files-container.imageUrl {
|
|
1160
|
+
.single-upload-actions {
|
|
1161
|
+
margin: 0 !important;
|
|
1162
|
+
display: none;
|
|
1163
|
+
flex-direction: row;
|
|
1164
|
+
justify-content: center;
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
top: 50%;
|
|
1167
|
+
left: 50%;
|
|
1168
|
+
z-index: 2;
|
|
1169
|
+
-webkit-transform: translate(-50%, -50%);
|
|
1170
|
+
transition: all 0.3s;
|
|
1171
|
+
|
|
1172
|
+
svg {
|
|
1173
|
+
cursor: pointer;
|
|
1174
|
+
color: white;
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.ant-upload-drag-container {
|
|
1179
|
+
position: relative;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
|
|
1183
|
+
border-color: #d9d9d9;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.ant-upload.ant-upload-drag:hover {
|
|
1187
|
+
cursor: default;
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.react-flow__controls {
|
|
1192
|
+
height: 128px;
|
|
1193
|
+
width: 32px;
|
|
1194
|
+
|
|
1195
|
+
.react-flow__controls-button {
|
|
1196
|
+
height: 32px;
|
|
1197
|
+
width: 32px;
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.blink-effect {
|
|
1202
|
+
animation-name: blink;
|
|
1203
|
+
animation-duration: 0.2s;
|
|
1204
|
+
animation-iteration-count: infinite;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.workflows-buttons {
|
|
1208
|
+
border-right: 1px solid #8f8f8f;
|
|
1209
|
+
padding: 0px 8px 0px 0px;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.red-compare {
|
|
1213
|
+
background: #fdd;
|
|
1214
|
+
|
|
1215
|
+
td {
|
|
1216
|
+
background: #fdd !important;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.red-compare-text {
|
|
1221
|
+
color: red;
|
|
1222
|
+
|
|
1223
|
+
td {
|
|
1224
|
+
color: red !important;
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.green-compare {
|
|
1229
|
+
background: #dfd;
|
|
1230
|
+
|
|
1231
|
+
td {
|
|
1232
|
+
background: #dfd !important;
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.compare-detail-card-modal-container {
|
|
1237
|
+
margin-top: 20px;
|
|
1238
|
+
min-height: 200px;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.ant-modal.photoshop-picker {
|
|
1242
|
+
.ant-modal-content {
|
|
1243
|
+
background-color: unset;
|
|
1244
|
+
border-radius: 0px;
|
|
1245
|
+
box-shadow: unset;
|
|
1246
|
+
|
|
1247
|
+
.ant-modal-body {
|
|
1248
|
+
padding: 0px;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.photoshop-picker-content {
|
|
1254
|
+
.ant-col {
|
|
1255
|
+
cursor: pointer;
|
|
1256
|
+
margin-right: 5px;
|
|
1257
|
+
width: 20px;
|
|
1258
|
+
height: 20px;
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
// Ant Tag
|
|
1263
|
+
.ant-tag {
|
|
1264
|
+
&.ant-tag-red {
|
|
1265
|
+
color: #f5222d;
|
|
1266
|
+
background: #fff1f0;
|
|
1267
|
+
border-color: #ffa39e;
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.ant-collapse-item.lost-entities {
|
|
1272
|
+
background-color: lighten(@error-color, 30%);
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.btn-icon-action-table {
|
|
1276
|
+
&.edit-entity {
|
|
1277
|
+
height: 32px;
|
|
1278
|
+
line-height: 0;
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.row-dragging {
|
|
1283
|
+
background: #fafafa;
|
|
1284
|
+
border: 1px solid #ccc;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.row-dragging td {
|
|
1288
|
+
padding: 16px;
|
|
1289
|
+
visibility: hidden;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.row-dragging .drag-visible {
|
|
1293
|
+
visibility: visible;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.custom-node-workflow {
|
|
1297
|
+
// background : #ff6060;
|
|
1298
|
+
color: #222;
|
|
1299
|
+
padding: 10px;
|
|
1300
|
+
font-size: 20px;
|
|
1301
|
+
border-radius: 3px;
|
|
1302
|
+
|
|
1303
|
+
.container {
|
|
1304
|
+
min-width: 130px;
|
|
1305
|
+
text-align: center;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.point-a {
|
|
1309
|
+
top: 0;
|
|
1310
|
+
left: 20%;
|
|
1311
|
+
border-radius: 0;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.point-b {
|
|
1315
|
+
top: 0;
|
|
1316
|
+
border-radius: 0;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.point-c {
|
|
1320
|
+
top: 0;
|
|
1321
|
+
left: 80%;
|
|
1322
|
+
border-radius: 0;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.point-d {
|
|
1326
|
+
bottom: 0;
|
|
1327
|
+
left: 20%;
|
|
1328
|
+
border-radius: 0;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.point-e {
|
|
1332
|
+
bottom: 0;
|
|
1333
|
+
border-radius: 0;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.point-f {
|
|
1337
|
+
bottom: 0;
|
|
1338
|
+
left: 80%;
|
|
1339
|
+
border-radius: 0;
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.custom-standard-node-workflow {
|
|
1344
|
+
color: #222;
|
|
1345
|
+
font-size: 20px;
|
|
1346
|
+
border-radius: 3px;
|
|
1347
|
+
min-width: 250px;
|
|
1348
|
+
|
|
1349
|
+
.container {
|
|
1350
|
+
display: flex;
|
|
1351
|
+
flex-direction: row;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.icon-wrapper {
|
|
1355
|
+
width: 90px;
|
|
1356
|
+
display: flex;
|
|
1357
|
+
justify-content: center;
|
|
1358
|
+
align-items: center;
|
|
1359
|
+
|
|
1360
|
+
&.icon-sign {
|
|
1361
|
+
margin-right: 2px;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.message-wrapper {
|
|
1366
|
+
background-color: white;
|
|
1367
|
+
padding: 10px;
|
|
1368
|
+
width: 100%;
|
|
1369
|
+
border-top-right-radius: 6px;
|
|
1370
|
+
border-bottom-right-radius: 6px;
|
|
1371
|
+
|
|
1372
|
+
.text-container {
|
|
1373
|
+
padding: 3px;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.text-label {
|
|
1377
|
+
min-width: 130px;
|
|
1378
|
+
font-size: 15px;
|
|
1379
|
+
font-weight: 500;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.text-description {
|
|
1383
|
+
min-width: 130px;
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.dot {
|
|
1388
|
+
height: 10px;
|
|
1389
|
+
width: 10px;
|
|
1390
|
+
background-color: rgb(0, 0, 0);
|
|
1391
|
+
border-radius: 50%;
|
|
1392
|
+
display: inline-block;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.square {
|
|
1396
|
+
height: 10px;
|
|
1397
|
+
width: 10px;
|
|
1398
|
+
background-color: rgb(0, 0, 0);
|
|
1399
|
+
border-radius: 0;
|
|
1400
|
+
display: inline-block;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.arrow-up {
|
|
1404
|
+
width: 0;
|
|
1405
|
+
height: 0;
|
|
1406
|
+
border-left: 6px solid transparent;
|
|
1407
|
+
border-right: 6px solid transparent;
|
|
1408
|
+
border-bottom: 9px solid black;
|
|
1409
|
+
border-radius: 0;
|
|
1410
|
+
background: transparent;
|
|
1411
|
+
border-top-color: transparent;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.arrow-down {
|
|
1415
|
+
width: 0;
|
|
1416
|
+
height: 0;
|
|
1417
|
+
border-left: 6px solid transparent;
|
|
1418
|
+
border-right: 6px solid transparent;
|
|
1419
|
+
border-top: 9px solid black;
|
|
1420
|
+
border-radius: 0;
|
|
1421
|
+
background: transparent;
|
|
1422
|
+
border-bottom-color: transparent;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.arrow-right {
|
|
1426
|
+
width: 0;
|
|
1427
|
+
height: 0;
|
|
1428
|
+
border-top: 6px solid transparent;
|
|
1429
|
+
border-bottom: 6px solid transparent;
|
|
1430
|
+
border-left: 9px solid black;
|
|
1431
|
+
border-radius: 0;
|
|
1432
|
+
background: transparent;
|
|
1433
|
+
border-right-color: transparent;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.arrow-left {
|
|
1437
|
+
width: 0;
|
|
1438
|
+
height: 0;
|
|
1439
|
+
border-top: 6px solid transparent;
|
|
1440
|
+
border-bottom: 6px solid transparent;
|
|
1441
|
+
border-right: 9px solid black;
|
|
1442
|
+
border-radius: 0;
|
|
1443
|
+
background: transparent;
|
|
1444
|
+
border-left-color: transparent;
|
|
1445
|
+
}
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.workflow-translate-table-column {
|
|
1449
|
+
.ant-form-item {
|
|
1450
|
+
margin-bottom: 0px;
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
// AutoComplete Field
|
|
1455
|
+
.autocomplete.ant-form-item-has-feedback.ant-form-item-has-error {
|
|
1456
|
+
|
|
1457
|
+
&.field,
|
|
1458
|
+
&.func {
|
|
1459
|
+
.ant-form-item-children-icon {
|
|
1460
|
+
right: 45px;
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
&.field-func {
|
|
1465
|
+
.ant-form-item-children-icon {
|
|
1466
|
+
right: 90px;
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.dropdown-menu-overflow {
|
|
1472
|
+
position: relative;
|
|
1473
|
+
max-height: 60vh;
|
|
1474
|
+
overflow: auto;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.form-item-show-label-only {
|
|
1478
|
+
.ant-col.ant-form-item-control {
|
|
1479
|
+
width: 100%;
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.ant-menu {
|
|
1484
|
+
.ant-menu-item {
|
|
1485
|
+
a {
|
|
1486
|
+
font-size: @label-bigger;
|
|
1487
|
+
font-weight: lighter;
|
|
1488
|
+
display: flex;
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.ant-menu-submenu-title {
|
|
1493
|
+
.menu-label {
|
|
1494
|
+
font-size: @label-bigger;
|
|
1495
|
+
font-weight: lighter;
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
&.ant-menu-inline,
|
|
1500
|
+
&.ant-menu-vertical,
|
|
1501
|
+
&.ant-menu-vertical-left {
|
|
1502
|
+
border-right: none;
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.mb-25 {
|
|
1507
|
+
margin-bottom: 25px;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.mb-15 {
|
|
1511
|
+
margin-bottom: 15px;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
.app-loading {
|
|
1515
|
+
height: 100vh;
|
|
1516
|
+
text-align: center;
|
|
1517
|
+
display: flex;
|
|
1518
|
+
flex-direction: column;
|
|
1519
|
+
justify-content: center;
|
|
1520
|
+
align-items: center;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
.addable-table-container {
|
|
1524
|
+
.ant-row {
|
|
1525
|
+
flex-flow: row;
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.chart-wrapper {
|
|
1530
|
+
width: 100%;
|
|
1531
|
+
min-height: 300px;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.custom-select-tag-render-tag {
|
|
1535
|
+
background: rgb(245, 245, 245) !important;
|
|
1536
|
+
border: 1px solid rgb(240, 240, 240) !important;
|
|
1537
|
+
border-radius: 6px;
|
|
1538
|
+
height: 24px;
|
|
1539
|
+
margin-top: 2px;
|
|
1540
|
+
margin-bottom: 2px;
|
|
1541
|
+
line-height: 22px;
|
|
1542
|
+
margin-right: 3px;
|
|
1543
|
+
font-size: 14px;
|
|
1544
|
+
font-variant: tabular-nums;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
.workflow-transition-container {
|
|
1548
|
+
position: absolute;
|
|
1549
|
+
border: 1px solid #d9d9d9;
|
|
1550
|
+
border-radius: 6px;
|
|
1551
|
+
margin: 15px;
|
|
1552
|
+
padding: 10px 10px;
|
|
1553
|
+
right: 0;
|
|
1554
|
+
background: white;
|
|
1555
|
+
height: 70%;
|
|
1556
|
+
width: 200px;
|
|
1557
|
+
z-index: 10;
|
|
1558
|
+
|
|
1559
|
+
.elements-container {
|
|
1560
|
+
display: flex;
|
|
1561
|
+
flex-direction: column;
|
|
1562
|
+
justify-content: space-between;
|
|
1563
|
+
height: 100%;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.list-container {
|
|
1567
|
+
display: flex;
|
|
1568
|
+
flex-direction: column;
|
|
1569
|
+
height: 100%;
|
|
1570
|
+
margin-bottom: 10px;
|
|
1571
|
+
row-gap: 10px;
|
|
1572
|
+
overflow-y: auto;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.list-item {
|
|
1576
|
+
border: 1px solid #d9d9d9;
|
|
1577
|
+
padding: 10px;
|
|
1578
|
+
border-radius: 6px;
|
|
1579
|
+
cursor: pointer;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
.label {
|
|
1583
|
+
font-size: 12px;
|
|
1584
|
+
white-space: nowrap;
|
|
1585
|
+
overflow: hidden;
|
|
1586
|
+
text-overflow: ellipsis;
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
.modal-validate {
|
|
1591
|
+
.ant-modal-body {
|
|
1592
|
+
padding-top: 10px;
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.switch-list-required {
|
|
1597
|
+
padding-top: 10px;
|
|
1598
|
+
padding-bottom: 10px;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.cke_panel_container {
|
|
1602
|
+
overflow: auto !important;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.cke_reset_all {
|
|
1606
|
+
max-height: 40vh !important;
|
|
1607
|
+
overflow: auto !important;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.codeMarker {
|
|
1611
|
+
background: #fff677;
|
|
1612
|
+
position: absolute;
|
|
1613
|
+
z-index: 20;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.json-compare-modal {
|
|
1617
|
+
.ant-modal {
|
|
1618
|
+
width: 60% !important;
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
.box_executions_workflows {
|
|
1623
|
+
display: flex;
|
|
1624
|
+
justify-content: flex-end;
|
|
1625
|
+
padding-right: 5px;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.icon_vdo {
|
|
1629
|
+
margin: 0 !important;
|
|
1630
|
+
flex-direction: row;
|
|
1631
|
+
justify-content: center;
|
|
1632
|
+
position: absolute;
|
|
1633
|
+
top: 50%;
|
|
1634
|
+
left: 50%;
|
|
1635
|
+
// z-index: 6;
|
|
1636
|
+
-webkit-transform: translate(-50%, -50%);
|
|
1637
|
+
transition: all 0.3s;
|
|
1638
|
+
color: #b4171f;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.custom-table-row {
|
|
1642
|
+
td {
|
|
1643
|
+
background-color: inherit !important;
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.list-file {
|
|
1648
|
+
min-width: 170px;
|
|
1649
|
+
min-height: 200px;
|
|
1650
|
+
display: flex;
|
|
1651
|
+
justify-content: center;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
.list-file {
|
|
1655
|
+
min-width: 170px;
|
|
1656
|
+
min-height: 200px;
|
|
1657
|
+
display: flex;
|
|
1658
|
+
justify-content: center;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.dropbtn {
|
|
1662
|
+
background-color: #ffffff00;
|
|
1663
|
+
// padding: 10px;
|
|
1664
|
+
font-size: 12px;
|
|
1665
|
+
border: none;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.dropdown-content a {
|
|
1669
|
+
padding: 12px 16px;
|
|
1670
|
+
font-size: 12px;
|
|
1671
|
+
text-decoration: none;
|
|
1672
|
+
display: block;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
.dropdown-content {
|
|
1676
|
+
display: none;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
.dropdown:hover .dropdown-content {
|
|
1680
|
+
display: flex;
|
|
1681
|
+
position: fixed;
|
|
1682
|
+
padding: 10px;
|
|
1683
|
+
width: 100%;
|
|
1684
|
+
background: rgb(255, 255, 255);
|
|
1685
|
+
left: 0px;
|
|
1686
|
+
z-index: 100;
|
|
1687
|
+
flex-direction: column;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
@media (max-width: 768px) {
|
|
1691
|
+
.ant-menu-submenu-open .ant-menu-submenu-arrow {
|
|
1692
|
+
color: @primary-color !important;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.ant-menu-submenu-open .ant-menu-submenu-title>span {
|
|
1696
|
+
color: @primary-color !important;
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.mode-display-text {
|
|
1701
|
+
// display: flex;
|
|
1702
|
+
align-items: center;
|
|
1703
|
+
justify-content: center;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.react-flow .react-flow__edge path,
|
|
1707
|
+
.react-flow__connectionline path {
|
|
1708
|
+
stroke-width: 2;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.wrapper {
|
|
1712
|
+
flex-grow: 1;
|
|
1713
|
+
height: 500px;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.customNode {
|
|
1717
|
+
padding: 4px 8px;
|
|
1718
|
+
border: 1px solid @primary-color;
|
|
1719
|
+
border-radius: 4px;
|
|
1720
|
+
background-color: white;
|
|
1721
|
+
height: 60px;
|
|
1722
|
+
width: 200px;
|
|
1723
|
+
justify-content: center;
|
|
1724
|
+
align-items: center;
|
|
1725
|
+
display: flex;
|
|
1726
|
+
position: relative;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.customNode-add {
|
|
1730
|
+
display: flex;
|
|
1731
|
+
justify-content: center;
|
|
1732
|
+
width: 200px;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.customNode.custom-node-add {
|
|
1736
|
+
border: 1px dashed @text-color-disabled;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.custom-node-add-radius {
|
|
1740
|
+
padding: 4px 8px;
|
|
1741
|
+
border: 1px dashed @text-color-disabled;
|
|
1742
|
+
border-radius: 50%;
|
|
1743
|
+
background-color: white;
|
|
1744
|
+
height: 30px;
|
|
1745
|
+
width: 30px;
|
|
1746
|
+
justify-content: center;
|
|
1747
|
+
align-items: center;
|
|
1748
|
+
display: flex;
|
|
1749
|
+
position: relative;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.customNodeIconEdit {
|
|
1753
|
+
position: absolute;
|
|
1754
|
+
top: 0px;
|
|
1755
|
+
right: 25px;
|
|
1756
|
+
cursor: pointer;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.customNodeIconEdit:hover {
|
|
1760
|
+
color: @primary-color;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.customNodeIconAdd {
|
|
1764
|
+
position: absolute;
|
|
1765
|
+
top: 0px;
|
|
1766
|
+
right: 5px;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
.customNodeIconAdd:hover {
|
|
1770
|
+
color: @primary-color;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.customNode:hover {
|
|
1774
|
+
background-color: @hover-color;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.customHandle.react-flow__handle {
|
|
1778
|
+
opacity: 0;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.customNodeIconExpandOrCollapse {
|
|
1782
|
+
position: absolute;
|
|
1783
|
+
top: 0px;
|
|
1784
|
+
left: 5px;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
.custom-selectList {
|
|
1788
|
+
.draggable-row {
|
|
1789
|
+
border: none !important;
|
|
1790
|
+
|
|
1791
|
+
.move {
|
|
1792
|
+
background-color: #fff !important;
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.addable-table-minus-button-disabled {
|
|
1798
|
+
cursor: not-allowed;
|
|
1799
|
+
background-color: #f5f5f5;
|
|
1800
|
+
color: @text-color-disabled;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.addon-after-input-function {
|
|
1804
|
+
.ant-input-group-addon {
|
|
1805
|
+
padding: 0px;
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.custom-table-headers {
|
|
1810
|
+
th {
|
|
1811
|
+
background-color: inherit !important;
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.custom-node-content {
|
|
1816
|
+
width: 100%;
|
|
1817
|
+
display: flex;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.custom-node-content-text span {
|
|
1821
|
+
display: flex;
|
|
1822
|
+
justify-content: center;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.custom-node-content-tag {
|
|
1826
|
+
display: flex;
|
|
1827
|
+
justify-content: end;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.sticky-header {
|
|
1831
|
+
position: sticky;
|
|
1832
|
+
top: 0;
|
|
1833
|
+
background-color: #fff;
|
|
1834
|
+
z-index: 100;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.customNode-flow {
|
|
1838
|
+
padding: 4px 8px;
|
|
1839
|
+
border: 1px solid @primary-color;
|
|
1840
|
+
border-radius: 4px;
|
|
1841
|
+
background-color: white;
|
|
1842
|
+
height: 70px;
|
|
1843
|
+
width: 200px;
|
|
1844
|
+
justify-content: center;
|
|
1845
|
+
align-items: center;
|
|
1846
|
+
display: flex;
|
|
1847
|
+
flex-direction: column;
|
|
1848
|
+
// position: absolute;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.customNode-start-flow {
|
|
1852
|
+
display: flex;
|
|
1853
|
+
justify-content: center;
|
|
1854
|
+
width: 200px;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
.customNode.customNode-start-flow {
|
|
1858
|
+
border: 1px dashed @text-color-disabled;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.customNode-start-flow-radius {
|
|
1862
|
+
padding: 4px 8px;
|
|
1863
|
+
border: 1px dashed @text-color-disabled;
|
|
1864
|
+
border-radius: 50%;
|
|
1865
|
+
background-color: white;
|
|
1866
|
+
height: 50px;
|
|
1867
|
+
width: 50px;
|
|
1868
|
+
justify-content: center;
|
|
1869
|
+
align-items: center;
|
|
1870
|
+
display: flex;
|
|
1871
|
+
position: relative;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.customNode-add-flow {
|
|
1875
|
+
display: flex;
|
|
1876
|
+
justify-content: center;
|
|
1877
|
+
width: 200px;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.custom-node-distribution-img {
|
|
1881
|
+
background-image: url("/static/images/split.svg");
|
|
1882
|
+
background-size: 18px 18px;
|
|
1883
|
+
height: 22px;
|
|
1884
|
+
width: 22px;
|
|
1885
|
+
position: absolute;
|
|
1886
|
+
top: 4px;
|
|
1887
|
+
left: 5px;
|
|
1888
|
+
background-repeat: no-repeat;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.custom-node-add-radius-flow {
|
|
1892
|
+
padding: 4px 8px;
|
|
1893
|
+
border: 1px dashed @text-color-disabled;
|
|
1894
|
+
border-radius: 50%;
|
|
1895
|
+
background-color: white;
|
|
1896
|
+
height: 30px;
|
|
1897
|
+
width: 30px;
|
|
1898
|
+
justify-content: center;
|
|
1899
|
+
align-items: center;
|
|
1900
|
+
display: flex;
|
|
1901
|
+
position: relative;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.line-between-node {
|
|
1905
|
+
left: 50%;
|
|
1906
|
+
height: 25px;
|
|
1907
|
+
width: 2px;
|
|
1908
|
+
background-color: #999;
|
|
1909
|
+
position: relative;
|
|
1910
|
+
margin-left: -1px;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.custom-node-distribution-btn {
|
|
1914
|
+
padding: 4px 8px;
|
|
1915
|
+
border: 1px solid @text-color-disabled;
|
|
1916
|
+
border-radius: 50%;
|
|
1917
|
+
color: black;
|
|
1918
|
+
height: 30px;
|
|
1919
|
+
width: 30px;
|
|
1920
|
+
justify-content: center;
|
|
1921
|
+
align-items: center;
|
|
1922
|
+
display: flex;
|
|
1923
|
+
margin-top: -15px;
|
|
1924
|
+
z-index: 100;
|
|
1925
|
+
position: absolute;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.chartwidget-download-button {
|
|
1929
|
+
display: none;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.chartwidget-canvas:hover .chartwidget-download-button {
|
|
1933
|
+
display: block;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
.buttonvariable {
|
|
1937
|
+
min-width: "min(180px, 100%)";
|
|
1938
|
+
max-width: 100%;
|
|
1939
|
+
overflow: hidden;
|
|
1940
|
+
display: flex;
|
|
1941
|
+
text-align: center;
|
|
1942
|
+
justify-content: center;
|
|
1943
|
+
color: var(--text-color-var) !important;
|
|
1944
|
+
background-color: var(--background-color-var) !important;
|
|
1945
|
+
margin-top: var(--align-bottom) !important;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.buttonvariable:hover {
|
|
1949
|
+
background-color: var(--background-color-hover-var) !important;
|
|
1950
|
+
color: var(--text-color-hover-var) !important;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
.table-external {
|
|
1954
|
+
.ant-table-cell {
|
|
1955
|
+
padding: 10px 16px;
|
|
1956
|
+
}
|
|
1957
|
+
}
|