CN-263 实体列表分页功能

This commit is contained in:
hyx
2022-01-05 20:24:02 +08:00
parent b1040d2bb6
commit db27d6213f
5 changed files with 61 additions and 24 deletions

View File

@@ -34,8 +34,8 @@
}
.explorer-container {
display: flex;
height: 100%;
overflow: hidden auto;
height: calc(100% - 120px);
}
.explorer-foot {
display: flex;

View File

@@ -5,6 +5,7 @@
.entity-list__content {
height: 100%;
width: 100%;
overflow: inherit;
.entity-list--block {
display: flex;
@@ -13,12 +14,14 @@
justify-content: flex-start;
border-radius: 2px;
width: calc(100% - 10px);
overflow: hidden auto;
height: calc(100% - 40px);
overflow: inherit;
}
.entity-list--list {
display: flex;
flex-direction: column;
overflow: hidden auto;
height: calc(100% - 40px);
overflow: inherit;
.cn-entity__shadow {
position: fixed;
@@ -30,4 +33,12 @@
}
}
}
.entity__pagination{
position: absolute;
bottom: 9px;
height: 40px;
width: calc(100% - 538px);
}
}