@policystudio/policy-studio-ui-vue 1.1.64 → 1.1.65
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/dist/css/psui_styles.css
CHANGED
|
@@ -2419,7 +2419,7 @@ video {
|
|
|
2419
2419
|
|
|
2420
2420
|
.psui-el-table-results.layout-flexible thead tr th:first-child {
|
|
2421
2421
|
padding-left: 1rem;
|
|
2422
|
-
padding-right:
|
|
2422
|
+
padding-right: 1.5rem;
|
|
2423
2423
|
text-align: left;
|
|
2424
2424
|
background-color: #ffffff ;
|
|
2425
2425
|
position: sticky;
|
|
@@ -2472,6 +2472,22 @@ video {
|
|
|
2472
2472
|
min-width: 388px;
|
|
2473
2473
|
}
|
|
2474
2474
|
|
|
2475
|
+
.psui-el-table-results.layout-flexible thead tr:not(:first-of-type) th:nth-child(2) {
|
|
2476
|
+
position: sticky;
|
|
2477
|
+
z-index: 10;
|
|
2478
|
+
background-color: #ffffff ;
|
|
2479
|
+
left:388px;
|
|
2480
|
+
min-width: 140px;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
.psui-el-table-results.layout-flexible thead tr:not(:first-of-type) th:nth-child(3) {
|
|
2484
|
+
position: sticky;
|
|
2485
|
+
z-index: 10;
|
|
2486
|
+
background-color: #ffffff ;
|
|
2487
|
+
left: 528px;
|
|
2488
|
+
box-shadow: inset -1px 0px 0px #EBEEF0;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2475
2491
|
.psui-el-table-results.layout-flexible tbody tr {
|
|
2476
2492
|
--border-opacity: 1;
|
|
2477
2493
|
border-color: #E6ECF2;
|
|
@@ -2557,6 +2573,22 @@ video {
|
|
|
2557
2573
|
padding-bottom: 8px;
|
|
2558
2574
|
}
|
|
2559
2575
|
|
|
2576
|
+
.psui-el-table-results.layout-flexible tbody tr td:nth-child(2) {
|
|
2577
|
+
position: sticky;
|
|
2578
|
+
z-index: 10;
|
|
2579
|
+
min-width: 140px;
|
|
2580
|
+
left: 388px;
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
.psui-el-table-results.layout-flexible tbody tr td:nth-child(3) {
|
|
2584
|
+
position: sticky;
|
|
2585
|
+
z-index: 10;
|
|
2586
|
+
min-width: 140px;
|
|
2587
|
+
left: 528px;
|
|
2588
|
+
padding-right: 22px;
|
|
2589
|
+
box-shadow: inset -1px 0px 0px #EBEEF0;
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2560
2592
|
.psui-el-table-results.layout-flexible tbody tr td .psui-el-tooltip-dialog {
|
|
2561
2593
|
text-align: left;
|
|
2562
2594
|
max-width: 180px;
|
package/package.json
CHANGED
|
@@ -372,12 +372,13 @@
|
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
&:first-child {
|
|
375
|
-
@apply psui-pl-4 psui-pr-
|
|
375
|
+
@apply psui-pl-4 psui-pr-6 psui-text-left psui-bg-white psui-sticky psui-z-10 psui-left-0;
|
|
376
376
|
|
|
377
377
|
> div {
|
|
378
378
|
@apply psui-items-start;
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
|
+
|
|
381
382
|
}
|
|
382
383
|
|
|
383
384
|
&:first-of-type {
|
|
@@ -416,6 +417,18 @@
|
|
|
416
417
|
@apply psui-text-left;
|
|
417
418
|
min-width: 388px;
|
|
418
419
|
}
|
|
420
|
+
|
|
421
|
+
&:nth-child(2) {
|
|
422
|
+
@apply psui-sticky psui-z-10 psui-bg-white;
|
|
423
|
+
left:388px;
|
|
424
|
+
min-width: 140px;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
&:nth-child(3) {
|
|
428
|
+
@apply psui-sticky psui-z-10 psui-bg-white;
|
|
429
|
+
left: 528px;
|
|
430
|
+
box-shadow: inset -1px 0px 0px #EBEEF0;
|
|
431
|
+
}
|
|
419
432
|
}
|
|
420
433
|
}
|
|
421
434
|
}
|
|
@@ -481,6 +494,20 @@
|
|
|
481
494
|
padding-bottom: 8px;
|
|
482
495
|
}
|
|
483
496
|
|
|
497
|
+
&:nth-child(2) {
|
|
498
|
+
@apply psui-sticky psui-z-10;
|
|
499
|
+
min-width: 140px;
|
|
500
|
+
left: 388px;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
&:nth-child(3) {
|
|
504
|
+
@apply psui-sticky psui-z-10;
|
|
505
|
+
min-width: 140px;
|
|
506
|
+
left: 528px;
|
|
507
|
+
padding-right: 22px;
|
|
508
|
+
box-shadow: inset -1px 0px 0px #EBEEF0;
|
|
509
|
+
}
|
|
510
|
+
|
|
484
511
|
.psui-el-tooltip-dialog {
|
|
485
512
|
text-align: left;
|
|
486
513
|
max-width: 180px;
|