123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .airport-view {
- width: calc(100% + calc(var(--app-main-padding) * 2) - 8px);
- height: 100%;
- margin-left: calc(var(--app-main-padding) * -1 + 8px);
- margin-right: calc(var(--app-main-padding) * -1);
- .airport-header {
- padding-right: 32px;
- display: flex;
- margin-bottom: 16px;
- .airport-form {
- margin-right: 30px;
- }
- .airport-count {
- flex: 1;
- display: flex;
- align-items: center;
- .count-box {
- flex: 1;
- }
- }
- .airport-settings {
- display: flex;
- align-items: center;
- .common-switch {
- margin-right: 24px;
- }
- }
- }
- .airport-table {
- width: 100%;
- height: calc(100% - 32px - 16px);
- .el-table-v2 :deep {
- .el-table-v2__header-cell,
- .el-table-v2__row-cell {
- padding: 0;
- &:not(:last-of-type) {
- border-right: 1px solid #dfe3ea;
- }
- }
- .el-table-v2__header-cell-text,
- .el-table-v2__cell-text {
- font-size: 12px;
- 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 {
- &.is-selected {
- background-color: var(--el-table-current-row-bg-color);
- }
- &.bg-gray {
- background-color: #d2d6df;
- & + :not(.bg-gray) {
- border-top: 2px solid #e83f82;
- }
- }
- .el-table-v2__row-cell {
- &.cell-warning {
- background-color: #f6cda5;
- }
- &.cell-alarm {
- background-color: #f38080;
- }
- &.cell-click .el-table-v2__cell-text {
- color: #2d67e3;
- cursor: pointer;
- }
- }
- }
- }
- .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;
- }
- }
- }
- }
- }
- }
|