|
|
|
@ -800,9 +800,38 @@ body { |
|
|
|
|
|
|
|
|
|
.p-dialog { |
|
|
|
|
.el-dialog { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
margin: 0 !important; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 50%; |
|
|
|
|
left: 50%; |
|
|
|
|
transform: translate(-50%, -50%); |
|
|
|
|
border-radius: $p-radius-mini; |
|
|
|
|
max-height: 90vh; |
|
|
|
|
background: $p-dark-bg; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog:before { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
top: 0; |
|
|
|
|
height: 100%; |
|
|
|
|
width: 3rem; |
|
|
|
|
background: linear-gradient(to bottom, rgba($p-secondary-color, .0) 0, rgba($p-secondary-color, 1) 50%, rgba($p-secondary-color, 0) 100%); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog:after { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
right: 0; |
|
|
|
|
top: 0; |
|
|
|
|
height: 100%; |
|
|
|
|
width: 3rem; |
|
|
|
|
background: linear-gradient(to bottom, rgba($p-secondary-color, .0) 0, rgba($p-secondary-color, 1) 50%, rgba($p-secondary-color, 0) 100%); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__header { |
|
|
|
|
position: relative; |
|
|
|
|
padding-left: 50rem; |
|
|
|
@ -820,6 +849,16 @@ body { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__header:before { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
top: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 3rem; |
|
|
|
|
background: linear-gradient(to right, rgba($p-secondary-color, .0) 0, rgba($p-secondary-color, 1) 50%, rgba($p-secondary-color, 0) 100%); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__title:after { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 20rem; |
|
|
|
@ -832,6 +871,16 @@ body { |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__body:before { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
bottom: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 3rem; |
|
|
|
|
background: linear-gradient(to right, rgba($p-secondary-color, .0) 0, rgba($p-secondary-color, 1) 50%, rgba($p-secondary-color, 0) 100%); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__body { |
|
|
|
|
padding: $p-spacer-medium; |
|
|
|
|
} |
|
|
|
@ -854,6 +903,7 @@ body { |
|
|
|
|
.el-dialog__headerbtn:hover { |
|
|
|
|
opacity: 1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* 分页 */ |
|
|
|
|