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,1736 @@
1
+ @import "~antd/dist/antd.less";
2
+ @import "custom-antd.less";
3
+ @import "login.less";
4
+ @import "mainheader.less";
5
+ @import "layout.less";
6
+ @import "system.less";
7
+ @import "permission_denied.less";
8
+ @import "entities.less";
9
+ @import "input.less";
10
+ @import "hook.less";
11
+ @import "setting.less";
12
+ @import "wysiwyg.less";
13
+ @import "activity_log.less";
14
+ @import "filter.less";
15
+ @import "versioning_control.less";
16
+ @import "print_template.less";
17
+ @import "import_export.less";
18
+ @import "compute_field.less";
19
+ @import "detail.less";
20
+ @import "restful.less";
21
+ @import "collections.less";
22
+ @import "rabbitmq.less";
23
+ @import "custom_icon.less";
24
+ @import "filter_new.less";
25
+ @import "date_search.less";
26
+ @import "react-big-calendar/lib/css/react-big-calendar.css";
27
+ @import "calendar.less";
28
+ //----- Custom table ------//
29
+ .ant-table-column-sorters {
30
+ padding-left: 0px;
31
+ padding-right: 0px;
32
+ }
33
+
34
+ .header-table-border {
35
+ border-bottom: 1px solid @border-color-split;
36
+ }
37
+
38
+ .header-table {
39
+ min-height: 65px;
40
+
41
+ .right-section {
42
+ padding-right: 15px;
43
+ }
44
+
45
+ .refresh {
46
+ margin-right: 8px;
47
+ }
48
+
49
+ .search {
50
+ display: flex;
51
+ max-height: 32px;
52
+ margin-right: 8px;
53
+ }
54
+
55
+ .btn-filter {
56
+ width: 32px;
57
+ }
58
+
59
+ .right {
60
+ text-align: right;
61
+
62
+ .filter-icon {
63
+ margin-left: 10px;
64
+ }
65
+ }
66
+
67
+ .ant-input-affix-wrapper {
68
+ padding: 7px 11px;
69
+ }
70
+
71
+ .ant-btn {
72
+ height: 100%;
73
+ max-height: 32px;
74
+ }
75
+
76
+ .btn-action {
77
+ .ant-btn {
78
+ margin-left: 8px;
79
+ }
80
+ }
81
+ }
82
+
83
+ .ant-table {
84
+ .ant-table-tbody {
85
+ img.render-image {
86
+ height: 40px;
87
+ width: 40px;
88
+ object-fit: contain;
89
+ }
90
+
91
+ object.render-image {
92
+ height: 40px;
93
+ width: 40px;
94
+ object-fit: contain;
95
+ }
96
+ }
97
+ }
98
+
99
+ .ant-card.ant-card-bordered.table-card {
100
+ border: none;
101
+ }
102
+
103
+ .table-card {
104
+ .ant-table {
105
+ border-radius: 0px;
106
+
107
+ table {
108
+ border-radius: 0px;
109
+ }
110
+ }
111
+
112
+ .ant-table-container table > thead > tr:first-child th:last-child {
113
+ border-radius: 0px;
114
+ }
115
+
116
+ .ant-card-body {
117
+ padding: 0;
118
+
119
+ .table-row-selected {
120
+ padding: 16px;
121
+ border-bottom: 1px solid @border-color-split;
122
+ }
123
+
124
+ .relate-table {
125
+ .ant-table-thead > tr > th {
126
+ padding: 8px 16px;
127
+ font-weight: 500;
128
+ font-size: 13px;
129
+
130
+ &.ant-table-column-sort {
131
+ padding: 0px 16px;
132
+ }
133
+ }
134
+ }
135
+
136
+ .common-table {
137
+ .ant-table-content {
138
+ overflow: auto !important;
139
+
140
+ .ant-table-thead > tr > th {
141
+ padding: 8px 16px;
142
+ font-weight: 500;
143
+ font-size: 13px;
144
+
145
+ &.ant-table-column-sort {
146
+ padding: 0px 16px;
147
+ }
148
+ }
149
+ }
150
+
151
+ .ant-pagination.ant-table-pagination.ant-table-pagination-right {
152
+ padding-right: 16px;
153
+ }
154
+
155
+ .editable-cell {
156
+ position: relative;
157
+ }
158
+
159
+ .editable-cell-value-wrap {
160
+ padding: 5px 12px;
161
+ cursor: pointer;
162
+
163
+ &.editable-cell-read-only {
164
+ cursor: not-allowed;
165
+ background-color: #f5f5f5;
166
+ color: @text-color-disabled;
167
+ }
168
+ }
169
+
170
+ .editable-row .editable-cell-value-wrap {
171
+ border: 1px solid #d9d9d9;
172
+ border-radius: 4px;
173
+ padding: 4px 11px;
174
+ min-height: 32px;
175
+
176
+ &.input_reason {
177
+ border: none;
178
+ padding: 0px 5px;
179
+
180
+ .select-input-reason {
181
+ border: 1px solid #d9d9d9;
182
+ border-radius: 4px;
183
+ min-height: 32px;
184
+ padding: 4px 0px;
185
+
186
+ span {
187
+ padding: 0px 6px;
188
+ }
189
+ }
190
+
191
+ .icon-comment {
192
+ svg {
193
+ width: 18px;
194
+ height: 18px;
195
+ margin-left: 4px;
196
+ }
197
+
198
+ &.not-editable {
199
+ position: relative;
200
+
201
+ .area-icon-comment {
202
+ position: absolute;
203
+ width: 80%;
204
+ height: 28px;
205
+ z-index: 2;
206
+ top: -4px;
207
+ background: transparent;
208
+ }
209
+ }
210
+ }
211
+ }
212
+ }
213
+
214
+ [data-theme="dark"] .editable-row .editable-cell-value-wrap {
215
+ border: 1px solid #434343;
216
+ }
217
+
218
+ img.render-image {
219
+ height: 40px;
220
+ width: 40px;
221
+ object-fit: contain;
222
+ }
223
+
224
+ &.select-list {
225
+ .ant-table-thead th,
226
+ .ant-table-tbody td {
227
+ vertical-align: middle;
228
+ }
229
+ }
230
+
231
+ &.data-table {
232
+ .ant-table-thead {
233
+ .ant-table-cell {
234
+ text-align: center !important;
235
+ }
236
+ }
237
+ }
238
+ }
239
+
240
+ .disabled-sort-list {
241
+ .drag-visible {
242
+ .anticon.anticon-menu {
243
+ cursor: not-allowed !important;
244
+ }
245
+ }
246
+ }
247
+
248
+ .pagination-custom {
249
+ width: 100%;
250
+ margin: 16px 0px;
251
+ padding: 0px 16px;
252
+ }
253
+ }
254
+ }
255
+
256
+ .ant-dropdown-menu.table-action-menu {
257
+ min-width: 150px;
258
+
259
+ .ant-dropdown-menu-item {
260
+ .ant-typography {
261
+ width: 100%;
262
+ }
263
+ }
264
+ }
265
+
266
+ .modal-display-reason {
267
+ border: 1px solid #d9d9d9;
268
+ border-radius: 4px;
269
+ padding: 4px 11px;
270
+ min-height: 32px;
271
+ }
272
+
273
+ //----- Custom Ant Card ------//
274
+ .ant-card.ant-card-bordered {
275
+ border-radius: 5px;
276
+ }
277
+
278
+ //----- Custom Page Header ------//
279
+ .page-header-title {
280
+ padding: 8px 0px;
281
+
282
+ h1 {
283
+ font-weight: 400;
284
+ font-size: 26px;
285
+ }
286
+
287
+ button {
288
+ margin-left: 8px;
289
+ }
290
+ }
291
+
292
+ .ant-page-header {
293
+ padding: 16px 30px;
294
+
295
+ .ant-page-header-heading {
296
+ display: none;
297
+ }
298
+
299
+ &.hide-title {
300
+ .ant-page-header-heading-title {
301
+ display: none;
302
+ }
303
+ }
304
+ }
305
+
306
+ //----- Custom Font ------//
307
+ h3.ant-typography,
308
+ h4.ant-typography {
309
+ font-weight: 400;
310
+ }
311
+
312
+ //----- Custom Modal ------//
313
+ .ant-modal {
314
+ @media (max-width: 991px) {
315
+ width: 100% !important;
316
+ }
317
+ @media (min-width: 992px) {
318
+ width: 60% !important;
319
+ }
320
+
321
+ &.default {
322
+ width: 520px !important;
323
+ }
324
+
325
+ &.full-width {
326
+ width: 100% !important;
327
+ }
328
+ }
329
+
330
+ //----- Custom Form ------//
331
+ .ant-form,
332
+ .ant-modal-body {
333
+ .one2many-required {
334
+ .ant-form-item-explain {
335
+ display: none;
336
+ }
337
+ }
338
+
339
+ .one2many-required,
340
+ .ant-form-item-has-error {
341
+ .text-label {
342
+ &::before {
343
+ display: none !important;
344
+ }
345
+
346
+ &::after {
347
+ display: inline-block !important;
348
+ margin-right: 4px;
349
+ color: #f5222d;
350
+ font-size: 14px;
351
+ font-family: SimSun, sans-serif;
352
+ line-height: 1;
353
+ content: "*";
354
+ }
355
+ }
356
+ }
357
+
358
+ .no-margin {
359
+ .ant-form-item {
360
+ margin-bottom: 1px !important;
361
+ }
362
+ }
363
+
364
+ .text-label-required,
365
+ .ant-form-item-required {
366
+ &::before {
367
+ display: none !important;
368
+ }
369
+
370
+ &::after {
371
+ display: inline-block !important;
372
+ margin-right: 4px;
373
+ color: #f5222d;
374
+ font-size: 14px;
375
+ font-family: SimSun, sans-serif;
376
+ line-height: 1;
377
+ content: "*";
378
+ }
379
+
380
+ &.space-left::after {
381
+ margin-left: 2px;
382
+ }
383
+ }
384
+
385
+ .ant-form-item {
386
+ .ant-input-number {
387
+ width: 100%;
388
+ }
389
+ }
390
+
391
+ .ant-form-item-has-feedback.ant-form-item-has-success {
392
+ .ant-form-item-children-icon {
393
+ display: none;
394
+ }
395
+
396
+ .ant-input,
397
+ .ant-picker,
398
+ .ant-input-affix-wrapper .ant-input-suffix {
399
+ padding-right: 11px;
400
+ }
401
+
402
+ .ant-select .ant-select-arrow,
403
+ .ant-select .ant-select-clear,
404
+ :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
405
+ :not(.ant-input-group-addon) > .ant-select .ant-select-clear {
406
+ right: 11px;
407
+ }
408
+ }
409
+
410
+ .ant-form-item-has-feedback {
411
+ .ant-form-item-children-icon {
412
+ display: initial;
413
+ }
414
+
415
+ .ant-form-item-control {
416
+ &:hover {
417
+ .ant-form-item-explain div {
418
+ visibility: visible;
419
+ }
420
+ }
421
+
422
+ .ant-form-item-explain {
423
+ min-height: 0px !important;
424
+ z-index: 2;
425
+ }
426
+
427
+ .ant-form-item-explain div {
428
+ background-color: rgba(0, 0, 0, 0.7);
429
+ position: absolute;
430
+ margin-top: 5px;
431
+ right: 0px;
432
+ padding: 3px 5px;
433
+ border-radius: 5px;
434
+ color: white;
435
+ visibility: hidden;
436
+ }
437
+ }
438
+ }
439
+
440
+ .ant-form-item-with-help {
441
+ margin-bottom: 24px;
442
+ }
443
+ }
444
+
445
+ .full-list-editable-form {
446
+ .ant-row.ant-form-item {
447
+ margin-bottom: 0;
448
+ flex-direction: row;
449
+ }
450
+
451
+ .ant-table-row {
452
+ vertical-align: baseline;
453
+ }
454
+ }
455
+
456
+ .ant-form-item-has-feedback.ant-form-item-has-error {
457
+ .input-number-container.ant-input-affix-wrapper {
458
+ .ant-input-number {
459
+ .ant-input-number-handler-wrap {
460
+ right: 30px;
461
+ }
462
+
463
+ .ant-input-number-handler-up {
464
+ border-top-right-radius: 0px;
465
+ border-right: 1px solid #d9d9d9;
466
+ }
467
+
468
+ .ant-input-number-handler-down {
469
+ border-right: 1px solid #d9d9d9;
470
+ border-bottom-right-radius: 0px;
471
+ }
472
+ }
473
+
474
+ &.suffix {
475
+ .ant-input-number {
476
+ .ant-input-number-handler-wrap {
477
+ right: 0px;
478
+ }
479
+ }
480
+
481
+ .ant-input-suffix {
482
+ padding-right: 28px;
483
+ }
484
+ }
485
+ }
486
+ }
487
+
488
+ .ant-form-item-has-feedback.ant-form-item-has-error {
489
+ .ant-input-number-handler-wrap {
490
+ right: 30px;
491
+ }
492
+
493
+ .ant-input-number-handler-up {
494
+ border-top-right-radius: 0px;
495
+ border-right: 1px solid #d9d9d9;
496
+ }
497
+
498
+ .ant-input-number-handler-down {
499
+ border-right: 1px solid #d9d9d9;
500
+ border-bottom-right-radius: 0px;
501
+ }
502
+ }
503
+
504
+ .text-label {
505
+ color: @text-color-label;
506
+ }
507
+
508
+ //----- Custom Ant Tree------//
509
+ .ant-tree {
510
+ .ant-tree-treenode.drag-over > [draggable] {
511
+ background-color: #d4eaff;
512
+ }
513
+
514
+ .ant-tree-treenode.drag-over-gap-top > [draggable] {
515
+ border-top-color: #d4eaff;
516
+ }
517
+
518
+ .ant-tree-treenode.drag-over-gap-bottom > [draggable] {
519
+ border-bottom-color: #d4eaff;
520
+ }
521
+
522
+ .ant-tree-node-content-wrapper.ant-tree-node-selected {
523
+ background-color: transparent;
524
+ }
525
+ }
526
+
527
+ @media (max-width: @screen-sm-max) {
528
+ .table-card {
529
+ .ant-card-body {
530
+ .pagination-custom {
531
+ .pagination {
532
+ width: 100%;
533
+ text-align: center;
534
+ margin-right: 0;
535
+ }
536
+ }
537
+
538
+ .per-page {
539
+ margin-top: 16px;
540
+ width: 100%;
541
+ text-align: center;
542
+ font-size: 12px;
543
+ }
544
+ }
545
+ }
546
+ }
547
+
548
+ .addable-table-minus-button {
549
+ height: 20px;
550
+ width: 20px;
551
+ border-radius: 10px;
552
+ border: 1px solid #efefef;
553
+ color: red;
554
+ background-color: white;
555
+ align-items: center;
556
+ justify-content: center;
557
+ display: flex;
558
+ cursor: pointer;
559
+ }
560
+
561
+ //----- custom upload drag container of image field ------
562
+
563
+ .image-field {
564
+ margin-bottom: 20px;
565
+
566
+ .ant-upload-drag-container {
567
+ display: table !important;
568
+ width: 100%;
569
+ }
570
+
571
+ .ant-row {
572
+ flex-flow: column;
573
+ }
574
+ }
575
+
576
+ .file-field {
577
+ margin-bottom: 20px;
578
+
579
+ .ant-upload.ant-upload-drag {
580
+ .ant-upload {
581
+ padding: 0;
582
+ }
583
+ }
584
+
585
+ .ant-upload {
586
+ .ant-upload-btn {
587
+ display: flex;
588
+ }
589
+ }
590
+
591
+ .ant-upload-drag-container {
592
+ display: table-cell !important;
593
+ width: 100%;
594
+ padding-top: 30px;
595
+
596
+ .add-button-icon {
597
+ position: absolute;
598
+ top: 8px;
599
+ right: 13px;
600
+ cursor: pointer;
601
+
602
+ .ant-upload {
603
+ padding: 0;
604
+ }
605
+ }
606
+ }
607
+
608
+ .ant-row-column {
609
+ flex-flow: column;
610
+ }
611
+
612
+ .ant-form-item-control {
613
+ display: block;
614
+ width: 100%;
615
+ }
616
+
617
+ .ant-form-item-control-input {
618
+ min-height: auto;
619
+ }
620
+
621
+ .type-icon-wrapper {
622
+ min-height: 150px;
623
+ text-align: center;
624
+
625
+ .image-type-icon {
626
+ width: 100%;
627
+ height: auto;
628
+ }
629
+
630
+ .file-type-icon {
631
+ min-height: 0;
632
+ height: 100px;
633
+ width: auto;
634
+ }
635
+ }
636
+ }
637
+
638
+ .ant-tooltip-inner {
639
+ display: flex;
640
+ justify-content: center;
641
+ align-items: center;
642
+ font-size: 10px;
643
+ padding: 2px 4px;
644
+ min-height: unset;
645
+ }
646
+
647
+ .mutiple-upload-files-container {
648
+ .ant-row-middle {
649
+ text-align: left;
650
+ }
651
+
652
+ .ant-upload.ant-upload-drag {
653
+ border: 0;
654
+ }
655
+
656
+ .multiple-image-container {
657
+ border: 0;
658
+
659
+ .scrollable {
660
+ min-height: 212px;
661
+ }
662
+
663
+ .ant-upload {
664
+ padding: 0;
665
+
666
+ .anticon-plus {
667
+ font-size: 20px;
668
+ color: #00000090;
669
+ }
670
+ }
671
+
672
+ .notice-arrow {
673
+ position: absolute;
674
+ right: 0;
675
+ top: 38%;
676
+ display: flex;
677
+ width: 50px;
678
+ height: 50px;
679
+ background: #00000050;
680
+ justify-content: center;
681
+ align-items: center;
682
+ color: white;
683
+ font-size: 25px;
684
+ }
685
+
686
+ .list-image {
687
+ display: flex;
688
+
689
+ .meta-data-overlay {
690
+ position: absolute;
691
+ bottom: 2px;
692
+ left: 0;
693
+ right: 0;
694
+ background-color: white;
695
+ z-index: 4;
696
+ padding: 5px 10px;
697
+ }
698
+
699
+ .image {
700
+ position: relative;
701
+ width: 150px;
702
+
703
+ &:hover {
704
+ &::before {
705
+ position: absolute;
706
+ width: 100%;
707
+ height: 100%;
708
+ left: 0;
709
+ // background-color: rgba(164, 160, 160, 0.5);
710
+ opacity: 0.9;
711
+ transition: all 0.3s;
712
+ content: " ";
713
+ z-index: 5;
714
+ }
715
+
716
+ img {
717
+ opacity: 0.8;
718
+ }
719
+
720
+ .multiple-upload-actions {
721
+ width: 100%;
722
+ }
723
+ }
724
+ }
725
+ }
726
+
727
+ .ant-upload {
728
+ .ant-upload-btn {
729
+ display: flex;
730
+ }
731
+ }
732
+
733
+ .ant-upload-drag-container {
734
+ display: table-cell !important;
735
+ width: 100%;
736
+ height: 100%;
737
+ left: 0;
738
+ // background-color: rgba(0, 0, 0, 0.5);แ
739
+ opacity: 0.9;
740
+ transition: all 0.3s;
741
+ content: " ";
742
+ padding-top: 30px;
743
+ }
744
+
745
+ .add-button-icon {
746
+ position: absolute;
747
+ top: 8px;
748
+ right: 13px;
749
+ cursor: pointer;
750
+
751
+ .ant-upload {
752
+ padding: 0;
753
+ }
754
+ }
755
+ }
756
+
757
+ .ant-row-column {
758
+ flex-flow: column;
759
+ }
760
+
761
+ .ant-form-item-control {
762
+ display: block;
763
+ width: 100%;
764
+ }
765
+
766
+ .ant-form-item-control-input {
767
+ min-height: auto;
768
+ }
769
+
770
+ .type-icon-wrapper {
771
+ min-height: 150px;
772
+ text-align: center;
773
+
774
+ .image-type-icon {
775
+ width: 100%;
776
+ height: auto;
777
+ }
778
+
779
+ .file-type-icon {
780
+ min-height: 0;
781
+ height: 100px;
782
+ width: auto;
783
+ }
784
+ }
785
+ }
786
+
787
+ .ant-tooltip-inner {
788
+ display: flex;
789
+ justify-content: center;
790
+ align-items: center;
791
+ font-size: 10px;
792
+ padding: 2px 4px;
793
+ min-height: unset;
794
+ }
795
+
796
+ .mutiple-upload-files-container {
797
+ .ant-row-middle {
798
+ text-align: left;
799
+ }
800
+
801
+ .ant-upload.ant-upload-drag {
802
+ border: 0;
803
+ }
804
+
805
+ .multiple-image-container {
806
+ border: 0;
807
+
808
+ .scrollable {
809
+ min-height: 212px;
810
+ }
811
+
812
+ .ant-upload {
813
+ padding: 0;
814
+
815
+ .anticon-plus {
816
+ font-size: 20px;
817
+ color: #00000090;
818
+ }
819
+ }
820
+
821
+ .notice-arrow {
822
+ position: absolute;
823
+ right: 0;
824
+ top: 38%;
825
+ display: flex;
826
+ width: 50px;
827
+ height: 50px;
828
+ background: #00000050;
829
+ justify-content: center;
830
+ align-items: center;
831
+ color: white;
832
+ font-size: 25px;
833
+ }
834
+
835
+ .list-image {
836
+ display: flex;
837
+
838
+ .meta-data-overlay {
839
+ position: absolute;
840
+ bottom: 2px;
841
+ left: 0;
842
+ right: 0;
843
+ background-color: white;
844
+ z-index: 4;
845
+ padding: 5px 10px;
846
+ }
847
+
848
+ .image {
849
+ position: relative;
850
+ width: 150px;
851
+
852
+ &:hover {
853
+ &::before {
854
+ position: absolute;
855
+ width: 100%;
856
+ height: 100%;
857
+ left: 0;
858
+ // background-color: rgba(164, 160, 160, 0.5);
859
+ opacity: 0.9;
860
+ transition: all 0.3s;
861
+ content: " ";
862
+ z-index: 5;
863
+ }
864
+
865
+ img {
866
+ opacity: 0.8;
867
+ }
868
+
869
+ .multiple-upload-actions {
870
+ width: 100%;
871
+ }
872
+ }
873
+ }
874
+ }
875
+
876
+ .ant-upload {
877
+ .ant-upload-btn {
878
+ display: flex;
879
+ }
880
+ }
881
+
882
+ .ant-upload-drag-container {
883
+ display: table-cell !important;
884
+ width: 100%;
885
+ height: 100%;
886
+ left: 0;
887
+ // background-color: rgba(0, 0, 0, 0.5);
888
+ // background-color: rgba(164, 160, 160, 0.5);
889
+ opacity: 0.9;
890
+ transition: all 0.3s;
891
+ content: " ";
892
+ }
893
+
894
+ .add-button-icon {
895
+ position: absolute;
896
+ top: 8px;
897
+ right: 13px;
898
+ cursor: pointer;
899
+
900
+ .ant-upload {
901
+ padding: 0;
902
+ }
903
+ }
904
+ }
905
+
906
+ .ant-row-column {
907
+ flex-flow: column;
908
+ }
909
+
910
+ .ant-form-item-control {
911
+ display: block;
912
+ width: 100%;
913
+ }
914
+
915
+ .ant-form-item-control-input {
916
+ min-height: auto;
917
+ }
918
+
919
+ .type-icon-wrapper {
920
+ min-height: 150px;
921
+ text-align: center;
922
+
923
+ .image-type-icon {
924
+ width: 100%;
925
+ height: auto;
926
+ }
927
+
928
+ .file-type-icon {
929
+ min-height: 0;
930
+ height: 100px;
931
+ width: auto;
932
+ }
933
+ }
934
+ }
935
+
936
+ .ant-tooltip-inner {
937
+ display: flex;
938
+ justify-content: center;
939
+ align-items: center;
940
+ font-size: 10px;
941
+ padding: 2px 4px;
942
+ min-height: unset;
943
+ }
944
+
945
+ .mutiple-upload-files-container {
946
+ .ant-row-middle {
947
+ text-align: left;
948
+ }
949
+
950
+ .ant-upload.ant-upload-drag {
951
+ border: 0;
952
+ }
953
+
954
+ .multiple-image-container {
955
+ border: 0;
956
+
957
+ .scrollable {
958
+ min-height: 212px;
959
+ }
960
+
961
+ .ant-upload {
962
+ padding: 0;
963
+
964
+ .anticon-plus {
965
+ font-size: 20px;
966
+ color: #00000090;
967
+ }
968
+ }
969
+
970
+ .notice-arrow {
971
+ position: absolute;
972
+ right: 0;
973
+ top: 38%;
974
+ display: flex;
975
+ width: 50px;
976
+ height: 50px;
977
+ background: #00000050;
978
+ justify-content: center;
979
+ align-items: center;
980
+ color: white;
981
+ font-size: 25px;
982
+ }
983
+
984
+ .list-image {
985
+ display: flex;
986
+
987
+ .meta-data-overlay {
988
+ position: absolute;
989
+ bottom: 2px;
990
+ left: 0;
991
+ right: 0;
992
+ background-color: white;
993
+ z-index: 4;
994
+ padding: 5px 10px;
995
+ }
996
+
997
+ .image {
998
+ position: relative;
999
+ width: 150px;
1000
+
1001
+ &:hover {
1002
+ &::before {
1003
+ position: absolute;
1004
+ width: 100%;
1005
+ height: 100%;
1006
+ left: 0;
1007
+ background-color: rgba(0, 0, 0, 0.5);
1008
+ opacity: 0.9;
1009
+ transition: all 0.3s;
1010
+ content: " ";
1011
+ z-index: 5;
1012
+ }
1013
+
1014
+ img {
1015
+ opacity: 0.8;
1016
+ }
1017
+
1018
+ .multiple-upload-actions {
1019
+ width: 100%;
1020
+ }
1021
+ }
1022
+ }
1023
+ }
1024
+ }
1025
+ }
1026
+
1027
+ .truncate-middle {
1028
+ position: relative;
1029
+ max-width: 96px;
1030
+
1031
+ &:after {
1032
+ content: attr(data-truncate);
1033
+ position: absolute;
1034
+ left: 100%;
1035
+ top: 0;
1036
+ white-space: nowrap;
1037
+ background-color: white;
1038
+ }
1039
+
1040
+ div {
1041
+ white-space: nowrap;
1042
+ text-overflow: ellipsis;
1043
+ overflow: hidden;
1044
+ }
1045
+ }
1046
+
1047
+ .single-upload-images-container.imageUrl {
1048
+ .single-upload-actions {
1049
+ margin: 0 !important;
1050
+ display: none;
1051
+ flex-direction: row;
1052
+ justify-content: center;
1053
+ position: absolute;
1054
+ top: 50%;
1055
+ left: 50%;
1056
+ z-index: 2;
1057
+ -webkit-transform: translate(-50%, -50%);
1058
+ transition: all 0.3s;
1059
+
1060
+ svg {
1061
+ cursor: pointer;
1062
+ color: white;
1063
+ }
1064
+ }
1065
+
1066
+ .no-preview-single {
1067
+ .ant-avatar-string {
1068
+ line-height: 46px !important;
1069
+ padding-top: 38px;
1070
+ font-size: 40px;
1071
+ }
1072
+ }
1073
+
1074
+ .ant-upload-drag-container {
1075
+ position: relative;
1076
+
1077
+ .image-content::before {
1078
+ position: absolute;
1079
+ z-index: 1;
1080
+ width: 100%;
1081
+ height: 100%;
1082
+ left: 0;
1083
+ // background-color: rgba(0, 0, 0, 0.5);
1084
+ opacity: 0.9;
1085
+ transition: all 0.3s;
1086
+ content: " ";
1087
+ }
1088
+
1089
+ .image-content {
1090
+ position: relative;
1091
+ height: 140px;
1092
+ line-height: 140px;
1093
+ background-color: transparent;
1094
+ text-align: center;
1095
+
1096
+ img {
1097
+ max-height: 100%;
1098
+ max-width: 100%;
1099
+ vertical-align: middle;
1100
+ }
1101
+ }
1102
+ }
1103
+
1104
+ &:hover {
1105
+ .single-upload-actions {
1106
+ display: flex;
1107
+ }
1108
+
1109
+ .ant-upload-drag-container {
1110
+ .image-content::before {
1111
+ position: absolute;
1112
+ z-index: 1;
1113
+ width: 100%;
1114
+ height: 100%;
1115
+ left: 0;
1116
+ background-color: rgba(0, 0, 0, 0.5);
1117
+ opacity: 0.9;
1118
+ transition: all 0.3s;
1119
+ content: " ";
1120
+ }
1121
+
1122
+ img {
1123
+ opacity: 0.8;
1124
+ }
1125
+ }
1126
+ }
1127
+
1128
+ .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
1129
+ border-color: #d9d9d9;
1130
+ }
1131
+
1132
+ .ant-upload.ant-upload-drag:hover {
1133
+ cursor: default;
1134
+ }
1135
+ }
1136
+
1137
+ .single-upload-files-container.imageUrl {
1138
+ .single-upload-actions {
1139
+ margin: 0 !important;
1140
+ display: none;
1141
+ flex-direction: row;
1142
+ justify-content: center;
1143
+ position: absolute;
1144
+ top: 50%;
1145
+ left: 50%;
1146
+ z-index: 2;
1147
+ -webkit-transform: translate(-50%, -50%);
1148
+ transition: all 0.3s;
1149
+
1150
+ svg {
1151
+ cursor: pointer;
1152
+ color: white;
1153
+ }
1154
+ }
1155
+
1156
+ .ant-upload-drag-container {
1157
+ position: relative;
1158
+ }
1159
+
1160
+ .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
1161
+ border-color: #d9d9d9;
1162
+ }
1163
+
1164
+ .ant-upload.ant-upload-drag:hover {
1165
+ cursor: default;
1166
+ }
1167
+ }
1168
+
1169
+ .react-flow__controls {
1170
+ height: 128px;
1171
+ width: 32px;
1172
+
1173
+ .react-flow__controls-button {
1174
+ height: 32px;
1175
+ width: 32px;
1176
+ }
1177
+ }
1178
+
1179
+ .blink-effect {
1180
+ animation-name: blink;
1181
+ animation-duration: 0.2s;
1182
+ animation-iteration-count: infinite;
1183
+ }
1184
+
1185
+ .workflows-buttons {
1186
+ border-right: 1px solid #8f8f8f;
1187
+ padding: 0px 8px 0px 0px;
1188
+ }
1189
+
1190
+ .red-compare {
1191
+ background: #fdd;
1192
+
1193
+ td {
1194
+ background: #fdd !important;
1195
+ }
1196
+ }
1197
+
1198
+ .red-compare-text {
1199
+ color: red;
1200
+
1201
+ td {
1202
+ color: red !important;
1203
+ }
1204
+ }
1205
+
1206
+ .green-compare {
1207
+ background: #dfd;
1208
+
1209
+ td {
1210
+ background: #dfd !important;
1211
+ }
1212
+ }
1213
+
1214
+ .compare-detail-card-modal-container {
1215
+ margin-top: 20px;
1216
+ min-height: 200px;
1217
+ }
1218
+
1219
+ .ant-modal.photoshop-picker {
1220
+ .ant-modal-content {
1221
+ background-color: unset;
1222
+ border-radius: 0px;
1223
+ box-shadow: unset;
1224
+
1225
+ .ant-modal-body {
1226
+ padding: 0px;
1227
+ }
1228
+ }
1229
+ }
1230
+
1231
+ .photoshop-picker-content {
1232
+ .ant-col {
1233
+ cursor: pointer;
1234
+ margin-right: 5px;
1235
+ width: 20px;
1236
+ height: 20px;
1237
+ }
1238
+ }
1239
+
1240
+ // Ant Tag
1241
+ .ant-tag {
1242
+ &.ant-tag-red {
1243
+ color: #f5222d;
1244
+ background: #fff1f0;
1245
+ border-color: #ffa39e;
1246
+ }
1247
+ }
1248
+
1249
+ .ant-collapse-item.lost-entities {
1250
+ background-color: lighten(@error-color, 30%);
1251
+ }
1252
+
1253
+ .btn-icon-action-table {
1254
+ &.edit-entity {
1255
+ height: 32px;
1256
+ line-height: 0;
1257
+ }
1258
+ }
1259
+
1260
+ .row-dragging {
1261
+ background: #fafafa;
1262
+ border: 1px solid #ccc;
1263
+ }
1264
+
1265
+ .row-dragging td {
1266
+ padding: 16px;
1267
+ visibility: hidden;
1268
+ }
1269
+
1270
+ .row-dragging .drag-visible {
1271
+ visibility: visible;
1272
+ }
1273
+
1274
+ .custom-node-workflow {
1275
+ // background : #ff6060;
1276
+ color: #222;
1277
+ padding: 10px;
1278
+ font-size: 20px;
1279
+ border-radius: 3px;
1280
+
1281
+ .container {
1282
+ min-width: 130px;
1283
+ text-align: center;
1284
+ }
1285
+
1286
+ .point-a {
1287
+ top: 0;
1288
+ left: 20%;
1289
+ border-radius: 0;
1290
+ }
1291
+
1292
+ .point-b {
1293
+ top: 0;
1294
+ border-radius: 0;
1295
+ }
1296
+
1297
+ .point-c {
1298
+ top: 0;
1299
+ left: 80%;
1300
+ border-radius: 0;
1301
+ }
1302
+
1303
+ .point-d {
1304
+ bottom: 0;
1305
+ left: 20%;
1306
+ border-radius: 0;
1307
+ }
1308
+
1309
+ .point-e {
1310
+ bottom: 0;
1311
+ border-radius: 0;
1312
+ }
1313
+
1314
+ .point-f {
1315
+ bottom: 0;
1316
+ left: 80%;
1317
+ border-radius: 0;
1318
+ }
1319
+ }
1320
+
1321
+ .custom-standard-node-workflow {
1322
+ color: #222;
1323
+ font-size: 20px;
1324
+ border-radius: 3px;
1325
+ min-width: 250px;
1326
+
1327
+ .container {
1328
+ display: flex;
1329
+ flex-direction: row;
1330
+ }
1331
+
1332
+ .icon-wrapper {
1333
+ width: 90px;
1334
+ display: flex;
1335
+ justify-content: center;
1336
+ align-items: center;
1337
+
1338
+ &.icon-sign {
1339
+ margin-right: 2px;
1340
+ }
1341
+ }
1342
+
1343
+ .message-wrapper {
1344
+ background-color: white;
1345
+ padding: 10px;
1346
+ width: 100%;
1347
+ border-top-right-radius: 6px;
1348
+ border-bottom-right-radius: 6px;
1349
+
1350
+ .text-container {
1351
+ padding: 3px;
1352
+ }
1353
+
1354
+ .text-label {
1355
+ min-width: 130px;
1356
+ font-size: 15px;
1357
+ font-weight: 500;
1358
+ }
1359
+
1360
+ .text-description {
1361
+ min-width: 130px;
1362
+ }
1363
+ }
1364
+
1365
+ .dot {
1366
+ height: 10px;
1367
+ width: 10px;
1368
+ background-color: rgb(0, 0, 0);
1369
+ border-radius: 50%;
1370
+ display: inline-block;
1371
+ }
1372
+
1373
+ .square {
1374
+ height: 10px;
1375
+ width: 10px;
1376
+ background-color: rgb(0, 0, 0);
1377
+ border-radius: 0;
1378
+ display: inline-block;
1379
+ }
1380
+
1381
+ .arrow-up {
1382
+ width: 0;
1383
+ height: 0;
1384
+ border-left: 6px solid transparent;
1385
+ border-right: 6px solid transparent;
1386
+ border-bottom: 9px solid black;
1387
+ border-radius: 0;
1388
+ background: transparent;
1389
+ border-top-color: transparent;
1390
+ }
1391
+
1392
+ .arrow-down {
1393
+ width: 0;
1394
+ height: 0;
1395
+ border-left: 6px solid transparent;
1396
+ border-right: 6px solid transparent;
1397
+ border-top: 9px solid black;
1398
+ border-radius: 0;
1399
+ background: transparent;
1400
+ border-bottom-color: transparent;
1401
+ }
1402
+
1403
+ .arrow-right {
1404
+ width: 0;
1405
+ height: 0;
1406
+ border-top: 6px solid transparent;
1407
+ border-bottom: 6px solid transparent;
1408
+ border-left: 9px solid black;
1409
+ border-radius: 0;
1410
+ background: transparent;
1411
+ border-right-color: transparent;
1412
+ }
1413
+
1414
+ .arrow-left {
1415
+ width: 0;
1416
+ height: 0;
1417
+ border-top: 6px solid transparent;
1418
+ border-bottom: 6px solid transparent;
1419
+ border-right: 9px solid black;
1420
+ border-radius: 0;
1421
+ background: transparent;
1422
+ border-left-color: transparent;
1423
+ }
1424
+ }
1425
+
1426
+ .workflow-translate-table-column {
1427
+ .ant-form-item {
1428
+ margin-bottom: 0px;
1429
+ }
1430
+ }
1431
+
1432
+ // AutoComplete Field
1433
+ .autocomplete.ant-form-item-has-feedback.ant-form-item-has-error {
1434
+ &.field,
1435
+ &.func {
1436
+ .ant-form-item-children-icon {
1437
+ right: 45px;
1438
+ }
1439
+ }
1440
+
1441
+ &.field-func {
1442
+ .ant-form-item-children-icon {
1443
+ right: 90px;
1444
+ }
1445
+ }
1446
+ }
1447
+
1448
+ .dropdown-menu-overflow {
1449
+ position: relative;
1450
+ max-height: 60vh;
1451
+ overflow: auto;
1452
+ }
1453
+
1454
+ .form-item-show-label-only {
1455
+ .ant-col.ant-form-item-control {
1456
+ width: 100%;
1457
+ }
1458
+ }
1459
+
1460
+ .ant-menu {
1461
+ .ant-menu-item {
1462
+ a {
1463
+ font-size: @label-bigger;
1464
+ font-weight: lighter;
1465
+ display: flex;
1466
+ }
1467
+ }
1468
+
1469
+ .ant-menu-submenu-title {
1470
+ .menu-label {
1471
+ font-size: @label-bigger;
1472
+ font-weight: lighter;
1473
+ }
1474
+ }
1475
+
1476
+ &.ant-menu-inline,
1477
+ &.ant-menu-vertical,
1478
+ &.ant-menu-vertical-left {
1479
+ border-right: none;
1480
+ }
1481
+ }
1482
+
1483
+ .mb-25 {
1484
+ margin-bottom: 25px;
1485
+ }
1486
+
1487
+ .mb-15 {
1488
+ margin-bottom: 15px;
1489
+ }
1490
+
1491
+ .app-loading {
1492
+ height: 100vh;
1493
+ text-align: center;
1494
+ display: flex;
1495
+ flex-direction: column;
1496
+ justify-content: center;
1497
+ align-items: center;
1498
+ }
1499
+
1500
+ .addable-table-container {
1501
+ .ant-row {
1502
+ flex-flow: row;
1503
+ }
1504
+ }
1505
+
1506
+ .chart-wrapper {
1507
+ width: 100%;
1508
+ min-height: 300px;
1509
+ }
1510
+
1511
+ .custom-select-tag-render-tag {
1512
+ background: rgb(245, 245, 245) !important;
1513
+ border: 1px solid rgb(240, 240, 240) !important;
1514
+ border-radius: 6px;
1515
+ height: 24px;
1516
+ margin-top: 2px;
1517
+ margin-bottom: 2px;
1518
+ line-height: 22px;
1519
+ margin-right: 3px;
1520
+ font-size: 14px;
1521
+ font-variant: tabular-nums;
1522
+ }
1523
+
1524
+ .workflow-transition-container {
1525
+ position: absolute;
1526
+ border: 1px solid #d9d9d9;
1527
+ border-radius: 6px;
1528
+ margin: 15px;
1529
+ padding: 10px 10px;
1530
+ right: 0;
1531
+ background: white;
1532
+ height: 70%;
1533
+ width: 200px;
1534
+ z-index: 10;
1535
+
1536
+ .elements-container {
1537
+ display: flex;
1538
+ flex-direction: column;
1539
+ justify-content: space-between;
1540
+ height: 100%;
1541
+ }
1542
+
1543
+ .list-container {
1544
+ display: flex;
1545
+ flex-direction: column;
1546
+ height: 100%;
1547
+ margin-bottom: 10px;
1548
+ row-gap: 10px;
1549
+ overflow-y: auto;
1550
+ }
1551
+
1552
+ .list-item {
1553
+ border: 1px solid #d9d9d9;
1554
+ padding: 10px;
1555
+ border-radius: 6px;
1556
+ cursor: pointer;
1557
+ }
1558
+
1559
+ .label {
1560
+ font-size: 12px;
1561
+ white-space: nowrap;
1562
+ overflow: hidden;
1563
+ text-overflow: ellipsis;
1564
+ }
1565
+ }
1566
+
1567
+ .modal-validate {
1568
+ .ant-modal-body {
1569
+ padding-top: 10px;
1570
+ }
1571
+ }
1572
+
1573
+ .switch-list-required {
1574
+ padding-top: 10px;
1575
+ padding-bottom: 10px;
1576
+ }
1577
+
1578
+ .cke_panel_container {
1579
+ overflow: auto !important;
1580
+ }
1581
+
1582
+ .cke_reset_all {
1583
+ max-height: 40vh !important;
1584
+ overflow: auto !important;
1585
+ }
1586
+
1587
+ .codeMarker {
1588
+ background: #fff677;
1589
+ position: absolute;
1590
+ z-index: 20;
1591
+ }
1592
+
1593
+ .json-compare-modal {
1594
+ .ant-modal {
1595
+ width: 60% !important;
1596
+ }
1597
+ }
1598
+
1599
+ .box_executions_workflows {
1600
+ display: flex;
1601
+ justify-content: flex-end;
1602
+ padding-right: 5px;
1603
+ }
1604
+
1605
+ .icon_vdo {
1606
+ margin: 0 !important;
1607
+ flex-direction: row;
1608
+ justify-content: center;
1609
+ position: absolute;
1610
+ top: 50%;
1611
+ left: 50%;
1612
+ // z-index: 6;
1613
+ -webkit-transform: translate(-50%, -50%);
1614
+ transition: all 0.3s;
1615
+ color: #b4171f;
1616
+ }
1617
+
1618
+ .custom-table-row {
1619
+ td {
1620
+ background-color: inherit !important;
1621
+ }
1622
+ }
1623
+
1624
+ .list-file {
1625
+ min-width: 170px;
1626
+ min-height: 200px;
1627
+ display: flex;
1628
+ justify-content: center;
1629
+ }
1630
+
1631
+ .list-file {
1632
+ min-width: 170px;
1633
+ min-height: 200px;
1634
+ display: flex;
1635
+ justify-content: center;
1636
+ }
1637
+
1638
+ .dropbtn {
1639
+ background-color: #ffffff00;
1640
+ // padding: 10px;
1641
+ font-size: 12px;
1642
+ border: none;
1643
+ }
1644
+
1645
+ .dropdown-content a {
1646
+ padding: 12px 16px;
1647
+ font-size: 12px;
1648
+ text-decoration: none;
1649
+ display: block;
1650
+ }
1651
+
1652
+ .dropdown-content {
1653
+ display: none;
1654
+ }
1655
+ .dropdown:hover .dropdown-content {
1656
+ display: flex;
1657
+ position: fixed;
1658
+ padding: 10px;
1659
+ width: 100%;
1660
+ background: rgb(255, 255, 255);
1661
+ left: 0px;
1662
+ z-index: 100;
1663
+ flex-direction: column;
1664
+ }
1665
+
1666
+ @media (max-width: 768px) {
1667
+ .ant-menu-submenu-open .ant-menu-submenu-arrow {
1668
+ color: @primary-color !important;
1669
+ }
1670
+ .ant-menu-submenu-open .ant-menu-submenu-title > span {
1671
+ color: @primary-color !important;
1672
+ }
1673
+ }
1674
+
1675
+ .mode-display-text {
1676
+ display: flex;
1677
+ align-items: center;
1678
+ justify-content: center;
1679
+ }
1680
+
1681
+ .react-flow .react-flow__edge path,
1682
+ .react-flow__connectionline path {
1683
+ stroke-width: 2;
1684
+ }
1685
+
1686
+ .wrapper {
1687
+ flex-grow: 1;
1688
+ height: 500px;
1689
+ }
1690
+
1691
+ .customNode {
1692
+ padding: 4px 8px;
1693
+ border: 1px solid @primary-color;
1694
+ border-radius: 4px;
1695
+ background-color: white;
1696
+ height: 60px;
1697
+ width: 200px;
1698
+ justify-content: center;
1699
+ align-items: center;
1700
+ display: flex;
1701
+ position: relative;
1702
+ }
1703
+
1704
+ .customNodeIconEdit {
1705
+ position: absolute;
1706
+ top: 0px;
1707
+ right: 25px;
1708
+ }
1709
+
1710
+ .customNodeIconEdit:hover {
1711
+ color: @primary-color;
1712
+ }
1713
+
1714
+ .customNodeIconAdd {
1715
+ position: absolute;
1716
+ top: 0px;
1717
+ right: 5px;
1718
+ }
1719
+
1720
+ .customNodeIconAdd:hover {
1721
+ color: @primary-color;
1722
+ }
1723
+
1724
+ .customNode:hover {
1725
+ background-color: @hover-color;
1726
+ }
1727
+
1728
+ .customHandle.react-flow__handle {
1729
+ opacity: 0;
1730
+ }
1731
+
1732
+ .customNodeIconExpandOrCollapse {
1733
+ position: absolute;
1734
+ top: 0px;
1735
+ left: 5px;
1736
+ }