152 lines
3.0 KiB
SCSS
152 lines
3.0 KiB
SCSS
.border-t-1-tr{
|
|
border-top: 1px solid transparent;
|
|
}
|
|
.panel {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction:column;
|
|
}
|
|
.panel.list-page {
|
|
.table-list {
|
|
height: calc(100% - 60px);
|
|
padding-left: 10px;
|
|
}
|
|
.no-data {
|
|
text-align: center;
|
|
position: absolute;
|
|
width: 100%;
|
|
top: 50%;
|
|
margin-top: -54px;
|
|
.no-data-div {
|
|
color: $--color-text-regular;
|
|
}
|
|
}
|
|
.chart-diagram {
|
|
.main-container {
|
|
padding: 0 !important;
|
|
}
|
|
.nz-table-list.h100 {
|
|
height: 100% !important;
|
|
}
|
|
.right-bottom-zoom {
|
|
.zoom-option {
|
|
color: $--color-text-regular !important;
|
|
}
|
|
.zoom-option:hover {
|
|
color: $--color-text-regular !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.panel {
|
|
.right-box.right-box-chart-temp {
|
|
.el-table {
|
|
border-radius: 5px;
|
|
.el-table__body-wrapper {
|
|
height: calc(100% - 40px) !important;
|
|
}
|
|
th.is-center {
|
|
border-right: none;
|
|
}
|
|
th {
|
|
border-right: 1px solid $--border-color-light;
|
|
}
|
|
th:nth-of-type(2) {
|
|
border-left: 1px solid $--border-color-light;
|
|
}
|
|
tr {
|
|
background-color: $--background-color-empty;
|
|
}
|
|
td {
|
|
border-bottom: 1px solid $--border-color-light;
|
|
}
|
|
th.is-leaf {
|
|
border-bottom: 1px solid $--border-color-light;
|
|
}
|
|
}
|
|
.el-table--border th.gutter:last-of-type {
|
|
border-bottom: 1px solid $--border-color-light;
|
|
}
|
|
.el-table--border::after {
|
|
background-color: $--border-color-light;
|
|
}
|
|
.el-table::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
/* begin-chart list*/
|
|
.table-list {
|
|
margin-top: 0;
|
|
overflow-y: auto;
|
|
height: calc(100% - 60px);
|
|
flex: 1;
|
|
background-color: $--background-color-empty;
|
|
.legend--table-cell,.legend-item {
|
|
color: $--color-text-regular;
|
|
}
|
|
.legend-container {
|
|
.legend--table-row.table-header {
|
|
.legend--table-cell {
|
|
color: #33a2e5;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.table-list-box {
|
|
height: 100%;
|
|
//border-top: 1px solid $--background-color-base;
|
|
background-color: $--background-color-empty;
|
|
}
|
|
.box-content {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
.panel-select-header {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
margin-bottom: 15px;
|
|
}
|
|
.panel-select-tail {
|
|
border-top: 1px solid $--border-color-base;
|
|
.panel-select-add {
|
|
line-height: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
i {
|
|
color: $--color-primary;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
padding-left: 20px;
|
|
}
|
|
}
|
|
}
|
|
.select-panel-title{
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
color:$--color-text-primary;
|
|
}
|
|
/* end-chart list*/
|
|
.panel-loading {
|
|
position: fixed;
|
|
left: 250px;
|
|
top: 59px;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: center center no-repeat $--background-color-empty;
|
|
z-index: 10;
|
|
}
|
|
.show-panel-name{
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
font-weight: bold;
|
|
max-width: 310px;
|
|
overflow:hidden;
|
|
text-overflow:ellipsis;
|
|
white-space:nowrap;
|
|
vertical-align: bottom;
|
|
color: $--color-text-primary;
|
|
}
|