123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .station-view {
- width: 100%;
- height: 100%;
- .station-header {
- display: flex;
- margin-bottom: 16px;
- .station-form {
- margin-right: 30px;
- }
- .station-count {
- flex: 1;
- display: flex;
- align-items: center;
- .count-box {
- flex: 1;
- }
- }
- .station-settings {
- display: flex;
- align-items: center;
- .station-switch {
- margin-right: 24px;
- }
- }
- }
- .station-table {
- width: 100%;
- height: calc(100% - 32px - 16px);
- :deep .el-table-v2 {
- .el-table-v2__header-cell,
- .el-table-v2__row-cell {
- padding: 0;
- &:not(:last-child) {
- border-right: 1px solid #dfe3ea;
- }
- }
- .el-table-v2__header-cell-text,
- .el-table-v2__cell-text {
- font-size: 14px;
- font-family: Helvetica, Microsoft YaHei;
- font-weight: bold;
- color: #101116;
- white-space: pre-line;
- }
- .el-table-v2__header {
- .el-table-v2__header-cell {
- &.bg-yellow {
- background-color: #f9f3cb;
- }
- &.bg-green {
- background-color: #ace5d3;
- }
- &.bg-cyan {
- background-color: #b7d5e8;
- }
- }
- }
- .el-table-v2__body {
- .el-table-v2__row {
- &.bg-gray {
- background-color: #d2d6df;
- }
- &.underline-red {
- border-bottom: 2px solid #e83f82;
- }
- .el-table-v2__row-cell {
- position: relative;
- .el-table-v2__cell-text {
- .cell-text {
- position: relative;
- z-index: 1;
- }
- .cell-background {
- content: '';
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 0;
- display: none;
- }
- &.cell-warning .cell-background {
- display: block;
- background-color: #f6cda5;
- }
- &.cell-error .cell-background {
- display: block;
- background-color: #f38080;
- }
- }
- }
- }
- }
- .table-footer {
- padding-left: 8px;
- height: 100%;
- display: flex;
- align-items: center;
- background-color: #dfe3ea;
- &-count {
- font-size: 16px;
- font-family: Helvetica, Microsoft YaHei;
- font-weight: bold;
- color: #303133;
- &:not(:last-of-type) {
- margin-right: 48px;
- }
- }
- }
- }
- }
- }
|