@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,1600 @@
1
+ @import '~@angular/material/theming';
2
+
3
+ @font-face {
4
+ font-family: "Exo";
5
+ src: url("./../fonts/Exo-Regular.ttf") format('truetype');
6
+ font-display: swap;
7
+ }
8
+
9
+ body.hera {
10
+ background: rgb(82,78,78);
11
+ background: linear-gradient(90deg, rgba(82,78,78,1) 0%, rgba(101,81,81,1) 50%, rgba(97,97,97,1) 100%);
12
+ background-repeat: no-repeat;
13
+ background-attachment: fixed;
14
+ }
15
+
16
+ .hera {
17
+ body, fieldset, .mat-table, .breadcrumb, .mat-list-item, mat-form-field, button {
18
+ font-family: "Exo", sans-serif !important;
19
+ }
20
+
21
+ $white: #ffffff;
22
+ $white-hover: #ffffff99;
23
+ $white-disabled: #ffffff80;
24
+ $primary: #000000;
25
+ $primary-hover: #00000099;
26
+ $primary-active: #000000;
27
+ $primary-disabled: #00000080;
28
+ $secondary: #4c4f54;
29
+ $secondary-hover: #4c4f5499;
30
+ $secondary-active: #343639;
31
+ $secondary-disabled: #868e9680;
32
+ $info: #4799eb;
33
+ $info-hover: #4799eb99;
34
+ $info-active: #1a80e6;
35
+ $info-disabled: #4799eb80;
36
+ $danger: #d16767;
37
+ $danger-hover: #d1676799;
38
+ $danger-active: #c54040;
39
+ $danger-disabled: #d1676780;
40
+ $approve: #45a164;
41
+ $approve-hover: #45a16499;
42
+ $approve-active: #367d4e;
43
+ $approve-disabled: #45a16480;
44
+ $state-pending: #ffd500;
45
+ $state-rejected: #fe7096;
46
+ $state-approved: #07cdae;
47
+ $state-ongoing: #047edf;
48
+ $state-closed: #3e4b5b;
49
+ $state-cancelled: #FF645C;
50
+ $state-delivering: #acaccc;
51
+ $state-delivered: #4CD964;
52
+ $state-confirmed: #9a55ff;
53
+ $state-returned: #7b5279;
54
+ $state-waiting: #b58276;
55
+ $state-active: #02AC45;
56
+ $state-expired: #A7A7A7;
57
+ $state-inactive: #6AC7B7;
58
+ $icon-disabled: #bfbfbf;
59
+
60
+ button {
61
+ i {
62
+ font-weight: 300;
63
+ }
64
+
65
+ // Button
66
+ &.mat-button {
67
+ height: 40px;
68
+ font-size: 13px;
69
+ margin-right: 5px;
70
+ border-width: 1px;
71
+ border-style: solid;
72
+ border-radius: 4px;
73
+
74
+ &.dashed {
75
+ border-style: dashed;
76
+ }
77
+
78
+ &.primary {
79
+ color: $white;
80
+ background-color: $primary;
81
+ border-color: $primary;
82
+
83
+ i {
84
+ color: $white;
85
+ }
86
+
87
+ &:focus, &:hover {
88
+ color: $white;
89
+ background-color: $primary-hover;
90
+ border-color: $primary-hover;
91
+ }
92
+
93
+ &:active {
94
+ color: $white;
95
+ background-color: $primary-active;
96
+ border-color: $primary-active;
97
+ }
98
+
99
+ &[disabled] {
100
+ color: $white;
101
+ background-color: $primary-disabled;
102
+ border-color: $primary-disabled;
103
+ }
104
+
105
+ &.outline {
106
+ color: $white;
107
+ background-color: transparent;
108
+ border-color: $primary;
109
+
110
+ i {
111
+ color: $white;
112
+ }
113
+
114
+ &:focus, &:hover {
115
+ color: $white-hover;
116
+ background-color: transparent;
117
+ border-color: $primary;
118
+
119
+ i {
120
+ color: $white-hover;
121
+ }
122
+ }
123
+
124
+ &:active {
125
+ color: $white;
126
+ background-color: transparent;
127
+ border-color: $primary;
128
+
129
+ i {
130
+ color: $white;
131
+ }
132
+ }
133
+
134
+ &[disabled] {
135
+ color: $white-disabled;
136
+ background-color: transparent;
137
+ border-color: $white-disabled;
138
+
139
+ i {
140
+ color: $white-disabled;
141
+ }
142
+ }
143
+ }
144
+
145
+ &.dashed {
146
+ color: $white;
147
+ background-color: transparent;
148
+ border-color: $primary;
149
+
150
+ i {
151
+ color: $white;
152
+ }
153
+
154
+ &:focus, &:hover {
155
+ color: $white-hover;
156
+ background-color: transparent;
157
+ border-color: $primary-hover;
158
+
159
+ i {
160
+ color: $white-hover;
161
+ }
162
+ }
163
+
164
+ &:active {
165
+ color: $white;
166
+ background-color: transparent;
167
+ border-color: $primary-active;
168
+
169
+ i {
170
+ color: $white;
171
+ }
172
+ }
173
+
174
+ &[disabled] {
175
+ color: $white-disabled;
176
+ background-color: transparent;
177
+ border-color: $primary-disabled;
178
+
179
+ i {
180
+ color: $white-disabled;
181
+ }
182
+ }
183
+ }
184
+ }
185
+
186
+ &.secondary {
187
+ color: $white;
188
+ background-color: $secondary;
189
+ border-color: $secondary;
190
+
191
+ i {
192
+ color: $white;
193
+ }
194
+
195
+ &:focus, &:hover {
196
+ color: $white;
197
+ background-color: $secondary-hover;
198
+ border-color: $secondary-hover;
199
+ }
200
+
201
+ &:active {
202
+ color: $white;
203
+ background-color: $secondary-active;
204
+ border-color: $secondary-active;
205
+ }
206
+
207
+ &[disabled] {
208
+ color: $white;
209
+ background-color: $secondary-disabled;
210
+ border-color: $secondary-disabled;
211
+ }
212
+
213
+ &.outline {
214
+ color: $secondary;
215
+ background-color: transparent;
216
+ border-color: $secondary;
217
+
218
+ i {
219
+ color: $secondary;
220
+ }
221
+
222
+ &:focus, &:hover {
223
+ color: $secondary-hover;
224
+ background-color: transparent;
225
+ border-color: $secondary-hover;
226
+
227
+ i {
228
+ color: $secondary-hover;
229
+ }
230
+ }
231
+
232
+ &:active {
233
+ color: $secondary;
234
+ background-color: transparent;
235
+ border-color: $secondary;
236
+
237
+ i {
238
+ color: $secondary;
239
+ }
240
+ }
241
+
242
+ &[disabled] {
243
+ color: $secondary-disabled;
244
+ background-color: transparent;
245
+ border-color: $secondary-disabled;
246
+
247
+ i {
248
+ color: $secondary-disabled;
249
+ }
250
+ }
251
+ }
252
+
253
+ &.dashed {
254
+ color: $secondary;
255
+ background-color: transparent;
256
+ border-color: $secondary;
257
+
258
+ i {
259
+ color: $secondary;
260
+ }
261
+
262
+ &:focus, &:hover {
263
+ color: $secondary-hover;
264
+ background-color: transparent;
265
+ border-color: $secondary-hover;
266
+
267
+ i {
268
+ color: $secondary-hover;
269
+ }
270
+ }
271
+
272
+ &:active {
273
+ color: $white;
274
+ background-color: transparent;
275
+ border-color: $secondary-active;
276
+
277
+ i {
278
+ color: $white;
279
+ }
280
+ }
281
+
282
+ &[disabled] {
283
+ color: $secondary-disabled;
284
+ background-color: transparent;
285
+ border-color: $secondary-disabled;
286
+
287
+ i {
288
+ color: $secondary-disabled;
289
+ }
290
+ }
291
+ }
292
+ }
293
+
294
+ &.gray {
295
+ color: $white;
296
+ background-color: #7A7A7A;
297
+ border-color: #7A7A7A;
298
+
299
+ i {
300
+ color: $white;
301
+ }
302
+
303
+ &:focus, &:hover {
304
+ color: $white;
305
+ background-color: #67676799;
306
+ border-color: #67676799;
307
+ }
308
+
309
+ &:active {
310
+ color: $white;
311
+ background-color: #F3A101;
312
+ border-color: #F3A101;
313
+ }
314
+
315
+ &[disabled] {
316
+ color: $white;
317
+ background-color: #FFA90380;
318
+ border-color: #FFA90380;
319
+ }
320
+
321
+ &.outline {
322
+ color: #7A7A7A;
323
+ background-color: $white;
324
+ border-color: #7A7A7A;
325
+
326
+ i {
327
+ color: #7A7A7A;
328
+ }
329
+
330
+ &:focus, &:hover {
331
+ color: $white;
332
+ background-color: #A7A7A7;
333
+ border-color: #A7A7A7;
334
+
335
+ i {
336
+ color: $white;
337
+ }
338
+ }
339
+
340
+ &:active {
341
+ color: $white;
342
+ background-color: #7A7A7A;
343
+ border-color: #7A7A7A;
344
+
345
+ i {
346
+ color: $white;
347
+ }
348
+ }
349
+
350
+ &[disabled] {
351
+ color: #7A7A7A80;
352
+ background-color: $white-disabled;
353
+ border-color: #7A7A7A80;
354
+
355
+ i {
356
+ color: #7A7A7A80;
357
+ }
358
+ }
359
+ }
360
+
361
+ &.dashed {
362
+ color: #FFBE41;
363
+ background-color: $white;
364
+ border-color: #FFBE41;
365
+
366
+ i {
367
+ color: #FFBE41;
368
+ }
369
+
370
+ &:focus, &:hover {
371
+ color: #FFBE4199;
372
+ background-color: $white-hover;
373
+ border-color: #FFBE4199;
374
+
375
+ i {
376
+ color: #FFBE4199;
377
+ }
378
+ }
379
+
380
+ &:active {
381
+ color: $white;
382
+ background-color: #FFBE41;
383
+ border-color: #FFBE41;
384
+
385
+ i {
386
+ color: $white;
387
+ }
388
+ }
389
+
390
+ &[disabled] {
391
+ color: #FFBE4180;
392
+ background-color: $white-disabled;
393
+ border-color: #FFBE4180;
394
+
395
+ i {
396
+ color: #FFBE4180;
397
+ }
398
+ }
399
+ }
400
+ }
401
+
402
+ &.info {
403
+ color: $white;
404
+ background-color: $info;
405
+ border-color: $info;
406
+
407
+ i {
408
+ color: $white;
409
+ }
410
+
411
+ &:focus, &:hover {
412
+ color: $white;
413
+ background-color: $info-hover;
414
+ border-color: $info-hover;
415
+ }
416
+
417
+ &:active {
418
+ color: $white;
419
+ background-color: $info-active;
420
+ border-color: $info-active;
421
+ }
422
+
423
+ &[disabled] {
424
+ color: $white;
425
+ background-color: $info-disabled;
426
+ border-color: $info-disabled;
427
+ }
428
+
429
+ &.outline {
430
+ color: $info;
431
+ background-color: $white;
432
+ border-color: $info;
433
+
434
+ i {
435
+ color: $info;
436
+ }
437
+
438
+ &:focus, &:hover {
439
+ color: $white;
440
+ background-color: $info;
441
+ border-color: $info;
442
+
443
+ i {
444
+ color: $white;
445
+ }
446
+ }
447
+
448
+ &:active {
449
+ color: $white;
450
+ background-color: $info-active;
451
+ border-color: $info-active;
452
+
453
+ i {
454
+ color: $white;
455
+ }
456
+ }
457
+
458
+ &[disabled] {
459
+ color: $info-disabled;
460
+ background-color: $white-disabled;
461
+ border-color: $info-disabled;
462
+
463
+ i {
464
+ color: $info-disabled;
465
+ }
466
+ }
467
+ }
468
+
469
+ &.dashed {
470
+ color: $info;
471
+ background-color: $white;
472
+ border-color: $info;
473
+
474
+ i {
475
+ color: $info;
476
+ }
477
+
478
+ &:focus, &:hover {
479
+ color: $info-hover;
480
+ background-color: $white-hover;
481
+ border-color: $info-hover;
482
+
483
+ i {
484
+ color: $info-hover;
485
+ }
486
+ }
487
+
488
+ &:active {
489
+ color: $info-active;
490
+ background-color: $white;
491
+ border-color: $info-active;
492
+
493
+ i {
494
+ color: $info-active;
495
+ }
496
+ }
497
+
498
+ &[disabled] {
499
+ color: $info-disabled;
500
+ background-color: $white-disabled;
501
+ border-color: $info-disabled;
502
+
503
+ i {
504
+ color: $info-disabled;
505
+ }
506
+ }
507
+ }
508
+ }
509
+
510
+ &.danger {
511
+ color: $white;
512
+ background-color: $danger;
513
+ border-color: $danger;
514
+
515
+ i {
516
+ color: $white;
517
+ }
518
+
519
+ &:focus, &:hover {
520
+ color: $white;
521
+ background-color: $danger-hover;
522
+ border-color: $danger-hover;
523
+ }
524
+
525
+ &:active {
526
+ color: $white;
527
+ background-color: $danger-active;
528
+ border-color: $danger-active;
529
+ }
530
+
531
+ &[disabled] {
532
+ color: $white-disabled;
533
+ background-color: $danger-disabled;
534
+ border-color: $danger-disabled;
535
+ }
536
+
537
+ &.outline {
538
+ color: $danger;
539
+ background-color: $white;
540
+ border-color: $danger;
541
+
542
+ i {
543
+ color: $danger;
544
+ }
545
+
546
+ &:focus, &:hover {
547
+ color: $white;
548
+ background-color: $danger;
549
+ border-color: $danger;
550
+
551
+ i {
552
+ color: $white;
553
+ }
554
+ }
555
+
556
+ &:active {
557
+ color: $white;
558
+ background-color: $danger-active;
559
+ border-color: $danger-active;
560
+
561
+ i {
562
+ color: $white;
563
+ }
564
+ }
565
+
566
+ &[disabled] {
567
+ color: $danger-disabled;
568
+ background-color: $white-disabled;
569
+ border-color: $danger-disabled;
570
+
571
+ i {
572
+ color: $danger-disabled;
573
+ }
574
+ }
575
+ }
576
+
577
+ &.dashed {
578
+ color: $danger;
579
+ background-color: $white;
580
+ border-color: $danger;
581
+
582
+ i {
583
+ color: $danger;
584
+ }
585
+
586
+ &:focus, &:hover {
587
+ color: $danger-hover;
588
+ background-color: $white-hover;
589
+ border-color: $danger-hover;
590
+
591
+ i {
592
+ color: $danger;
593
+ }
594
+ }
595
+
596
+ &:active {
597
+ color: $danger-active;
598
+ background-color: $white;
599
+ border-color: $danger-active;
600
+
601
+ i {
602
+ color: $danger;
603
+ }
604
+ }
605
+
606
+ &[disabled] {
607
+ color: $danger-disabled;
608
+ background-color: $white-disabled;
609
+ border-color: $danger-disabled;
610
+
611
+ i {
612
+ color: $danger-disabled;
613
+ }
614
+ }
615
+ }
616
+ }
617
+
618
+ &.approve {
619
+ color: $white;
620
+ background-color: #02AC45;
621
+ border-color: #02AC45;
622
+
623
+ i {
624
+ color: $white;
625
+ }
626
+
627
+ &:focus, &:hover {
628
+ color: $white;
629
+ background-color: #0CBF53;
630
+ border-color: #0CBF53;
631
+ }
632
+
633
+ &:active {
634
+ color: $white;
635
+ background-color: #029E40;
636
+ border-color: #029E40;
637
+ }
638
+
639
+ &[disabled] {
640
+ color: $white-disabled;
641
+ background-color: #02AC4580;
642
+ border-color: #02AC4580;
643
+
644
+ i {
645
+ color: $white-disabled;
646
+ }
647
+ }
648
+ }
649
+ }
650
+
651
+ // Icon
652
+ &.mat-icon-button {
653
+ background-color: transparent;
654
+ height: 32px;
655
+ width: 32px;
656
+ border-radius: 50%;
657
+ line-height: initial;
658
+
659
+ i, mat-icon {
660
+ font-size: 14px;
661
+ font-weight: 900;
662
+ }
663
+
664
+ &.primary {
665
+ background-color: #DBF7E0;
666
+
667
+ i, mat-icon {
668
+ color: $primary;
669
+ }
670
+
671
+ &:focus, &:hover {
672
+ border: 1px solid $primary;
673
+
674
+ i, mat-icon {
675
+ color: $primary;
676
+ }
677
+ }
678
+
679
+ &[disabled] {
680
+ background-color: transparent;
681
+ border: none;
682
+
683
+ i, mat-icon {
684
+ color: $icon-disabled;
685
+ }
686
+ }
687
+ }
688
+
689
+ &.secondary {
690
+ background-color: #FFEFD2;
691
+
692
+ i, mat-icon {
693
+ color: $secondary;
694
+ }
695
+
696
+ &:focus, &:hover {
697
+ border: 1px solid $secondary;
698
+
699
+ i, mat-icon {
700
+ color: $secondary;
701
+ }
702
+ }
703
+
704
+ &[disabled] {
705
+ background-color: transparent;
706
+ border: none;
707
+
708
+ i, mat-icon {
709
+ color: $icon-disabled;
710
+ }
711
+ }
712
+ }
713
+
714
+ &.gray {
715
+ background-color: #676767;
716
+
717
+ i, mat-icon {
718
+ color: #7A7A7A;
719
+ }
720
+
721
+ &:focus, &:hover {
722
+ border: 1px solid #676767;
723
+
724
+ i, mat-icon {
725
+ color: #676767;
726
+ }
727
+ }
728
+
729
+ &[disabled] {
730
+ background-color: transparent;
731
+ border: none;
732
+
733
+ i, mat-icon {
734
+ color: $icon-disabled;
735
+ }
736
+ }
737
+ }
738
+
739
+ &.info {
740
+ background-color: #E6F2FC;
741
+
742
+ i, mat-icon {
743
+ color: $info;
744
+ }
745
+
746
+ &:focus, &:hover {
747
+ border: 1px solid $info;
748
+
749
+ i, mat-icon {
750
+ color: $info;
751
+ }
752
+ }
753
+
754
+ &[disabled] {
755
+ background-color: transparent;
756
+ border: none;
757
+
758
+ i, mat-icon {
759
+ color: $icon-disabled;
760
+ }
761
+ }
762
+ }
763
+
764
+ &.danger {
765
+ background-color: #FFF0EF;
766
+
767
+ i, mat-icon {
768
+ color: $danger;
769
+ }
770
+
771
+ &:focus, &:hover {
772
+ border: 1px solid $danger;
773
+
774
+ i, mat-icon {
775
+ color: $danger;
776
+ }
777
+ }
778
+
779
+ &[disabled] {
780
+ background-color: transparent;
781
+ border: none;
782
+
783
+ i, mat-icon {
784
+ color: $icon-disabled;
785
+ }
786
+ }
787
+ }
788
+
789
+ &.approve {
790
+ background-color: #DBF7E0;
791
+
792
+ i, mat-icon {
793
+ color: $approve;
794
+ }
795
+
796
+ &:focus, &:hover {
797
+ border: 1px solid $approve;
798
+
799
+ i, mat-icon {
800
+ color: $approve;
801
+ }
802
+ }
803
+
804
+ &[disabled] {
805
+ background-color: transparent;
806
+ border: none;
807
+
808
+ i, mat-icon {
809
+ color: $icon-disabled;
810
+ }
811
+ }
812
+ }
813
+ }
814
+
815
+ // State
816
+ &.mat-state-button {
817
+ font-size: 11px;
818
+ font-weight: bold;
819
+ height: 24px;
820
+ min-width: 100px;
821
+ border-radius: 15px;
822
+ margin-left: 5px;
823
+ border: none;
824
+ outline: none;
825
+
826
+ &.pending {
827
+ color: $white;
828
+ background-color: $state-pending;
829
+
830
+ &.rectangle {
831
+ color: $state-pending;
832
+ background-color: transparent;
833
+ }
834
+ }
835
+
836
+ &.rejected {
837
+ color: $white;
838
+ background-color: $state-rejected;
839
+
840
+ &.rectangle {
841
+ color: $state-rejected;
842
+ background-color: transparent;
843
+ }
844
+ }
845
+
846
+ &.approved {
847
+ color: $white;
848
+ background-color: $state-approved;
849
+
850
+ &.rectangle {
851
+ color: $state-approved;
852
+ background-color: transparent;
853
+ }
854
+ }
855
+
856
+ &.ongoing {
857
+ color: $white;
858
+ background-color: $state-ongoing;
859
+
860
+ &.rectangle {
861
+ color: $state-ongoing;
862
+ background-color: transparent;
863
+ }
864
+ }
865
+
866
+ &.closed {
867
+ color: $white;
868
+ background-color: $state-closed;
869
+
870
+ &.rectangle {
871
+ color: $state-closed;
872
+ background-color: transparent;
873
+ }
874
+ }
875
+
876
+ &.cancelled {
877
+ color: $white;
878
+ background-color: $state-cancelled;
879
+
880
+ &.rectangle {
881
+ color: $state-cancelled;
882
+ background-color: transparent;
883
+ }
884
+ }
885
+
886
+ &.delivering {
887
+ color: $white;
888
+ background-color: $state-delivering;
889
+
890
+ &.rectangle {
891
+ color: $state-delivering;
892
+ background-color: transparent;
893
+ }
894
+ }
895
+
896
+ &.delivered {
897
+ color: $white;
898
+ background-color: $state-delivered;
899
+
900
+ &.rectangle {
901
+ color: $state-delivered;
902
+ background-color: transparent;
903
+ }
904
+ }
905
+
906
+ &.confirmed {
907
+ color: $white;
908
+ background-color: $state-confirmed;
909
+
910
+ &.rectangle {
911
+ color: $state-confirmed;
912
+ background-color: transparent;
913
+ }
914
+ }
915
+
916
+ &.returned {
917
+ color: $white;
918
+ background-color: $state-returned;
919
+
920
+ &.rectangle {
921
+ color: $state-returned;
922
+ background-color: transparent;
923
+ }
924
+ }
925
+
926
+ &.waiting {
927
+ color: $white;
928
+ background-color: $state-waiting;
929
+
930
+ &.rectangle {
931
+ color: $state-waiting;
932
+ background-color: transparent;
933
+ }
934
+ }
935
+
936
+ &.active {
937
+ color: $white;
938
+ background-color: $state-active;
939
+
940
+ &.rectangle {
941
+ color: $state-active;
942
+ background-color: transparent;
943
+ }
944
+ }
945
+
946
+ &.expired {
947
+ color: $white;
948
+ background-color: $state-expired;
949
+
950
+ &.rectangle {
951
+ color: $state-expired;
952
+ background-color: transparent;
953
+ }
954
+ }
955
+
956
+ &.inactive {
957
+ color: $white;
958
+ background-color: $state-inactive;
959
+
960
+ &.rectangle {
961
+ color: $state-inactive;
962
+ background-color: transparent;
963
+ }
964
+ }
965
+
966
+ &.rectangle:after {
967
+ content: "\f111";
968
+ font-family: "Font Awesome 5 Pro";
969
+ font-size: 10px;
970
+ position: relative;
971
+ top: -1px;
972
+ left: 5px;
973
+ }
974
+ }
975
+ }
976
+
977
+ .mat-toolbar {
978
+ background: rgb(0,0,0);
979
+ background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(66,66,66,1) 50%, rgba(50,60,68,1) 100%);
980
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333;
981
+ }
982
+
983
+ mat-sidenav {
984
+ background: rgb(0,0,0);
985
+ background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(66,66,66,1) 50%, rgba(50,60,68,1) 100%);
986
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333;
987
+ }
988
+
989
+ mat-sidenav-container {
990
+ background-color: transparent;
991
+ color: rgba(255,255,255,.87);
992
+ }
993
+
994
+ mat-sidenav-content {
995
+ background-color: transparent;
996
+ }
997
+
998
+ // MenuModel
999
+ app-menu-list-item {
1000
+ &[aria-expanded="true"] {
1001
+ background-color: rgba(255, 255, 255, 0.2);
1002
+ border-radius: 5px;
1003
+ }
1004
+
1005
+ .mat-list-item {
1006
+ height: auto;
1007
+ font-size: 13px;
1008
+ border-bottom: 1px dotted rgba(255,255,255,0.2);
1009
+
1010
+ &.expanded {
1011
+ border-bottom: none;
1012
+
1013
+ .mat-list-item {
1014
+ font-size: 13px;
1015
+ }
1016
+ }
1017
+
1018
+ .mat-list-item-content {
1019
+ color: #c2c2c2;
1020
+ }
1021
+
1022
+ .mat-icon {
1023
+ color: #c2c2c2;
1024
+ }
1025
+
1026
+ &:hover .mat-icon,
1027
+ &:hover .mat-list-item-content,
1028
+ &.active .mat-icon,
1029
+ &.active .mat-list-item-content {
1030
+ color: white;
1031
+ }
1032
+ }
1033
+
1034
+ app-menu-list-item {
1035
+ border-bottom: none;
1036
+
1037
+ .mat-list-item {
1038
+ padding: 0 !important;
1039
+ font-size: 13px;
1040
+
1041
+ .mat-list-item-content {
1042
+ border: none;
1043
+ }
1044
+
1045
+ .mat-icon {
1046
+ display: none;
1047
+ }
1048
+ }
1049
+ }
1050
+ }
1051
+
1052
+ // Table
1053
+ .table-responsive {
1054
+ .mat-table {
1055
+ border: none;
1056
+
1057
+ .mat-header-row {
1058
+ .mat-header-cell, .mat-header-cell .viewData, .mat-header-cell div {
1059
+ color: white;
1060
+ font-weight: bold;
1061
+ }
1062
+ }
1063
+
1064
+ .mat-row {
1065
+ &:nth-of-type(even) {
1066
+ background-color: #1e1e1e;
1067
+ }
1068
+
1069
+ &:hover {
1070
+ background-color: #3a3f42;
1071
+ }
1072
+
1073
+ &.parentRow0, &.childRow0 {
1074
+ background-color: #1e1e1e;
1075
+ }
1076
+
1077
+ &.parentRow1, &.childRow1 {
1078
+ background-color: #1e1e1e;
1079
+ }
1080
+
1081
+ .mat-cell {
1082
+ &.mat-column-status {
1083
+ width: 80px;
1084
+ font-weight: bold;
1085
+ }
1086
+
1087
+ .viewData {
1088
+ color: white;
1089
+
1090
+ &.pending {
1091
+ color: $state-pending;
1092
+ }
1093
+
1094
+ &.rejected {
1095
+ color: $state-rejected;
1096
+ }
1097
+
1098
+ &.approved {
1099
+ color: $state-approved;
1100
+ }
1101
+
1102
+ &.ongoing {
1103
+ color: $state-ongoing;
1104
+ }
1105
+
1106
+ &.closed {
1107
+ color: $state-closed;
1108
+ }
1109
+
1110
+ &.cancelled {
1111
+ color: $state-cancelled;
1112
+ }
1113
+
1114
+ &.delivering {
1115
+ color: $state-delivering;
1116
+ }
1117
+
1118
+ &.delivered {
1119
+ color: $state-delivered;
1120
+ }
1121
+
1122
+ &.confirmed {
1123
+ color: $state-confirmed;
1124
+ }
1125
+
1126
+ &.returned {
1127
+ color: $state-returned;
1128
+ }
1129
+
1130
+ &.waiting {
1131
+ color: $state-waiting;
1132
+ }
1133
+ }
1134
+ }
1135
+ }
1136
+
1137
+ .mat-footer-cell .viewData {
1138
+ font-size: 16px;
1139
+ }
1140
+
1141
+ .mat-row, .mat-header-row, .mat-footer-row, .mat-header-cell, .mat-cell, .mat-footer-cell {
1142
+ border-bottom: 1px solid #444444;
1143
+ }
1144
+
1145
+ .mat-cell, .mat-footer-cell {
1146
+ color: white;
1147
+ }
1148
+ }
1149
+
1150
+ &.fixed_header {
1151
+ box-shadow: none;
1152
+
1153
+ thead {
1154
+ .mat-header-cell {
1155
+ background-color: #1e1e1e;
1156
+ z-index: 1;
1157
+ }
1158
+ }
1159
+
1160
+ tbody {
1161
+
1162
+ }
1163
+
1164
+ tfoot {
1165
+ &.mat-table-sticky {
1166
+ background-color: #1e1e1e;
1167
+
1168
+ tr {
1169
+ .mat-footer-cell {
1170
+ border-top: none;
1171
+ border-bottom: none;
1172
+ }
1173
+
1174
+ &:first-child {
1175
+ .mat-footer-cell {
1176
+ border-top: 1px solid #444444;
1177
+ }
1178
+ }
1179
+ }
1180
+
1181
+ }
1182
+ }
1183
+ }
1184
+
1185
+ tr:last-child .mat-cell,
1186
+ .mat-header-cell,
1187
+ &.fixed_header tfoot.mat-table-sticky tr:last-child .mat-footer-cell {
1188
+ border-bottom: 1px solid #444444;
1189
+ }
1190
+ }
1191
+
1192
+ // Mat tab
1193
+ mat-tab-group {
1194
+ .mat-tab-header {
1195
+ margin-bottom: 5px;
1196
+ border-bottom: none;
1197
+
1198
+ .mat-tab-label-container {
1199
+ .mat-tab-list {
1200
+ .mat-tab-labels {
1201
+ .mat-tab-label {
1202
+ border-radius: 20px;
1203
+
1204
+ .mat-tab-label-content {
1205
+ background-color: rgba(0,0,0,0.4);
1206
+
1207
+ &:hover {
1208
+ background-color: #263238;
1209
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
1210
+ }
1211
+ }
1212
+
1213
+ &.mat-tab-label-active {
1214
+ .mat-tab-label-content {
1215
+ background-color: #263238;
1216
+ }
1217
+
1218
+ &:before {
1219
+ color:#F44336;
1220
+ top: 4px;
1221
+ left: 7px;
1222
+ }
1223
+ }
1224
+ }
1225
+ }
1226
+ }
1227
+ }
1228
+ }
1229
+
1230
+ .mat-tab-body-wrapper {
1231
+ .mat-tab-body {
1232
+ cva-multi-select-autocomplete .mat-form-field {
1233
+ background-color: transparent !important;
1234
+ }
1235
+ }
1236
+ }
1237
+
1238
+ .box-search {
1239
+ background-color:rgba(0, 0, 0, 0.2);
1240
+ }
1241
+
1242
+ .mat-ink-bar {
1243
+ background-color:#607D8B;
1244
+ }
1245
+ }
1246
+
1247
+ // TablePagingRequestModel
1248
+ mat-paginator {
1249
+ border-bottom-left-radius: 5px;
1250
+ border-bottom-right-radius: 5px;
1251
+
1252
+ .mat-paginator-page-size .mat-select-trigger {
1253
+ font-size: 14px !important;
1254
+ }
1255
+
1256
+ .mat-icon-button {
1257
+ line-height: 30px !important;
1258
+ }
1259
+
1260
+ .mat-custom-page {
1261
+ color: $secondary !important;
1262
+ font-size: 14px;
1263
+
1264
+ &:hover {
1265
+ color: $info !important;
1266
+ }
1267
+
1268
+ &[disabled="disabled"] {
1269
+ color: $info !important;
1270
+ }
1271
+ }
1272
+
1273
+ .mat-mini-fab.mat-custom-page {
1274
+ line-height: 40px;
1275
+ }
1276
+
1277
+ .mat-focus-indicator {
1278
+ color: white !important;
1279
+ background-color: transparent !important;
1280
+
1281
+ &.mat-icon-button.mat-button-disabled,
1282
+ &.mat-button.mat-button-disabled {
1283
+ color: $secondary !important;
1284
+ }
1285
+ }
1286
+
1287
+ .mat-form-field-appearance-legacy .mat-form-field-underline {
1288
+ background-color: white;
1289
+ bottom: 10px !important;
1290
+ }
1291
+ }
1292
+
1293
+ .go-to-page {
1294
+ .mat-button-base {
1295
+ color: $info;
1296
+ }
1297
+ }
1298
+
1299
+ // Form field
1300
+ mat-form-field {
1301
+ .mat-form-field-wrapper {
1302
+ .mat-form-field-flex {
1303
+
1304
+ &:focus .mat-form-field-outline,
1305
+ &:hover .mat-form-field-outline {
1306
+
1307
+ }
1308
+
1309
+ .mat-form-field-outline-thick,
1310
+ .mat-form-field-outline {
1311
+ border: 1px solid white;
1312
+ top: 0;
1313
+ }
1314
+
1315
+ .mat-form-field-outline {
1316
+ .mat-form-field-outline-start,
1317
+ .mat-form-field-outline-gap,
1318
+ .mat-form-field-outline-end {
1319
+ border: none;
1320
+ }
1321
+ }
1322
+ }
1323
+ }
1324
+
1325
+ &.mat-form-field-disabled {
1326
+ .mat-form-field-flex {
1327
+ &:hover .mat-form-field-outline,
1328
+ .mat-form-field-outline {
1329
+ color: #ccc;
1330
+ background-color: #ccc;
1331
+ border-color: #ccc;
1332
+ }
1333
+ }
1334
+ }
1335
+
1336
+ &.mat-focused {
1337
+ .mat-form-field-label {
1338
+ color:#ffa589 !important;
1339
+ }
1340
+ }
1341
+
1342
+ .mat-form-field-infix {
1343
+ border: none;
1344
+ padding: 15px 0;
1345
+
1346
+ .mat-form-field-label-wrapper {
1347
+ top: 0;
1348
+ padding-top: 0;
1349
+ display: flex;
1350
+ align-items: center;
1351
+ overflow: visible;
1352
+
1353
+ .mat-form-field-label {
1354
+ top: initial;
1355
+ margin-top: 0;
1356
+ }
1357
+ }
1358
+ }
1359
+
1360
+ &.mat-form-field-should-float .mat-form-field-label {
1361
+ transform: translateY(-30px) scale(0.8) !important;
1362
+ width: 100% !important;
1363
+ }
1364
+
1365
+ &.mat-form-field-appearance-outline {
1366
+ .mat-form-field-outline {
1367
+ color: rgba(255, 255, 255, 0.4) !important;
1368
+ }
1369
+
1370
+ .mat-form-field-outline-thick {
1371
+ color: rgba(255, 255, 255, 0.6) !important;
1372
+ }
1373
+
1374
+ &.mat-focused .mat-form-field-outline-thick {
1375
+ color: white;
1376
+ }
1377
+ }
1378
+
1379
+ .mat-datepicker-toggle button {
1380
+ margin-top: 4px;
1381
+ }
1382
+ }
1383
+
1384
+ .mat-tab-nav-bar.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-toolbar .mat-ink-bar {
1385
+ background-color:#607D8B;
1386
+ }
1387
+
1388
+ ::-webkit-scrollbar-thumb {
1389
+ background: #90a4ae !important;
1390
+ }
1391
+
1392
+ :root {
1393
+ scrollbar-color: rgb(96, 125, 139) rgb(31, 33, 35);
1394
+ }
1395
+
1396
+ a {
1397
+ color: #009688;
1398
+ }
1399
+
1400
+ a:hover {
1401
+ color: #00bcd4;
1402
+ }
1403
+
1404
+ .breadcrumb i.fa-home {
1405
+ color: #607d8b;
1406
+ }
1407
+
1408
+ .username i,
1409
+ .theme_select i,
1410
+ .theme_select:hover span,
1411
+ .breadcrumb i:not(.fa-home),
1412
+ .mat-tab-label,
1413
+ .breadcrumb a:hover {
1414
+ color:#9e9e9e !important;
1415
+ }
1416
+
1417
+ .mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
1418
+ color:#9E9E9E;
1419
+ }
1420
+
1421
+ .open_nav_button,
1422
+ .username span,
1423
+ .theme_select span
1424
+ {
1425
+ color:#607d8b;
1426
+ }
1427
+
1428
+ .breadcrumb span.currentAction {
1429
+ color: #b0bec5 !important;
1430
+ }
1431
+
1432
+ .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] {
1433
+ color: #605b5b;
1434
+ background-color: #ccccd5;
1435
+ }
1436
+
1437
+ .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 {
1438
+ background-color: #9a99ac;
1439
+ }
1440
+
1441
+ mat-table {
1442
+ border:none !important;
1443
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333 !important;
1444
+ }
1445
+
1446
+ mat-header-row {
1447
+ background-color:#1f2123 !important;
1448
+ }
1449
+
1450
+ mat-header-cell, mat-header-cell .viewData, mat-header-cell div {
1451
+ color:#607d8b;
1452
+ }
1453
+
1454
+ .searchFormGroup .form, .searchFormGroup .content {
1455
+ background-color:#424242;
1456
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333 !important;
1457
+ }
1458
+
1459
+ label.item-focused,
1460
+ .breadcrumb a {
1461
+ color:#607D8B !important;
1462
+ }
1463
+
1464
+ .mat-checkbox-inner-container {
1465
+ height:20px;
1466
+ width:20px;
1467
+ }
1468
+
1469
+ mat-table > mat-row:nth-of-type(even) {
1470
+ background-color: #263238 !important;
1471
+ }
1472
+
1473
+ fieldset {
1474
+ background-color:#424242;
1475
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333 !important;
1476
+ }
1477
+
1478
+ fieldset legend {
1479
+ color:#90a4ae !important;
1480
+ background-color:transparent;
1481
+ }
1482
+
1483
+ .mat-primary .mat-option.mat-selected:not(.mat-option-disabled), .mat-toolbar .mat-option.mat-selected:not(.mat-option-disabled) {
1484
+ color:#78909C;
1485
+ }
1486
+
1487
+ h1, h2, h3, h4, h5, h6, h7 {
1488
+ color: #D4DEE1;
1489
+ }
1490
+
1491
+ .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-indeterminate.mat-toolbar .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-toolbar .mat-checkbox-background {
1492
+ background-color:#9E9E9E;
1493
+ }
1494
+
1495
+ .mat-primary .mat-pseudo-checkbox-checked, .mat-toolbar .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate, .mat-toolbar .mat-pseudo-checkbox-indeterminate {
1496
+ background-color:#9E9E9E;
1497
+ }
1498
+
1499
+ .mat-input-element {
1500
+ caret-color: white;
1501
+ }
1502
+
1503
+ .uploadArea button {
1504
+ background-color:#263238;
1505
+ border-radius: 0;
1506
+ }
1507
+
1508
+ .resizer:before {
1509
+ color:#607d8b;
1510
+ }
1511
+
1512
+ .ql-snow .ql-picker {
1513
+ color: white;
1514
+ }
1515
+
1516
+ .ql-toolbar.ql-snow {
1517
+ border: 1px solid rgba(255, 255, 255, 0.4);
1518
+ }
1519
+
1520
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label,
1521
+ .ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
1522
+ color: #607d8b;
1523
+ }
1524
+
1525
+ .ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill ,
1526
+ .ql-snow .ql-stroke {
1527
+ stroke: white;
1528
+ }
1529
+
1530
+ .ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow .ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button:focus .ql-stroke, .ql-snow .ql-toolbar button:focus .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke, .ql-snow .ql-toolbar button.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow.ql-toolbar button:hover .ql-stroke-miter, .ql-snow .ql-toolbar button:hover .ql-stroke-miter, .ql-snow.ql-toolbar button:focus .ql-stroke-miter, .ql-snow .ql-toolbar button:focus .ql-stroke-miter, .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
1531
+ stroke: #607d8b;
1532
+ }
1533
+
1534
+ mat-expansion-panel {
1535
+ background-color: #2a2a2a;
1536
+ box-shadow: none !important;
1537
+ color: white;
1538
+
1539
+ .mat-expansion-panel-header {
1540
+ background-color: #1e1e1e;
1541
+
1542
+ .mat-content {
1543
+ .mat-expansion-panel-header-title {
1544
+
1545
+ }
1546
+
1547
+ .mat-expansion-panel-header-description {
1548
+ .mat-icon {
1549
+
1550
+ }
1551
+ }
1552
+ }
1553
+
1554
+ .mat-expansion-indicator {
1555
+
1556
+ }
1557
+ }
1558
+
1559
+ .mat-expansion-panel-content {
1560
+ .mat-expansion-panel-body {
1561
+
1562
+ }
1563
+ }
1564
+
1565
+ &.mat-expanded {
1566
+ .mat-expansion-panel-header {
1567
+ border-bottom-left-radius: 0;
1568
+ border-bottom-right-radius: 0;
1569
+ }
1570
+ }
1571
+ }
1572
+
1573
+ .mat-expansion-panel-header.mat-expanded:focus, .mat-expansion-panel-header.mat-expanded:hover,
1574
+ .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
1575
+ background-color: #1e1e1e;
1576
+ }
1577
+
1578
+ .mat-badge-content {
1579
+ color: white;
1580
+ background-color: #607D8B;
1581
+ }
1582
+
1583
+ .acbox {
1584
+ background-color: #2a2a2a;
1585
+ border-radius: 5px;
1586
+ box-shadow: 0px 0px 2px #333333, 3px 2px 5px #333333;
1587
+ }
1588
+
1589
+ .mat-select-panel {
1590
+ background-color: #2a2a2a;
1591
+ box-shadow: 0px 0px 2px #000000, 3px 2px 5px #000000;
1592
+ color: white;
1593
+ }
1594
+ }
1595
+
1596
+ @media screen and (max-width: 767px) {
1597
+ .hera .table-responsive.fixed_header mat-header-cell {
1598
+ background-color: #1f2123 !important;
1599
+ }
1600
+ }