@ticatec/uniface-element 0.1.13 → 0.1.14
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/data-table/DataTable.svelte +83 -54
- package/dist/data-table/DataTable.svelte.d.ts +7 -5
- package/dist/data-table/UniDataTable.d.ts +4 -2
- package/dist/data-table/UniDataTable.js +8 -7
- package/dist/data-table/lib/IndicatorColumn.d.ts +2 -11
- package/dist/data-table/parts/ActionsPanel.svelte +9 -2
- package/dist/data-table/parts/ActionsPanel.svelte.d.ts +1 -1
- package/dist/data-table/parts/ActionsRow.svelte +3 -3
- package/dist/data-table/parts/ContentPanel.svelte +64 -76
- package/dist/data-table/parts/ContentPanel.svelte.d.ts +15 -8
- package/dist/data-table/parts/DataCell.svelte +2 -2
- package/dist/data-table/parts/DataRow.svelte +2 -4
- package/dist/data-table/parts/FixedColumnsPanel.svelte +52 -13
- package/dist/data-table/parts/FixedColumnsPanel.svelte.d.ts +12 -5
- package/dist/data-table/parts/FixedHeaderPanel.svelte +74 -11
- package/dist/data-table/parts/FixedHeaderPanel.svelte.d.ts +8 -2
- package/dist/data-table/parts/FixedRow.svelte +30 -17
- package/dist/data-table/parts/FixedRow.svelte.d.ts +6 -3
- package/dist/data-table/parts/TableHeaderPanel.svelte +32 -63
- package/dist/data-table/parts/TableHeaderPanel.svelte.d.ts +6 -10
- package/dist/data-table/parts/TableRow.d.ts +0 -10
- package/dist/data-table/parts/TableRow.js +0 -29
- package/dist/data-table/parts/TableRows.d.ts +0 -2
- package/dist/data-table/parts/TableRows.js +0 -2
- package/dist/data-table/parts/TreeRootCell.svelte +3 -0
- package/dist/data-table/parts/TreeRootCell.svelte.d.ts +18 -0
- package/dist/pagination-panel/PaginationPanel.svelte +1 -1
- package/dist/pagination-panel/PaginationPanel.svelte.d.ts +1 -1
- package/dist/ticatec-uniface-web.css +142 -208
- package/package.json +1 -1
|
@@ -189,10 +189,13 @@
|
|
|
189
189
|
--uniface-data-table-alter-row-bg: #f7f7f7;
|
|
190
190
|
--uniface-data-table-header-bg: #F8FAFC;
|
|
191
191
|
--uniface-data-table-shadow-gap: 2px;
|
|
192
|
+
--uniface-data-table-header-divid-color: #B3BCCA;
|
|
193
|
+
--uniface-data-table-cell-padding: 3px 4px;
|
|
192
194
|
--uniface-data-table-inline-row-panel-border: 1px solid #F8FAFC;
|
|
193
195
|
--uniface-data-table-inline-row-panel-bg: #F1F5F9;
|
|
194
196
|
--uniface-scroll-color: #e1e1e180;
|
|
195
|
-
--uniface-data-table-inline-border-color: #
|
|
197
|
+
--uniface-data-table-inline-border-color: #CBD5E1;
|
|
198
|
+
--uniface-data-table-bg: #ffffff;
|
|
196
199
|
--uniface-treeview-icon-color: #8AA7FF;
|
|
197
200
|
--uniface-treeview-icon-hover-color: #0057FE;
|
|
198
201
|
--uniface-treeview-item-bg: #EEF4FF;
|
|
@@ -2534,6 +2537,8 @@
|
|
|
2534
2537
|
flex-direction: row;
|
|
2535
2538
|
gap: 8px;
|
|
2536
2539
|
align-items: center;
|
|
2540
|
+
height: 100%;
|
|
2541
|
+
box-sizing: border-box;
|
|
2537
2542
|
}
|
|
2538
2543
|
.uniface-range-wrapper .uniface-range-editor .divider {
|
|
2539
2544
|
position: relative;
|
|
@@ -3619,13 +3624,13 @@
|
|
|
3619
3624
|
}
|
|
3620
3625
|
|
|
3621
3626
|
.uniface-data-table {
|
|
3622
|
-
width: 100%;
|
|
3623
|
-
height: 100%;
|
|
3624
3627
|
position: relative;
|
|
3625
3628
|
box-sizing: border-box;
|
|
3626
|
-
background: transparent;
|
|
3627
3629
|
overflow: hidden;
|
|
3630
|
+
background-color: var(--uniface-data-table-bg, #ffffff);
|
|
3628
3631
|
color: var(--uniface-default-text-color, #374151);
|
|
3632
|
+
display: flex;
|
|
3633
|
+
flex-direction: row;
|
|
3629
3634
|
}
|
|
3630
3635
|
.uniface-data-table ::-webkit-scrollbar {
|
|
3631
3636
|
-webkit-appearance: none;
|
|
@@ -3644,97 +3649,25 @@
|
|
|
3644
3649
|
background-color: var(--uniface-scroll-color, rgba(225, 225, 225, 0.5019607843));
|
|
3645
3650
|
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
|
|
3646
3651
|
}
|
|
3647
|
-
.uniface-data-table
|
|
3648
|
-
width: 100%;
|
|
3649
|
-
height: 100%;
|
|
3652
|
+
.uniface-data-table .vertical-center {
|
|
3650
3653
|
position: relative;
|
|
3651
|
-
|
|
3652
|
-
|
|
3654
|
+
top: 50%;
|
|
3655
|
+
transform: translateY(-50%);
|
|
3653
3656
|
}
|
|
3654
|
-
.uniface-data-table .
|
|
3655
|
-
|
|
3656
|
-
display: flex;
|
|
3657
|
+
.uniface-data-table .header-row {
|
|
3658
|
+
flex: 0 0 auto;
|
|
3657
3659
|
width: 100%;
|
|
3658
|
-
flex-wrap: nowrap;
|
|
3659
|
-
flex-direction: row;
|
|
3660
|
-
align-items: center;
|
|
3661
|
-
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3662
|
-
height: 36px;
|
|
3663
|
-
}
|
|
3664
|
-
.uniface-data-table .table-row.alternative {
|
|
3665
|
-
background-color: var(--uniface-data-table-background-color, #f7f7f7);
|
|
3666
|
-
}
|
|
3667
|
-
.uniface-data-table.row-border .table-row {
|
|
3668
|
-
border-bottom: 1px solid var(--uniface-data-table-row-border-color, #f0f0f0);
|
|
3669
|
-
}
|
|
3670
|
-
.uniface-data-table .table-header-panel {
|
|
3671
3660
|
position: relative;
|
|
3672
|
-
|
|
3673
|
-
background-color: var(--uniface-data-table-header-bg, #F8FAFC);
|
|
3674
|
-
flex: 0 0 auto;
|
|
3675
|
-
overflow: hidden;
|
|
3661
|
+
height: var(--uniface-data-table-header-hight, 48px);
|
|
3676
3662
|
font-weight: 600;
|
|
3677
3663
|
user-select: none;
|
|
3664
|
+
background-color: var(--uniface-data-table-header-bg, #F8FAFC);
|
|
3665
|
+
border-bottom: 1px solid transparent;
|
|
3666
|
+
color: var(--uniface-data-table-header-color, #374151);
|
|
3678
3667
|
display: flex;
|
|
3679
3668
|
flex-direction: row;
|
|
3680
|
-
height: 48px;
|
|
3681
|
-
align-items: center;
|
|
3682
|
-
text-align: center;
|
|
3683
|
-
}
|
|
3684
|
-
.uniface-data-table .table-header-panel .header-indicator {
|
|
3685
|
-
flex: 0 0 auto;
|
|
3686
|
-
width: 50px;
|
|
3687
|
-
height: 100%;
|
|
3688
|
-
border-right: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
|
|
3689
|
-
box-sizing: border-box;
|
|
3690
|
-
z-index: 1;
|
|
3691
|
-
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3692
|
-
}
|
|
3693
|
-
.uniface-data-table .table-header-panel .header-indicator > div {
|
|
3694
|
-
padding: 4px;
|
|
3695
|
-
height: 100%;
|
|
3696
|
-
display: flex;
|
|
3697
|
-
flex-direction: row;
|
|
3698
|
-
justify-content: center;
|
|
3699
|
-
align-items: center;
|
|
3700
|
-
}
|
|
3701
|
-
.uniface-data-table .table-header-panel .header-actions {
|
|
3702
|
-
flex: 0 0 auto;
|
|
3703
|
-
border-left: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
|
|
3704
|
-
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
|
|
3705
|
-
display: block;
|
|
3706
|
-
width: 100%;
|
|
3707
|
-
font-weight: 600;
|
|
3708
|
-
height: 100%;
|
|
3709
|
-
position: relative;
|
|
3710
|
-
box-sizing: border-box;
|
|
3711
|
-
}
|
|
3712
|
-
.uniface-data-table .table-header-panel .header-actions > div {
|
|
3713
|
-
top: 50%;
|
|
3714
|
-
position: relative;
|
|
3715
|
-
transform: translateY(-50%);
|
|
3716
|
-
}
|
|
3717
|
-
.uniface-data-table .table-header-panel .header-row-panel {
|
|
3718
|
-
display: flex;
|
|
3719
|
-
flex-direction: row;
|
|
3720
|
-
position: relative;
|
|
3721
|
-
box-sizing: border-box;
|
|
3722
3669
|
}
|
|
3723
|
-
.uniface-data-table .
|
|
3724
|
-
text-align: center;
|
|
3725
|
-
color: var(--uniface-data-table-header-color, #374151);
|
|
3726
|
-
overflow: hidden;
|
|
3727
|
-
position: relative;
|
|
3728
|
-
flex: 0 0 auto;
|
|
3729
|
-
line-height: 28px;
|
|
3730
|
-
}
|
|
3731
|
-
.uniface-data-table .table-header-panel .table-cell > div {
|
|
3732
|
-
text-align: center;
|
|
3733
|
-
}
|
|
3734
|
-
.uniface-data-table .table-header-panel .table-cell .sortable {
|
|
3735
|
-
cursor: pointer;
|
|
3736
|
-
}
|
|
3737
|
-
.uniface-data-table .table-header-panel .table-cell .header-cell-divider {
|
|
3670
|
+
.uniface-data-table .header-row .header-cell-divider {
|
|
3738
3671
|
position: absolute;
|
|
3739
3672
|
top: 0;
|
|
3740
3673
|
right: 0;
|
|
@@ -3742,190 +3675,183 @@
|
|
|
3742
3675
|
width: 3px;
|
|
3743
3676
|
z-index: 2;
|
|
3744
3677
|
}
|
|
3745
|
-
.uniface-data-table .
|
|
3678
|
+
.uniface-data-table .header-row .header-cell-divider::before {
|
|
3746
3679
|
content: ""; /* 必须指定伪元素的内容 */
|
|
3747
3680
|
position: absolute;
|
|
3748
3681
|
left: 50%; /* 将伪元素水平居中 */
|
|
3749
|
-
top:
|
|
3750
|
-
bottom:
|
|
3682
|
+
top: 25%;
|
|
3683
|
+
bottom: 25%;
|
|
3751
3684
|
width: 1px; /* 竖线宽度 */
|
|
3752
3685
|
background-color: var(--uniface-data-table-header-separator-color, #6B7280); /* 竖线颜色 */
|
|
3753
3686
|
transform: translateX(-50%); /* 精确居中 */
|
|
3754
3687
|
}
|
|
3755
|
-
.uniface-data-table .
|
|
3756
|
-
cursor:
|
|
3688
|
+
.uniface-data-table .header-row .header-cell-divider.resizer {
|
|
3689
|
+
cursor: col-resize;
|
|
3757
3690
|
}
|
|
3758
|
-
.uniface-data-table
|
|
3759
|
-
display:
|
|
3760
|
-
vertical-align: center;
|
|
3761
|
-
align-self: center;
|
|
3691
|
+
.uniface-data-table.cell-border .header-cell-divider:not(.resizer)::before {
|
|
3692
|
+
display: none;
|
|
3762
3693
|
}
|
|
3763
|
-
.uniface-data-table .data-
|
|
3694
|
+
.uniface-data-table .data-cell {
|
|
3695
|
+
height: 100%;
|
|
3696
|
+
border-right: 1px solid transparent;
|
|
3697
|
+
padding: var(--uniface-data-table-cell-padding, 3px 4px);
|
|
3764
3698
|
position: relative;
|
|
3765
|
-
width: 100%;
|
|
3766
|
-
flex: 1 1 auto;
|
|
3767
|
-
overflow: hidden;
|
|
3768
|
-
display: flex;
|
|
3769
|
-
flex-direction: row;
|
|
3770
|
-
}
|
|
3771
|
-
.uniface-data-table .data-content-panel .table-row {
|
|
3772
|
-
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3773
|
-
height: 36px;
|
|
3774
3699
|
}
|
|
3775
|
-
.uniface-data-table .data-
|
|
3776
|
-
|
|
3700
|
+
.uniface-data-table .data-cell .sortable {
|
|
3701
|
+
cursor: pointer;
|
|
3777
3702
|
}
|
|
3778
|
-
.uniface-data-table .data-
|
|
3779
|
-
|
|
3780
|
-
height: 100%;
|
|
3781
|
-
position: relative;
|
|
3782
|
-
box-sizing: border-box;
|
|
3783
|
-
padding: 4px;
|
|
3703
|
+
.uniface-data-table .data-cell:last-child {
|
|
3704
|
+
border-right: none;
|
|
3784
3705
|
}
|
|
3785
|
-
.uniface-data-table .data-
|
|
3706
|
+
.uniface-data-table .data-cell > div:first-child {
|
|
3707
|
+
width: 100%;
|
|
3786
3708
|
position: relative;
|
|
3787
3709
|
top: 50%;
|
|
3788
3710
|
transform: translateY(-50%);
|
|
3789
|
-
}
|
|
3790
|
-
.uniface-data-table .data-content-panel .table-row .table-data-cell .cell-text {
|
|
3791
3711
|
overflow: hidden;
|
|
3792
3712
|
}
|
|
3793
|
-
.uniface-data-table .data-
|
|
3794
|
-
|
|
3713
|
+
.uniface-data-table .data-row {
|
|
3714
|
+
position: relative;
|
|
3715
|
+
display: flex;
|
|
3716
|
+
width: 100%;
|
|
3717
|
+
flex-wrap: nowrap;
|
|
3718
|
+
flex-direction: row;
|
|
3719
|
+
align-items: center;
|
|
3720
|
+
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3795
3721
|
}
|
|
3796
|
-
.uniface-data-table .data-
|
|
3797
|
-
|
|
3722
|
+
.uniface-data-table .data-row.alternative {
|
|
3723
|
+
background-color: var(--uniface-data-table-alter-row-bg, #f7f7f7);
|
|
3798
3724
|
}
|
|
3799
|
-
.uniface-data-table .data-
|
|
3800
|
-
|
|
3801
|
-
min-height: 32px;
|
|
3802
|
-
box-sizing: border-box;
|
|
3725
|
+
.uniface-data-table.row-border .header-row, .uniface-data-table.row-border .data-row {
|
|
3726
|
+
border-bottom: 1px solid var(--uniface-data-table-inline-border-color, #CBD5E1);
|
|
3803
3727
|
}
|
|
3804
|
-
.uniface-data-table
|
|
3805
|
-
|
|
3806
|
-
height: 100%;
|
|
3807
|
-
position: relative;
|
|
3808
|
-
box-sizing: border-box;
|
|
3809
|
-
overflow: hidden;
|
|
3810
|
-
display: flex;
|
|
3811
|
-
flex-direction: column;
|
|
3728
|
+
.uniface-data-table.cell-border .data-cell {
|
|
3729
|
+
border-right-color: var(--uniface-data-table-inline-border-color, #CBD5E1);
|
|
3812
3730
|
}
|
|
3813
|
-
.uniface-data-table .
|
|
3731
|
+
.uniface-data-table .rows-container {
|
|
3814
3732
|
flex: 1 1 auto;
|
|
3815
3733
|
height: 100%;
|
|
3816
3734
|
width: 100%;
|
|
3817
|
-
|
|
3735
|
+
box-sizing: border-box;
|
|
3818
3736
|
overflow: hidden;
|
|
3819
3737
|
}
|
|
3820
|
-
.uniface-data-table .
|
|
3821
|
-
height: 100%;
|
|
3738
|
+
.uniface-data-table .rows-container > div {
|
|
3822
3739
|
width: 100%;
|
|
3823
3740
|
position: relative;
|
|
3824
3741
|
}
|
|
3825
|
-
.uniface-data-table .
|
|
3742
|
+
.uniface-data-table .left-fixed-panel, .uniface-data-table .action-panel {
|
|
3743
|
+
flex: 0 0 auto;
|
|
3744
|
+
position: relative;
|
|
3745
|
+
box-sizing: border-box;
|
|
3746
|
+
overflow: hidden;
|
|
3747
|
+
display: flex;
|
|
3748
|
+
flex-direction: column;
|
|
3749
|
+
}
|
|
3750
|
+
.uniface-data-table .left-fixed-panel .bottom-mask-overlay, .uniface-data-table .action-panel .bottom-mask-overlay {
|
|
3826
3751
|
flex: 0 0 auto;
|
|
3827
3752
|
width: 100%;
|
|
3828
3753
|
height: 8px;
|
|
3829
3754
|
box-sizing: border-box;
|
|
3830
|
-
background-color: #ffffff;
|
|
3831
|
-
border-top: 1px solid var(--uniface-
|
|
3755
|
+
background-color: var(--uniface-data-table-bg, #ffffff);
|
|
3756
|
+
border-top: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3757
|
+
}
|
|
3758
|
+
.uniface-data-table .left-fixed-panel {
|
|
3759
|
+
z-index: 1;
|
|
3760
|
+
border-right: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3761
|
+
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3832
3762
|
}
|
|
3833
|
-
.uniface-data-table .
|
|
3834
|
-
|
|
3835
|
-
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
|
|
3763
|
+
.uniface-data-table .left-fixed-panel .data-cell {
|
|
3764
|
+
flex: 0 0 auto;
|
|
3836
3765
|
}
|
|
3837
|
-
.uniface-data-table .
|
|
3838
|
-
|
|
3766
|
+
.uniface-data-table .left-fixed-panel .data-cell:last-child {
|
|
3767
|
+
border-right: none;
|
|
3839
3768
|
}
|
|
3840
|
-
.uniface-data-table .
|
|
3841
|
-
position: relative;
|
|
3842
|
-
width: 100%;
|
|
3769
|
+
.uniface-data-table .left-fixed-panel .indicator-cell {
|
|
3843
3770
|
display: flex;
|
|
3844
|
-
box-sizing: border-box;
|
|
3845
|
-
border-bottom: 1px solid #f0f0f0;
|
|
3846
3771
|
flex-direction: row;
|
|
3772
|
+
justify-content: center;
|
|
3847
3773
|
align-items: center;
|
|
3848
3774
|
}
|
|
3849
|
-
.uniface-data-table .
|
|
3850
|
-
|
|
3775
|
+
.uniface-data-table .left-fixed-panel .indicator-cell .expand-icon {
|
|
3776
|
+
display: none;
|
|
3777
|
+
color: var(--uniface-hover-item-color, #42A5F5);
|
|
3778
|
+
font-size: 14px;
|
|
3779
|
+
width: 16px;
|
|
3780
|
+
position: absolute;
|
|
3781
|
+
right: 4px;
|
|
3782
|
+
cursor: pointer;
|
|
3851
3783
|
}
|
|
3852
|
-
.uniface-data-table .
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
white-space: nowrap;
|
|
3784
|
+
.uniface-data-table .left-fixed-panel .indicator-cell .expand-icon:active {
|
|
3785
|
+
top: 5px;
|
|
3786
|
+
}
|
|
3787
|
+
.uniface-data-table .left-fixed-panel .indicator-cell:hover .expand-icon {
|
|
3788
|
+
display: block;
|
|
3858
3789
|
}
|
|
3859
|
-
.uniface-data-table .
|
|
3860
|
-
width: 50px;
|
|
3861
|
-
border-right: 1px solid var(--uniface-inner-border-color, #d9d9d9);
|
|
3790
|
+
.uniface-data-table .action-panel {
|
|
3862
3791
|
z-index: 1;
|
|
3863
|
-
|
|
3864
|
-
|
|
3792
|
+
border-left: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
|
|
3793
|
+
box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
|
|
3865
3794
|
}
|
|
3866
|
-
.uniface-data-table .
|
|
3795
|
+
.uniface-data-table .action-panel .header-row {
|
|
3796
|
+
display: block;
|
|
3797
|
+
text-align: center;
|
|
3798
|
+
}
|
|
3799
|
+
.uniface-data-table .action-panel .data-row .action-cell {
|
|
3800
|
+
display: flex;
|
|
3801
|
+
flex-direction: row;
|
|
3802
|
+
align-items: center;
|
|
3803
|
+
width: max-content;
|
|
3804
|
+
height: 100%;
|
|
3805
|
+
overflow-x: auto;
|
|
3806
|
+
white-space: nowrap;
|
|
3807
|
+
position: relative;
|
|
3808
|
+
}
|
|
3809
|
+
.uniface-data-table .table-row {
|
|
3867
3810
|
position: relative;
|
|
3868
|
-
width: 100%;
|
|
3869
3811
|
display: flex;
|
|
3870
|
-
|
|
3871
|
-
|
|
3812
|
+
width: 100%;
|
|
3813
|
+
flex-wrap: nowrap;
|
|
3872
3814
|
flex-direction: row;
|
|
3873
3815
|
align-items: center;
|
|
3816
|
+
background-color: var(--uniface-data-table-background-color, #ffffff);
|
|
3817
|
+
height: 36px;
|
|
3874
3818
|
}
|
|
3875
|
-
.uniface-data-table .
|
|
3819
|
+
.uniface-data-table .table-row.alternative {
|
|
3876
3820
|
background-color: var(--uniface-data-table-background-color, #f7f7f7);
|
|
3877
3821
|
}
|
|
3878
|
-
.uniface-data-table
|
|
3879
|
-
|
|
3822
|
+
.uniface-data-table.row-border .table-row {
|
|
3823
|
+
border-bottom: 1px solid var(--uniface-data-table-row-border-color, #f0f0f0);
|
|
3880
3824
|
}
|
|
3881
|
-
.uniface-data-table .data-content-panel
|
|
3825
|
+
.uniface-data-table .data-content-panel {
|
|
3826
|
+
position: relative;
|
|
3827
|
+
width: 100%;
|
|
3882
3828
|
flex: 1 1 auto;
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
.uniface-data-table .data-content-panel .action-button {
|
|
3887
|
-
display: inline-block;
|
|
3888
|
-
cursor: pointer;
|
|
3889
|
-
color: var(--uniface-button-primary-background-color, #42A5F5);
|
|
3890
|
-
box-sizing: border-box;
|
|
3891
|
-
padding: 2px 4px;
|
|
3892
|
-
text-decoration: none;
|
|
3829
|
+
overflow: hidden;
|
|
3830
|
+
display: flex;
|
|
3831
|
+
flex-direction: column;
|
|
3893
3832
|
}
|
|
3894
|
-
.uniface-data-table .data-content-panel .
|
|
3895
|
-
|
|
3833
|
+
.uniface-data-table .data-content-panel .data-cell {
|
|
3834
|
+
flex: 0 0 auto;
|
|
3896
3835
|
}
|
|
3897
|
-
.uniface-data-table .data-content-panel .
|
|
3836
|
+
.uniface-data-table .data-content-panel .data-cell > div:first-child {
|
|
3898
3837
|
position: relative;
|
|
3899
|
-
top:
|
|
3838
|
+
top: 50%;
|
|
3839
|
+
transform: translateY(-50%);
|
|
3900
3840
|
}
|
|
3901
|
-
.uniface-data-table .data-content-panel .
|
|
3841
|
+
.uniface-data-table .data-content-panel .header-row > div {
|
|
3902
3842
|
position: relative;
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
transition: none;
|
|
3908
|
-
display: block;
|
|
3909
|
-
}
|
|
3910
|
-
.uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents {
|
|
3911
|
-
background: var(--uniface-app-background-color, #ffffff);
|
|
3912
|
-
box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
|
|
3913
|
-
padding-top: 0;
|
|
3914
|
-
opacity: 1;
|
|
3915
|
-
transform: scale(1);
|
|
3916
|
-
display: block;
|
|
3843
|
+
height: 100%;
|
|
3844
|
+
display: flex;
|
|
3845
|
+
flex-direction: row;
|
|
3846
|
+
align-items: center;
|
|
3917
3847
|
}
|
|
3918
|
-
.uniface-data-table .data-content-panel .
|
|
3919
|
-
|
|
3848
|
+
.uniface-data-table .data-content-panel .header-row .data-cell {
|
|
3849
|
+
text-align: center !important;
|
|
3920
3850
|
}
|
|
3921
|
-
.uniface-data-table .data-content-panel .data-
|
|
3922
|
-
|
|
3851
|
+
.uniface-data-table .data-content-panel .expand-data-row {
|
|
3852
|
+
background-color: var(--uniface-data-table-expand-row-bg, #f7f7f7);
|
|
3853
|
+
min-height: 32px;
|
|
3923
3854
|
box-sizing: border-box;
|
|
3924
|
-
line-height: 1.5em;
|
|
3925
|
-
cursor: pointer;
|
|
3926
|
-
}
|
|
3927
|
-
.uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents .action-popover:hover {
|
|
3928
|
-
background-color: #f7f7f7;
|
|
3929
3855
|
}
|
|
3930
3856
|
.uniface-data-table .data-content-panel .data-view-panel {
|
|
3931
3857
|
flex: 1 1 auto;
|
|
@@ -4064,6 +3990,14 @@
|
|
|
4064
3990
|
width: fit-content;
|
|
4065
3991
|
}
|
|
4066
3992
|
|
|
3993
|
+
html {
|
|
3994
|
+
box-sizing: border-box;
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
*, *:before, *:after {
|
|
3998
|
+
box-sizing: inherit;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4067
4001
|
.uniface-mask, .uniface-mask-overlay {
|
|
4068
4002
|
position: absolute;
|
|
4069
4003
|
top: 0;
|