This commit is contained in:
parent
f95b5207a0
commit
16633d1adf
|
|
@ -420,7 +420,7 @@ const getStatusType = (status) => {
|
|||
}
|
||||
|
||||
.left-panel .card:nth-of-type(2) {
|
||||
flex: 1;
|
||||
height: 584px;
|
||||
}
|
||||
|
||||
/* 右侧卡片固定高度 */
|
||||
|
|
@ -429,9 +429,7 @@ const getStatusType = (status) => {
|
|||
}
|
||||
|
||||
.right-panel .card:nth-of-type(2) {
|
||||
flex: 1;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
height: 354px;
|
||||
}
|
||||
|
||||
.right-panel .card:nth-of-type(3) {
|
||||
|
|
@ -717,10 +715,41 @@ const getStatusType = (status) => {
|
|||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 12px 16px;
|
||||
background: rgba(234, 242, 254, 0.6);
|
||||
border-radius: 8px;
|
||||
border: 1px dashed rgba(45, 103, 237, 0.3);
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
background-color: rgba(234, 242, 254, 0.6);
|
||||
background-image:
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2),
|
||||
linear-gradient(#4f7ff2, #4f7ff2);
|
||||
background-repeat: no-repeat;
|
||||
background-size:
|
||||
10px 2px, 2px 10px,
|
||||
10px 2px, 2px 10px,
|
||||
10px 2px, 2px 10px,
|
||||
10px 2px, 2px 10px;
|
||||
background-position:
|
||||
left top, left top,
|
||||
right top, right top,
|
||||
left bottom, left bottom,
|
||||
right bottom, right bottom;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rescue-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border: 1px dashed rgb(125, 132, 148);
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.rescue-left {
|
||||
|
|
@ -809,7 +838,8 @@ const getStatusType = (status) => {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.control-item.control-item-full {
|
||||
.control-item.control-item-full,
|
||||
.control-grid .control-item:last-child {
|
||||
flex: 0 0 100%;
|
||||
height: calc((100% - 24px) / 3);
|
||||
min-height: 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue