@c10t/nice-component-library 0.0.1-beta

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 (145) hide show
  1. package/components/base/base-add-edit.component.d.ts +28 -0
  2. package/components/base/base-search.component.d.ts +62 -0
  3. package/components/base/base-table.component.d.ts +16 -0
  4. package/components/cva-breadcrumb.component.d.ts +14 -0
  5. package/components/cva-counter-input.component.d.ts +42 -0
  6. package/components/cva-custom-dialog.component.d.ts +30 -0
  7. package/components/cva-input.component.d.ts +60 -0
  8. package/components/cva-loader.component.d.ts +9 -0
  9. package/components/cva-multi-select-autocomplete.d.ts +64 -0
  10. package/components/cva-quill-editor.component.d.ts +66 -0
  11. package/components/cva-radiobutton.component.d.ts +32 -0
  12. package/components/cva-tree.component.d.ts +38 -0
  13. package/components/datepicker/cva-date-picker.component.d.ts +43 -0
  14. package/components/datepicker/cva-range-date-picker.component.d.ts +64 -0
  15. package/components/table/cva-header-expand-button.component.d.ts +22 -0
  16. package/components/table/cva-smart-table.component.d.ts +72 -0
  17. package/components/table/cva-table.component.d.ts +62 -0
  18. package/components/tree/cva-flat-tree-node-left.component.d.ts +22 -0
  19. package/components/tree/cva-flat-tree-node-right.component.d.ts +18 -0
  20. package/components/tree/cva-flat-tree.component.d.ts +96 -0
  21. package/components/upload/cva-dialog-import-file.component.d.ts +30 -0
  22. package/components/upload/cva-multi-upload-img.component.d.ts +24 -0
  23. package/components/upload/cva-multi-upload.component.d.ts +30 -0
  24. package/components/upload/cva-upload-file.component.d.ts +70 -0
  25. package/directives/drag-drop.directive.d.ts +12 -0
  26. package/directives/format-datepicker.d.ts +8 -0
  27. package/directives/format-input.directive.d.ts +29 -0
  28. package/directives/multi-language-table-paginator.d.ts +12 -0
  29. package/directives/pattern.directive.d.ts +16 -0
  30. package/directives/style-paginator.directive.d.ts +31 -0
  31. package/enums/action-type.enum.d.ts +5 -0
  32. package/enums/align.enum.d.ts +5 -0
  33. package/enums/column-type.enum.d.ts +14 -0
  34. package/enums/dialog-type.enum.d.ts +5 -0
  35. package/enums/file-type.enum.d.ts +13 -0
  36. package/enums/icon-type.enum.d.ts +4 -0
  37. package/fesm2022/c10t-nice-component-library.mjs +9024 -0
  38. package/fesm2022/c10t-nice-component-library.mjs.map +1 -0
  39. package/index.d.ts +75 -0
  40. package/models/base.model.d.ts +5 -0
  41. package/models/button-click.event.d.ts +6 -0
  42. package/models/components/bread-crumb.model.d.ts +5 -0
  43. package/models/components/button.model.d.ts +16 -0
  44. package/models/components/checkbox.model.d.ts +7 -0
  45. package/models/components/column.model.d.ts +37 -0
  46. package/models/components/custom-dialog-data-config.model.d.ts +16 -0
  47. package/models/components/dialog-import-file-config.model.d.ts +9 -0
  48. package/models/components/flat-tree-config.model.d.ts +5 -0
  49. package/models/components/flat-tree-node.model.d.ts +16 -0
  50. package/models/components/flat-tree.model.d.ts +7 -0
  51. package/models/components/range-date-picker.model.d.ts +7 -0
  52. package/models/components/select.model.d.ts +7 -0
  53. package/models/components/table-footer.model.d.ts +10 -0
  54. package/models/components/table-paging-request.model.d.ts +6 -0
  55. package/models/components/table-paging-response.model.d.ts +6 -0
  56. package/models/components/upload.model.d.ts +11 -0
  57. package/models/menu.model.d.ts +10 -0
  58. package/models/navigator.model.d.ts +10 -0
  59. package/models/nice-component-library.config.d.ts +13 -0
  60. package/models/oauth/authority.d.ts +3 -0
  61. package/models/oauth/oAuth2AuthenticationDto.d.ts +7 -0
  62. package/models/oauth/principal.d.ts +10 -0
  63. package/models/oauth/user.authentication.d.ts +4 -0
  64. package/models/permission.model.d.ts +7 -0
  65. package/models/role.model.d.ts +12 -0
  66. package/models/ui.state.d.ts +5 -0
  67. package/modules/angular-material.module.d.ts +45 -0
  68. package/modules/nice-component-library.module.d.ts +46 -0
  69. package/package.json +59 -0
  70. package/pipes/secure.pipe.d.ts +13 -0
  71. package/services/MultiTranslateHttpLoader.d.ts +13 -0
  72. package/services/api.service.d.ts +42 -0
  73. package/services/authorities.resolver.service.d.ts +18 -0
  74. package/services/authorities.service.d.ts +12 -0
  75. package/services/date-util.service.d.ts +23 -0
  76. package/services/flat.tree.service.d.ts +7 -0
  77. package/services/form-state.service.d.ts +9 -0
  78. package/services/jsog.http.interceptor.d.ts +11 -0
  79. package/services/loader.interceptor.d.ts +13 -0
  80. package/services/loader.service.d.ts +7 -0
  81. package/services/ns-validator.service.d.ts +48 -0
  82. package/services/singleton.translate.service.d.ts +8 -0
  83. package/services/table.service.d.ts +24 -0
  84. package/services/utils.service.d.ts +47 -0
  85. package/src/styles/base.theme.scss +3112 -0
  86. package/src/styles/components/cva-breadcrumb.scss +38 -0
  87. package/src/styles/components/cva-counter-input.scss +45 -0
  88. package/src/styles/components/cva-custom-dialog.scss +7 -0
  89. package/src/styles/components/cva-date-picker.scss +16 -0
  90. package/src/styles/components/cva-date-range-picker.scss +22 -0
  91. package/src/styles/components/cva-flat-tree.scss +171 -0
  92. package/src/styles/components/cva-input.scss +120 -0
  93. package/src/styles/components/cva-loader.scss +36 -0
  94. package/src/styles/components/cva-multi-select-autocomplete.scss +128 -0
  95. package/src/styles/components/cva-multi-upload.scss +145 -0
  96. package/src/styles/components/cva-radio-button.scss +58 -0
  97. package/src/styles/components/cva-smart-table.scss +129 -0
  98. package/src/styles/components/cva-table.scss +98 -0
  99. package/src/styles/components/cva-tree.scss +76 -0
  100. package/src/styles/fonts/Comfortaa-Medium.ttf +0 -0
  101. package/src/styles/fonts/Exo-Regular.ttf +0 -0
  102. package/src/styles/fonts/Mali-Medium.ttf +0 -0
  103. package/src/styles/fonts/VarelaRound-Regular.ttf +0 -0
  104. package/src/styles/fonts/fa-brands-400.eot +0 -0
  105. package/src/styles/fonts/fa-brands-400.svg +3570 -0
  106. package/src/styles/fonts/fa-brands-400.ttf +0 -0
  107. package/src/styles/fonts/fa-brands-400.woff +0 -0
  108. package/src/styles/fonts/fa-brands-400.woff2 +0 -0
  109. package/src/styles/fonts/fa-duotone-900.eot +0 -0
  110. package/src/styles/fonts/fa-duotone-900.svg +15055 -0
  111. package/src/styles/fonts/fa-duotone-900.ttf +0 -0
  112. package/src/styles/fonts/fa-duotone-900.woff +0 -0
  113. package/src/styles/fonts/fa-duotone-900.woff2 +0 -0
  114. package/src/styles/fonts/fa-light-300.eot +0 -0
  115. package/src/styles/fonts/fa-light-300.svg +12330 -0
  116. package/src/styles/fonts/fa-light-300.ttf +0 -0
  117. package/src/styles/fonts/fa-light-300.woff +0 -0
  118. package/src/styles/fonts/fa-light-300.woff2 +0 -0
  119. package/src/styles/fonts/fa-regular-400.eot +0 -0
  120. package/src/styles/fonts/fa-regular-400.svg +11256 -0
  121. package/src/styles/fonts/fa-regular-400.ttf +0 -0
  122. package/src/styles/fonts/fa-regular-400.woff +0 -0
  123. package/src/styles/fonts/fa-regular-400.woff2 +0 -0
  124. package/src/styles/fonts/fa-solid-900.eot +0 -0
  125. package/src/styles/fonts/fa-solid-900.svg +9588 -0
  126. package/src/styles/fonts/fa-solid-900.ttf +0 -0
  127. package/src/styles/fonts/fa-solid-900.woff +0 -0
  128. package/src/styles/fonts/fa-solid-900.woff2 +0 -0
  129. package/src/styles/fonts/fontawesome-webfont.eot +0 -0
  130. package/src/styles/fonts/fontawesome-webfont.svg +2671 -0
  131. package/src/styles/fonts/fontawesome-webfont.ttf +0 -0
  132. package/src/styles/fonts/fontawesome-webfont.woff +0 -0
  133. package/src/styles/fonts/fontawesome-webfont.woff2 +0 -0
  134. package/src/styles/fonts/glyphter.eot +0 -0
  135. package/src/styles/fonts/glyphter.svg +1 -0
  136. package/src/styles/fonts/glyphter.ttf +0 -0
  137. package/src/styles/fonts/glyphter.woff +0 -0
  138. package/src/styles/themes/athena.theme.scss +1684 -0
  139. package/src/styles/themes/button-default.style.scss +961 -0
  140. package/src/styles/themes/default.theme.scss +939 -0
  141. package/src/styles/themes/fonts-awesome.scss +12756 -0
  142. package/src/styles/themes/glyphter.scss +27 -0
  143. package/src/styles/themes/hera.theme.scss +1600 -0
  144. package/src/styles/themes/poseidon.theme.scss +1639 -0
  145. package/src/styles/themes/zeus.theme.scss +1655 -0
@@ -0,0 +1,939 @@
1
+ @import '~@angular/material/theming';
2
+
3
+ ////////////////////////////////////////////////////////////////////
4
+ // DEFAULT THEME
5
+ ////////////////////////////////////////////////////////////////////
6
+
7
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
8
+
9
+ $default-primary: mat-palette($mat-orange);
10
+ $default-accent: mat-palette($mat-amber, A200, A100, A400);
11
+ $default-warn: mat-palette($mat-deep-orange);
12
+ $default-theme: mat-light-theme($default-primary, $default-accent, $default-warn);
13
+ .default {
14
+ @include angular-material-theme($default-theme);
15
+ @import "button-default.style";
16
+
17
+ h1 {
18
+ font-size: 40px;
19
+ }
20
+
21
+ h2 {
22
+ font-size: 32px;
23
+ }
24
+
25
+ h3 {
26
+ font-size: 22px;
27
+ }
28
+
29
+ h4 {
30
+ font-size: 20px;
31
+ }
32
+
33
+ h5 {
34
+ font-size: 18px;
35
+ }
36
+
37
+ h6 {
38
+ font-size: 16px;
39
+ }
40
+
41
+ .text-primary {
42
+ color: $primary !important;
43
+ }
44
+
45
+ .text-warning {
46
+ color: #FFBE41 !important;
47
+ }
48
+
49
+ .text-danger {
50
+ color: $danger !important;
51
+ }
52
+
53
+ .text-info {
54
+ color: $info !important;
55
+ }
56
+
57
+ .mat-toolbar.mat-primary {
58
+ background-color: #fff;
59
+ box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
60
+ }
61
+
62
+ .mat-drawer-container {
63
+ background-color: transparent;
64
+ }
65
+
66
+ .mat-drawer {
67
+ background-color: #00977D;
68
+ }
69
+
70
+ .topbar_content {
71
+ background-color: white;
72
+ border-radius: 5px;
73
+ box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3) !important;
74
+ }
75
+
76
+ fieldset,
77
+ .searchFormGroup .form, .searchFormGroup .content {
78
+ background-color: white;
79
+ //box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3) !important;
80
+ box-shadow: none !important;
81
+ border-radius: 5px;
82
+ }
83
+
84
+ a {
85
+ color: #007DDD;
86
+ text-decoration: underline;
87
+
88
+ &:hover {
89
+ color: #FF9800;
90
+ }
91
+ }
92
+
93
+ hr {
94
+ border: none;
95
+ border-top: 1px solid #E9E9E9;
96
+ width: 100%;
97
+ }
98
+
99
+ // Mat tab
100
+ mat-tab-group {
101
+ .mat-tab-header {
102
+ .mat-tab-label-container {
103
+ .mat-tab-list {
104
+ .mat-tab-labels {
105
+ .mat-tab-label {
106
+ width: 100%;
107
+
108
+ .mat-tab-label-content {
109
+ width: 100%;
110
+ color: #222222;
111
+ font-weight: 400;
112
+ background-color: white;
113
+ border-bottom: 4px solid white;
114
+ border-top-left-radius: 6px;
115
+ border-top-right-radius: 6px;
116
+ padding: 10px;
117
+ margin-right: 0;
118
+ -webkit-transition: .0s;
119
+ -o-transition: .0s;
120
+ transition: .0s;
121
+
122
+ &:hover {
123
+ color: #00977D;
124
+ border-bottom: 4px solid #00977D;
125
+ }
126
+
127
+ &:before {
128
+ display: none;
129
+ }
130
+ }
131
+
132
+ &.mat-tab-label-active .mat-tab-label-content {
133
+ color: #00977D;
134
+ font-weight: 600;
135
+ background-color: white;
136
+ box-shadow: none;
137
+ border-bottom: 4px solid #00977D;
138
+ padding: 10px;
139
+
140
+ &:before {
141
+ display: none;
142
+ }
143
+ }
144
+
145
+ &.mat-tab-disabled .mat-tab-label-content {
146
+ color: #dadada;
147
+ background-color: #fafafa;
148
+ border-bottom: 4px solid transparent;
149
+ cursor: not-allowed;
150
+ }
151
+ }
152
+ }
153
+ }
154
+ }
155
+ }
156
+
157
+ .mat-tab-body-wrapper {
158
+ border-radius: 5px;
159
+
160
+ .mat-tab-body {
161
+ //background-color: white;
162
+
163
+ cva-multi-select-autocomplete .mat-form-field {
164
+ background-color: transparent !important;
165
+ }
166
+ }
167
+ }
168
+
169
+ .box-search {
170
+ background-color: transparent !important;
171
+ }
172
+ }
173
+
174
+ .username i,
175
+ .username span,
176
+ .theme_select i,
177
+ .theme_select span {
178
+ color: #795548 !important;
179
+ }
180
+
181
+ // MenuModel
182
+ app-menu-list-item {
183
+ border-radius: 6px;
184
+
185
+ &[aria-expanded="true"] {
186
+ background-color: rgba(255, 255, 255, 0.2);
187
+ }
188
+
189
+ .mat-list-item {
190
+ font-size: 16px;
191
+ height: auto;
192
+ border-bottom: 1px solid #39B59F;
193
+
194
+ &.expanded {
195
+ border-bottom: none;
196
+
197
+ .mat-list-item {
198
+ font-size: 14px;
199
+ }
200
+ }
201
+
202
+ .mat-list-item-content {
203
+ color: white;
204
+ }
205
+
206
+ .mat-icon {
207
+ color: white;
208
+ }
209
+
210
+ &:hover .mat-icon,
211
+ &:hover .mat-list-item-content,
212
+ &.active .mat-icon,
213
+ &.active .mat-list-item-content {
214
+ color: #FFD88D;
215
+ }
216
+ }
217
+
218
+ app-menu-list-item {
219
+ .mat-list-item {
220
+ padding: 0 !important;
221
+
222
+ .mat-list-item-content {
223
+ border: none;
224
+ font-size: 14px;
225
+ }
226
+
227
+ .mat-icon {
228
+ display: none;
229
+ }
230
+ }
231
+ }
232
+ }
233
+
234
+ .theme_select:hover span {
235
+ color: #4ac375 !important;
236
+ }
237
+
238
+ .mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {
239
+ color: #9E9E9E;
240
+ background-color: #dfdcba;
241
+ }
242
+
243
+ .mat-flat-button.mat-primary[disabled]:hover, .mat-flat-button.mat-accent[disabled]:hover, .mat-flat-button.mat-warn[disabled]:hover, .mat-flat-button[disabled]:hover[disabled]:hover, .mat-raised-button.mat-primary[disabled]:hover, .mat-raised-button.mat-accent[disabled]:hover, .mat-raised-button.mat-warn[disabled]:hover, .mat-raised-button[disabled]:hover[disabled]:hover, .mat-fab.mat-primary[disabled]:hover, .mat-fab.mat-accent[disabled]:hover, .mat-fab.mat-warn[disabled]:hover, .mat-fab[disabled]:hover[disabled]:hover, .mat-mini-fab.mat-primary[disabled]:hover, .mat-mini-fab.mat-accent[disabled]:hover, .mat-mini-fab.mat-warn[disabled]:hover, .mat-mini-fab[disabled]:hover[disabled]:hover {
244
+ background-color: #cbc8aa;
245
+ }
246
+
247
+ // Form field
248
+ mat-form-field {
249
+ &.mat-form-field-appearance-outline {
250
+ .mat-form-field-flex {
251
+ background-color: white;
252
+ border-radius: 12px;
253
+ }
254
+ }
255
+
256
+ .mat-form-field-wrapper {
257
+ .mat-form-field-flex {
258
+ &:focus .mat-form-field-outline,
259
+ &:hover .mat-form-field-outline {
260
+ border: 1px solid #00977D;
261
+ }
262
+
263
+ .mat-form-field-outline-thick,
264
+ .mat-form-field-outline {
265
+ border: 1px solid #8F9BB3;
266
+ border-radius: 12px;
267
+ top: 0;
268
+ }
269
+
270
+ .mat-form-field-outline {
271
+ .mat-form-field-outline-start,
272
+ .mat-form-field-outline-gap,
273
+ .mat-form-field-outline-end {
274
+ border: none;
275
+ }
276
+ }
277
+ }
278
+ }
279
+
280
+ &.mat-form-field-disabled {
281
+ .mat-form-field-flex {
282
+ &:hover .mat-form-field-outline,
283
+ .mat-form-field-outline {
284
+ background-color: #EFF2F2;
285
+ border-color: #ffffff;
286
+ }
287
+ }
288
+ }
289
+
290
+ .mat-form-field-infix {
291
+ border: none;
292
+ padding: 15px 0;
293
+
294
+ .mat-form-field-label-wrapper {
295
+ top: 0;
296
+ padding-top: 0;
297
+ display: flex;
298
+ align-items: center;
299
+ overflow: visible;
300
+
301
+ .mat-form-field-label {
302
+ top: initial;
303
+ margin-top: 0;
304
+ color: black;
305
+
306
+ .mat-placeholder-required {
307
+ color: red;
308
+ }
309
+ }
310
+ }
311
+ }
312
+
313
+ &.mat-form-field-should-float .mat-form-field-label {
314
+ transform: translateY(-30px) scale(0.8) !important;
315
+ width: 100% !important;
316
+ }
317
+ }
318
+
319
+ input::placeholder,
320
+ mat-form-field .mat-select-placeholder {
321
+ color: #A5A9B0 !important;
322
+ }
323
+
324
+ .mat-tab-label, .mat-tab-link {
325
+ color: #795548 !important;
326
+ }
327
+
328
+ .float_label mat-form-field.mat-form-field-should-float .mat-form-field-label {
329
+ transform: translateY(-40px) scale(1) !important;
330
+ }
331
+
332
+ .clickable mat-form-field {
333
+ &.mat-form-field-disabled {
334
+ .mat-form-field-flex {
335
+ &:hover .mat-form-field-outline,
336
+ .mat-form-field-outline {
337
+ background-color: white;
338
+ border-color: #8F9BB3;
339
+ }
340
+
341
+ .mat-input-element:disabled {
342
+ color: rgba(0, 0, 0, 0.87) !important;
343
+ }
344
+ }
345
+ }
346
+ }
347
+
348
+ cva-input.text_area .float_label mat-form-field.mat-form-field-should-float .mat-form-field-label {
349
+ transform: translateY(-60px) scale(1) !important;
350
+ }
351
+
352
+ // Table
353
+ .table-responsive {
354
+
355
+ table {
356
+ thead {
357
+
358
+ }
359
+
360
+ tbody {
361
+ tr {
362
+ &:nth-of-type(even) {
363
+ background-color: #F4F9FF;
364
+ }
365
+
366
+ &:hover {
367
+ background-color: #E9EFFD;
368
+ }
369
+ }
370
+ }
371
+
372
+ tfoot {
373
+
374
+ }
375
+ }
376
+
377
+ .mat-table {
378
+ background: transparent;
379
+ border: none;
380
+ border-radius: 5px;
381
+ box-shadow: none;
382
+
383
+ .mat-header-row {
384
+ background-color: transparent;
385
+
386
+ .mat-header-cell, .mat-header-cell .viewData, .mat-header-cell div {
387
+ color: black;
388
+ font-size: 16px;
389
+ font-weight: bold;
390
+ }
391
+ }
392
+
393
+ .mat-row {
394
+ background-color: white;
395
+
396
+ &:nth-of-type(even) {
397
+ background-color: #F4F9FF;
398
+ }
399
+
400
+ &:hover {
401
+ background-color: #E9EFFD;
402
+ }
403
+
404
+ &.parentRow0, &.childRow0 {
405
+ background-color: white;
406
+ }
407
+
408
+ &.parentRow1, &.childRow1 {
409
+ background-color: #F4F4F4;
410
+ }
411
+
412
+ .mat-cell {
413
+ &.mat-column-status {
414
+ width: 80px;
415
+ font-weight: bold;
416
+ }
417
+
418
+ .viewData {
419
+ color: black;
420
+ font-size: 16px;
421
+
422
+ &.pending {
423
+ color: $state-pending;
424
+ }
425
+
426
+ &.rejected {
427
+ color: $state-rejected;
428
+ }
429
+
430
+ &.approved {
431
+ color: $state-approved;
432
+ }
433
+
434
+ &.ongoing {
435
+ color: $state-ongoing;
436
+ }
437
+
438
+ &.closed {
439
+ color: $state-closed;
440
+ }
441
+
442
+ &.cancelled {
443
+ color: $state-cancelled;
444
+ }
445
+
446
+ &.delivering {
447
+ color: $state-delivering;
448
+ }
449
+
450
+ &.delivered {
451
+ color: $state-delivered;
452
+ }
453
+
454
+ &.confirmed {
455
+ color: $state-confirmed;
456
+ }
457
+
458
+ &.returned {
459
+ color: $state-returned;
460
+ }
461
+
462
+ &.waiting {
463
+ color: $state-waiting;
464
+ }
465
+
466
+ &.active {
467
+ color: $state-active;
468
+ }
469
+
470
+ &.inactive {
471
+ color: $state-inactive;
472
+ }
473
+
474
+ &.expired {
475
+ color: $state-expired;
476
+ }
477
+ }
478
+ }
479
+ }
480
+
481
+ .mat-footer-cell .viewData {
482
+ font-size: 16px;
483
+ }
484
+ }
485
+
486
+ &.fixed_header {
487
+ box-shadow: none;
488
+
489
+ thead {
490
+ .mat-header-cell {
491
+ background-color: white;
492
+ z-index: 1;
493
+ }
494
+ }
495
+
496
+ tbody {
497
+
498
+ }
499
+
500
+ tfoot {
501
+ &.mat-table-sticky {
502
+ background-color: white;
503
+
504
+ tr {
505
+ .mat-footer-cell {
506
+ background-color: white;
507
+ border-top: none;
508
+ border-bottom: none;
509
+ }
510
+
511
+ &:first-child {
512
+ .mat-footer-cell {
513
+ border-top: 1px solid #E9E9E9;
514
+ }
515
+ }
516
+ }
517
+ }
518
+ }
519
+ }
520
+
521
+ tr .mat-cell,
522
+ .mat-header-cell,
523
+ &.fixed_header tfoot.mat-table-sticky tr:last-child .mat-footer-cell {
524
+ border-bottom: 1px solid #E9E9E9;
525
+ }
526
+ }
527
+
528
+ app-policy-common-info .mat-table {
529
+ box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3) !important;
530
+ }
531
+
532
+ .label.item-focused {
533
+ color: #8BC34A !important;
534
+ }
535
+
536
+ .mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
537
+ color: #00977d;
538
+ }
539
+
540
+ .mat-tooltip {
541
+ background-color: #795548 !important;
542
+ }
543
+
544
+ .mat-input-element {
545
+ caret-color: black;
546
+ }
547
+
548
+ .uploadArea button {
549
+ background-color: #beffd8;
550
+ }
551
+
552
+ .resizer:before {
553
+ color: #8bc34a;
554
+ }
555
+
556
+ // Editor
557
+ quill-editor {
558
+ .ql-toolbar {
559
+ border: 1px solid rgba(0, 0, 0, 0.2);
560
+
561
+ .ql-picker.ql-expanded .ql-picker-label,
562
+ button:hover, button:focus, button:focus, button.ql-active, button.ql-active,
563
+ .ql-picker-label:hover, .ql-picker-label:hover, .ql-picker-label.ql-active, .ql-picker-label.ql-active,
564
+ .ql-picker-item:hover, .ql-picker-item:hover, .ql-picker-item.ql-selected, .ql-picker-item.ql-selected {
565
+ color: #ff9800;
566
+
567
+ .ql-stroke, .ql-stroke-miter {
568
+ stroke: #ff9800;
569
+ }
570
+ }
571
+
572
+ .ql-fill, .ql-stroke.ql-fill, .ql-stroke {
573
+ stroke: rgba(0, 0, 0, 0.87);
574
+ }
575
+
576
+ .ql-picker {
577
+ color: rgba(0, 0, 0, 0.87);
578
+ }
579
+ }
580
+
581
+ .ql-container {
582
+ height: auto;
583
+ }
584
+ }
585
+
586
+ .btn-sec {
587
+ .fixed_bottom {
588
+ &.left, &.right {
589
+ background-color: white;
590
+ }
591
+ }
592
+ }
593
+
594
+ .mat-expansion-panel {
595
+ background-color: white;
596
+ box-shadow: 0px 0px 2px #9E9E9E, 3px 2px 5px #9E9E9E !important
597
+ }
598
+
599
+ .mat-expansion-panel,
600
+ .mat-expansion-panel-header-description, .mat-expansion-indicator::after {
601
+ color: #795548;
602
+ }
603
+
604
+ .mat-expansion-panel-header {
605
+ background-color: #beffd8;
606
+ }
607
+
608
+ .mat-expansion-panel-header.mat-expanded:focus, .mat-expansion-panel-header.mat-expanded:hover,
609
+ .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
610
+ background-color: #beffd8;
611
+ }
612
+
613
+ .mat-badge-content {
614
+ color: white;
615
+ background-color: #4ac375;
616
+ }
617
+
618
+ // TablePagingRequestModel
619
+ mat-paginator {
620
+ font-size: 16px;
621
+ border-bottom-left-radius: 5px;
622
+ border-bottom-right-radius: 5px;
623
+
624
+ .mat-paginator-page-size .mat-select-trigger {
625
+ font-size: 16px !important;
626
+ }
627
+
628
+ .mat-icon-button {
629
+ line-height: 30px !important;
630
+ }
631
+
632
+ .mat-custom-page {
633
+ color: #4E4E4E !important;
634
+ font-size: 16px;
635
+
636
+ &:hover {
637
+ color: #3366FF !important;
638
+ }
639
+
640
+ &[disabled="disabled"] {
641
+ color: #3366FF !important;
642
+ }
643
+ }
644
+
645
+ .mat-mini-fab.mat-custom-page {
646
+ line-height: 40px;
647
+ }
648
+
649
+ .mat-focus-indicator {
650
+ color: #4E4E4E !important;
651
+ background-color: transparent !important;
652
+
653
+ &.mat-icon-button.mat-button-disabled,
654
+ &.mat-button.mat-button-disabled {
655
+ color: #b0b0b0 !important;
656
+ }
657
+ }
658
+
659
+ .mat-form-field-appearance-legacy .mat-form-field-underline {
660
+ background-color: #8BC34A;
661
+ bottom: 10px !important;
662
+ }
663
+ }
664
+
665
+ .go-to-page {
666
+ .mat-button-base {
667
+ color: $primary;
668
+ }
669
+ }
670
+
671
+ // Step
672
+ mat-horizontal-stepper {
673
+ .mat-horizontal-stepper-header-container {
674
+ border-top: 1px solid #e9ecef;
675
+ overflow: hidden;
676
+ place-content: space-evenly;
677
+
678
+ mat-step-header {
679
+ background: #FBFBFB;
680
+ width: 100%;
681
+ height: 60px;
682
+ display: flex;
683
+ place-content: center;
684
+ color: #fff;
685
+ overflow: visible !important;
686
+
687
+ .mat-step-icon {
688
+ background-color: #fff !important;
689
+ color: #333 !important;
690
+ font-weight: bold;
691
+ width: 32px;
692
+ height: 32px;
693
+ line-height: 36px;
694
+ border: 1px #aaa solid;
695
+ border-radius: 50%;
696
+
697
+ span {
698
+ color: #7A7A7A;
699
+ font-size: 18px;
700
+ font-weight: bold;
701
+ }
702
+ }
703
+
704
+ &:before {
705
+ content: "";
706
+ position: absolute;
707
+ left: 0;
708
+ bottom: 0;
709
+ width: 0;
710
+ height: 0;
711
+ border-left: 12px solid #FBFBFB;
712
+ border-top: 30px solid transparent !important;
713
+ border-bottom: 30px solid transparent;
714
+ }
715
+
716
+ &:after {
717
+ content: "";
718
+ position: absolute;
719
+ right: -11px;
720
+ bottom: 0;
721
+ width: 0;
722
+ height: 0;
723
+ border-left: 12px solid #FBFBFB;
724
+ border-top: 30px solid transparent !important;
725
+ border-bottom: 30px solid transparent;
726
+ }
727
+
728
+ &[aria-labelledby="completed"],
729
+ &[aria-selected="true"] {
730
+ background-color: #00977D !important;
731
+ }
732
+
733
+ &[aria-labelledby="completed"] .mat-step-label,
734
+ &[aria-selected="true"] .mat-step-label {
735
+ color: #fff !important;
736
+ font-size: 16px;
737
+ }
738
+
739
+ &[aria-labelledby="completed"]:after,
740
+ &[aria-selected="true"]:after {
741
+ border-left: 12px solid #00977D;
742
+ z-index: 1;
743
+ }
744
+
745
+ &[aria-labelledby="completed"]:hover,
746
+ &[aria-selected="true"]:hover {
747
+ background-color: #00977D;
748
+ }
749
+
750
+ &[aria-labelledby="completed"]:hover .mat-step-label,
751
+ &[aria-selected="true"]:hover .mat-step-label {
752
+ background-color: #00977D;
753
+ }
754
+
755
+ &:first-child:before {
756
+ display: none;
757
+ }
758
+
759
+ &:last-child:after {
760
+ display: none;
761
+ }
762
+
763
+ .-ripple:before {
764
+ content: "";
765
+ position: absolute;
766
+ width: 2px;
767
+ height: 60px;
768
+ background-color: #ccc;
769
+ transform: rotate(203deg);
770
+ top: 27px;
771
+ display: block;
772
+ }
773
+
774
+ .-ripple:after {
775
+ content: "";
776
+ position: absolute;
777
+ width: 2px;
778
+ height: 60px;
779
+ background-color: #ccc;
780
+ transform: rotate(158deg);
781
+ top: -28px;
782
+ display: block;
783
+ }
784
+
785
+ &:first-child .-ripple:before,
786
+ &:first-child .-ripple:after {
787
+ display: none;
788
+ }
789
+
790
+ .mat-stepper-horizontal-line {
791
+ display: none;
792
+ }
793
+
794
+ @media screen and (max-width: 767px) {
795
+ &[aria-selected="false"] {
796
+ .mat-step-label {
797
+ display: none;
798
+ }
799
+ }
800
+ }
801
+ }
802
+ }
803
+
804
+ .mat-horizontal-content-container {
805
+ padding: 0;
806
+ }
807
+ }
808
+
809
+ .mat-menu-panel .mat-checkbox-background,
810
+ .mat-menu-panel .mat-checkbox-frame {
811
+ border-radius: 50%;
812
+ }
813
+
814
+ .mat-checkbox-frame,
815
+ mat-pseudo-checkbox {
816
+ background-color: white;
817
+ border: 1px solid #A7A7A7;
818
+ border-radius: 4px;
819
+ }
820
+
821
+ .mat-checkbox-background {
822
+ border-radius: 4px;
823
+ }
824
+
825
+ .choose-area .mat-checkbox-checked .mat-checkbox-background {
826
+ background-color: #00977D !important;
827
+ }
828
+
829
+ mat-pseudo-checkbox.mat-pseudo-checkbox-checked {
830
+ background-color: #4CD964;
831
+ border: 1px solid #4CD964;
832
+ }
833
+
834
+ mat-pseudo-checkbox.mat-pseudo-checkbox-checked:after {
835
+ top: 3px;
836
+ left: 2px;
837
+ }
838
+
839
+ .breadcrumb {
840
+
841
+ a {
842
+ font-size: 24px;
843
+ color: #A7A7A7;
844
+ }
845
+
846
+ i.fa-angle-right {
847
+ color: #0D1C2E;
848
+ font-size: 25px;
849
+ font-weight: 400;
850
+ }
851
+
852
+ .separator {
853
+ font-size: 24px;
854
+ }
855
+
856
+ .currentAction {
857
+ font-size: 24px;
858
+ color: #222222;
859
+ }
860
+ }
861
+
862
+ // ACbox
863
+ .acbox {
864
+ background-color: white;
865
+ }
866
+
867
+ .group_title {
868
+ font-size: 18px;
869
+ font-weight: bold;
870
+ margin-bottom: 20px;
871
+ }
872
+
873
+ .group_content {
874
+ color: #7C7C7C;
875
+ margin-bottom: 40px;
876
+ }
877
+
878
+ .field_name {
879
+ color: #222222;
880
+ font-size: 16px;
881
+ font-weight: 600;
882
+ }
883
+
884
+ .field_content {
885
+ color: #7C7C7C;
886
+ font-size: 16px;
887
+ }
888
+
889
+ cva-flat-tree .collapse-expand-all {
890
+ font-size: 18px;
891
+ font-weight: 500;
892
+ color: #00977D;
893
+ }
894
+
895
+ // checkbox
896
+ mat-checkbox {
897
+ &.mat-checkbox-disabled {
898
+ .mat-checkbox-background {
899
+ background-color: #eff2f2;
900
+ }
901
+ }
902
+ }
903
+ }
904
+
905
+ body.default {
906
+ background: #F4F9FF;
907
+ color: black;
908
+ font-size: 16px;
909
+ font-weight: 400;
910
+ }
911
+
912
+ .default .mat-tab-group.mat-primary .mat-ink-bar, .default .zeus .mat-tab-group.mat-toolbar .mat-ink-bar, .zeus .default .mat-tab-group.mat-toolbar .mat-ink-bar, .default .hera .mat-tab-group.mat-toolbar .mat-ink-bar, .hera .default .mat-tab-group.mat-toolbar .mat-ink-bar, .default .mat-tab-nav-bar.mat-primary .mat-ink-bar, .default .zeus .mat-tab-nav-bar.mat-toolbar .mat-ink-bar, .zeus .default .mat-tab-nav-bar.mat-toolbar .mat-ink-bar, .default .hera .mat-tab-nav-bar.mat-toolbar .mat-ink-bar, .hera .default .mat-tab-nav-bar.mat-toolbar .mat-ink-bar {
913
+ background-color: #beffd8;
914
+ }
915
+ .default .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .default .athena .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .athena .default .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .default .mat-checkbox-checked.mat-accent .mat-checkbox-background, .default .athena .mat-checkbox-checked.mat-toolbar .mat-checkbox-background, .athena .default .mat-checkbox-checked.mat-toolbar .mat-checkbox-background,
916
+ .default .mat-primary .mat-pseudo-checkbox-checked, .default .zeus .mat-toolbar .mat-pseudo-checkbox-checked, .zeus .default .mat-toolbar .mat-pseudo-checkbox-checked, .default .hera .mat-toolbar .mat-pseudo-checkbox-checked, .hera .default .mat-toolbar .mat-pseudo-checkbox-checked, .default .mat-primary .mat-pseudo-checkbox-indeterminate, .default .zeus .mat-toolbar .mat-pseudo-checkbox-indeterminate, .zeus .default .mat-toolbar .mat-pseudo-checkbox-indeterminate, .default .hera .mat-toolbar .mat-pseudo-checkbox-indeterminate, .hera .default .mat-toolbar .mat-pseudo-checkbox-indeterminate,
917
+ .default .hera .mat-checkbox-checked.mat-toolbar .mat-checkbox-background, .default .hera .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .default .mat-checkbox-checked.mat-primary .mat-checkbox-background, .default .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .default .zeus .mat-checkbox-checked.mat-toolbar .mat-checkbox-background, .default .zeus .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .hera .default .mat-checkbox-checked.mat-toolbar .mat-checkbox-background, .hera .default .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .zeus .default .mat-checkbox-checked.mat-toolbar .mat-checkbox-background, .zeus .default .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background {
918
+ background-color: #4CD964;
919
+ }
920
+
921
+ .default .mat-radio-outer-circle {
922
+ border: 1px solid #D4D4D6;
923
+ background-color: #F5F5F5;
924
+ }
925
+
926
+ .default .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle, .default .athena .mat-radio-button.mat-radio-checked.mat-toolbar .mat-radio-outer-circle, .athena .default .mat-radio-button.mat-radio-checked.mat-toolbar .mat-radio-outer-circle {
927
+ border-color: #00977D;
928
+ }
929
+
930
+ .default .mat-radio-button.mat-accent .mat-radio-inner-circle, .default .athena .mat-radio-button.mat-toolbar .mat-radio-inner-circle, .athena .default .mat-radio-button.mat-toolbar .mat-radio-inner-circle, .default .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .default .athena .mat-radio-button.mat-toolbar .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .athena .default .mat-radio-button.mat-toolbar .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .default .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .default .athena .mat-radio-button.mat-radio-checked.mat-toolbar .mat-radio-persistent-ripple, .athena .default .mat-radio-button.mat-radio-checked.mat-toolbar .mat-radio-persistent-ripple, .default .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple, .default .athena .mat-radio-button.mat-toolbar:active .mat-radio-persistent-ripple, .athena .default .mat-radio-button.mat-toolbar:active .mat-radio-persistent-ripple {
931
+ background-color: #00977D;
932
+ }
933
+
934
+ @media screen and (max-width: 767px) {
935
+ .default .topbar_content {
936
+ background-color: transparent;
937
+ box-shadow: none !important;
938
+ }
939
+ }