cc-core-cli 1.0.0

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