ls-pro-common 3.0.47 → 3.0.48
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/common.css +48 -4
- package/dist/common.js +1 -1
- package/dist/common.min.css +48 -4
- package/dist/common.min.js +1 -1
- package/package.json +3 -3
package/dist/common.css
CHANGED
|
@@ -761,7 +761,7 @@ a:hover {
|
|
|
761
761
|
padding-top: 8px;
|
|
762
762
|
}
|
|
763
763
|
.ant-pro-table {
|
|
764
|
-
z-index:
|
|
764
|
+
z-index: inherit;
|
|
765
765
|
}
|
|
766
766
|
.ant-pro-table:not(:root):fullscreen {
|
|
767
767
|
min-height: 100vh;
|
|
@@ -819,12 +819,13 @@ a:hover {
|
|
|
819
819
|
height: 0;
|
|
820
820
|
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
821
821
|
border-radius: 8px;
|
|
822
|
+
overflow: visible;
|
|
822
823
|
}
|
|
823
824
|
.ant-pro-table-srcoll .ant-card .ant-card-body {
|
|
824
825
|
height: 100%;
|
|
825
826
|
display: flex;
|
|
826
827
|
flex-direction: column;
|
|
827
|
-
overflow
|
|
828
|
+
overflow: visible;
|
|
828
829
|
}
|
|
829
830
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper {
|
|
830
831
|
flex: 1;
|
|
@@ -2805,6 +2806,47 @@ html {
|
|
|
2805
2806
|
.search-setting .ant-tree-treenode:hover {
|
|
2806
2807
|
background-color: #f5f5f5;
|
|
2807
2808
|
}
|
|
2809
|
+
.search-modal-body {
|
|
2810
|
+
min-height: 40vh;
|
|
2811
|
+
max-height: 80vh;
|
|
2812
|
+
display: flex;
|
|
2813
|
+
}
|
|
2814
|
+
.search-modal-body .body-left {
|
|
2815
|
+
width: 230px;
|
|
2816
|
+
border-right: #f0f0f0 1px solid;
|
|
2817
|
+
padding: 10px;
|
|
2818
|
+
}
|
|
2819
|
+
.search-modal-body .body-left .search-setting-item {
|
|
2820
|
+
padding: 5px 6px;
|
|
2821
|
+
border-radius: 4px;
|
|
2822
|
+
margin-top: 8px;
|
|
2823
|
+
position: relative;
|
|
2824
|
+
height: 33px;
|
|
2825
|
+
background-color: #f5f5f5;
|
|
2826
|
+
}
|
|
2827
|
+
.search-modal-body .body-left .search-setting-item .search-item-btn {
|
|
2828
|
+
position: absolute;
|
|
2829
|
+
right: 2px;
|
|
2830
|
+
top: 5px;
|
|
2831
|
+
cursor: pointer;
|
|
2832
|
+
display: none;
|
|
2833
|
+
}
|
|
2834
|
+
.search-modal-body .body-left .search-setting-item.is_current,
|
|
2835
|
+
.search-modal-body .body-left .search-setting-item:hover {
|
|
2836
|
+
background-color: #e6f7ff;
|
|
2837
|
+
}
|
|
2838
|
+
.search-modal-body .body-left .search-setting-item.is_current .search-item-btn,
|
|
2839
|
+
.search-modal-body .body-left .search-setting-item:hover .search-item-btn {
|
|
2840
|
+
display: inline-flex;
|
|
2841
|
+
}
|
|
2842
|
+
.search-modal-body .body-right {
|
|
2843
|
+
flex: 1;
|
|
2844
|
+
}
|
|
2845
|
+
.search-modal-footer {
|
|
2846
|
+
display: flex;
|
|
2847
|
+
align-items: center;
|
|
2848
|
+
justify-content: space-between;
|
|
2849
|
+
}
|
|
2808
2850
|
|
|
2809
2851
|
.ant-pro-form-light-filter {
|
|
2810
2852
|
line-height: 30px;
|
|
@@ -2913,7 +2955,7 @@ html {
|
|
|
2913
2955
|
padding-top: 8px;
|
|
2914
2956
|
}
|
|
2915
2957
|
.ant-pro-table {
|
|
2916
|
-
z-index:
|
|
2958
|
+
z-index: inherit;
|
|
2917
2959
|
}
|
|
2918
2960
|
.ant-pro-table:not(:root):fullscreen {
|
|
2919
2961
|
min-height: 100vh;
|
|
@@ -2971,12 +3013,13 @@ html {
|
|
|
2971
3013
|
height: 0;
|
|
2972
3014
|
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
2973
3015
|
border-radius: 8px;
|
|
3016
|
+
overflow: visible;
|
|
2974
3017
|
}
|
|
2975
3018
|
.ant-pro-table-srcoll .ant-card .ant-card-body {
|
|
2976
3019
|
height: 100%;
|
|
2977
3020
|
display: flex;
|
|
2978
3021
|
flex-direction: column;
|
|
2979
|
-
overflow
|
|
3022
|
+
overflow: visible;
|
|
2980
3023
|
}
|
|
2981
3024
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper {
|
|
2982
3025
|
flex: 1;
|
|
@@ -3412,6 +3455,7 @@ html {
|
|
|
3412
3455
|
margin-top: 8px;
|
|
3413
3456
|
position: relative;
|
|
3414
3457
|
height: 33px;
|
|
3458
|
+
background-color: #f5f5f5;
|
|
3415
3459
|
}
|
|
3416
3460
|
.table-column-setting-left .table-column-item .item-btn {
|
|
3417
3461
|
position: absolute;
|