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,2690 @@
|
|
|
1
|
+
@import "custom-antd.less";
|
|
2
|
+
|
|
3
|
+
.timeline-title {
|
|
4
|
+
font-weight: bold;
|
|
5
|
+
|
|
6
|
+
.time {
|
|
7
|
+
font-weight: normal;
|
|
8
|
+
color: #c4c4c4;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.mix-button-dropdown-container {
|
|
13
|
+
margin: 0 0 0 9px;
|
|
14
|
+
border: 1px solid @primary-color;
|
|
15
|
+
padding: 6px 10px;
|
|
16
|
+
border-radius: 5px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.mix-button-text {
|
|
20
|
+
color: @primary-color;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.related-one2one-select {
|
|
24
|
+
.ant-select-selector {
|
|
25
|
+
border-top-right-radius: 0 !important;
|
|
26
|
+
border-bottom-right-radius: 0 !important;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
.form-item-related-one2one-select.ant-form-item-has-feedback.ant-form-item-has-error {
|
|
32
|
+
.ant-form-item-children-icon {
|
|
33
|
+
right: 46px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// components layout
|
|
38
|
+
.detail-component-layout {
|
|
39
|
+
padding-left: 8px;
|
|
40
|
+
padding-right: 8px;
|
|
41
|
+
|
|
42
|
+
.component-layout-detail {
|
|
43
|
+
.component-layout-detail-dnd {
|
|
44
|
+
margin: 0px;
|
|
45
|
+
margin-bottom: 24px;
|
|
46
|
+
|
|
47
|
+
.layout-container {
|
|
48
|
+
.position-top,
|
|
49
|
+
.position-bottom {
|
|
50
|
+
min-height: 50px;
|
|
51
|
+
border: 1px solid @border-color-base;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.position-top {
|
|
55
|
+
border-top-left-radius: @border-radius-base;
|
|
56
|
+
border-top-right-radius: @border-radius-base;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.position-bottom {
|
|
60
|
+
border-bottom-left-radius: @border-radius-base;
|
|
61
|
+
border-bottom-right-radius: @border-radius-base;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.position-middle-top {
|
|
65
|
+
min-height: 50px;
|
|
66
|
+
border-bottom: 1px solid @border-color-base;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.position-middle-bottom {
|
|
70
|
+
min-height: 50px;
|
|
71
|
+
border-top: 1px solid @border-color-base;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.position-middle-middle {
|
|
75
|
+
height: 100px;
|
|
76
|
+
background-color: @background-color;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.position-left,
|
|
80
|
+
.position-right {
|
|
81
|
+
min-height: 150px;
|
|
82
|
+
border: 1px solid @border-color-base;
|
|
83
|
+
border-top: none;
|
|
84
|
+
border-bottom: none;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.layout-block {
|
|
88
|
+
height: 100%;
|
|
89
|
+
min-height: 50px;
|
|
90
|
+
|
|
91
|
+
.layout-block-item {
|
|
92
|
+
position: relative;
|
|
93
|
+
margin: 8px;
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
|
|
97
|
+
.block-item {
|
|
98
|
+
display: flex;
|
|
99
|
+
border: 1px dashed #f2f2f2;
|
|
100
|
+
|
|
101
|
+
.item {
|
|
102
|
+
width: 100%;
|
|
103
|
+
padding: 5px 8px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.icon-edit {
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
padding-right: 24px;
|
|
109
|
+
padding-top: 5px;
|
|
110
|
+
color: @border-color-base;
|
|
111
|
+
|
|
112
|
+
&:hover {
|
|
113
|
+
color: @text-color;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.icon-remove {
|
|
118
|
+
display: flex;
|
|
119
|
+
cursor: pointer;
|
|
120
|
+
position: absolute;
|
|
121
|
+
right: 6px;
|
|
122
|
+
top: 9px;
|
|
123
|
+
z-index: 2;
|
|
124
|
+
color: @border-color-base;
|
|
125
|
+
|
|
126
|
+
&:hover {
|
|
127
|
+
color: @text-color;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.widget-container {
|
|
136
|
+
.widget {
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
background-color: @background-color;
|
|
139
|
+
margin-bottom: 5px;
|
|
140
|
+
border-radius: 5px;
|
|
141
|
+
padding: 5px 15px;
|
|
142
|
+
white-space: nowrap;
|
|
143
|
+
overflow: hidden;
|
|
144
|
+
text-overflow: ellipsis;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Component Mapping Data mapping-tree
|
|
152
|
+
.component-mapping-data {
|
|
153
|
+
padding-top: 10px;
|
|
154
|
+
.mapping-data-dnd {
|
|
155
|
+
.field-container,
|
|
156
|
+
.functions-container {
|
|
157
|
+
.field-container-body,
|
|
158
|
+
.functions-container-body {
|
|
159
|
+
max-height: 40vh;
|
|
160
|
+
overflow-y: auto;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.field,
|
|
164
|
+
.functions {
|
|
165
|
+
cursor: pointer;
|
|
166
|
+
background-color: @background-color;
|
|
167
|
+
margin-bottom: 5px;
|
|
168
|
+
border-radius: 5px;
|
|
169
|
+
padding: 5px 15px;
|
|
170
|
+
white-space: nowrap;
|
|
171
|
+
overflow: hidden;
|
|
172
|
+
text-overflow: ellipsis;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ant-select.source-field {
|
|
177
|
+
.ant-select-single:not(.ant-select-customize-input),
|
|
178
|
+
.ant-select-selector {
|
|
179
|
+
padding-left: 40px;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.mapping-data-dnd-card {
|
|
184
|
+
// max-height: 60vh;
|
|
185
|
+
// overflow-y: auto;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.ant-tree.mapping-tree {
|
|
189
|
+
.ant-tree-treenode,
|
|
190
|
+
.ant-tree-node-content-wrapper {
|
|
191
|
+
width: 100%;
|
|
192
|
+
cursor: default;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.ant-tree-node-content-wrapper:hover,
|
|
196
|
+
.ant-tree-node-content-wrapper.ant-tree-node-selected {
|
|
197
|
+
background-color: unset;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.mapping-dnd {
|
|
202
|
+
border-radius: @border-radius-base;
|
|
203
|
+
|
|
204
|
+
.mapping-item {
|
|
205
|
+
line-height: 30px;
|
|
206
|
+
height: 32px;
|
|
207
|
+
border: 1px dashed @border-color-base;
|
|
208
|
+
border-radius: @border-radius-base;
|
|
209
|
+
padding: 0 30px 0 11px;
|
|
210
|
+
|
|
211
|
+
.mapping-item-text {
|
|
212
|
+
overflow: hidden;
|
|
213
|
+
text-overflow: ellipsis;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.icon-remove {
|
|
218
|
+
cursor: pointer;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.ant-tabs-tab {
|
|
223
|
+
border: 0px solid @list-layouts-border !important;
|
|
224
|
+
border-bottom: unset !important;
|
|
225
|
+
background-color: transparent !important;
|
|
226
|
+
|
|
227
|
+
&.ant-tabs-tab-active {
|
|
228
|
+
background-color: transparent;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.ant-tabs-nav {
|
|
233
|
+
border-bottom: 0px solid @list-layouts-border;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.ant-card-bordered {
|
|
237
|
+
border: 1px solid @border-color-split !important;
|
|
238
|
+
border-radius: 6px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.component-tree {
|
|
244
|
+
.ant-tree {
|
|
245
|
+
.ant-tree-node-content-wrapper.ant-tree-node-selected {
|
|
246
|
+
background-color: unset;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.ant-tree-list-holder {
|
|
250
|
+
overflow-x: hidden;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.ant-tree-node-content-wrapper {
|
|
254
|
+
display: flex;
|
|
255
|
+
cursor: default;
|
|
256
|
+
|
|
257
|
+
.ant-tree-title {
|
|
258
|
+
width: 100%;
|
|
259
|
+
|
|
260
|
+
.title-render {
|
|
261
|
+
.move {
|
|
262
|
+
width: 30px;
|
|
263
|
+
cursor: move;
|
|
264
|
+
text-align: center;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.title {
|
|
269
|
+
cursor: pointer;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.remove {
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
|
|
275
|
+
&:hover {
|
|
276
|
+
color: red;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.component-custom-field {
|
|
285
|
+
.ant-tree.mapping-tree {
|
|
286
|
+
.ant-tree-node-content-wrapper:hover,
|
|
287
|
+
.ant-tree-node-content-wrapper.ant-tree-node-selected {
|
|
288
|
+
background-color: unset;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.detail-action-menu {
|
|
294
|
+
min-width: 180px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.detail-tab-title,
|
|
298
|
+
.detail-collapse-title {
|
|
299
|
+
line-height: unset;
|
|
300
|
+
|
|
301
|
+
.ant-badge-dot {
|
|
302
|
+
display: none;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&.show-badge {
|
|
306
|
+
.ant-badge-dot {
|
|
307
|
+
display: initial;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.redio-compare {
|
|
313
|
+
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
314
|
+
color: white;
|
|
315
|
+
background-color: red;
|
|
316
|
+
border-color: red;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.ant-radio-checked.ant-radio-disabled {
|
|
320
|
+
.ant-radio-inner {
|
|
321
|
+
border-color: red !important;
|
|
322
|
+
|
|
323
|
+
&::after {
|
|
324
|
+
background-color: red;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.select-with-advance-fx {
|
|
331
|
+
.standard-select {
|
|
332
|
+
.ant-select-selector {
|
|
333
|
+
border-top-right-radius: 0px !important;
|
|
334
|
+
border-bottom-right-radius: 0px !important;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.button-toggle {
|
|
339
|
+
display: flex;
|
|
340
|
+
justify-content: center;
|
|
341
|
+
align-items: center;
|
|
342
|
+
|
|
343
|
+
&.on-toggle {
|
|
344
|
+
background-color: @primary-color !important;
|
|
345
|
+
color: white !important;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
span {
|
|
349
|
+
font-size: 10px;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
//----- Custom Botton ------//
|
|
355
|
+
.ant-btn {
|
|
356
|
+
&.ant-btn-secondary {
|
|
357
|
+
&:focus,
|
|
358
|
+
&:hover {
|
|
359
|
+
color: white;
|
|
360
|
+
background: @primary-color;
|
|
361
|
+
border-color: @primary-color;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
&:active {
|
|
365
|
+
color: @text-color;
|
|
366
|
+
background: white;
|
|
367
|
+
border-color: @border-color-base;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
&.ant-btn-primary {
|
|
372
|
+
background: white;
|
|
373
|
+
border-color: @primary-color;
|
|
374
|
+
color: @primary-color;
|
|
375
|
+
|
|
376
|
+
&:hover,
|
|
377
|
+
&:focus,
|
|
378
|
+
&:active {
|
|
379
|
+
background: @primary-color;
|
|
380
|
+
border-color: @primary-color;
|
|
381
|
+
color: white;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
&.ant-btn-primary[disabled] {
|
|
386
|
+
color: rgba(0, 0, 0, 0.25);
|
|
387
|
+
background: #f5f5f5;
|
|
388
|
+
border-color: #d9d9d9;
|
|
389
|
+
box-shadow: none;
|
|
390
|
+
|
|
391
|
+
&:hover,
|
|
392
|
+
&:focus,
|
|
393
|
+
&:active {
|
|
394
|
+
color: rgba(0, 0, 0, 0.25);
|
|
395
|
+
background: #f5f5f5;
|
|
396
|
+
border-color: #d9d9d9;
|
|
397
|
+
box-shadow: none;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
&.ant-btn-secondary[disabled] {
|
|
402
|
+
&:hover,
|
|
403
|
+
&:focus,
|
|
404
|
+
&:active {
|
|
405
|
+
color: rgba(0, 0, 0, 0.25);
|
|
406
|
+
background: #f5f5f5;
|
|
407
|
+
border-color: #d9d9d9;
|
|
408
|
+
box-shadow: none;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
&.ant-btn-third {
|
|
413
|
+
background: @primary-color;
|
|
414
|
+
border-color: @primary-color;
|
|
415
|
+
color: white;
|
|
416
|
+
|
|
417
|
+
&:hover,
|
|
418
|
+
&:focus {
|
|
419
|
+
color: white;
|
|
420
|
+
background: @primary-color;
|
|
421
|
+
border-color: @primary-color;
|
|
422
|
+
opacity: 0.8;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
&:active {
|
|
426
|
+
background: @primary-color;
|
|
427
|
+
border-color: @primary-color;
|
|
428
|
+
border-color: @primary-color;
|
|
429
|
+
color: white;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
&.ant-btn-add {
|
|
434
|
+
color: @secondary-color;
|
|
435
|
+
border: 1px solid @secondary-color;
|
|
436
|
+
background-color: transparent;
|
|
437
|
+
|
|
438
|
+
&:hover,
|
|
439
|
+
&:focus,
|
|
440
|
+
&:active {
|
|
441
|
+
color: @secondary-color;
|
|
442
|
+
border: 1px solid @secondary-color;
|
|
443
|
+
background-color: transparent;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
&.full-width {
|
|
447
|
+
width: 100%;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
//----- common-blink-effect ------//
|
|
453
|
+
@keyframes blink {
|
|
454
|
+
0% {
|
|
455
|
+
box-shadow: none;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
50% {
|
|
459
|
+
box-shadow: 0px 0px 6px @primary-color;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
100% {
|
|
463
|
+
box-shadow: none;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
//----- Custom Text ------//
|
|
468
|
+
.primary-text {
|
|
469
|
+
color: @primary-color;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.error-text {
|
|
473
|
+
color: @error-color;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.success-text {
|
|
477
|
+
color: @success-color;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.ant-typography {
|
|
481
|
+
&.action-color {
|
|
482
|
+
color: @action-color;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
//----- Custom Table ------//
|
|
487
|
+
.table-card {
|
|
488
|
+
.ant-table-column-sorters {
|
|
489
|
+
padding: 0px;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.table-action {
|
|
493
|
+
.table-action-button {
|
|
494
|
+
color: @action-color;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.ant-btn {
|
|
498
|
+
margin-top: -6px;
|
|
499
|
+
margin-left: 0px;
|
|
500
|
+
|
|
501
|
+
&.ant-btn-text {
|
|
502
|
+
&:hover,
|
|
503
|
+
&:focus {
|
|
504
|
+
background-color: none;
|
|
505
|
+
background: none;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
&.ant-btn-icon-only {
|
|
510
|
+
width: 20px;
|
|
511
|
+
height: 20px;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
svg {
|
|
515
|
+
width: 18px;
|
|
516
|
+
height: 18px;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.header-table {
|
|
522
|
+
.ant-table-container table > thead > tr:first-child {
|
|
523
|
+
th:first-child,
|
|
524
|
+
th:last-child {
|
|
525
|
+
border-top-left-radius: 0px;
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.table-row-selected {
|
|
532
|
+
.delete-selected {
|
|
533
|
+
color: @action-color;
|
|
534
|
+
cursor: pointer;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.ant-table > .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
539
|
+
background: @hover-color;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
//----- Custom Message ------//
|
|
543
|
+
.ant-message {
|
|
544
|
+
&.collapsed {
|
|
545
|
+
.ant-message-notice-content {
|
|
546
|
+
min-width: calc(100% - 106px);
|
|
547
|
+
margin-left: 70px;
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.ant-message-notice-content {
|
|
552
|
+
padding: 0px;
|
|
553
|
+
min-width: calc(100% - 286px);
|
|
554
|
+
margin-left: 250px;
|
|
555
|
+
|
|
556
|
+
span.anticon {
|
|
557
|
+
display: none;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.ant-message-custom-content {
|
|
561
|
+
border-radius: @border-radius-base;
|
|
562
|
+
|
|
563
|
+
&.ant-message-success {
|
|
564
|
+
border: 1px solid @success-color;
|
|
565
|
+
background-color: @success-color;
|
|
566
|
+
|
|
567
|
+
.success-icon {
|
|
568
|
+
padding: 6px 0px;
|
|
569
|
+
text-align: center;
|
|
570
|
+
|
|
571
|
+
span.anticon {
|
|
572
|
+
display: inline;
|
|
573
|
+
margin-right: 0px;
|
|
574
|
+
color: @white-color;
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.success-content {
|
|
579
|
+
padding: 6px 12px;
|
|
580
|
+
background-color: @alert-success-bg-color;
|
|
581
|
+
border-top-right-radius: @border-radius-base;
|
|
582
|
+
border-bottom-right-radius: @border-radius-base;
|
|
583
|
+
|
|
584
|
+
.ant-col {
|
|
585
|
+
text-align: start;
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
&.ant-message-warning {
|
|
591
|
+
border: 1px solid @warning-color;
|
|
592
|
+
background-color: @warning-color;
|
|
593
|
+
|
|
594
|
+
.warning-icon {
|
|
595
|
+
padding: 6px 0px;
|
|
596
|
+
text-align: center;
|
|
597
|
+
|
|
598
|
+
span.anticon {
|
|
599
|
+
display: inline;
|
|
600
|
+
margin-right: 0px;
|
|
601
|
+
color: @white-color;
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.warning-content {
|
|
606
|
+
padding: 6px 12px;
|
|
607
|
+
background-color: @alert-warning-bg-color;
|
|
608
|
+
border-top-right-radius: @border-radius-base;
|
|
609
|
+
border-bottom-right-radius: @border-radius-base;
|
|
610
|
+
|
|
611
|
+
.ant-col {
|
|
612
|
+
text-align: start;
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
&.ant-message-error {
|
|
618
|
+
border: 1px solid @error-color;
|
|
619
|
+
background-color: @error-color;
|
|
620
|
+
|
|
621
|
+
.error-icon {
|
|
622
|
+
padding: 6px 0px;
|
|
623
|
+
text-align: center;
|
|
624
|
+
|
|
625
|
+
span.anticon {
|
|
626
|
+
display: inline;
|
|
627
|
+
margin-right: 0px;
|
|
628
|
+
color: @white-color;
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.error-content {
|
|
633
|
+
padding: 6px 12px;
|
|
634
|
+
background-color: @alert-error-bg-color;
|
|
635
|
+
border-top-right-radius: @border-radius-base;
|
|
636
|
+
border-bottom-right-radius: @border-radius-base;
|
|
637
|
+
|
|
638
|
+
.ant-col {
|
|
639
|
+
text-align: start;
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.close-message {
|
|
646
|
+
position: absolute;
|
|
647
|
+
right: 6px;
|
|
648
|
+
top: 4px;
|
|
649
|
+
z-index: 100;
|
|
650
|
+
|
|
651
|
+
.close-message-icon {
|
|
652
|
+
width: 20px;
|
|
653
|
+
height: 20px;
|
|
654
|
+
cursor: pointer;
|
|
655
|
+
color: #00000073;
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
//----- Custom tabs ------//
|
|
662
|
+
.ant-tabs-tab.ant-tabs-tab-active {
|
|
663
|
+
.ant-tabs-tab-btn {
|
|
664
|
+
.ant-badge {
|
|
665
|
+
color: @primary-color;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
//----- Custom Ant InputNumber------//
|
|
671
|
+
.input-number-container {
|
|
672
|
+
&.ant-input-affix-wrapper {
|
|
673
|
+
padding: 0 0 0 11px;
|
|
674
|
+
|
|
675
|
+
.ant-input-number,
|
|
676
|
+
.ant-input-number:focus,
|
|
677
|
+
.ant-input-number-focused {
|
|
678
|
+
border: none;
|
|
679
|
+
box-shadow: none;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
&.ant-input-number-without-prefix {
|
|
683
|
+
background: #f5f5f5;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.ant-input-number-input {
|
|
687
|
+
padding: 0px;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
&.suffix {
|
|
691
|
+
.ant-input-number {
|
|
692
|
+
.ant-input-number-handler-up {
|
|
693
|
+
border-top-right-radius: 0px;
|
|
694
|
+
border-right: 1px solid #d9d9d9;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.ant-input-number-handler-down {
|
|
698
|
+
border-right: 1px solid #d9d9d9;
|
|
699
|
+
border-bottom-right-radius: 0px;
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.ant-input-suffix {
|
|
704
|
+
padding-right: 11px;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
&.ant-input-affix-wrapper:focus-within {
|
|
710
|
+
box-shadow: 0 0 0 2px fade(@primary-color, 20%);
|
|
711
|
+
border-color: @primary-color;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
//------ custom upload container of image -------
|
|
716
|
+
.mutiple-upload-files-container,
|
|
717
|
+
.mutiple-upload-images-container {
|
|
718
|
+
.multiple-image-container {
|
|
719
|
+
background: #fafafa;
|
|
720
|
+
padding: 8px;
|
|
721
|
+
border: 1px dashed #d9d9d9;
|
|
722
|
+
border-radius: 5px;
|
|
723
|
+
|
|
724
|
+
.ant-divider-horizontal {
|
|
725
|
+
margin: 0px;
|
|
726
|
+
margin-top: 8px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.empty-image {
|
|
730
|
+
line-height: 81px;
|
|
731
|
+
margin-bottom: -18px;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.scrollable {
|
|
735
|
+
width: 100%;
|
|
736
|
+
display: flex;
|
|
737
|
+
overflow-x: auto;
|
|
738
|
+
overflow-y: hidden;
|
|
739
|
+
padding: 5px 0px;
|
|
740
|
+
|
|
741
|
+
.list-image {
|
|
742
|
+
position: relative;
|
|
743
|
+
border: 1px solid #d9d9d9;
|
|
744
|
+
border-radius: 5px;
|
|
745
|
+
padding: 8px;
|
|
746
|
+
margin: 4px;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.list-image {
|
|
751
|
+
display: flex;
|
|
752
|
+
|
|
753
|
+
.image {
|
|
754
|
+
.no-preview {
|
|
755
|
+
.ant-avatar-string {
|
|
756
|
+
line-height: 32px !important;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
position: relative;
|
|
761
|
+
width: 100%;
|
|
762
|
+
|
|
763
|
+
.multiple-upload-actions {
|
|
764
|
+
margin: 0 !important;
|
|
765
|
+
display: none;
|
|
766
|
+
flex-direction: row;
|
|
767
|
+
justify-content: center;
|
|
768
|
+
position: absolute;
|
|
769
|
+
top: 50%;
|
|
770
|
+
left: 50%;
|
|
771
|
+
z-index: 6;
|
|
772
|
+
-webkit-transform: translate(-50%, -50%);
|
|
773
|
+
transition: all 0.3s;
|
|
774
|
+
|
|
775
|
+
svg {
|
|
776
|
+
cursor: pointer;
|
|
777
|
+
color: white;
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
&:hover {
|
|
782
|
+
.multiple-upload-actions {
|
|
783
|
+
display: flex;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.ant-avatar::before {
|
|
787
|
+
position: absolute;
|
|
788
|
+
z-index: 1;
|
|
789
|
+
width: 100%;
|
|
790
|
+
height: 100%;
|
|
791
|
+
left: 0;
|
|
792
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
793
|
+
opacity: 0.9;
|
|
794
|
+
transition: all 0.3s;
|
|
795
|
+
content: " ";
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
&::before {
|
|
799
|
+
position: absolute;
|
|
800
|
+
width: 100%;
|
|
801
|
+
height: 100%;
|
|
802
|
+
left: 0;
|
|
803
|
+
// background-color: rgba(164, 160, 160, 0.5);
|
|
804
|
+
opacity: 0.9;
|
|
805
|
+
transition: all 0.3s;
|
|
806
|
+
content: " ";
|
|
807
|
+
z-index: 5;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
img {
|
|
811
|
+
opacity: 0.8;
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.move-image {
|
|
817
|
+
margin-left: -8px;
|
|
818
|
+
cursor: move;
|
|
819
|
+
align-self: center;
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.main-image {
|
|
824
|
+
.list-image {
|
|
825
|
+
.image {
|
|
826
|
+
.ant-avatar {
|
|
827
|
+
width: 150px !important;
|
|
828
|
+
height: 150px !important;
|
|
829
|
+
line-height: 150px !important;
|
|
830
|
+
|
|
831
|
+
.ant-avatar-string {
|
|
832
|
+
line-height: 150px !important;
|
|
833
|
+
font-size: 40px;
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.no-preview {
|
|
838
|
+
.ant-avatar-string {
|
|
839
|
+
line-height: 46px !important;
|
|
840
|
+
padding-top: 38px;
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.image {
|
|
847
|
+
border: 1px solid #d9d9d9;
|
|
848
|
+
border-radius: 5px;
|
|
849
|
+
padding: 8px;
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
&.external_url {
|
|
854
|
+
.ant-upload-picture-card-wrapper {
|
|
855
|
+
.ant-upload.ant-upload-select-picture-card:hover {
|
|
856
|
+
border-color: @hover-color;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.ant-upload-picture-card-wrapper {
|
|
863
|
+
margin: 4px;
|
|
864
|
+
|
|
865
|
+
.ant-upload.ant-upload-select-picture-card {
|
|
866
|
+
margin-right: 0px;
|
|
867
|
+
margin-bottom: 0px;
|
|
868
|
+
width: 81px;
|
|
869
|
+
height: 81px;
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.ant-dropdown-trigger {
|
|
875
|
+
&.languages {
|
|
876
|
+
img {
|
|
877
|
+
margin-right: 5px;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.anticon-down {
|
|
881
|
+
font-size: 14px;
|
|
882
|
+
color: @text-color;
|
|
883
|
+
margin-left: 5px;
|
|
884
|
+
|
|
885
|
+
svg {
|
|
886
|
+
margin-bottom: -2px;
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.autocomplete-menu {
|
|
893
|
+
.ant-dropdown-menu-item-group-title {
|
|
894
|
+
background-color: @background-color;
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.text-color {
|
|
899
|
+
color: @text-color !important;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.field-container-accordion {
|
|
903
|
+
margin-top: 10px;
|
|
904
|
+
border: 1px solid rgb(228, 224, 224);
|
|
905
|
+
border-radius: 10px;
|
|
906
|
+
padding: 5px;
|
|
907
|
+
|
|
908
|
+
.title-is-expanded {
|
|
909
|
+
padding: 10px;
|
|
910
|
+
cursor: pointer;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.title-accordion {
|
|
914
|
+
padding: 10px;
|
|
915
|
+
cursor: pointer;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.content-accordion {
|
|
919
|
+
overflow: hidden;
|
|
920
|
+
max-height: 0;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.content-is-expanded {
|
|
924
|
+
height: 100%;
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.select-internal {
|
|
929
|
+
width: 100%;
|
|
930
|
+
|
|
931
|
+
.ant-select-selector {
|
|
932
|
+
border-radius: 0px !important;
|
|
933
|
+
margin-left: -7px;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.addon-after {
|
|
938
|
+
display: flex;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.select-queue {
|
|
942
|
+
width: 100%;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.box-select-resf {
|
|
946
|
+
padding-right: 6px;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.input-external {
|
|
950
|
+
width: 100%;
|
|
951
|
+
border-radius: 0px !important;
|
|
952
|
+
margin-left: -7px;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.restful-addon-before-new {
|
|
956
|
+
width: 180px !important;
|
|
957
|
+
|
|
958
|
+
.ant-select-selector {
|
|
959
|
+
text-align: center;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.custom-toast-main {
|
|
964
|
+
align-items: center;
|
|
965
|
+
|
|
966
|
+
.custom-toast-icon {
|
|
967
|
+
width: 1.2em;
|
|
968
|
+
height: 1.2em;
|
|
969
|
+
color: #fff;
|
|
970
|
+
margin-right: 10px;
|
|
971
|
+
margin: 10px;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.custom-toast-content {
|
|
975
|
+
padding: 10px;
|
|
976
|
+
background-color: #fff;
|
|
977
|
+
border-bottom-right-radius: 2px;
|
|
978
|
+
border-top-right-radius: 2px;
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.Toastify__toast-body {
|
|
983
|
+
padding: unset !important;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.toast-close-message {
|
|
987
|
+
background-color: #fff;
|
|
988
|
+
padding-right: 10px;
|
|
989
|
+
padding-top: 5px;
|
|
990
|
+
z-index: 100;
|
|
991
|
+
|
|
992
|
+
.toast-close-message-icon {
|
|
993
|
+
width: 10px;
|
|
994
|
+
height: 10px;
|
|
995
|
+
cursor: pointer;
|
|
996
|
+
color: #cecbcb73;
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.custom-toast-full {
|
|
1001
|
+
min-width: calc(100% - 286px);
|
|
1002
|
+
margin-left: 250px;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.ant-form-item-has-error {
|
|
1006
|
+
.params-custom-actions-required {
|
|
1007
|
+
border-color: #ff4d4f !important;
|
|
1008
|
+
background: white !important;
|
|
1009
|
+
border-right: 1 !important;
|
|
1010
|
+
color: #ff4d4f !important;
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.button-params-no-border-right {
|
|
1015
|
+
border-right: none;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.component-layout-detail-dnd {
|
|
1019
|
+
.tab-layout-detail {
|
|
1020
|
+
overflow: scroll;
|
|
1021
|
+
min-width: 100%;
|
|
1022
|
+
min-height: 500px;
|
|
1023
|
+
max-height: 600px;
|
|
1024
|
+
|
|
1025
|
+
.layout-main {
|
|
1026
|
+
overflow: scroll;
|
|
1027
|
+
|
|
1028
|
+
table,
|
|
1029
|
+
th,
|
|
1030
|
+
td {
|
|
1031
|
+
border: 1px solid #eceaea;
|
|
1032
|
+
border-collapse: collapse;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.full-width {
|
|
1036
|
+
width: 100%;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.layout-main-position {
|
|
1040
|
+
width: 100%;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.position-top {
|
|
1044
|
+
min-height: 50px;
|
|
1045
|
+
display: table;
|
|
1046
|
+
height: 100%;
|
|
1047
|
+
width: 100%;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.position-bottom {
|
|
1051
|
+
min-height: 50px;
|
|
1052
|
+
display: table;
|
|
1053
|
+
height: 100%;
|
|
1054
|
+
width: 100%;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.disabled {
|
|
1058
|
+
background-color: @background-color;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.layout-position-row-middle {
|
|
1062
|
+
width: 100%;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.layout-row-two {
|
|
1066
|
+
display: flex;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.border-top {
|
|
1070
|
+
border-top: 1px solid #eceaea;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.border-left {
|
|
1074
|
+
border-left: 1px solid #eceaea;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.border-bottom {
|
|
1078
|
+
border-bottom: 1px solid #eceaea;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.border-right {
|
|
1082
|
+
border-right: 1px solid #eceaea;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.layout-position-box-left {
|
|
1086
|
+
min-width: 255px;
|
|
1087
|
+
vertical-align: top;
|
|
1088
|
+
position: relative;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.position-left {
|
|
1092
|
+
min-height: 250px;
|
|
1093
|
+
display: table;
|
|
1094
|
+
height: 100%;
|
|
1095
|
+
width: 100%;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.position-middle {
|
|
1099
|
+
min-width: 300px;
|
|
1100
|
+
vertical-align: top;
|
|
1101
|
+
display: grid;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.position-middle-box-center {
|
|
1105
|
+
min-height: 60%;
|
|
1106
|
+
display: grid;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.position-middle-center {
|
|
1110
|
+
min-height: 150px;
|
|
1111
|
+
display: table;
|
|
1112
|
+
width: 100%;
|
|
1113
|
+
height: 100%;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.position-middle-box-top {
|
|
1117
|
+
min-height: 20%;
|
|
1118
|
+
display: grid;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.position-middle-top {
|
|
1122
|
+
min-height: 50px;
|
|
1123
|
+
display: table;
|
|
1124
|
+
width: 100%;
|
|
1125
|
+
height: 100%;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.position-middle-box-bottom {
|
|
1129
|
+
min-height: 20%;
|
|
1130
|
+
display: grid;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.position-middle-bottom {
|
|
1134
|
+
min-height: 50px;
|
|
1135
|
+
display: table;
|
|
1136
|
+
width: 100%;
|
|
1137
|
+
height: 100%;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.position-box-right {
|
|
1141
|
+
min-width: 255px;
|
|
1142
|
+
vertical-align: top;
|
|
1143
|
+
position: relative;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.position-right {
|
|
1147
|
+
min-height: 250px;
|
|
1148
|
+
display: table;
|
|
1149
|
+
height: 100%;
|
|
1150
|
+
width: 100%;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.layout-block {
|
|
1154
|
+
height: 100%;
|
|
1155
|
+
min-height: 50px;
|
|
1156
|
+
display: table-cell;
|
|
1157
|
+
|
|
1158
|
+
.dnd-move {
|
|
1159
|
+
cursor: move;
|
|
1160
|
+
border-right: 1px dashed #d9d9d9;
|
|
1161
|
+
width: 25px;
|
|
1162
|
+
display: flex;
|
|
1163
|
+
justify-content: center;
|
|
1164
|
+
align-items: center;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.layout-block-item {
|
|
1168
|
+
position: relative;
|
|
1169
|
+
margin: 8px;
|
|
1170
|
+
display: flex;
|
|
1171
|
+
flex-direction: column;
|
|
1172
|
+
|
|
1173
|
+
.block-item {
|
|
1174
|
+
display: flex;
|
|
1175
|
+
border: 1px dashed #f2f2f2;
|
|
1176
|
+
|
|
1177
|
+
.item {
|
|
1178
|
+
width: 100%;
|
|
1179
|
+
padding: 5px 8px;
|
|
1180
|
+
display: grid;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.item-rows {
|
|
1184
|
+
width: 100%;
|
|
1185
|
+
padding: 5px 8px;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.icon-edit {
|
|
1189
|
+
cursor: pointer;
|
|
1190
|
+
padding-right: 5px;
|
|
1191
|
+
padding-top: 5px;
|
|
1192
|
+
color: @border-color-base;
|
|
1193
|
+
|
|
1194
|
+
&:hover {
|
|
1195
|
+
color: @text-color;
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.icon-remove {
|
|
1200
|
+
cursor: pointer;
|
|
1201
|
+
padding-right: 5px;
|
|
1202
|
+
padding-top: 5px;
|
|
1203
|
+
color: @border-color-base;
|
|
1204
|
+
|
|
1205
|
+
&:hover {
|
|
1206
|
+
color: @text-color;
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.block-columns {
|
|
1212
|
+
display: flex;
|
|
1213
|
+
border: 1px dashed #f2f2f2;
|
|
1214
|
+
|
|
1215
|
+
.item-columns {
|
|
1216
|
+
width: 100%;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.icon-edit {
|
|
1220
|
+
cursor: pointer;
|
|
1221
|
+
padding-right: 5px;
|
|
1222
|
+
padding-top: 5px;
|
|
1223
|
+
color: @border-color-base;
|
|
1224
|
+
|
|
1225
|
+
&:hover {
|
|
1226
|
+
color: @text-color;
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.icon-remove {
|
|
1231
|
+
cursor: pointer;
|
|
1232
|
+
padding-right: 5px;
|
|
1233
|
+
padding-top: 5px;
|
|
1234
|
+
color: @border-color-base;
|
|
1235
|
+
|
|
1236
|
+
&:hover {
|
|
1237
|
+
color: @text-color;
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
// .layout-block-item-columns {
|
|
1244
|
+
// position: relative;
|
|
1245
|
+
// height: 100%;
|
|
1246
|
+
// display: flex;
|
|
1247
|
+
// flex-direction: column;
|
|
1248
|
+
// padding: 5px 8px;
|
|
1249
|
+
|
|
1250
|
+
// .block-item {
|
|
1251
|
+
// flex: 1;
|
|
1252
|
+
// border: 1px dashed #f2f2f2;
|
|
1253
|
+
|
|
1254
|
+
// .item {
|
|
1255
|
+
// width: 100%;
|
|
1256
|
+
// padding: 5px 8px;
|
|
1257
|
+
|
|
1258
|
+
// > div {
|
|
1259
|
+
// height: 100%;
|
|
1260
|
+
// }
|
|
1261
|
+
|
|
1262
|
+
// .wigeta-columns-layout-main {
|
|
1263
|
+
// height: 100%;
|
|
1264
|
+
// > div {
|
|
1265
|
+
// width: 100%;
|
|
1266
|
+
// }
|
|
1267
|
+
// }
|
|
1268
|
+
// }
|
|
1269
|
+
|
|
1270
|
+
// .icon-edit {
|
|
1271
|
+
// cursor: pointer;
|
|
1272
|
+
// padding-right: 5px;
|
|
1273
|
+
// padding-top: 5px;
|
|
1274
|
+
// color: @border-color-base;
|
|
1275
|
+
|
|
1276
|
+
// &:hover {
|
|
1277
|
+
// color: @text-color;
|
|
1278
|
+
// }
|
|
1279
|
+
// }
|
|
1280
|
+
|
|
1281
|
+
// .icon-remove {
|
|
1282
|
+
// cursor: pointer;
|
|
1283
|
+
// padding-right: 5px;
|
|
1284
|
+
// padding-top: 5px;
|
|
1285
|
+
// color: @border-color-base;
|
|
1286
|
+
|
|
1287
|
+
// &:hover {
|
|
1288
|
+
// color: @text-color;
|
|
1289
|
+
// }
|
|
1290
|
+
// }
|
|
1291
|
+
// }
|
|
1292
|
+
|
|
1293
|
+
// .block-columns {
|
|
1294
|
+
// display: flex;
|
|
1295
|
+
// border: 1px dashed #f2f2f2;
|
|
1296
|
+
|
|
1297
|
+
// .item-columns {
|
|
1298
|
+
// width: 100%;
|
|
1299
|
+
// }
|
|
1300
|
+
|
|
1301
|
+
// .icon-edit {
|
|
1302
|
+
// cursor: pointer;
|
|
1303
|
+
// padding-right: 5px;
|
|
1304
|
+
// padding-top: 5px;
|
|
1305
|
+
// color: @border-color-base;
|
|
1306
|
+
|
|
1307
|
+
// &:hover {
|
|
1308
|
+
// color: @text-color;
|
|
1309
|
+
// }
|
|
1310
|
+
// }
|
|
1311
|
+
|
|
1312
|
+
// .icon-remove {
|
|
1313
|
+
// cursor: pointer;
|
|
1314
|
+
// padding-right: 5px;
|
|
1315
|
+
// padding-top: 5px;
|
|
1316
|
+
// color: @border-color-base;
|
|
1317
|
+
|
|
1318
|
+
// &:hover {
|
|
1319
|
+
// color: @text-color;
|
|
1320
|
+
// }
|
|
1321
|
+
// }
|
|
1322
|
+
// }
|
|
1323
|
+
// }
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.modal-component-layout-edit-widget {
|
|
1330
|
+
.draggable-row {
|
|
1331
|
+
cursor: default !important;
|
|
1332
|
+
margin-bottom: 10px !important;
|
|
1333
|
+
border: 1px dashed #d9d9d9 !important;
|
|
1334
|
+
border-radius: 5px;
|
|
1335
|
+
display: flex;
|
|
1336
|
+
align-items: center;
|
|
1337
|
+
background-color: #fff;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.modal-component-layout-body-collapse {
|
|
1341
|
+
padding: 20px;
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.layout-collapse {
|
|
1346
|
+
.layout-collapse-main {
|
|
1347
|
+
min-width: 200px;
|
|
1348
|
+
width: 100%;
|
|
1349
|
+
// margin: 10px;
|
|
1350
|
+
margin-top: 10px;
|
|
1351
|
+
margin-bottom: 10px;
|
|
1352
|
+
margin-left: 5px;
|
|
1353
|
+
margin-right: 5px;
|
|
1354
|
+
|
|
1355
|
+
.layout-collapse-body {
|
|
1356
|
+
min-height: 100px;
|
|
1357
|
+
display: table;
|
|
1358
|
+
width: 100%;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.ant-collapse-content-box {
|
|
1363
|
+
padding: 5px;
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
.block-keep {
|
|
1368
|
+
display: flex;
|
|
1369
|
+
justify-content: space-between;
|
|
1370
|
+
|
|
1371
|
+
.icon-remove {
|
|
1372
|
+
cursor: pointer;
|
|
1373
|
+
z-index: 2;
|
|
1374
|
+
color: @border-color-base;
|
|
1375
|
+
|
|
1376
|
+
&:hover {
|
|
1377
|
+
color: @text-color;
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.image-collapse-item {
|
|
1383
|
+
min-height: 11rem;
|
|
1384
|
+
|
|
1385
|
+
.z-index {
|
|
1386
|
+
z-index: 30;
|
|
1387
|
+
}
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.image-collapse-main {
|
|
1391
|
+
min-width: 500px;
|
|
1392
|
+
|
|
1393
|
+
.image-collapse {
|
|
1394
|
+
.overlay {
|
|
1395
|
+
height: 100%;
|
|
1396
|
+
width: 100%;
|
|
1397
|
+
z-index: 10;
|
|
1398
|
+
position: absolute;
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.image-collapse-image {
|
|
1403
|
+
height: 10rem;
|
|
1404
|
+
width: 100%;
|
|
1405
|
+
object-fit: cover;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.image-collapse-not-image {
|
|
1409
|
+
height: 10rem;
|
|
1410
|
+
width: 100%;
|
|
1411
|
+
background-color: #ededf25e;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.image-collapse-icon {
|
|
1415
|
+
margin-top: -30px;
|
|
1416
|
+
margin-right: 10px;
|
|
1417
|
+
display: flex;
|
|
1418
|
+
justify-content: flex-end;
|
|
1419
|
+
|
|
1420
|
+
.icon-box {
|
|
1421
|
+
z-index: 20;
|
|
1422
|
+
font-weight: 700;
|
|
1423
|
+
height: 16px;
|
|
1424
|
+
width: 16px;
|
|
1425
|
+
cursor: pointer;
|
|
1426
|
+
|
|
1427
|
+
.anticon-up {
|
|
1428
|
+
color: #fff;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.anticon-down {
|
|
1432
|
+
color: #fff;
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.image-collapse-content {
|
|
1438
|
+
min-height: 10rem;
|
|
1439
|
+
|
|
1440
|
+
.image-collapse-content-box {
|
|
1441
|
+
padding: 1rem;
|
|
1442
|
+
margin: 0.25rem;
|
|
1443
|
+
|
|
1444
|
+
.title {
|
|
1445
|
+
margin-bottom: 0.5rem;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.description {
|
|
1449
|
+
margin-bottom: 0.5rem;
|
|
1450
|
+
}
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.hidden {
|
|
1455
|
+
display: none;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.flex {
|
|
1459
|
+
display: flex;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.brightness-95 {
|
|
1463
|
+
filter: brightness(0.95);
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.brightness-50 {
|
|
1467
|
+
filter: brightness(0.5);
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.rounded-lg {
|
|
1471
|
+
border-radius: 0.5rem;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
.rounded-t-lg {
|
|
1475
|
+
border-top-left-radius: 0.5rem;
|
|
1476
|
+
border-top-right-radius: 0.5rem;
|
|
1477
|
+
}
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.form-widget-edit {
|
|
1481
|
+
.tree-lines {
|
|
1482
|
+
display: block;
|
|
1483
|
+
border: 1px dashed #d9d9d9;
|
|
1484
|
+
padding: 10px;
|
|
1485
|
+
margin-bottom: 15px;
|
|
1486
|
+
|
|
1487
|
+
.form-item-show-label-only {
|
|
1488
|
+
margin-bottom: 0px !important;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.tree-box-line {
|
|
1492
|
+
padding: 15px;
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.tree-box-name {
|
|
1497
|
+
display: block;
|
|
1498
|
+
margin-top: 20px;
|
|
1499
|
+
margin-bottom: 20px;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.tree-box-icon {
|
|
1503
|
+
display: block;
|
|
1504
|
+
margin-top: 20px;
|
|
1505
|
+
margin-bottom: 20px;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.label-icon {
|
|
1509
|
+
margin-bottom: 5px;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.tree-icon-item {
|
|
1513
|
+
display: block;
|
|
1514
|
+
border: 1px dashed #d9d9d9;
|
|
1515
|
+
padding: 10px;
|
|
1516
|
+
margin-bottom: 15px;
|
|
1517
|
+
|
|
1518
|
+
.form-item-show-label-only {
|
|
1519
|
+
margin-bottom: 0px !important;
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
.map-box {
|
|
1524
|
+
display: block;
|
|
1525
|
+
border: 1px dashed #d9d9d9;
|
|
1526
|
+
padding: 10px;
|
|
1527
|
+
margin-bottom: 15px;
|
|
1528
|
+
// margin-left: 10px;
|
|
1529
|
+
// margin-right: 10px;
|
|
1530
|
+
|
|
1531
|
+
.form-item-show-label-only {
|
|
1532
|
+
margin-bottom: 0px !important;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
.tree-box-line {
|
|
1536
|
+
padding: 15px;
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.navigate-tree-item {
|
|
1542
|
+
.item {
|
|
1543
|
+
display: flex;
|
|
1544
|
+
justify-content: center;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
// min-height: 200px;
|
|
1548
|
+
.slick-navigate-main {
|
|
1549
|
+
width: 450px;
|
|
1550
|
+
padding: 1rem;
|
|
1551
|
+
align-items: center;
|
|
1552
|
+
justify-content: center;
|
|
1553
|
+
display: flex;
|
|
1554
|
+
// padding-left: 4rem;
|
|
1555
|
+
// padding-right: 4rem;
|
|
1556
|
+
max-width: 450px;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.item-action {
|
|
1560
|
+
padding: 0.5rem;
|
|
1561
|
+
border-radius: 9999px;
|
|
1562
|
+
height: 3.5rem;
|
|
1563
|
+
width: 3.5rem;
|
|
1564
|
+
background-color: darkgreen;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.item-radius-two {
|
|
1568
|
+
padding: 0.5rem;
|
|
1569
|
+
border-radius: 9999px;
|
|
1570
|
+
height: 4rem;
|
|
1571
|
+
width: 4rem;
|
|
1572
|
+
background-color: rgb(156, 243, 156);
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.item-radius-three {
|
|
1576
|
+
padding: 0.5rem;
|
|
1577
|
+
border-radius: 9999px;
|
|
1578
|
+
height: 3rem;
|
|
1579
|
+
width: 3rem;
|
|
1580
|
+
background-color: rgb(156, 243, 156);
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.item-box {
|
|
1584
|
+
display: flex;
|
|
1585
|
+
justify-content: center;
|
|
1586
|
+
|
|
1587
|
+
.leading-relaxed {
|
|
1588
|
+
width: 100%;
|
|
1589
|
+
height: 100%;
|
|
1590
|
+
align-items: center;
|
|
1591
|
+
display: flex;
|
|
1592
|
+
justify-content: center;
|
|
1593
|
+
font-size: 1rem;
|
|
1594
|
+
color: #fff;
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.cursor-item {
|
|
1599
|
+
cursor: pointer;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.text-base {
|
|
1603
|
+
font-size: 1rem;
|
|
1604
|
+
line-height: 1.5rem;
|
|
1605
|
+
margin-top: 1rem;
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.carousel-item {
|
|
1610
|
+
.box-content {
|
|
1611
|
+
width: 100%;
|
|
1612
|
+
position: relative;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
.image {
|
|
1616
|
+
width: 100%;
|
|
1617
|
+
height: 66%;
|
|
1618
|
+
object-fit: cover;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.label-image {
|
|
1622
|
+
bottom: 0.25rem;
|
|
1623
|
+
left: 15px;
|
|
1624
|
+
position: absolute;
|
|
1625
|
+
z-index: 30;
|
|
1626
|
+
margin-top: -30px;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
// min-height: 300px;
|
|
1630
|
+
// min-height: 300px;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.googl-map-item {
|
|
1634
|
+
min-height: 200px;
|
|
1635
|
+
|
|
1636
|
+
.map-mode-one-box {
|
|
1637
|
+
width: 100%;
|
|
1638
|
+
height: 30vh;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.map-mode-two-box {
|
|
1642
|
+
min-width: 500px;
|
|
1643
|
+
width: 100%;
|
|
1644
|
+
height: 30vh;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.map-mode-two-main {
|
|
1648
|
+
width: 100%;
|
|
1649
|
+
display: flex;
|
|
1650
|
+
align-items: center;
|
|
1651
|
+
align-self: center;
|
|
1652
|
+
text-align: center;
|
|
1653
|
+
justify-content: center;
|
|
1654
|
+
|
|
1655
|
+
.text-location {
|
|
1656
|
+
font-weight: 900;
|
|
1657
|
+
line-height: 1.75rem;
|
|
1658
|
+
font-size: 20px;
|
|
1659
|
+
color: #000;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.text-address {
|
|
1663
|
+
font-weight: 600;
|
|
1664
|
+
line-height: 1.75rem;
|
|
1665
|
+
font-size: 20px;
|
|
1666
|
+
}
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
.render-tabs-component {
|
|
1671
|
+
.component-layout-detail {
|
|
1672
|
+
.ant-tabs-tab {
|
|
1673
|
+
border: unset !important;
|
|
1674
|
+
border-bottom: unset !important;
|
|
1675
|
+
background-color: unset !important;
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.slick-list {
|
|
1681
|
+
width: 100%;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.customCenterCarousels .slick-slide:not(.slick-active) {
|
|
1685
|
+
opacity: 30%;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.slider-nextarrow {
|
|
1689
|
+
position: absolute;
|
|
1690
|
+
top: 50%;
|
|
1691
|
+
right: 0px;
|
|
1692
|
+
z-index: 40;
|
|
1693
|
+
cursor: pointer;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.slider-nextarrow-box {
|
|
1697
|
+
height: 40px;
|
|
1698
|
+
width: 40px;
|
|
1699
|
+
display: flex;
|
|
1700
|
+
justify-content: center;
|
|
1701
|
+
padding: 8px;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.slider-prevarrow {
|
|
1705
|
+
position: absolute;
|
|
1706
|
+
top: 50%;
|
|
1707
|
+
left: 0px;
|
|
1708
|
+
z-index: 40;
|
|
1709
|
+
cursor: pointer;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.slider-prevarrow-box {
|
|
1713
|
+
height: 40px;
|
|
1714
|
+
width: 40px;
|
|
1715
|
+
display: flex;
|
|
1716
|
+
justify-content: center;
|
|
1717
|
+
padding: 8px;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.empty-layout-block {
|
|
1721
|
+
min-height: 60px;
|
|
1722
|
+
|
|
1723
|
+
.item-empty {
|
|
1724
|
+
background-color: #dfdfe0;
|
|
1725
|
+
height: 50px;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.button-layout-main {
|
|
1730
|
+
display: flex;
|
|
1731
|
+
justify-content: center;
|
|
1732
|
+
padding: 5px;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.layout-content {
|
|
1736
|
+
min-height: 150px;
|
|
1737
|
+
width: 100%;
|
|
1738
|
+
margin-top: 20px;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.layout-content {
|
|
1742
|
+
padding: 10px;
|
|
1743
|
+
|
|
1744
|
+
.layout-content-body {
|
|
1745
|
+
min-height: 100px;
|
|
1746
|
+
display: table;
|
|
1747
|
+
width: 100%;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.ant-collapse-content-box {
|
|
1751
|
+
padding: 5px;
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.navigate-tree-main {
|
|
1756
|
+
min-height: 100%;
|
|
1757
|
+
background-color: #f9f5f1;
|
|
1758
|
+
overflow: hidden;
|
|
1759
|
+
position: relative;
|
|
1760
|
+
width: 100%;
|
|
1761
|
+
min-width: 500px;
|
|
1762
|
+
|
|
1763
|
+
.navigate-tree-box {
|
|
1764
|
+
display: flex;
|
|
1765
|
+
flex-direction: row;
|
|
1766
|
+
// margin-top: 0px;
|
|
1767
|
+
justify-content: space-between;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.transaction-box {
|
|
1771
|
+
// width: 100px;
|
|
1772
|
+
width: 16%;
|
|
1773
|
+
display: flex;
|
|
1774
|
+
flex-direction: row;
|
|
1775
|
+
justify-content: end;
|
|
1776
|
+
align-items: center;
|
|
1777
|
+
background: #f5ede8;
|
|
1778
|
+
color: #d9d9d9;
|
|
1779
|
+
|
|
1780
|
+
.transaction-item {
|
|
1781
|
+
display: flex;
|
|
1782
|
+
flex-direction: column;
|
|
1783
|
+
padding-right: 4px;
|
|
1784
|
+
justify-content: center;
|
|
1785
|
+
align-items: flex-end;
|
|
1786
|
+
|
|
1787
|
+
.text-title {
|
|
1788
|
+
font-size: 8px;
|
|
1789
|
+
line-height: 10px;
|
|
1790
|
+
max-width: 110px;
|
|
1791
|
+
float: right;
|
|
1792
|
+
font-weight: 500;
|
|
1793
|
+
text-align: right;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.text-description {
|
|
1797
|
+
font-size: 8px;
|
|
1798
|
+
line-height: 10px;
|
|
1799
|
+
max-width: 110px;
|
|
1800
|
+
float: right;
|
|
1801
|
+
font-weight: 500;
|
|
1802
|
+
}
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.icon-transaction {
|
|
1807
|
+
border-top-color: transparent;
|
|
1808
|
+
border-bottom-color: transparent;
|
|
1809
|
+
border-right-color: #c4c4c4;
|
|
1810
|
+
border-top-width: 6px;
|
|
1811
|
+
border-bottom-width: 6px;
|
|
1812
|
+
border-right-width: 8px;
|
|
1813
|
+
width: 0;
|
|
1814
|
+
height: 0;
|
|
1815
|
+
border: 0 solid #e5e7eb;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.line-item {
|
|
1819
|
+
width: 70px;
|
|
1820
|
+
margin-left: 10px;
|
|
1821
|
+
padding-right: 5px;
|
|
1822
|
+
padding-left: 5px;
|
|
1823
|
+
padding-top: 0px;
|
|
1824
|
+
padding-bottom: 0px;
|
|
1825
|
+
align-items: flex-end;
|
|
1826
|
+
justify-content: space-between;
|
|
1827
|
+
flex-direction: row;
|
|
1828
|
+
display: flex;
|
|
1829
|
+
// min-width: 130px;
|
|
1830
|
+
|
|
1831
|
+
.h-12 {
|
|
1832
|
+
background-color: transparent;
|
|
1833
|
+
height: 50%;
|
|
1834
|
+
position: relative;
|
|
1835
|
+
width: 3px;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.h-full {
|
|
1839
|
+
background-color: transparent;
|
|
1840
|
+
height: 100%;
|
|
1841
|
+
position: relative;
|
|
1842
|
+
width: 3px;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
.eveent-icon-box {
|
|
1846
|
+
height: 24px;
|
|
1847
|
+
width: 24px;
|
|
1848
|
+
position: absolute;
|
|
1849
|
+
left: -10.5px;
|
|
1850
|
+
border-radius: 15px;
|
|
1851
|
+
|
|
1852
|
+
.icon {
|
|
1853
|
+
width: 16px;
|
|
1854
|
+
height: 16px;
|
|
1855
|
+
margin-top: 4px;
|
|
1856
|
+
margin-left: 4px;
|
|
1857
|
+
}
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.top-12 {
|
|
1861
|
+
top: -12px;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.top-26 {
|
|
1865
|
+
top: 26px;
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.box-items {
|
|
1870
|
+
display: flex;
|
|
1871
|
+
padding: 10px;
|
|
1872
|
+
flex: 1 1 0%;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.drop-shadow-md {
|
|
1876
|
+
width: 100%;
|
|
1877
|
+
height: 100%;
|
|
1878
|
+
background-color: #fff;
|
|
1879
|
+
border-radius: 5px;
|
|
1880
|
+
flex-direction: row;
|
|
1881
|
+
|
|
1882
|
+
.card-item {
|
|
1883
|
+
padding-top: 5px;
|
|
1884
|
+
padding-bottom: 5px;
|
|
1885
|
+
padding-left: 10px;
|
|
1886
|
+
padding-right: 10px;
|
|
1887
|
+
display: flex;
|
|
1888
|
+
flex-direction: column;
|
|
1889
|
+
|
|
1890
|
+
.font-title {
|
|
1891
|
+
font-size: 14px;
|
|
1892
|
+
font-weight: 700;
|
|
1893
|
+
margin: 0px;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.font-description {
|
|
1897
|
+
font-size: 12px;
|
|
1898
|
+
font-weight: 200;
|
|
1899
|
+
margin: 0px;
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.arrow-down-icon-box {
|
|
1905
|
+
height: 100%;
|
|
1906
|
+
width: 60px;
|
|
1907
|
+
border-radius: 5px;
|
|
1908
|
+
display: flex;
|
|
1909
|
+
align-items: center;
|
|
1910
|
+
cursor: pointer;
|
|
1911
|
+
align-items: center;
|
|
1912
|
+
justify-content: center;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.arrow-down-icon {
|
|
1916
|
+
color: #fff;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.line-item-end-main {
|
|
1920
|
+
flex: 1 1 0%;
|
|
1921
|
+
flex-direction: row;
|
|
1922
|
+
background: #f9f5f1;
|
|
1923
|
+
display: flex;
|
|
1924
|
+
|
|
1925
|
+
.line-item-end-one {
|
|
1926
|
+
width: 16%;
|
|
1927
|
+
padding-right: 4px;
|
|
1928
|
+
flex-direction: row;
|
|
1929
|
+
justify-content: center;
|
|
1930
|
+
align-items: flex-end;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.line-item-end-item {
|
|
1934
|
+
// width: 120px;
|
|
1935
|
+
width: 70px;
|
|
1936
|
+
height: 100px;
|
|
1937
|
+
// margin-left: 10px;
|
|
1938
|
+
display: flex;
|
|
1939
|
+
flex-direction: row;
|
|
1940
|
+
justify-content: space-between;
|
|
1941
|
+
position: relative;
|
|
1942
|
+
margin-left: 10px;
|
|
1943
|
+
position: relative;
|
|
1944
|
+
padding-left: 5px;
|
|
1945
|
+
padding-right: 5px;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.line-end-1 {
|
|
1949
|
+
height: 2px;
|
|
1950
|
+
width: 3px;
|
|
1951
|
+
position: relative;
|
|
1952
|
+
|
|
1953
|
+
.mid {
|
|
1954
|
+
height: 15px;
|
|
1955
|
+
width: 15px;
|
|
1956
|
+
position: absolute;
|
|
1957
|
+
top: 2px;
|
|
1958
|
+
left: 0px;
|
|
1959
|
+
border-left: 3px;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.left {
|
|
1963
|
+
height: 15px;
|
|
1964
|
+
width: 15px;
|
|
1965
|
+
// width: 40px;
|
|
1966
|
+
position: absolute;
|
|
1967
|
+
top: 2px;
|
|
1968
|
+
left: 0px;
|
|
1969
|
+
border-bottom-left-radius: 40px;
|
|
1970
|
+
border-left-width: 3px;
|
|
1971
|
+
border-left-style: solid;
|
|
1972
|
+
border-bottom-width: 3px;
|
|
1973
|
+
border-bottom-style: solid;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.right {
|
|
1977
|
+
height: 15px;
|
|
1978
|
+
// width: 40px;
|
|
1979
|
+
width: 15px;
|
|
1980
|
+
position: absolute;
|
|
1981
|
+
top: 2px;
|
|
1982
|
+
right: 0px;
|
|
1983
|
+
border-bottom-right-radius: 40px;
|
|
1984
|
+
border-right-width: 3px;
|
|
1985
|
+
border-right-style: solid;
|
|
1986
|
+
|
|
1987
|
+
border-bottom-width: 3px;
|
|
1988
|
+
border-bottom-style: solid;
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.brand-box-bnd {
|
|
1994
|
+
position: absolute;
|
|
1995
|
+
height: 40px;
|
|
1996
|
+
width: 40px;
|
|
1997
|
+
top: 0;
|
|
1998
|
+
// left: 35px;
|
|
1999
|
+
left: 15px;
|
|
2000
|
+
z-index: 10;
|
|
2001
|
+
border-radius: 30px;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.image-brand {
|
|
2005
|
+
height: 40px;
|
|
2006
|
+
width: 40px;
|
|
2007
|
+
border-radius: 20px;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.brand_end_line {
|
|
2011
|
+
position: absolute;
|
|
2012
|
+
border-left: 3px;
|
|
2013
|
+
border-bottom: 3px;
|
|
2014
|
+
height: 15px;
|
|
2015
|
+
width: 80px;
|
|
2016
|
+
top: 40px;
|
|
2017
|
+
left: 35px;
|
|
2018
|
+
border-left-width: 3px;
|
|
2019
|
+
border-left-style: solid;
|
|
2020
|
+
border-bottom-width: 3px;
|
|
2021
|
+
border-bottom-style: solid;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.shipping {
|
|
2025
|
+
position: absolute;
|
|
2026
|
+
top: 41.5px;
|
|
2027
|
+
left: 100px;
|
|
2028
|
+
font-size: 14px;
|
|
2029
|
+
padding-left: 30px;
|
|
2030
|
+
padding-top: 1px;
|
|
2031
|
+
flex-direction: row;
|
|
2032
|
+
display: flex;
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.double-right-outlined {
|
|
2036
|
+
position: absolute;
|
|
2037
|
+
top: 46px;
|
|
2038
|
+
left: 105px;
|
|
2039
|
+
width: 1.5rem;
|
|
2040
|
+
height: 1.5rem;
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.box-scrollable-list {
|
|
2045
|
+
border: 1px dashed #d9d9d9;
|
|
2046
|
+
padding: 10px;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.scrollable-list {
|
|
2050
|
+
display: flex;
|
|
2051
|
+
width: 100%;
|
|
2052
|
+
|
|
2053
|
+
.list-dnd {
|
|
2054
|
+
width: 100%;
|
|
2055
|
+
display: flex;
|
|
2056
|
+
margin: 8px;
|
|
2057
|
+
border: 1px solid #bfbfbf !important;
|
|
2058
|
+
border-radius: 6px;
|
|
2059
|
+
background-color: #fafafa;
|
|
2060
|
+
|
|
2061
|
+
.dnd-move {
|
|
2062
|
+
border-right: 1px solid #bfbfbf;
|
|
2063
|
+
padding: 8px;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
.dnd-box {
|
|
2067
|
+
width: 100%;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.content {
|
|
2071
|
+
padding: 8px;
|
|
2072
|
+
flex: 1 1;
|
|
2073
|
+
white-space: nowrap;
|
|
2074
|
+
overflow: hidden;
|
|
2075
|
+
text-overflow: ellipsis;
|
|
2076
|
+
cursor: pointer;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
.visibility-toggle {
|
|
2080
|
+
cursor: pointer;
|
|
2081
|
+
padding-top: 8px;
|
|
2082
|
+
padding-bottom: 8px;
|
|
2083
|
+
padding-inline-start: 8px;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
.remove {
|
|
2087
|
+
display: block;
|
|
2088
|
+
width: 30px;
|
|
2089
|
+
padding: 8px;
|
|
2090
|
+
cursor: pointer;
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.dropdown-list-dnd {
|
|
2096
|
+
width: 100%;
|
|
2097
|
+
margin: 8px;
|
|
2098
|
+
border: 1px solid #c59b7c !important;
|
|
2099
|
+
border-radius: 6px;
|
|
2100
|
+
padding: 6px;
|
|
2101
|
+
display: flex;
|
|
2102
|
+
justify-content: center;
|
|
2103
|
+
cursor: pointer;
|
|
2104
|
+
|
|
2105
|
+
.plus-field {
|
|
2106
|
+
width: 100%;
|
|
2107
|
+
display: flex;
|
|
2108
|
+
justify-content: center;
|
|
2109
|
+
color: #c59b7c;
|
|
2110
|
+
|
|
2111
|
+
.anticon {
|
|
2112
|
+
align-self: center;
|
|
2113
|
+
padding-right: 5px;
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.box-button-list {
|
|
2118
|
+
background-color: #ff4d4f;
|
|
2119
|
+
display: flex;
|
|
2120
|
+
background-color: #ff4d4f;
|
|
2121
|
+
width: 100%;
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
.widget-list span {
|
|
2126
|
+
margin-left: 0px !important;
|
|
2127
|
+
display: flex;
|
|
2128
|
+
justify-content: center;
|
|
2129
|
+
align-items: center;
|
|
2130
|
+
padding-top: 5px;
|
|
2131
|
+
padding-bottom: 5px;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.icon-layout {
|
|
2135
|
+
position: relative;
|
|
2136
|
+
margin-right: 8px;
|
|
2137
|
+
margin-top: 8px;
|
|
2138
|
+
display: flex;
|
|
2139
|
+
align-items: flex-end;
|
|
2140
|
+
justify-content: flex-end;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.icon-edit-title {
|
|
2144
|
+
margin-bottom: 0px !important;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.loop-data-title {
|
|
2148
|
+
color: #d9d9d9;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.loop-data-content {
|
|
2152
|
+
min-height: 150px;
|
|
2153
|
+
display: table;
|
|
2154
|
+
width: 100%;
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
.layout-icon-setting-widgets {
|
|
2158
|
+
display: none;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.layout-icon-setting-widgets-wysiwyg {
|
|
2162
|
+
display: none;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.layout-icon-setting-collapse {
|
|
2166
|
+
display: none;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
.layout-icon-setting-frame {
|
|
2170
|
+
display: none;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.layout-icon-setting-chart {
|
|
2174
|
+
display: none;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.layout-block-item-columns {
|
|
2178
|
+
&:hover {
|
|
2179
|
+
.layout-icon-setting-widgets {
|
|
2180
|
+
display: flex;
|
|
2181
|
+
position: absolute;
|
|
2182
|
+
top: 1px;
|
|
2183
|
+
right: 0px;
|
|
2184
|
+
z-index: 9;
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
.layout-block-item {
|
|
2189
|
+
&:hover {
|
|
2190
|
+
.layout-icon-setting-widgets {
|
|
2191
|
+
display: flex;
|
|
2192
|
+
position: absolute;
|
|
2193
|
+
top: 1px;
|
|
2194
|
+
right: 0px;
|
|
2195
|
+
z-index: 9;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.layout-icon-setting-widgets-wysiwyg {
|
|
2199
|
+
display: flex;
|
|
2200
|
+
position: absolute;
|
|
2201
|
+
top: -8px;
|
|
2202
|
+
right: 0px;
|
|
2203
|
+
z-index: 9;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.layout-icon-setting-collapse {
|
|
2207
|
+
display: flex;
|
|
2208
|
+
position: absolute;
|
|
2209
|
+
top: 20px;
|
|
2210
|
+
right: 12px;
|
|
2211
|
+
z-index: 9;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.layout-icon-setting-frame {
|
|
2215
|
+
display: flex;
|
|
2216
|
+
position: absolute;
|
|
2217
|
+
top: 0px;
|
|
2218
|
+
right: 5px;
|
|
2219
|
+
z-index: 9;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
.layout-icon-setting-chart {
|
|
2223
|
+
display: flex;
|
|
2224
|
+
position: absolute;
|
|
2225
|
+
top: 5px;
|
|
2226
|
+
right: 5px;
|
|
2227
|
+
z-index: 9;
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
.frame-layout-main {
|
|
2233
|
+
border: 1px dashed #d9d9d9;
|
|
2234
|
+
overflow: scroll;
|
|
2235
|
+
width: 100%;
|
|
2236
|
+
background-color: #f6f7f9;
|
|
2237
|
+
border-radius: 5px;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.frame-box-row-one {
|
|
2241
|
+
display: flex;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.frame-box-row-two {
|
|
2245
|
+
display: flex;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.border-right {
|
|
2249
|
+
border-right: 1px dashed #d9d9d9;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.icon-setting-open-modal-css {
|
|
2253
|
+
display: flex;
|
|
2254
|
+
align-items: flex-end;
|
|
2255
|
+
justify-content: flex-end;
|
|
2256
|
+
padding: 5px;
|
|
2257
|
+
cursor: pointer;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
.style-custom-main-three-one {
|
|
2261
|
+
display: flex;
|
|
2262
|
+
overflow: scroll;
|
|
2263
|
+
width: 100%;
|
|
2264
|
+
border: 1px dashed #d9d9d9;
|
|
2265
|
+
background-color: #f6f7f9;
|
|
2266
|
+
|
|
2267
|
+
.style-custom-content-one {
|
|
2268
|
+
border-right: 1px dashed #d9d9d9;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.style-custom-box-three-two {
|
|
2272
|
+
display: flex;
|
|
2273
|
+
border-bottom: 1px dashed #d9d9d9;
|
|
2274
|
+
}
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.style-custom-main-three-two {
|
|
2278
|
+
display: flex;
|
|
2279
|
+
overflow: scroll;
|
|
2280
|
+
width: 100%;
|
|
2281
|
+
border: 1px dashed #d9d9d9;
|
|
2282
|
+
background-color: #f6f7f9;
|
|
2283
|
+
|
|
2284
|
+
.style-custom-content-one {
|
|
2285
|
+
border-right: 1px dashed #d9d9d9;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.style-custom-box-three {
|
|
2289
|
+
display: flex;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.style-custom-content-two {
|
|
2293
|
+
border-bottom: 1px dashed #d9d9d9;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.style-custom-content-three {
|
|
2297
|
+
border-right: 1px dashed #d9d9d9;
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
.style-custom-main-three-four {
|
|
2302
|
+
display: flex;
|
|
2303
|
+
overflow: scroll;
|
|
2304
|
+
width: 100%;
|
|
2305
|
+
border: 1px dashed #d9d9d9;
|
|
2306
|
+
background-color: #f6f7f9;
|
|
2307
|
+
|
|
2308
|
+
.style-custom-box-one {
|
|
2309
|
+
border-right: 1px dashed #d9d9d9;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.style-custom-content-two {
|
|
2313
|
+
border-right: 1px dashed #d9d9d9;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.style-custom-content-one {
|
|
2317
|
+
border-bottom: 1px dashed #d9d9d9;
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
.style-custom-box-two {
|
|
2321
|
+
display: flex;
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
.style-custom-main-three-three {
|
|
2326
|
+
display: flex;
|
|
2327
|
+
overflow: scroll;
|
|
2328
|
+
width: 100%;
|
|
2329
|
+
border: 1px dashed #d9d9d9;
|
|
2330
|
+
background-color: #f6f7f9;
|
|
2331
|
+
|
|
2332
|
+
.style-custom-content-one {
|
|
2333
|
+
display: flex;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.style-custom-box-one {
|
|
2337
|
+
border-right: 1px dashed #d9d9d9;
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
.style-custom-content-two {
|
|
2341
|
+
border-left: 1px dashed #d9d9d9;
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
.style-custom-content-box-one {
|
|
2345
|
+
border-bottom: 1px dashed #d9d9d9;
|
|
2346
|
+
display: flex;
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.frame-box-row-two {
|
|
2351
|
+
.frame-content-row-two {
|
|
2352
|
+
border-top: 1px dashed #d9d9d9;
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.pipeline-list {
|
|
2357
|
+
background-color: #efefef;
|
|
2358
|
+
padding: 2px 10px 8px 10px;
|
|
2359
|
+
width: 100%;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
.pipeline-list-child {
|
|
2363
|
+
background-color: #efefef;
|
|
2364
|
+
padding: 2px 10px 8px 10px;
|
|
2365
|
+
width: 100%;
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
.pipeline-item {
|
|
2369
|
+
margin: 10px 0px;
|
|
2370
|
+
min-height: 60px;
|
|
2371
|
+
background-color: white;
|
|
2372
|
+
border-bottom: 1px solid @border-color-split;
|
|
2373
|
+
display: flex;
|
|
2374
|
+
border-radius: 5px;
|
|
2375
|
+
cursor: pointer;
|
|
2376
|
+
overflow-x: hidden;
|
|
2377
|
+
position: relative;
|
|
2378
|
+
|
|
2379
|
+
&.active {
|
|
2380
|
+
background-color: fade(@system-yellow-color, 50%);
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.modal-component-layout-edit-widget {
|
|
2385
|
+
.modal-setting-advance-select {
|
|
2386
|
+
.ant-form-item-has-success {
|
|
2387
|
+
display: contents !important;
|
|
2388
|
+
}
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.component-container-body-share {
|
|
2393
|
+
max-height: 280px;
|
|
2394
|
+
overflow: scroll;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
.wigeta-content-row {
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.wigeta-rows-layout-main {
|
|
2401
|
+
// border: 1px dashed #d9d9d9;
|
|
2402
|
+
overflow: scroll;
|
|
2403
|
+
width: 100%;
|
|
2404
|
+
background-color: #fff;
|
|
2405
|
+
border-radius: 5px;
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
.wigeta-layout-main {
|
|
2409
|
+
display: grid;
|
|
2410
|
+
width: 100%;
|
|
2411
|
+
min-height: 40px;
|
|
2412
|
+
// border-radius: 5px;
|
|
2413
|
+
// border: 1px solid #fff;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
.layout-icon-setting-widgets-columns {
|
|
2417
|
+
display: flex;
|
|
2418
|
+
position: absolute;
|
|
2419
|
+
top: 1px;
|
|
2420
|
+
right: 0px;
|
|
2421
|
+
z-index: 9;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.layout-icon-setting-widgets-columns {
|
|
2425
|
+
display: none;
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.layout-icon-setting-widgets-icon {
|
|
2429
|
+
display: none;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.layout-block {
|
|
2433
|
+
&:hover {
|
|
2434
|
+
.layout-icon-setting-widgets-icon {
|
|
2435
|
+
display: flex;
|
|
2436
|
+
position: absolute;
|
|
2437
|
+
top: 1px;
|
|
2438
|
+
right: 0px;
|
|
2439
|
+
z-index: 9;
|
|
2440
|
+
}
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.main-content-margin {
|
|
2445
|
+
display: flex;
|
|
2446
|
+
width: 350px;
|
|
2447
|
+
|
|
2448
|
+
.ant-form-item {
|
|
2449
|
+
margin-bottom: 0px;
|
|
2450
|
+
|
|
2451
|
+
.ant-form-item-control-input {
|
|
2452
|
+
min-height: unset;
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
.box-content-margin {
|
|
2458
|
+
width: 80px;
|
|
2459
|
+
padding-top: 5px;
|
|
2460
|
+
padding-bottom: 5px;
|
|
2461
|
+
align-items: center;
|
|
2462
|
+
display: flex;
|
|
2463
|
+
justify-content: center;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
.box-content-margin {
|
|
2467
|
+
padding-top: 0px;
|
|
2468
|
+
padding-bottom: 0px;
|
|
2469
|
+
width: 70px;
|
|
2470
|
+
.input-margin {
|
|
2471
|
+
border: unset !important;
|
|
2472
|
+
box-shadow: unset !important;
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.box-content-margin-type {
|
|
2477
|
+
width: 50px;
|
|
2478
|
+
background-color: rgb(238, 237, 237);
|
|
2479
|
+
border-top-right-radius: 5px;
|
|
2480
|
+
border-bottom-right-radius: 5px;
|
|
2481
|
+
border-right: 1px solid #e0dcdc;
|
|
2482
|
+
border-bottom: 1px solid #e0dcdc;
|
|
2483
|
+
border-top: 1px solid #e0dcdc;
|
|
2484
|
+
height: 32px;
|
|
2485
|
+
display: flex;
|
|
2486
|
+
align-items: center;
|
|
2487
|
+
justify-content: center;
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
.margin-border-one {
|
|
2491
|
+
border-top-left-radius: 5px;
|
|
2492
|
+
border-bottom-left-radius: 5px;
|
|
2493
|
+
border-top: 1px solid #e0dcdc;
|
|
2494
|
+
border-left: 1px solid #e0dcdc;
|
|
2495
|
+
border-bottom: 1px solid #e0dcdc;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
.margin-border-two {
|
|
2499
|
+
border-top: 1px solid #e0dcdc;
|
|
2500
|
+
border-left: 1px solid #e0dcdc;
|
|
2501
|
+
border-bottom: 1px solid #e0dcdc;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.margin-test {
|
|
2505
|
+
display: flex;
|
|
2506
|
+
align-items: center;
|
|
2507
|
+
justify-content: center;
|
|
2508
|
+
// justify-items: center;
|
|
2509
|
+
color: #c4c4c4;
|
|
2510
|
+
font-size: 10px;
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2513
|
+
.margin-border-right {
|
|
2514
|
+
border-right: 1px solid #e0dcdc;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.layout-icon-setting-widgets-icons {
|
|
2518
|
+
display: none;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
.layout-icon-setting-widgets-icons-columns {
|
|
2522
|
+
display: none;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
.wigeta-layout-block-item:hover
|
|
2526
|
+
> .block-item
|
|
2527
|
+
> .layout-icon-setting-widgets-icons {
|
|
2528
|
+
display: block;
|
|
2529
|
+
.setting-widgets-icons {
|
|
2530
|
+
display: flex;
|
|
2531
|
+
padding: 0 5px;
|
|
2532
|
+
position: absolute;
|
|
2533
|
+
right: 2px;
|
|
2534
|
+
top: -21px;
|
|
2535
|
+
transform-origin: 0 0;
|
|
2536
|
+
transition: 0.1s ease-in-out;
|
|
2537
|
+
z-index: 9;
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
.wigeta-layout-block-item:hover
|
|
2542
|
+
> .block-item
|
|
2543
|
+
> .layout-icon-setting-widgets-icons-columns {
|
|
2544
|
+
display: block;
|
|
2545
|
+
.setting-widgets-icons {
|
|
2546
|
+
display: flex;
|
|
2547
|
+
padding: 0 5px;
|
|
2548
|
+
position: absolute;
|
|
2549
|
+
right: 2px;
|
|
2550
|
+
top: -20px;
|
|
2551
|
+
transform-origin: 0 0;
|
|
2552
|
+
transition: 0.1s ease-in-out;
|
|
2553
|
+
z-index: 9;
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
.wigeta-layout-block-item:hover > .block-item {
|
|
2558
|
+
background-color: rgb(212, 234, 255);
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.wigeta-layout-block-item:hover
|
|
2562
|
+
> .block-item
|
|
2563
|
+
> .wigeta-item
|
|
2564
|
+
> div
|
|
2565
|
+
> .wigeta-layout-main {
|
|
2566
|
+
border: unset;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)
|
|
2570
|
+
> .block-item
|
|
2571
|
+
> div
|
|
2572
|
+
> .wigeta-item
|
|
2573
|
+
> .wigeta-layout-main {
|
|
2574
|
+
border: 1px solid #fff;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.wigeta-layout-block-item:has(.wigeta-layout-block-item:hover) > .block-item {
|
|
2578
|
+
background-color: #fff;
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
.wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)
|
|
2582
|
+
> .block-item
|
|
2583
|
+
> .layout-icon-setting-widgets-icons {
|
|
2584
|
+
display: none;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)
|
|
2588
|
+
> .block-item
|
|
2589
|
+
> .layout-icon-setting-widgets-icons-columns {
|
|
2590
|
+
display: none;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
.setting-widgets-icons {
|
|
2594
|
+
display: flex;
|
|
2595
|
+
padding: 0 5px;
|
|
2596
|
+
position: absolute;
|
|
2597
|
+
right: 10px;
|
|
2598
|
+
top: -20px;
|
|
2599
|
+
transform-origin: 0 0;
|
|
2600
|
+
transition: 0.1s ease-in-out;
|
|
2601
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
|
|
2602
|
+
z-index: 9;
|
|
2603
|
+
|
|
2604
|
+
.icon-edit {
|
|
2605
|
+
padding-top: 0px !important;
|
|
2606
|
+
}
|
|
2607
|
+
.icon-remove {
|
|
2608
|
+
padding-top: 0px !important;
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
.wigeta-layout-block-item {
|
|
2613
|
+
position: relative;
|
|
2614
|
+
margin: 10px 5px;
|
|
2615
|
+
display: flex;
|
|
2616
|
+
flex-direction: column;
|
|
2617
|
+
background-color: #fff;
|
|
2618
|
+
|
|
2619
|
+
.block-item {
|
|
2620
|
+
display: flex;
|
|
2621
|
+
border: 1px dashed #f2f2f2;
|
|
2622
|
+
|
|
2623
|
+
.wigeta-item {
|
|
2624
|
+
width: 100%;
|
|
2625
|
+
display: grid;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.icon-edit {
|
|
2629
|
+
cursor: pointer;
|
|
2630
|
+
padding-right: 5px;
|
|
2631
|
+
padding-top: 5px;
|
|
2632
|
+
color: @border-color-base;
|
|
2633
|
+
|
|
2634
|
+
&:hover {
|
|
2635
|
+
color: @text-color;
|
|
2636
|
+
}
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
.icon-remove {
|
|
2640
|
+
cursor: pointer;
|
|
2641
|
+
padding-right: 5px;
|
|
2642
|
+
padding-top: 5px;
|
|
2643
|
+
color: @border-color-base;
|
|
2644
|
+
|
|
2645
|
+
&:hover {
|
|
2646
|
+
color: @text-color;
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.module-item {
|
|
2653
|
+
border: 2px solid transparent !important;
|
|
2654
|
+
border-radius: 8px;
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
.module-item:hover {
|
|
2658
|
+
border: 2px solid @table-row-hover-bg !important;
|
|
2659
|
+
border-radius: 8px;
|
|
2660
|
+
cursor: pointer;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.grid-module {
|
|
2664
|
+
display: grid;
|
|
2665
|
+
grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
|
|
2666
|
+
grid-auto-rows: 1fr;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.grid-module::before {
|
|
2670
|
+
content: "";
|
|
2671
|
+
width: 0;
|
|
2672
|
+
padding-bottom: 100%;
|
|
2673
|
+
grid-row: 1 / 1;
|
|
2674
|
+
grid-column: 1 / 1;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.grid-module > *:first-child {
|
|
2678
|
+
grid-row: 1 / 1;
|
|
2679
|
+
grid-column: 1 / 1;
|
|
2680
|
+
}
|
|
2681
|
+
.grid-module > * {
|
|
2682
|
+
margin-right: 5px;
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
|
|
2686
|
+
.modal-change-password {
|
|
2687
|
+
.mutiline-format {
|
|
2688
|
+
margin-bottom: 0px;
|
|
2689
|
+
}
|
|
2690
|
+
}
|