bpm-core 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +5 -6
- package/esm2022/lib/components/app-component-sections/layout/layout.component.mjs +1 -4
- package/esm2022/lib/components/app-component-sections/main-request-details/main-request-details.component.mjs +3 -3
- package/esm2022/lib/components/app-component-sections/service-header/service-header.component.mjs +1 -1
- package/esm2022/lib/components/app-component-sections/workflow-section/workflow-section.component.mjs +3 -3
- package/fesm2022/bpm-core.mjs +9 -13
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +2 -2
- package/lib/components/app-component-sections/service-header/service-header.component.d.ts +1 -1
- package/lib/components/app-component-sections/workflow-section/workflow-section.component.d.ts +1 -1
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +1 -1
- package/lib/services/core.service.ts.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/assets/scss/_bootstrap.scss +39 -0
- package/src/lib/assets/scss/_bottom-sheet.scss +33 -0
- package/src/lib/assets/scss/_categories.scss +159 -0
- package/src/lib/assets/scss/_charts.scss +190 -0
- package/src/lib/assets/scss/_custom-popover.scss +302 -0
- package/src/lib/assets/scss/_font-custom.scss +0 -0
- package/src/lib/assets/scss/_general.scss +2011 -0
- package/src/lib/assets/scss/_main-sidenav.scss +350 -0
- package/src/lib/assets/scss/_settings.scss +93 -0
- package/src/lib/assets/scss/_stepper.scss +39 -0
- package/src/lib/assets/scss/_swiper.scss +115 -0
- package/src/lib/assets/scss/_toaster.scss +9 -0
- package/src/lib/assets/scss/_upgrade.scss +279 -0
- package/src/lib/assets/scss/_user-list.scss +40 -0
- package/src/lib/assets/scss/input-telephone.scss +160 -0
- package/src/lib/assets/scss/base.css +0 -451
|
@@ -0,0 +1,2011 @@
|
|
|
1
|
+
// Custom Theming for Angular Material
|
|
2
|
+
@use "@angular/material" as mat;
|
|
3
|
+
@include mat.core();
|
|
4
|
+
// $my-theme: mat.define-typography-level(
|
|
5
|
+
// $font-family: var(--font-family),
|
|
6
|
+
// $font-weight: 400,
|
|
7
|
+
// $font-size: 1rem,
|
|
8
|
+
// $line-height: 1,
|
|
9
|
+
// $letter-spacing: normal,
|
|
10
|
+
// );
|
|
11
|
+
|
|
12
|
+
.main-card {
|
|
13
|
+
background-color: var(--white);
|
|
14
|
+
border-radius: 4px;
|
|
15
|
+
box-shadow: 0 7px 10px 0 rgba(var(--rgb-black), 0.03);
|
|
16
|
+
|
|
17
|
+
&:hover {
|
|
18
|
+
.arrow-icon {
|
|
19
|
+
transform: translate(0);
|
|
20
|
+
opacity: 1;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.main-section {
|
|
26
|
+
|
|
27
|
+
//padding: 40px 0;
|
|
28
|
+
@media (max-width: 767px) {
|
|
29
|
+
// padding: 64px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&--title {
|
|
33
|
+
position: relative;
|
|
34
|
+
font-size: 2.5rem;
|
|
35
|
+
color: var(--black);
|
|
36
|
+
font-weight: var(--font-medium);
|
|
37
|
+
//display: flex;
|
|
38
|
+
//flex-direction: column;
|
|
39
|
+
text-align: center;
|
|
40
|
+
|
|
41
|
+
&:before {
|
|
42
|
+
content: "";
|
|
43
|
+
min-width: 55px;
|
|
44
|
+
width: 55px;
|
|
45
|
+
height: 7px;
|
|
46
|
+
background-color: var(--purple);
|
|
47
|
+
border-inline-end: 6px solid var(--coral);
|
|
48
|
+
display: block;
|
|
49
|
+
margin: 0 auto 1rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.align-start {
|
|
53
|
+
&:before {
|
|
54
|
+
margin: 0 0 1rem;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ds-button[shape="text"]::part(base) {
|
|
61
|
+
--btn-height: auto;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
ds-alert[type="warning"]::part(base) {
|
|
65
|
+
--alert-bc: rgba(var(--rgb-yellow), 20%);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
figure {
|
|
69
|
+
margin: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.mat-tab-nav-bar {
|
|
73
|
+
background-color: var(--white);
|
|
74
|
+
//position: sticky;
|
|
75
|
+
//top: 0;
|
|
76
|
+
border-bottom: 1px solid rgba(var(--rgb-light-gray), 0.9);
|
|
77
|
+
|
|
78
|
+
.mat-tab-link {
|
|
79
|
+
opacity: 1;
|
|
80
|
+
|
|
81
|
+
&:hover {
|
|
82
|
+
color: var(--purple);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.mat-drawer,
|
|
88
|
+
.mat-drawer-backdrop {
|
|
89
|
+
z-index: 20 !important;
|
|
90
|
+
position: fixed;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.mat-drawer-inner-container {
|
|
94
|
+
overflow: hidden;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.readonly-field {
|
|
98
|
+
height: var(--default-size);
|
|
99
|
+
border-radius: 4px;
|
|
100
|
+
background-color: #fbf5ff;
|
|
101
|
+
padding: 0 1rem;
|
|
102
|
+
font-size: 0.8rem;
|
|
103
|
+
font-weight: var(--font-medium);
|
|
104
|
+
color: var(--black);
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
|
|
108
|
+
&.green {
|
|
109
|
+
background-color: #e4fff7;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
ds-message {
|
|
114
|
+
--message-figure-min-height: auto;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.main-button-toggle {
|
|
118
|
+
--toggle-height: 40px;
|
|
119
|
+
--toggle-width: 110px;
|
|
120
|
+
--toggle-color: var(--dark-gray);
|
|
121
|
+
--toggle-color-active: var(--secondary);
|
|
122
|
+
--toggle-bg: var(--white);
|
|
123
|
+
--toggle-bg-active: #f8efff;
|
|
124
|
+
--toggle-border: 1px solid var(--gray);
|
|
125
|
+
--box-radius: 6px;
|
|
126
|
+
--toggle-fw: var(--font-regular);
|
|
127
|
+
--toggle-gap: 0.5rem;
|
|
128
|
+
|
|
129
|
+
padding: 1px;
|
|
130
|
+
|
|
131
|
+
.mat-button-toggle {
|
|
132
|
+
border-radius: var(--box-radius);
|
|
133
|
+
|
|
134
|
+
&.mat-button-toggle-checked {
|
|
135
|
+
--toggle-border: 1px solid var(--secondary);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.mat-button-toggle-label-content {
|
|
140
|
+
gap: var(--toggle-gap);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon-toggle {
|
|
145
|
+
--toggle-padding: 0;
|
|
146
|
+
--toggle-width: var(--default-size-sm) !important;
|
|
147
|
+
--toggle-height: var(--default-size-sm) !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.mat-form-field-appearance-legacy .mat-hint {
|
|
151
|
+
color: var(--dark-gray);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.mat-form-field-hint-wrapper {
|
|
155
|
+
display: block;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@media (max-width: 768px) {
|
|
159
|
+
.fw-md-bold {
|
|
160
|
+
font-weight: 700 !important;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
ds-message::part(base) {
|
|
165
|
+
// --message-margin:20px 0;
|
|
166
|
+
--message-fc: var(--black);
|
|
167
|
+
--message-fs: 14px;
|
|
168
|
+
--message-fw: var(--font-medium);
|
|
169
|
+
display: flex;
|
|
170
|
+
flex-direction: column;
|
|
171
|
+
align-items: center;
|
|
172
|
+
justify-content: center;
|
|
173
|
+
text-align: center;
|
|
174
|
+
min-height: var(--message-height, 300px);
|
|
175
|
+
background-color: var(--message-bg, transparent);
|
|
176
|
+
border: var(--message-border, 1px solid transparent);
|
|
177
|
+
|
|
178
|
+
h1 {
|
|
179
|
+
margin: var(--message-margin, 20px 0 0 0);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
//ds-status[status="rejected"]::part(base) {
|
|
184
|
+
// --status-bg: rgba(var(--rgb-red), 10%);
|
|
185
|
+
// --status-color: var(--red);
|
|
186
|
+
//}
|
|
187
|
+
//ds-status[status="sent"]::part(base) {
|
|
188
|
+
// --status-bg: rgba(var(--rgb-secondary), 10%);
|
|
189
|
+
// --status-color: var(--secondary);
|
|
190
|
+
//}
|
|
191
|
+
//ds-status[status="returned"]::part(base) {
|
|
192
|
+
// --status-bg: rgba(var(--rgb-purple), 10%);
|
|
193
|
+
// --status-color: var(--purple);
|
|
194
|
+
//}
|
|
195
|
+
ds-status[status="expired"]::part(base) {
|
|
196
|
+
--status-bg: rgba(var(--rgb-dark-gray), 30%);
|
|
197
|
+
--status-color: var(--dark-gray);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
//ds-status[status="submit"]::part(base) {
|
|
201
|
+
// --status-bg: rgba(var(--rgb-coral), 10%);
|
|
202
|
+
// --status-color: var(--coral);
|
|
203
|
+
//}
|
|
204
|
+
ds-status[status="canceled"]::part(base) {
|
|
205
|
+
--status-bg: rgba(var(--rgb-dark-gray), 80%);
|
|
206
|
+
--status-color: var(--dark-gray);
|
|
207
|
+
color: var(--black);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
//ds-status[status="accepted"]::part(base) {
|
|
211
|
+
// --status-bg: rgba(var(--rgb-green), 10%) !important;
|
|
212
|
+
// --status-color: var(--green) !important;
|
|
213
|
+
//}
|
|
214
|
+
ds-status[status="send_back"]::part(base) {
|
|
215
|
+
--status-bg: rgba(var(--rgb-orange), 10%);
|
|
216
|
+
--status-color: var(--orange);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
ds-status[status="send_back"][no-opacity]::part(base) {
|
|
220
|
+
--status-bg: var(--orange);
|
|
221
|
+
--status-color: var(--white);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
//ds-status[status="pending"]::part(base) {
|
|
225
|
+
// --status-bg: rgba(var(--rgb-yellow), 10%);
|
|
226
|
+
// --status-color: var(--black);
|
|
227
|
+
//}
|
|
228
|
+
ds-status[status="queued"]::part(base) {
|
|
229
|
+
--status-bg: rgba(250, 221, 96, 0.5);
|
|
230
|
+
--status-color: #1d252d;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
[dir="rtl"] .decisions-container--status {
|
|
234
|
+
right: auto !important;
|
|
235
|
+
left: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
[dir="rtl"] .decisions-container--item:hover .decisions-container--status {
|
|
239
|
+
left: 1.5rem;
|
|
240
|
+
right: initial !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
ds-button.support {
|
|
244
|
+
&:hover {
|
|
245
|
+
svg path {
|
|
246
|
+
fill: var(--coral) !important;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.table {
|
|
252
|
+
ds-button[icon]::part(base) {
|
|
253
|
+
--btn-bg-color: var(--white);
|
|
254
|
+
--btn-border-color: var(--white);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
ds-button[icon].table-icon-btn-white::part(base) {
|
|
258
|
+
--btn-bg-color: var(--light-gray);
|
|
259
|
+
--btn-border-color: var(--light-gray);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
ds-button[icon].btn-icon-white::part(base) {
|
|
264
|
+
--btn-bg-color: var(--white);
|
|
265
|
+
--btn-border-color: var(--white);
|
|
266
|
+
--btn-shadow: 0 7px 10px rgba(var(--rgb-black), 0.03);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
ds-button.link--metis {
|
|
270
|
+
&::part(base) {
|
|
271
|
+
padding: 4px 0;
|
|
272
|
+
|
|
273
|
+
&:hover {
|
|
274
|
+
text-decoration: none !important;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&::part(wrapper) {
|
|
279
|
+
&::before {
|
|
280
|
+
position: absolute;
|
|
281
|
+
width: 100%;
|
|
282
|
+
height: 1px;
|
|
283
|
+
background: currentColor;
|
|
284
|
+
top: 100%;
|
|
285
|
+
left: 0;
|
|
286
|
+
pointer-events: none;
|
|
287
|
+
content: "";
|
|
288
|
+
transform-origin: 100% 50%;
|
|
289
|
+
transform: scale3d(0, 1, 1);
|
|
290
|
+
transition: transform 0.3s;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
&:hover {
|
|
294
|
+
&::before {
|
|
295
|
+
transform-origin: 0% 50%;
|
|
296
|
+
transform: scale3d(1, 1, 1);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
svg {
|
|
302
|
+
transition: all 0.3s;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&:hover {
|
|
306
|
+
svg {
|
|
307
|
+
margin: 0 5px;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.mat-form-field-appearance-legacy .mat-form-field-wrapper {
|
|
313
|
+
padding-bottom: 1.25em !important;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
@media (max-width: 767px) {
|
|
317
|
+
.NoScroll .mainheader {
|
|
318
|
+
display: none;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.white-input {
|
|
323
|
+
--input-bg: var(--white);
|
|
324
|
+
--input-border: var(--gray);
|
|
325
|
+
--placeholder-fc: var(--dark-gray);
|
|
326
|
+
--input-border-active: 0px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.gray-input {
|
|
330
|
+
--input-bg: var(--light-gray) !important;
|
|
331
|
+
--input-border: 0px;
|
|
332
|
+
--placeholder-fc: var(--dark-gray) !important;
|
|
333
|
+
--input-border-active: 0px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
mat-form-field.mat-mdc-form-field.mat-mdc-form-field-type-mat-select.white-select {
|
|
337
|
+
--input-bg: var(--white);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.loading-bg-small {
|
|
341
|
+
height: 20px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.text-start {
|
|
345
|
+
text-align: start !important;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.main-popup {
|
|
349
|
+
--mdc-dialog-container-shape: var(--popup-radius);
|
|
350
|
+
--popup-width: 873px;
|
|
351
|
+
--popup-radius: 5px;
|
|
352
|
+
--popup-title-height: 67px;
|
|
353
|
+
--popup-title-padding: 0rem 1.5rem;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.mat-mdc-progress-spinner {
|
|
357
|
+
--mdc-circular-progress-active-indicator-color: var(--coral);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.info-section,
|
|
361
|
+
.form-section {
|
|
362
|
+
--info-item-bg-striped: var(--off-white);
|
|
363
|
+
--uploade-file-bg: var(--off-white);
|
|
364
|
+
--info-gap: 10px;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.mat-mdc-form-field-hint {
|
|
368
|
+
color: var(--dark-gray);
|
|
369
|
+
display: inline-flex;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
table {
|
|
373
|
+
ds-attachments {
|
|
374
|
+
&::part(base) {
|
|
375
|
+
--file-bg: var(--white);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@media (max-height: 500px) {
|
|
381
|
+
.mdc-menu-surface.mat-mdc-select-panel {
|
|
382
|
+
max-height: 200px !important;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.mat-mdc-dialog-container {
|
|
387
|
+
--mdc-dialog-supporting-text-line-height: 20px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.mat-mdc-option.mdc-list-item--disabled {
|
|
391
|
+
opacity: 1 !important;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
ds-attachments::part(name) {
|
|
395
|
+
text-align: left;
|
|
396
|
+
|
|
397
|
+
[dir="rtl"] & {
|
|
398
|
+
text-align: right;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.introjs-tooltip {
|
|
403
|
+
background-color: var(--purple) !important;
|
|
404
|
+
padding: 1.5rem !important;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.introjs-tooltiptext {
|
|
408
|
+
display: block;
|
|
409
|
+
padding: 0 0 0.5rem;
|
|
410
|
+
/* color: var(--black); */
|
|
411
|
+
font-size: 1rem;
|
|
412
|
+
font-weight: var(--font-medium);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.introjs-tooltipbuttons {
|
|
416
|
+
gap: 1rem;
|
|
417
|
+
|
|
418
|
+
.introjs-prevbutton {
|
|
419
|
+
padding: 0;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.introjs-tooltip-header {
|
|
424
|
+
display: none !important;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media (max-width: 991px) {
|
|
428
|
+
.filterTaps {
|
|
429
|
+
--popup-width: 100%;
|
|
430
|
+
--popup-max-width: 100%;
|
|
431
|
+
--popup-height: 100%;
|
|
432
|
+
--popup-radius: 0;
|
|
433
|
+
bottom: 0 !important;
|
|
434
|
+
position: absolute !important;
|
|
435
|
+
|
|
436
|
+
.tabsFilter {
|
|
437
|
+
width: 100%;
|
|
438
|
+
border-radius: 3px;
|
|
439
|
+
background: #f3f3f1;
|
|
440
|
+
padding: 13px 9px;
|
|
441
|
+
min-width: 315px;
|
|
442
|
+
justify-content: start;
|
|
443
|
+
margin-bottom: 20px;
|
|
444
|
+
|
|
445
|
+
&.active {
|
|
446
|
+
background-color: rgba(165, 78, 225, 0.1) !important;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
mat-sidenav {
|
|
453
|
+
.main-sidenav {
|
|
454
|
+
app-form-outlet {
|
|
455
|
+
.default-box {
|
|
456
|
+
box-shadow: none;
|
|
457
|
+
padding: 0;
|
|
458
|
+
border: 0;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
table {
|
|
465
|
+
tr {
|
|
466
|
+
th {
|
|
467
|
+
text-align: start;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.icon-btn-shadow::part(base) {
|
|
473
|
+
--btn-bg-color: var(--white);
|
|
474
|
+
--btn-border-color: var(--white);
|
|
475
|
+
--btn-shadow: 0 7px 10px rgba(var(--rgb-black), 0.1);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.filter-dialog {
|
|
479
|
+
--popup-height: auto;
|
|
480
|
+
|
|
481
|
+
@media (max-width: 768px) {
|
|
482
|
+
--popup-width: 100%;
|
|
483
|
+
--popup-max-width: 100%;
|
|
484
|
+
//--popup-height: 100%;
|
|
485
|
+
--popup-radius: 0;
|
|
486
|
+
bottom: 0 !important;
|
|
487
|
+
position: absolute !important;
|
|
488
|
+
|
|
489
|
+
.filter-container .filter-section {
|
|
490
|
+
background-color: var(--white);
|
|
491
|
+
|
|
492
|
+
//.filter-choose-btn::part(base){
|
|
493
|
+
// --btn-width: 100%;
|
|
494
|
+
//}
|
|
495
|
+
//.filter-choose-btn::part(wrapper){
|
|
496
|
+
// justify-content: space-between;
|
|
497
|
+
// width: 100%;
|
|
498
|
+
//}
|
|
499
|
+
//.ss-select{
|
|
500
|
+
// flex-grow: 1;
|
|
501
|
+
//}
|
|
502
|
+
//mat-form-field{
|
|
503
|
+
// --input-width: 100% !important;
|
|
504
|
+
//}
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.filter-section {
|
|
508
|
+
.btn-shadow::part(base) {
|
|
509
|
+
--btn-color: var(--black) !important;
|
|
510
|
+
--btn-bg-color: var(--off-white);
|
|
511
|
+
--btn-overlay-color: var(--off-white);
|
|
512
|
+
--btn-min-width: 100%;
|
|
513
|
+
--btn-shadow: none;
|
|
514
|
+
width: 100%;
|
|
515
|
+
justify-content: space-between;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.filter-container {
|
|
522
|
+
//background-color: var(--white);
|
|
523
|
+
max-height: calc(100vh - 100px);
|
|
524
|
+
display: flex;
|
|
525
|
+
flex-direction: column;
|
|
526
|
+
min-width: 335px;
|
|
527
|
+
width: 335px;
|
|
528
|
+
overflow: auto;
|
|
529
|
+
|
|
530
|
+
@media (max-width: 576px) {
|
|
531
|
+
position: fixed;
|
|
532
|
+
left: 0;
|
|
533
|
+
right: 0;
|
|
534
|
+
bottom: 0;
|
|
535
|
+
width: 100%;
|
|
536
|
+
min-width: 100%;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
//.popup-header{
|
|
540
|
+
// position: sticky;
|
|
541
|
+
// top: 0;
|
|
542
|
+
//}
|
|
543
|
+
|
|
544
|
+
.filter-section {
|
|
545
|
+
//max-height: calc(100vh - 100px);
|
|
546
|
+
flex-grow: 1;
|
|
547
|
+
//width: 100%;
|
|
548
|
+
|
|
549
|
+
//overflow-y: auto;
|
|
550
|
+
//overflow-x: hidden;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
mat-form-field {
|
|
554
|
+
--input-border: 1px solid var(--light-gray);
|
|
555
|
+
--input-border-active: 1px solid var(--light-gray);
|
|
556
|
+
--input-border-focuse: 1px solid var(--light-gray);
|
|
557
|
+
--input-bg: var(--light-gray) !important;
|
|
558
|
+
--input-height: 35px;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.form-label {
|
|
562
|
+
font-weight: var(--font-regular);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.select-by-icon {
|
|
566
|
+
cursor: pointer;
|
|
567
|
+
|
|
568
|
+
.mat-mdc-text-field-wrapper {
|
|
569
|
+
padding: 0;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.mat-mdc-form-field-infix {
|
|
573
|
+
display: none;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.has-clear-icon {
|
|
578
|
+
.mat-mdc-text-field-wrapper {
|
|
579
|
+
padding-inline-start: 0;
|
|
580
|
+
padding-inline-end: 0.5rem;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.mat-mdc-form-field-icon-prefix {
|
|
584
|
+
order: 1;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.mat-mdc-form-field-icon-suffix {
|
|
588
|
+
order: -1;
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.search-type {
|
|
593
|
+
display: flex;
|
|
594
|
+
align-items: center;
|
|
595
|
+
background-color: var(--off-white);
|
|
596
|
+
//box-shadow: 0 10px 7px rgba(var(--rgb-black), .03);
|
|
597
|
+
border-radius: 4px;
|
|
598
|
+
overflow: hidden;
|
|
599
|
+
min-width: 280px;
|
|
600
|
+
width: 280px;
|
|
601
|
+
height: 35px;
|
|
602
|
+
|
|
603
|
+
>input,
|
|
604
|
+
.ss-date-picker {
|
|
605
|
+
flex-grow: 1;
|
|
606
|
+
min-width: 180px;
|
|
607
|
+
width: 180px;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.ss-date-range-picker {
|
|
611
|
+
flex-grow: 1;
|
|
612
|
+
min-width: 210px;
|
|
613
|
+
width: 210px;
|
|
614
|
+
|
|
615
|
+
.date-range {
|
|
616
|
+
width: 100%;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.ss-select {
|
|
621
|
+
min-width: 180px;
|
|
622
|
+
width: 180px;
|
|
623
|
+
flex-grow: 0 !important;
|
|
624
|
+
|
|
625
|
+
.select-form-field {
|
|
626
|
+
--input-width: 100% !important;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
&.hide-arrow .mat-mdc-select-arrow-wrapper {
|
|
630
|
+
display: none;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.select-form-field {
|
|
635
|
+
box-shadow: none;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.divider {
|
|
639
|
+
min-width: 1px;
|
|
640
|
+
width: 1px;
|
|
641
|
+
height: 35px;
|
|
642
|
+
background-color: #dee0e2;
|
|
643
|
+
display: block;
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.select-form-field {
|
|
648
|
+
--input-width: 140px;
|
|
649
|
+
--input-height: 35px;
|
|
650
|
+
--input-bg: var(--white) !important;
|
|
651
|
+
--select-bg: var(--white);
|
|
652
|
+
--input-border: 1px solid var(--white) !important;
|
|
653
|
+
--input-border-focuse: 1px solid var(--white) !important;
|
|
654
|
+
--input-border-active: 1px solid var(--white) !important;
|
|
655
|
+
--mdc-typography-body1-font-size: var(--input-fs);
|
|
656
|
+
--mdc-typography-body1-font-weight: var(--input-fw);
|
|
657
|
+
box-shadow: 0 10px 7px rgba(var(--rgb-black), 0.03);
|
|
658
|
+
|
|
659
|
+
&.search-form-field {
|
|
660
|
+
--input-width: 200px;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
mat-select {
|
|
664
|
+
.mat-mdc-select-placeholder {
|
|
665
|
+
--mdc-typography-body1-font-size: var(--placeholder-fs);
|
|
666
|
+
--mdc-typography-body1-font-weight: var(--placeholder-fw);
|
|
667
|
+
font-weight: var(--placeholder-fw);
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.filter-choose-btn::part(base) {
|
|
673
|
+
--btn-width: 100%;
|
|
674
|
+
--btn-height: 35px;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.filter-choose-btn::part(wrapper) {
|
|
678
|
+
justify-content: space-between;
|
|
679
|
+
width: 100%;
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.select-by-icon-options {
|
|
684
|
+
min-width: 180px;
|
|
685
|
+
margin: 0 -135px !important;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
[appshowmore] {
|
|
689
|
+
display: flex;
|
|
690
|
+
flex-direction: column;
|
|
691
|
+
align-items: flex-start;
|
|
692
|
+
word-break: break-word;
|
|
693
|
+
text-align: left;
|
|
694
|
+
direction: ltr;
|
|
695
|
+
|
|
696
|
+
[dir="rtl"] & {
|
|
697
|
+
text-align: right;
|
|
698
|
+
direction: rtl;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.show-more {
|
|
702
|
+
//margin-top: -20px;
|
|
703
|
+
//padding-top: 20px;
|
|
704
|
+
background-color: transparent;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
button {
|
|
708
|
+
cursor: pointer;
|
|
709
|
+
padding: 0;
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.mat-date-range-input-wrapper {
|
|
714
|
+
width: 75px;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.mpa_resources_details {
|
|
718
|
+
>.edit-mode {
|
|
719
|
+
margin-bottom: 90px !important;
|
|
720
|
+
display: block;
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.border-off-white {
|
|
725
|
+
border: 1px solid var(--off-white);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.fc-inherit {
|
|
729
|
+
color: inherit;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.mat-mdc-select-panel {
|
|
733
|
+
.search-inside-option {
|
|
734
|
+
background-color: var(--light-gray) !important;
|
|
735
|
+
position: sticky;
|
|
736
|
+
top: 0px;
|
|
737
|
+
z-index: 1;
|
|
738
|
+
|
|
739
|
+
.search-inside-select {
|
|
740
|
+
border: 1px solid var(--input-border);
|
|
741
|
+
border-radius: 4px;
|
|
742
|
+
background-color: var(--white);
|
|
743
|
+
height: 30px;
|
|
744
|
+
display: flex;
|
|
745
|
+
gap: 0.5rem;
|
|
746
|
+
padding: 0 0.5rem;
|
|
747
|
+
align-items: center;
|
|
748
|
+
|
|
749
|
+
input {
|
|
750
|
+
border: none;
|
|
751
|
+
flex-grow: 1;
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.filter-input {
|
|
758
|
+
--input-width: auto;
|
|
759
|
+
--input-height: 35px;
|
|
760
|
+
--input-padding: 0 0.5rem;
|
|
761
|
+
--input-bg: var(--white) !important;
|
|
762
|
+
--select-bg: var(--white);
|
|
763
|
+
--input-border: 1px solid var(--white) !important;
|
|
764
|
+
--input-border-focuse: 1px solid var(--white) !important;
|
|
765
|
+
--input-border-active: 1px solid var(--white) !important;
|
|
766
|
+
--mdc-typography-body1-font-size: var(--input-fs);
|
|
767
|
+
--mdc-typography-body1-font-weight: var(--input-fw);
|
|
768
|
+
box-shadow: 0 10px 7px rgba(var(--rgb-black), 0.03);
|
|
769
|
+
|
|
770
|
+
.mdc-text-field {
|
|
771
|
+
padding: var(--input-padding);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.mat-mdc-select-trigger {
|
|
775
|
+
gap: 0.5rem;
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.discount_resource_details {
|
|
780
|
+
position: fixed;
|
|
781
|
+
bottom: 67px;
|
|
782
|
+
left: 0;
|
|
783
|
+
right: 0;
|
|
784
|
+
z-index: 11;
|
|
785
|
+
opacity: 0;
|
|
786
|
+
//transition: opacity .2s linear;
|
|
787
|
+
//transition-delay: 1s;
|
|
788
|
+
|
|
789
|
+
//animation: ;
|
|
790
|
+
|
|
791
|
+
.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive) & {
|
|
792
|
+
//opacity: 1;
|
|
793
|
+
animation: discountFadeIn 0.5s ease-in-out 0.5s forwards;
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.display-inline-block {
|
|
798
|
+
display: inline-block;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.mat-mdc-slide-toggle {
|
|
802
|
+
--mdc-switch-disabled-selected-track-color: var(--coral);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.btn-shadow::part(base) {
|
|
806
|
+
--btn-color: var(--black) !important;
|
|
807
|
+
--btn-bg-color: white;
|
|
808
|
+
//--btn-border-color: white;
|
|
809
|
+
--btn-shadow: 0 10px 14px rgba(var(--rgb-black), 0.03);
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
@keyframes discountFadeIn {
|
|
813
|
+
from {
|
|
814
|
+
opacity: 0;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
to {
|
|
818
|
+
opacity: 1;
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.sfi-emoji-neutral:before {
|
|
823
|
+
content: "\ea4c";
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
text {
|
|
827
|
+
font-family: var(--font-family);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.table-responsive table tbody tr td {
|
|
831
|
+
line-height: 1.3;
|
|
832
|
+
max-width: 200px;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.filter-has-value {
|
|
836
|
+
position: relative;
|
|
837
|
+
|
|
838
|
+
&:before {
|
|
839
|
+
content: "";
|
|
840
|
+
position: absolute;
|
|
841
|
+
min-width: 12px;
|
|
842
|
+
width: 12px;
|
|
843
|
+
height: 12px;
|
|
844
|
+
z-index: 1;
|
|
845
|
+
border-radius: 50%;
|
|
846
|
+
margin: -6px;
|
|
847
|
+
background-color: var(--coral);
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.arrow-link {
|
|
852
|
+
cursor: pointer;
|
|
853
|
+
min-width: 30px;
|
|
854
|
+
width: 30px;
|
|
855
|
+
height: 30px;
|
|
856
|
+
border-radius: 50%;
|
|
857
|
+
display: inline-flex;
|
|
858
|
+
align-items: center;
|
|
859
|
+
justify-content: center;
|
|
860
|
+
transition: var(--default-transition);
|
|
861
|
+
|
|
862
|
+
>.sfi,
|
|
863
|
+
>ds-icon {
|
|
864
|
+
transition: var(--default-transition);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
&:hover {
|
|
868
|
+
background-color: rgba(var(--rgb-coral), 0.2);
|
|
869
|
+
//>.sfi,
|
|
870
|
+
//>ds-icon {
|
|
871
|
+
// margin: 0 -5px;
|
|
872
|
+
//}
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.contact-element {
|
|
877
|
+
border-radius: 6px;
|
|
878
|
+
|
|
879
|
+
overflow: hidden;
|
|
880
|
+
|
|
881
|
+
background-color: var(--white);
|
|
882
|
+
|
|
883
|
+
// margin: 10px;
|
|
884
|
+
|
|
885
|
+
&--header {
|
|
886
|
+
padding: 0.75rem 1rem;
|
|
887
|
+
|
|
888
|
+
display: flex;
|
|
889
|
+
|
|
890
|
+
align-items: center;
|
|
891
|
+
|
|
892
|
+
gap: 0.5rem;
|
|
893
|
+
|
|
894
|
+
background-color: #fff8d9;
|
|
895
|
+
|
|
896
|
+
font-size: 12px;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
&--body {
|
|
900
|
+
padding: 1rem;
|
|
901
|
+
|
|
902
|
+
display: flex;
|
|
903
|
+
|
|
904
|
+
flex-wrap: wrap;
|
|
905
|
+
|
|
906
|
+
column-gap: 2rem;
|
|
907
|
+
|
|
908
|
+
row-gap: 1rem;
|
|
909
|
+
|
|
910
|
+
border: 1px solid var(--light-gray);
|
|
911
|
+
|
|
912
|
+
border-top: 0;
|
|
913
|
+
|
|
914
|
+
border-radius: 0 0 6px 6px;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
&--item {
|
|
918
|
+
display: flex;
|
|
919
|
+
|
|
920
|
+
align-items: center;
|
|
921
|
+
|
|
922
|
+
gap: 0.3rem;
|
|
923
|
+
|
|
924
|
+
line-height: 1;
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
ds-user-card::part(details) {
|
|
929
|
+
line-height: 1.2;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
//@include mat.all-component-themes($my-theme);
|
|
933
|
+
|
|
934
|
+
:root {
|
|
935
|
+
--main-toolbar-height: 76px;
|
|
936
|
+
--main-toolbar-zIndex: 11;
|
|
937
|
+
--main-toolbar-bc: var(--white);
|
|
938
|
+
--main-aside-width: 67px;
|
|
939
|
+
--main-aside-width-active: 193px;
|
|
940
|
+
--main-aside-bc: var(--purple);
|
|
941
|
+
--main-aside-item-bc: rgba(var(--rgb-white), 0.1);
|
|
942
|
+
--main-aside-item-fc: rgba(var(--rgb-white), 0.63);
|
|
943
|
+
--main-aside-item-fs: 0.9rem;
|
|
944
|
+
--main-aside-item-display: block;
|
|
945
|
+
--main-aside-position: sticky;
|
|
946
|
+
--main-content-width: calc(100% - var(--main-aside-width));
|
|
947
|
+
|
|
948
|
+
--mdc-typography-button-letter-spacing: 0;
|
|
949
|
+
--mdc-icon-button-state-layer-size: auto;
|
|
950
|
+
--mat-divider-width: 1px;
|
|
951
|
+
|
|
952
|
+
@media (max-width: 1024px) {
|
|
953
|
+
--main-aside-width: var(--main-aside-width-active);
|
|
954
|
+
--main-aside-item-display: block;
|
|
955
|
+
--main-aside-position: fixed;
|
|
956
|
+
--main-aside-width-active: 100%;
|
|
957
|
+
|
|
958
|
+
&.main-sidenav-opened {
|
|
959
|
+
// --main-toolbar-height: 0;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
--bs-border-color: var(--light-gray);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
//$enable-negative-margins: true;
|
|
967
|
+
|
|
968
|
+
html.main-sidenav-opened {
|
|
969
|
+
--main-aside-width: var(--main-aside-width-active);
|
|
970
|
+
--main-aside-item-display: block;
|
|
971
|
+
--main-aside-transform: translateX(0) !important;
|
|
972
|
+
--gap-width: 0.5rem;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.main-overlay-closed {
|
|
976
|
+
.cdk-overlay-container {
|
|
977
|
+
display: none;
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
html[dir="ltr"] {
|
|
982
|
+
--main-aside-left: 0;
|
|
983
|
+
|
|
984
|
+
@media (max-width: 1024px) {
|
|
985
|
+
--translateVal: calc(var(--main-aside-width-active) * -1);
|
|
986
|
+
--main-aside-transform: translateX(var(--translateVal));
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
html[dir="rtl"] {
|
|
991
|
+
--main-aside-right: 0;
|
|
992
|
+
|
|
993
|
+
@media (max-width: 1024px) {
|
|
994
|
+
--translateVal: calc(var(--main-aside-width-active));
|
|
995
|
+
--main-aside-transform: translateX(var(--translateVal));
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
html.NoScroll {
|
|
1000
|
+
overflow: hidden;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.hup-main-container {
|
|
1004
|
+
.hub-top-header {
|
|
1005
|
+
display: none !important;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.hup-main-wrapper {
|
|
1009
|
+
margin-top: 0 !important;
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.dockbar-ready {
|
|
1014
|
+
.dockbar {
|
|
1015
|
+
z-index: 12 !important;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.mat-toolbar {
|
|
1019
|
+
top: 30px !important;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
app-aside-nav {
|
|
1023
|
+
--main-toolbar-height: 105px;
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
body {
|
|
1028
|
+
font: inherit;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.hup-main-container:not([aria-hidden="true"])~.cdk-overlay-container {
|
|
1032
|
+
z-index: calc(var(--main-toolbar-zIndex) + 2) !important;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.new-primary-table .table-responsive.table-container {
|
|
1036
|
+
max-height: 80vh;
|
|
1037
|
+
overflow: auto;
|
|
1038
|
+
table.primary-table {
|
|
1039
|
+
--th-height: 30px;
|
|
1040
|
+
--th-bg: var(--purple);
|
|
1041
|
+
--th-fc: var(--black);
|
|
1042
|
+
--tr-even-bc: var(--white);
|
|
1043
|
+
--tr-odd-bc: rgba(165, 79, 224, 0.08);
|
|
1044
|
+
--tr-border: 1px solid transparent;
|
|
1045
|
+
--th-border: 1px solid transparent;
|
|
1046
|
+
--th-fc: var(--white);
|
|
1047
|
+
--th-fs: 10px;
|
|
1048
|
+
--th-border: 0px solid var(--light-gray);
|
|
1049
|
+
--border-spacing: 0;
|
|
1050
|
+
--border-collapse: separate;
|
|
1051
|
+
--td-radius: 64x;
|
|
1052
|
+
--cell-pading: 0px 25px;
|
|
1053
|
+
background-color: var(--off-white);
|
|
1054
|
+
--td-fs: 12px;
|
|
1055
|
+
--td-fw: var(--font-regular);
|
|
1056
|
+
|
|
1057
|
+
tr {
|
|
1058
|
+
box-shadow: 0px 0.2px 0px 1px #f3f3f1;
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.form-label {
|
|
1064
|
+
font-size: 0.78rem;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
mat-form-field.mat-mdc-form-field .mdc-text-field {
|
|
1068
|
+
border: 1px solid #d6d6d4;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-suffix {
|
|
1072
|
+
width: auto;
|
|
1073
|
+
min-width: fit-content;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
ds-button[disabled] {
|
|
1077
|
+
&::part(base) {
|
|
1078
|
+
opacity: 1;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
&::part(overlay) {
|
|
1082
|
+
background-color: var(--gray);
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.primary-stepper,
|
|
1087
|
+
.mat-stepper-horizontal {
|
|
1088
|
+
--steps-bc: var(--white);
|
|
1089
|
+
--steps-radius: 0;
|
|
1090
|
+
--steps-margin: 0 auto;
|
|
1091
|
+
--steps-padding: 0px;
|
|
1092
|
+
--steps-width: 100%;
|
|
1093
|
+
--steps-position: sticky;
|
|
1094
|
+
--steps-sticky-position: 0;
|
|
1095
|
+
--steps-justify: center;
|
|
1096
|
+
--steps-direction: row;
|
|
1097
|
+
|
|
1098
|
+
--steps-container-bc: var(--white);
|
|
1099
|
+
--steps-container-padding: 1rem 0;
|
|
1100
|
+
--steps-container-margin: 0;
|
|
1101
|
+
|
|
1102
|
+
--steps-label-fs: 0.875rem;
|
|
1103
|
+
--steps-label-fw: var(--font-regular);
|
|
1104
|
+
--steps-label-fw-active: var(--font-medium);
|
|
1105
|
+
|
|
1106
|
+
--steps-icon-bc: var(--white);
|
|
1107
|
+
--steps-icon-bc-active: var(--purple);
|
|
1108
|
+
--steps-icon-bc-done: var(--green);
|
|
1109
|
+
|
|
1110
|
+
--steps-icon-fs: 14px;
|
|
1111
|
+
--steps-icon-fw: var(--font-medium);
|
|
1112
|
+
--steps-icon-fc: var(--dark-gray);
|
|
1113
|
+
--steps-icon-fc-active: var(--white);
|
|
1114
|
+
--steps-icon-fc-done: var(--white);
|
|
1115
|
+
|
|
1116
|
+
--steps-icon-border-w: 1px;
|
|
1117
|
+
--steps-icon-border-style: solid;
|
|
1118
|
+
--steps-icon-border-color: var(--gray);
|
|
1119
|
+
--steps-icon-border-color-active: transparent;
|
|
1120
|
+
--steps-icon-border-color-done: transparent;
|
|
1121
|
+
--steps-icon-size: 30px;
|
|
1122
|
+
--steps-icon-radius: 50%;
|
|
1123
|
+
--steps-icon-gap: 0.5rem;
|
|
1124
|
+
--steps-line-content: none;
|
|
1125
|
+
--steps-line: 1px dashed var(--dark-gray);
|
|
1126
|
+
--steps-line-active: 1px solid var(--green);
|
|
1127
|
+
--steps-line-done: 0;
|
|
1128
|
+
--steps-line-width: 80px;
|
|
1129
|
+
--steps-line-top: 0;
|
|
1130
|
+
--steps-line-margin: 0;
|
|
1131
|
+
|
|
1132
|
+
.mat-horizontal-stepper-header-container {
|
|
1133
|
+
border-top: 1px solid var(--light-gray);
|
|
1134
|
+
border-bottom: 1px solid var(--light-gray);
|
|
1135
|
+
padding: 10px 0;
|
|
1136
|
+
gap: 20px;
|
|
1137
|
+
z-index: 101;
|
|
1138
|
+
|
|
1139
|
+
.mat-step-header {
|
|
1140
|
+
.mat-step-label {
|
|
1141
|
+
.mat-step-text-label {
|
|
1142
|
+
font-size: 12px;
|
|
1143
|
+
color: var(--dark-gray);
|
|
1144
|
+
align-items: center;
|
|
1145
|
+
display: flex;
|
|
1146
|
+
gap: 7px;
|
|
1147
|
+
|
|
1148
|
+
&::after {
|
|
1149
|
+
content: "\e90c";
|
|
1150
|
+
font-family: var(--font-icon) !important;
|
|
1151
|
+
transform: rotate(-90deg);
|
|
1152
|
+
color: var(--black);
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
&.mat-step-label-active {
|
|
1157
|
+
.mat-step-text-label {
|
|
1158
|
+
color: var(--black);
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
&:last-child .mat-step-text-label::after {
|
|
1164
|
+
display: none;
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.mat-horizontal-stepper-header-container,
|
|
1170
|
+
.mat-horizontal-stepper-header-container {
|
|
1171
|
+
box-sizing: border-box;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
&.secondary-stepper {
|
|
1175
|
+
--steps-container-padding: 0;
|
|
1176
|
+
|
|
1177
|
+
.mat-horizontal-stepper-header-container {
|
|
1178
|
+
border: 1px solid var(--light-gray);
|
|
1179
|
+
padding: 0px 0;
|
|
1180
|
+
gap: 0;
|
|
1181
|
+
justify-content: space-between;
|
|
1182
|
+
|
|
1183
|
+
.mat-horizontal-stepper-header {
|
|
1184
|
+
flex-grow: 1;
|
|
1185
|
+
padding: 0 24px;
|
|
1186
|
+
height: 70px;
|
|
1187
|
+
|
|
1188
|
+
&[ng-reflect-state="edit"] {
|
|
1189
|
+
background-color: rgba(var(--rgb-green), 0.06);
|
|
1190
|
+
|
|
1191
|
+
svg {
|
|
1192
|
+
display: none;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
&::after {
|
|
1196
|
+
content: "";
|
|
1197
|
+
position: absolute;
|
|
1198
|
+
right: 0px;
|
|
1199
|
+
top: 0;
|
|
1200
|
+
width: 0;
|
|
1201
|
+
height: 0;
|
|
1202
|
+
border-left: 20px solid #f3fbf8;
|
|
1203
|
+
border-top: 40px solid transparent;
|
|
1204
|
+
border-bottom: 40px solid transparent;
|
|
1205
|
+
z-index: 1;
|
|
1206
|
+
background: white !important;
|
|
1207
|
+
|
|
1208
|
+
[dir="rtl"] & {
|
|
1209
|
+
left: 0px;
|
|
1210
|
+
right: auto;
|
|
1211
|
+
transform: rotate(180deg);
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
+div+[ng-reflect-state="edit"] {
|
|
1216
|
+
margin-left: -18px;
|
|
1217
|
+
|
|
1218
|
+
[dir="rtl"] & {
|
|
1219
|
+
margin-right: -18px;
|
|
1220
|
+
margin-left: 0px;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
&::before {
|
|
1224
|
+
content: "";
|
|
1225
|
+
position: absolute;
|
|
1226
|
+
left: -26px;
|
|
1227
|
+
|
|
1228
|
+
[dir="rtl"] & {
|
|
1229
|
+
right: -26px;
|
|
1230
|
+
left: auto;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
top: 0;
|
|
1234
|
+
width: 45px;
|
|
1235
|
+
height: 100%;
|
|
1236
|
+
background-color: #f3fbf8 !important;
|
|
1237
|
+
z-index: 1;
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.step-label {
|
|
1243
|
+
width: 100%;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.mat-step-label {
|
|
1247
|
+
&.mat-step-label-active .mat-step-text-label {
|
|
1248
|
+
color: var(--purple);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.mat-step-text-label {
|
|
1252
|
+
font-size: 14px;
|
|
1253
|
+
gap: 40px;
|
|
1254
|
+
|
|
1255
|
+
span.step-label-arrow {
|
|
1256
|
+
[dir="rtl"] & {
|
|
1257
|
+
transform: rotate(180deg);
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
&::after {
|
|
1262
|
+
display: none;
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
ds-button::part(base) {
|
|
1272
|
+
width: 100%;
|
|
1273
|
+
--btn-fs: 0.9rem;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
.subTitle {
|
|
1277
|
+
span {
|
|
1278
|
+
padding-right: 7px;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
&::after {
|
|
1282
|
+
content: "";
|
|
1283
|
+
height: 1px;
|
|
1284
|
+
background-color: #e1e1e1;
|
|
1285
|
+
width: 100%;
|
|
1286
|
+
position: absolute;
|
|
1287
|
+
top: 50%;
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.aside-menu {
|
|
1292
|
+
position: fixed;
|
|
1293
|
+
top: var(--main-toolbar-height);
|
|
1294
|
+
left: var(--main-aside-width);
|
|
1295
|
+
|
|
1296
|
+
[dir="rtl"] & {
|
|
1297
|
+
right: var(--main-aside-width);
|
|
1298
|
+
left: initial;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
@media (max-width: 1024px) {
|
|
1302
|
+
left: 0;
|
|
1303
|
+
|
|
1304
|
+
[dir="rtl"] & {
|
|
1305
|
+
right: 0;
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
height: 100%;
|
|
1310
|
+
border: 1px solid #dee0e2;
|
|
1311
|
+
background: #fff !important;
|
|
1312
|
+
min-width: 233px !important;
|
|
1313
|
+
margin: 0 !important;
|
|
1314
|
+
|
|
1315
|
+
&.visible-false {
|
|
1316
|
+
display: none !important;
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.inbox-menu {
|
|
1321
|
+
min-width: 495px !important;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
ds-status.inbox::part(base) {
|
|
1325
|
+
--status-width: 35px;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.ssms-container {
|
|
1329
|
+
width: 900px;
|
|
1330
|
+
|
|
1331
|
+
@media (max-width: 900px) {
|
|
1332
|
+
width: 100%;
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
mat-form-field.no-border .mdc-text-field {
|
|
1337
|
+
border: 0px;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.main-sidenav.customWidth {
|
|
1341
|
+
--sidenav-width: 740px;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
.Template {
|
|
1345
|
+
width: 452px;
|
|
1346
|
+
min-width: 452px !important;
|
|
1347
|
+
max-width: 452px !important;
|
|
1348
|
+
background-color: var(--white) !important;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
// to fix select width
|
|
1352
|
+
div.mat-mdc-select-panel {
|
|
1353
|
+
min-width: fit-content;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.mat-mdc-option .mdc-list-item__primary-text {
|
|
1357
|
+
white-space: nowrap !important;
|
|
1358
|
+
|
|
1359
|
+
@media (max-width: 769px) {
|
|
1360
|
+
white-space: pre-wrap !important;
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.individual {
|
|
1365
|
+
.mat-mdc-tab-header {
|
|
1366
|
+
display: none !important;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
app-search-form {
|
|
1370
|
+
>div {
|
|
1371
|
+
margin-top: -1.5rem !important;
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.expandHover {
|
|
1377
|
+
&.export .card {
|
|
1378
|
+
border-left: 3px solid var(--secondary);
|
|
1379
|
+
|
|
1380
|
+
[dir="rtl"] & {
|
|
1381
|
+
border-right: 3px solid var(--secondary);
|
|
1382
|
+
border-left: 0px;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.card {
|
|
1387
|
+
min-height: 195px !important;
|
|
1388
|
+
transition: var(--default-transition);
|
|
1389
|
+
background-color: #fff !important;
|
|
1390
|
+
|
|
1391
|
+
ds-button {
|
|
1392
|
+
opacity: 0;
|
|
1393
|
+
height: 0px;
|
|
1394
|
+
margin-top: 0px;
|
|
1395
|
+
|
|
1396
|
+
&.show {
|
|
1397
|
+
opacity: 1 !important;
|
|
1398
|
+
height: 35px !important;
|
|
1399
|
+
margin-top: 10px;
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
h1 {
|
|
1404
|
+
font-size: 18px;
|
|
1405
|
+
display: -webkit-box;
|
|
1406
|
+
-webkit-line-clamp: 1;
|
|
1407
|
+
-webkit-box-orient: vertical;
|
|
1408
|
+
overflow: hidden;
|
|
1409
|
+
text-overflow: ellipsis;
|
|
1410
|
+
text-align: start;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
&::part(base) {
|
|
1414
|
+
--card-padding: 22px 32px;
|
|
1415
|
+
background-color: #fff !important;
|
|
1416
|
+
|
|
1417
|
+
&:hover {
|
|
1418
|
+
background-color: #fff !important;
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
&::part(body) {
|
|
1423
|
+
width: 100%;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
&:hover {
|
|
1427
|
+
background-color: #fff !important;
|
|
1428
|
+
|
|
1429
|
+
h1 {
|
|
1430
|
+
color: initial !important;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
ds-button {
|
|
1434
|
+
opacity: 1 !important;
|
|
1435
|
+
height: 35px !important;
|
|
1436
|
+
margin-top: 10px;
|
|
1437
|
+
transition: var(--default-transition);
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.desc {
|
|
1442
|
+
display: -webkit-box;
|
|
1443
|
+
-webkit-line-clamp: 3;
|
|
1444
|
+
-webkit-box-orient: vertical;
|
|
1445
|
+
overflow: hidden;
|
|
1446
|
+
text-overflow: ellipsis;
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.ListInput div:last-child {
|
|
1452
|
+
margin-bottom: 0px !important;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.fc-scroller-liquid-absolute {
|
|
1456
|
+
overflow: auto !important;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
full-calendar.fc .fc-scroller-liquid-absolute,
|
|
1460
|
+
full-calendar.fc .fc-scroller {
|
|
1461
|
+
overflow: auto !important;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
full-calendar.fc {
|
|
1465
|
+
--fc-padding: 12px;
|
|
1466
|
+
--fc-header-bc: var(--light-gray);
|
|
1467
|
+
--fc-border-color: #dee0e2;
|
|
1468
|
+
--fc-day-size: 30px;
|
|
1469
|
+
--fc-day-fs: 14px;
|
|
1470
|
+
--fc-toolbar-button-size: 33px;
|
|
1471
|
+
--fc-toolbar-button-radius: 0;
|
|
1472
|
+
--fc-toolbar-button-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
|
|
1473
|
+
--fc-toolbar-fs: 16px;
|
|
1474
|
+
--fc-toolbar-fw: var(--font-medium);
|
|
1475
|
+
--fc-highlight-color: transparent;
|
|
1476
|
+
//--fc-daygrid-event-dot-width: 9px;
|
|
1477
|
+
--fc-event-height: auto;
|
|
1478
|
+
--fc-toolbar-button-bc: var(--light-gray);
|
|
1479
|
+
--fc-toolbar-button-radius: 100%;
|
|
1480
|
+
--fc-toolbar-button-size: 30px;
|
|
1481
|
+
--fc-toolbar-button-shadow: none;
|
|
1482
|
+
--fc-border: 1px var(--gray);
|
|
1483
|
+
--fc-shadow: none;
|
|
1484
|
+
--fc-event-text-color: var(--black);
|
|
1485
|
+
|
|
1486
|
+
.fc-view table {
|
|
1487
|
+
.fc-col-header {
|
|
1488
|
+
--fc-header-fc: #00;
|
|
1489
|
+
--fc-header-fs: 12px;
|
|
1490
|
+
--fc-header-fw: 400;
|
|
1491
|
+
border: 1px solid;
|
|
1492
|
+
|
|
1493
|
+
th {
|
|
1494
|
+
|
|
1495
|
+
// text-align: center;
|
|
1496
|
+
// border-right: 0px;
|
|
1497
|
+
// border-left: 0px;
|
|
1498
|
+
a {
|
|
1499
|
+
color: var(--dark-gray);
|
|
1500
|
+
font-size: 14px;
|
|
1501
|
+
font-weight: 500;
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
tbody .fc-scroller-harness {
|
|
1507
|
+
td {
|
|
1508
|
+
height: 122px;
|
|
1509
|
+
|
|
1510
|
+
&.fc-day-other {
|
|
1511
|
+
// background: var(--light-gray) !important;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
.fc-daygrid-day-frame {
|
|
1515
|
+
// background-color: initial;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
&:hover {
|
|
1519
|
+
.fc-daygrid-event-harness {
|
|
1520
|
+
// display: none;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
.fc-daygrid-day-bottom:empty {
|
|
1524
|
+
// background-image: url(../images/plus.svg);
|
|
1525
|
+
display: block;
|
|
1526
|
+
width: 100%;
|
|
1527
|
+
height: 100%;
|
|
1528
|
+
background-position: center center;
|
|
1529
|
+
background-repeat: no-repeat;
|
|
1530
|
+
cursor: pointer;
|
|
1531
|
+
position: absolute;
|
|
1532
|
+
z-index: 140;
|
|
1533
|
+
top: 0;
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.fc-daygrid-event-harness {
|
|
1538
|
+
width: 100%;
|
|
1539
|
+
display: flex;
|
|
1540
|
+
justify-content: end;
|
|
1541
|
+
// background: white;
|
|
1542
|
+
height: 100%;
|
|
1543
|
+
z-index: 20;
|
|
1544
|
+
align-items: start;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
.fc-daygrid-day-events {
|
|
1548
|
+
position: initial;
|
|
1549
|
+
height: 100%;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.fc-daygrid-day-frame {
|
|
1553
|
+
height: 100%;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.fc-event {
|
|
1557
|
+
padding: 8px 12px;
|
|
1558
|
+
border-radius: 4px;
|
|
1559
|
+
margin: 0;
|
|
1560
|
+
gap: 8px;
|
|
1561
|
+
// width: 100%;
|
|
1562
|
+
text-align: center;
|
|
1563
|
+
cursor: pointer;
|
|
1564
|
+
overflow: hidden;
|
|
1565
|
+
text-overflow: ellipsis;
|
|
1566
|
+
white-space: nowrap;
|
|
1567
|
+
|
|
1568
|
+
.fc-event-time {
|
|
1569
|
+
display: none;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.fc-event-title {
|
|
1573
|
+
font-weight: 400;
|
|
1574
|
+
font-size: 12px;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.fc-daygrid-event-dot {
|
|
1578
|
+
margin: 0 !important;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
&.created {
|
|
1582
|
+
background: #007bff;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
&.submit {
|
|
1586
|
+
background: #868e96;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
&.progress {
|
|
1590
|
+
background: #ffc107;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
&.executed {
|
|
1594
|
+
background: #dc3545;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
&.closed {
|
|
1598
|
+
background: #28a745;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
&.type {
|
|
1602
|
+
margin-bottom: 8px;
|
|
1603
|
+
padding: 0;
|
|
1604
|
+
display: flex;
|
|
1605
|
+
align-items: center;
|
|
1606
|
+
justify-content: center;
|
|
1607
|
+
width: 30px !important;
|
|
1608
|
+
height: 30px;
|
|
1609
|
+
|
|
1610
|
+
.fc-event-title-container {
|
|
1611
|
+
.fc-event-title {
|
|
1612
|
+
margin-bottom: 0;
|
|
1613
|
+
font-size: 14px;
|
|
1614
|
+
line-height: 14px;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
&::after {
|
|
1618
|
+
display: none;
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.fc-daygrid-day-bottom {
|
|
1625
|
+
color: var(--coral);
|
|
1626
|
+
justify-content: end;
|
|
1627
|
+
display: flex;
|
|
1628
|
+
|
|
1629
|
+
a {
|
|
1630
|
+
padding: 5px;
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.fc-daygrid-body {
|
|
1638
|
+
border-right: 1px solid rgb(222, 224, 226);
|
|
1639
|
+
border-left: 1px solid rgb(222, 224, 226);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
.fc-toolbar.fc-header-toolbar {
|
|
1643
|
+
margin-bottom: 20px;
|
|
1644
|
+
|
|
1645
|
+
.fc-toolbar-chunk {
|
|
1646
|
+
gap: 35px;
|
|
1647
|
+
|
|
1648
|
+
.fc-toolbar-title {
|
|
1649
|
+
min-width: auto;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.fc-prev-button,
|
|
1653
|
+
.fc-next-button {}
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
.fc-theme-standard .fc-popover {
|
|
1659
|
+
border-radius: 5px;
|
|
1660
|
+
|
|
1661
|
+
.fc-popover-header {
|
|
1662
|
+
padding: 10px 4px;
|
|
1663
|
+
|
|
1664
|
+
.fc-popover-close {
|
|
1665
|
+
font-weight: bold;
|
|
1666
|
+
|
|
1667
|
+
font-size: 20px;
|
|
1668
|
+
opacity: 1;
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.fc-popover-body {
|
|
1673
|
+
display: flex;
|
|
1674
|
+
flex-direction: column;
|
|
1675
|
+
gap: 5px;
|
|
1676
|
+
|
|
1677
|
+
.fc-daygrid-event {
|
|
1678
|
+
border: 0px;
|
|
1679
|
+
padding: 5px;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.fc-event-main {
|
|
1683
|
+
color: black;
|
|
1684
|
+
}
|
|
1685
|
+
}
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.fc-h-event .fc-event-main {
|
|
1689
|
+
text-align: center;
|
|
1690
|
+
display: flex;
|
|
1691
|
+
align-items: center;
|
|
1692
|
+
gap: 8px;
|
|
1693
|
+
justify-content: center;
|
|
1694
|
+
width: 100%;
|
|
1695
|
+
line-height: 1;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
full-calendar.fc .fc-view table {
|
|
1699
|
+
// border-left-width: 1px;
|
|
1700
|
+
// border-top-width: 1px;
|
|
1701
|
+
// border-radius: 8px;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.CustomType {
|
|
1705
|
+
margin-bottom: 8px !important;
|
|
1706
|
+
// padding: 12px !important;
|
|
1707
|
+
display: flex !important;
|
|
1708
|
+
align-items: center !important;
|
|
1709
|
+
justify-content: start !important;
|
|
1710
|
+
width: 100% !important;
|
|
1711
|
+
border-radius: 4px;
|
|
1712
|
+
border-left: 5px solid var(--light-gray);
|
|
1713
|
+
|
|
1714
|
+
[dir="rtl"] & {
|
|
1715
|
+
border-left: 0px;
|
|
1716
|
+
border-right: 5px solid var(--light-gray);
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
background: var(--light-gray) !important;
|
|
1720
|
+
|
|
1721
|
+
.fc-event-title-container {
|
|
1722
|
+
.fc-event-title {
|
|
1723
|
+
margin-bottom: 0 !important;
|
|
1724
|
+
font-size: 14px !important;
|
|
1725
|
+
line-height: 14px !important;
|
|
1726
|
+
white-space: pre-wrap !important;
|
|
1727
|
+
text-align: start !important;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
&::after {
|
|
1731
|
+
display: none;
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
&.pending {
|
|
1736
|
+
border-left: 5px solid #cca700 !important;
|
|
1737
|
+
|
|
1738
|
+
[dir="rtl"] & {
|
|
1739
|
+
border-left: 0px;
|
|
1740
|
+
border-right: 5px solid #cca700 !important;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
.fc-event-title {
|
|
1744
|
+
// color: var(--orange) !important;
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
&.success {
|
|
1749
|
+
border-left: 5px solid var(--green) !important;
|
|
1750
|
+
|
|
1751
|
+
[dir="rtl"] & {
|
|
1752
|
+
border-left: 0px;
|
|
1753
|
+
border-right: 5px solid var(--green) !important;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.fc-event-title {
|
|
1757
|
+
// color: var(--orange) !important;
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
&.self {
|
|
1762
|
+
background: rgba(var(--rgb-orange), 0.1) !important;
|
|
1763
|
+
|
|
1764
|
+
.fc-event-title {
|
|
1765
|
+
color: var(--orange) !important;
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
&.official {
|
|
1770
|
+
background: rgba(var(--rgb-purple), 0.1) !important;
|
|
1771
|
+
|
|
1772
|
+
.fc-event-title {
|
|
1773
|
+
color: var(--purple) !important;
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.created {
|
|
1779
|
+
background: #007bff;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.submit {
|
|
1783
|
+
background: #868e96;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.progress {
|
|
1787
|
+
background: #ffc107;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.executed {
|
|
1791
|
+
background: #dc3545;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.closed {
|
|
1795
|
+
background: #28a745;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.tooltip {
|
|
1799
|
+
&.tooltip-plan {
|
|
1800
|
+
z-index: 1;
|
|
1801
|
+
border-radius: 10px;
|
|
1802
|
+
background: #fff;
|
|
1803
|
+
padding: 24px;
|
|
1804
|
+
box-shadow: 0px 8px 16px 7px rgba(0, 0, 0, 0.06);
|
|
1805
|
+
width: 715px;
|
|
1806
|
+
top: -10px !important;
|
|
1807
|
+
|
|
1808
|
+
.submit {
|
|
1809
|
+
border-radius: 3px;
|
|
1810
|
+
background: #00c48c;
|
|
1811
|
+
display: flex;
|
|
1812
|
+
height: 45px;
|
|
1813
|
+
padding: 17px;
|
|
1814
|
+
justify-content: center;
|
|
1815
|
+
align-items: center;
|
|
1816
|
+
gap: 10px;
|
|
1817
|
+
flex: 1 0 0;
|
|
1818
|
+
color: #fff;
|
|
1819
|
+
font-size: 14px;
|
|
1820
|
+
font-weight: 400;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.cancel {
|
|
1824
|
+
border-radius: 3px;
|
|
1825
|
+
border: 1px solid #8e9aa0;
|
|
1826
|
+
background: #fff;
|
|
1827
|
+
display: flex;
|
|
1828
|
+
width: 115px;
|
|
1829
|
+
height: 45px;
|
|
1830
|
+
padding: 17px;
|
|
1831
|
+
justify-content: center;
|
|
1832
|
+
align-items: center;
|
|
1833
|
+
gap: 10px;
|
|
1834
|
+
flex-shrink: 0;
|
|
1835
|
+
color: #8e9aa0;
|
|
1836
|
+
font-size: 14px;
|
|
1837
|
+
font-weight: 400;
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.mat-mdc-menu-content {
|
|
1843
|
+
border: 1px solid var(--light-gray);
|
|
1844
|
+
box-shadow: var(--box-shadow);
|
|
1845
|
+
border-radius: 3px;
|
|
1846
|
+
font-size: 12px;
|
|
1847
|
+
padding: 10px !important;
|
|
1848
|
+
background: white;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.primary-accordion.toggle-accordion {
|
|
1852
|
+
--accordion-height: 55px;
|
|
1853
|
+
--accordion-bc: var(--light-gray);
|
|
1854
|
+
--accordion-bc-active: var(--white);
|
|
1855
|
+
--accordion-side-border-color: transparent;
|
|
1856
|
+
--accordion-side-border-color-active: transparent;
|
|
1857
|
+
--accordion-side-border-width: 0px;
|
|
1858
|
+
--accordion-radius: 5px;
|
|
1859
|
+
--accordion-title-fs: 16px;
|
|
1860
|
+
--accordion-title-fw: var(--font-medium);
|
|
1861
|
+
--accordion-title-fc: var(--black);
|
|
1862
|
+
--accordion-border: 0px solid transparent;
|
|
1863
|
+
--accordion-border-active: 0px solid var(--dark-gray);
|
|
1864
|
+
--accordion-shadow: none;
|
|
1865
|
+
--accordion-shadow-active: none;
|
|
1866
|
+
--panel-padding: 0 20px;
|
|
1867
|
+
--panel-body-border: 0;
|
|
1868
|
+
--panel-body-radius: 0 0 4px 4px;
|
|
1869
|
+
--panel-body-padding: 0 1.5rem;
|
|
1870
|
+
|
|
1871
|
+
--indicator-bc: transparent;
|
|
1872
|
+
--indicator-bc-active: transparent;
|
|
1873
|
+
|
|
1874
|
+
.mat-expansion-panel .mat-expansion-panel-body {
|
|
1875
|
+
padding: 0 !important;
|
|
1876
|
+
padding-top: 16px !important;
|
|
1877
|
+
border-top: 1px solid #e0e6eb !important;
|
|
1878
|
+
margin: 0px 20px 16px;
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
ds-button[color="transparent"]::part(base) {
|
|
1883
|
+
--btn-bg-color: var(--transparent);
|
|
1884
|
+
--btn-border-color: var(--transparent);
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.circle {
|
|
1888
|
+
width: 6px;
|
|
1889
|
+
height: 6px;
|
|
1890
|
+
border-radius: 50%;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.mat-tab-group-center {
|
|
1894
|
+
.mat-mdc-tab-labels {
|
|
1895
|
+
justify-content: center;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.mat-mdc-tab-group mat-tab-body {
|
|
1899
|
+
padding: 1.5rem 0;
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
ds-button.custom-icon::part(base) {
|
|
1904
|
+
--btn-bg-color: rgba(var(--rgb-coral), 0.1);
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
mat-form-field {
|
|
1908
|
+
--input-padding: 7px;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
// @import "node_modules/basic-ui-components/dist/assets/scss/variables.scss";
|
|
1912
|
+
|
|
1913
|
+
// @mixin generate_btn($colors) {
|
|
1914
|
+
// @each $color, $value in $colors {
|
|
1915
|
+
|
|
1916
|
+
// app-table-list .actions ds-button.#{$color},
|
|
1917
|
+
// app-main-card .footer ds-button.#{$color} {
|
|
1918
|
+
// &::part(base) {
|
|
1919
|
+
// --btn-border-color: var(--#{$color});
|
|
1920
|
+
// }
|
|
1921
|
+
|
|
1922
|
+
// &.outline &::part(base) {
|
|
1923
|
+
// --btn-color: var(--#{$color});
|
|
1924
|
+
// }
|
|
1925
|
+
|
|
1926
|
+
// &::part(overlay) {
|
|
1927
|
+
// --btn-overlay-color: var(--#{$color});
|
|
1928
|
+
// }
|
|
1929
|
+
// }
|
|
1930
|
+
// }
|
|
1931
|
+
// }
|
|
1932
|
+
|
|
1933
|
+
// // Use the mixin
|
|
1934
|
+
// @include generate_btn($root-colors);
|
|
1935
|
+
|
|
1936
|
+
.linkedin {
|
|
1937
|
+
color: #0a66c2;
|
|
1938
|
+
|
|
1939
|
+
&::part(base) {
|
|
1940
|
+
--btn-border-color: #0a66c2;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
&::part(overlay) {
|
|
1944
|
+
--btn-overlay-color: #0a66c2;
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
ul.ul-custom {
|
|
1949
|
+
li {
|
|
1950
|
+
padding-right: 15px;
|
|
1951
|
+
margin-right: 12px;
|
|
1952
|
+
|
|
1953
|
+
[dir="rtl"] & {
|
|
1954
|
+
padding-right: 0;
|
|
1955
|
+
margin-right: 0;
|
|
1956
|
+
padding-left: 15px;
|
|
1957
|
+
margin-left: 12px;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
ds-user-card {
|
|
1961
|
+
&::part(base) {
|
|
1962
|
+
min-width: auto;
|
|
1963
|
+
--user-card-gap: 8px;
|
|
1964
|
+
--user-card-align: center;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
&::part(name) {
|
|
1968
|
+
--user-fc: var(--white);
|
|
1969
|
+
--user-fs: 12px;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
&::part(details) {
|
|
1973
|
+
gap: 0;
|
|
1974
|
+
}
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
&:first-child {
|
|
1978
|
+
&::marker {
|
|
1979
|
+
content: "";
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
&:last-child {
|
|
1984
|
+
padding: 0px;
|
|
1985
|
+
margin: 0px;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
&::marker {
|
|
1989
|
+
color: #d9d9d9;
|
|
1990
|
+
font-size: 1.2em;
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.subtitle {
|
|
1996
|
+
h2 {
|
|
1997
|
+
font-size: 20px;
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.mat-mdc-select-arrow-wrapper {
|
|
2002
|
+
display: none !important;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.chart {
|
|
2006
|
+
&.subtitle {
|
|
2007
|
+
h2 {
|
|
2008
|
+
font-size: 16px;
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
}
|