index.scss 1.91 KB
.z-schema-page {
  &__header {
    margin-bottom: 10px;
  }
  &__filter {
    border: 1px solid #ebeef5;
    padding-top: 10px;
    padding-right: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  &__action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
    .el-button + .el-button {
      margin-left: 0;
    }
    .el-button {
      margin-right: 10px;
      margin-bottom: 10px;
    }
  }
  &__table {
    &-operation {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      .el-button + .el-button {
        margin-left: 0;
      }
      .el-button {
        margin-right: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
      }
    }
  }
  &__footer {
    margin-top: 10px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .selection-info {
      word-break: break-all;
      white-space: nowrap;
      font-size: 12px;
      color: #606266;
      .num {
        color: #333;
        font-weight: bold;
        padding: 0 5px;
        font-size: 16px;
      }
      .el-button {
        margin-left: 5px;
      }
    }
    .el-pagination {
      flex: auto;
    }
  }
}

.z-loading-toast {
  $toast-color: #fff;
  $toast-bg-color: #000;
  background-color: rgba($toast-bg-color, 0);
  .el-loading-spinner {
    width: 200px;
    height: 120px;
    margin: auto;
    background-color: rgba($toast-bg-color, 0.7);
    color: $toast-color;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .path {
      stroke: $toast-color;
    }
    .el-icon-loading {
      font-size: 32px;
      color: $toast-color;
    }
    .el-loading-text {
      font-size: 14px;
      color: $toast-color;
      margin-top: 10px;
    }
  }
}