修复bug

This commit is contained in:
X1627315083
2025-01-17 17:16:01 +08:00
parent a3ca957c87
commit b5124abbfa
19 changed files with 896 additions and 46 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 B

View File

@@ -714,7 +714,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.generalModel_state .generalModel_state_item > input {
height: 2.5rem !important;
border-radius: 4rem;
padding: 2rem !important;
padding: calc(2rem - 1px * 2) !important;
box-sizing: content-box;
background-color: #f3f3f3;
background-color: #fff;
@@ -738,7 +738,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.generalModel_state .generalModel_state_item .range_picker {
height: 2.5rem !important;
border-radius: 4rem;
padding: 2rem !important;
padding: calc(2rem - 1px * 2) !important;
box-sizing: content-box;
background-color: #f3f3f3;
background-color: #fff;
@@ -872,6 +872,15 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
box-shadow: none;
height: calc(65rem*1.2);
}
.generalModel.fullScreen {
max-width: 100%;
}
.generalModel.fullScreen .ant-modal-content {
border-radius: 0rem;
}
.generalModel.fullScreen .ant-modal-body {
padding: 2.5rem 3rem;
}
.generalModel .ant-modal-content {
border-radius: 3rem;
height: 100%;
@@ -1098,10 +1107,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.sketchboard_upload_modal .switch_type_list.showEvents * {
pointer-events: auto;
}
.ant-modal-wrap {
height: 100vh;
overflow: auto;
}
.ant-btn:hover,
.ant-btn:focus,
.ant-btn:active,
@@ -1610,10 +1615,14 @@ textarea:focus {
.upload_item .upload_file_item .ant-upload-picture-card-wrapper .ant-upload-select-picture-card {
width: calc(6rem*1.2);
height: calc(6rem*1.2);
border: calc(0.3rem*1.2) solid #ededed;
border: calc(0.3rem*1.2) solid #000;
border-radius: calc(1rem*1.2);
margin: 0;
}
.upload_item .upload_file_item .ant-upload-picture-card-wrapper .ant-upload-select-picture-card .fi-br-upload {
font-size: 2rem;
color: #000;
}
.upload_item .upload_file_item.upload_file_item:last-child {
margin: 0;
}

View File

@@ -781,7 +781,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
>input{
height: 2.5rem !important;
border-radius: 4rem;
padding: 2rem !important;
padding: calc(2rem - 1px * 2) !important;
box-sizing: content-box;
background-color: #f3f3f3;
background-color: #fff;
@@ -805,7 +805,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.ant-picker-range,.ant-select-selector,.range_picker{
height: 2.5rem !important;
border-radius: 4rem;
padding: 2rem !important;
padding: calc(2rem - 1px * 2) !important;
box-sizing: content-box;
background-color: #f3f3f3;
background-color: #fff;
@@ -946,6 +946,15 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
position: relative;
box-shadow: none;
height: calc(65rem*1.2);
&.fullScreen{
max-width: 100%;
.ant-modal-content{
border-radius: 0rem;
}
.ant-modal-body{
padding: 2.5rem 3rem;
}
}
.ant-modal-content{
border-radius: 3rem;
height: 100%;
@@ -1192,12 +1201,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
}
}
.ant-modal-wrap{
height: 100vh;
// overflow: hidden;
overflow: auto;
// position: fixed;
}
// .ant-modal-wrap{
// height: 100vh;
// overflow: auto;
// }
// .driver-overlay-animated{
// z-index: 10002 !important;
// }
@@ -1742,9 +1749,13 @@ textarea:focus{
.ant-upload-select-picture-card {
width: calc(6rem*1.2);
height: calc(6rem*1.2);
border: calc(0.3rem*1.2) solid #ededed;
border: calc(0.3rem*1.2) solid #000;
border-radius: calc(1rem*1.2);
margin: 0;
.fi-br-upload{
font-size: 2rem;
color: #000;
}
}