qms-angular 1.1.74 → 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.
- package/bundles/qms-angular.umd.js +84 -66
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/select-access-dialog/select-access-dialog.component.js +19 -5
- package/esm2015/lib/components/select-department-tree/select-department-tree.component.js +24 -20
- package/fesm2015/qms-angular.js +41 -23
- package/fesm2015/qms-angular.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/select-access-dialog/select-access-dialog.component.scss +20 -10
package/package.json
CHANGED
@@ -11,9 +11,6 @@
|
|
11
11
|
|
12
12
|
.select-access-dialog-container {
|
13
13
|
font-family: 'Open Sans';
|
14
|
-
&.h-75 {
|
15
|
-
height: 75vh;
|
16
|
-
}
|
17
14
|
.mat-expansion-panel .mat-expansion-panel-body {
|
18
15
|
padding-top: 0px !important;
|
19
16
|
}
|
@@ -53,7 +50,7 @@
|
|
53
50
|
}
|
54
51
|
|
55
52
|
.fs-12{
|
56
|
-
font-size: 12px;
|
53
|
+
font-size: 12px !important;
|
57
54
|
}
|
58
55
|
|
59
56
|
.color-primary{
|
@@ -426,8 +423,8 @@
|
|
426
423
|
min-height: 50vh;
|
427
424
|
}
|
428
425
|
}
|
429
|
-
.
|
430
|
-
height:
|
426
|
+
.scroll-view {
|
427
|
+
height: 40vh;
|
431
428
|
}
|
432
429
|
}
|
433
430
|
|
@@ -448,7 +445,7 @@
|
|
448
445
|
|
449
446
|
.selected-containter {
|
450
447
|
font-family: 'Open Sans';
|
451
|
-
height:
|
448
|
+
max-height: calc((100vh - 300px) * 0.25) !important;
|
452
449
|
overflow-y: scroll;
|
453
450
|
overflow-x: hidden;
|
454
451
|
padding: 0 12px 16px;
|
@@ -464,8 +461,21 @@
|
|
464
461
|
font-family: 'Open Sans';
|
465
462
|
}
|
466
463
|
}
|
467
|
-
|
468
|
-
|
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;
|
469
479
|
}
|
470
480
|
}
|
471
481
|
|
@@ -480,5 +490,5 @@
|
|
480
490
|
@media screen and (max-width: 900px) {
|
481
491
|
.select-access-dialog-container .chip-item-result {
|
482
492
|
max-width: 150px;
|
483
|
-
|
493
|
+
}
|
484
494
|
}
|