This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/assets/css/components/common/detailView/detailView.scss

85 lines
1.6 KiB
SCSS
Raw Normal View History

2021-11-01 17:23:01 +08:00
.active{
color: $--color-primary;
}
.nz-detail-view{
width: 100%;
height: calc(100% - 60px);
display: flex;
.no-data{
flex: 1;
display: flex;
align-items: center;
width: 100%;
justify-content: center;
2021-11-01 17:23:01 +08:00
color: $--color-text-secondary;
font-size: 14px;
flex-direction: column;
}
.nz-detail-view-left{
width: 260px;
display: flex;
flex-direction: column;
margin: 0 10px 10px 20px;
height: calc(100% - 12px);
2021-11-01 17:23:01 +08:00
border: 1px solid $--border-color-light;
.data-detail {
flex: 1;
2021-10-12 12:25:20 +08:00
height: calc(100% - 100px);
}
.nz-detail-view-pagination {
height: 30px;
text-align: center;
margin-bottom: 10px;
margin-top: 10px;
}
}
.nz-detail-view-right{
flex: 1;
overflow: hidden;
padding-right: 10px;
}
2021-11-01 17:23:01 +08:00
.el-pagination .btn-next, .el-pagination .btn-prev {
border: none;
background: none;
padding: 0;
vertical-align: middle;
height: 100%;
margin-top: 0;
.el-icon{
2021-11-01 17:23:01 +08:00
background: $--background-color-empty;
height: 100%;
font-size: 22px;
}
}
2021-11-01 17:23:01 +08:00
.jump-input {
width: 40px;
vertical-align: middle;
.el-input__inner {
padding: 0 5px;
height: 24px;
line-height: 24px;
text-align: center;
}
}
2021-11-01 17:23:01 +08:00
.jump-pages {
padding-left: 9px;
font-size: 14px;
2021-11-01 17:23:01 +08:00
color: $--color-text-regular;
vertical-align: middle;
}
/deep/ .bottom-log {
height: 100%;
overflow-y: auto;
padding-top: 15px;
}
}
2021-11-01 17:23:01 +08:00
.detail-view {
.list-page div.main-container{
height: calc(100% - 20px);
width: calc(100% - 20px);
}
}
2021-11-01 17:23:01 +08:00