修改BUG:程序异常、菜单管理等弹窗内容比较多的弹窗在不同的分辨率下弹框大小不能自适应
This commit is contained in:
parent
3093a70025
commit
9d64a2bd47
|
@ -114,9 +114,30 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media (max-height: 400px) {
|
||||
@media (min-height: 568px) {
|
||||
.modal-body {
|
||||
height: 180px;
|
||||
max-height: 440px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 567px) {
|
||||
.modal-body {
|
||||
height: 260px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 414px) {
|
||||
.modal-body {
|
||||
height: 190px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 320px) {
|
||||
.modal-body {
|
||||
height: 150px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,6 +97,8 @@
|
|||
top: 62px;
|
||||
bottom: 80px;
|
||||
overflow: auto;
|
||||
max-height: inherit;
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
.icon-content .modal-footer {
|
||||
|
|
Loading…
Reference in New Issue