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