qms-angular 1.1.73 → 1.1.75

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.
@@ -50,7 +50,7 @@
50
50
  }
51
51
 
52
52
  .fs-12{
53
- font-size: 12px;
53
+ font-size: 12px !important;
54
54
  }
55
55
 
56
56
  .color-primary{
@@ -395,4 +395,100 @@
395
395
  background-color: unset !important;
396
396
  color: unset !important;
397
397
  }
398
+
399
+ .d-flex {
400
+ display: flex;
401
+ }
402
+
403
+ .align-items-center {
404
+ align-items: center;
405
+ }
406
+
407
+ .justify-content-between {
408
+ justify-content: space-between;
409
+ }
410
+
411
+ .mobile-view {
412
+ overflow-x: hidden;
413
+ ::ng-deep {
414
+ .mat-expansion-panel-header-title {
415
+ font-family: 'Open sans';
416
+ }
417
+
418
+ .mat-tab-body-wrapper {
419
+ overflow-x: hidden;
420
+ overflow-y: scroll;
421
+ }
422
+ .mat-dialog-content {
423
+ min-height: 50vh;
424
+ }
425
+ }
426
+ .scroll-view {
427
+ height: 40vh;
428
+ }
429
+ }
430
+
431
+ .result-body {
432
+ ::ng-deep .mat-expansion-panel-content .mat-expansion-panel-body {
433
+ height: 80px !important;
434
+ overflow-y: scroll;
435
+ padding: 0 12px 16px;
436
+ }
437
+ }
438
+
439
+ .content-break {
440
+ display: inline-block !important;
441
+ word-wrap: break-word !important;
442
+ word-break: break-word !important;
443
+ white-space: normal !important;
444
+ }
445
+
446
+ .selected-containter {
447
+ font-family: 'Open Sans';
448
+ max-height: calc((100vh - 300px) * 0.25) !important;
449
+ overflow-y: scroll;
450
+ overflow-x: hidden;
451
+ padding: 0 12px 16px;
452
+ .mat-chip.qms-chip {
453
+ height: auto !important;
454
+ }
455
+ }
456
+
457
+ ::ng-deep .tab-body-container {
458
+ overflow-x: hidden;
459
+ overflow-y: scroll;
460
+ .mat-expansion-panel-header {
461
+ font-family: 'Open Sans';
462
+ }
463
+ }
464
+
465
+ .text-name,
466
+ .text-label,
467
+ .text-label + span {
468
+ font-size: 12px !important;
469
+ font-weight: 500 !important;
470
+ }
471
+ .py-10 {
472
+ padding: 10px 0;
473
+ }
474
+ .fw-500{
475
+ font-weight: 500;
476
+ }
477
+ .qms-dialog-footer {
478
+ min-height: 36px;
479
+ }
398
480
  }
481
+
482
+
483
+
484
+ @media screen and (max-width: 1100px) {
485
+ .select-access-dialog-container .chip-item-result {
486
+ max-width: 200px;
487
+ }
488
+ }
489
+
490
+ @media screen and (max-width: 900px) {
491
+ .select-access-dialog-container .chip-item-result {
492
+ max-width: 150px;
493
+ }
494
+ }
@@ -53,7 +53,7 @@
53
53
  border-bottom: 1px solid #ccc;
54
54
  height: 1px;
55
55
  margin-top: 10px;
56
- min-width: 300px;
56
+ // min-width: 300px;
57
57
  max-width: 100%;
58
58
  }
59
59
 
@@ -68,6 +68,7 @@
68
68
  .mat-expansion-panel-header-title {
69
69
  align-items: center;
70
70
  margin-left: 12px;
71
+ font-family: 'Open sans';
71
72
  }
72
73
  }
73
74
 
@@ -208,7 +209,49 @@
208
209
  background-color: unset !important;
209
210
  color: unset !important;
210
211
  }
212
+
213
+ ::ng-deep .mat-expansion-indicator {
214
+ margin-right: 10px !important;
215
+ }
216
+
217
+ ::ng-deep .mat-expansion-panel-header {
218
+ height: 48px !important;
219
+ }
220
+
221
+ .chips-container-mobile {
222
+ display: flex;
223
+ flex-direction: column;
224
+ height: 100px !important;
225
+ overflow-x: hidden;
226
+ overflow-y: scroll;
227
+ .mat-chip-list-wrapper {
228
+ span {
229
+ display: inline-block;
230
+ word-wrap: break-word;
231
+ word-break: break-all;
232
+ white-space: normal;
233
+ }
234
+ }
235
+ }
236
+
237
+ .deparment-tree-mobile-view {
238
+ overflow-x: hidden;
239
+ }
240
+
241
+ span.content-break {
242
+ & > span:nth-child(1){
243
+ display: inline-block !important;
244
+ word-break: break-all;
245
+ word-wrap: break-word;
246
+ white-space: normal !important;
247
+ }
248
+ }
249
+ .height-auto {
250
+ height: auto;
251
+ }
252
+
211
253
  }
254
+
212
255
  .qms-spinner-wrapper{
213
256
  display: inline-block;
214
257
  width: 22px;
@@ -48,6 +48,14 @@
48
48
  justify-content: flex-end;
49
49
  }
50
50
 
51
+ .justify-content-between {
52
+ justify-content: space-between;
53
+ }
54
+
55
+ .flex-col {
56
+ flex-direction: column;
57
+ }
58
+
51
59
  .text-selected {
52
60
  color: black(0.6);
53
61
  font-size: 12px;
@@ -123,7 +131,7 @@
123
131
  }
124
132
 
125
133
  .tree-department-wrapper {
126
- padding-right: 4px;
134
+ // padding-right: 4px;
127
135
  overflow: hidden;
128
136
  position: relative;
129
137
  transition: height 0.3s ease-in-out;
@@ -337,6 +345,15 @@
337
345
  }
338
346
  }
339
347
 
348
+ .content-break {
349
+ display: inline-block !important;
350
+ word-wrap: break-word !important;
351
+ word-break: break-word !important;
352
+ white-space: normal !important;
353
+ max-width: 186px !important;
354
+ width: auto;
355
+ }
356
+
340
357
  .mat-checkbox-label {
341
358
  flex-direction: row;
342
359
  align-items: center;