ReportsManage.less 2.57 KB
@import '~antd/es/style/themes/default.less';

.lackParams {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.reportManage {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 8px;

  .contentWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;

    .controlRow {
      display: flex;
      flex-direction: row;
      margin-bottom: 4px;
      padding: 6px;
      background: #ffffff;
      border-radius: 4px;
    }

    .tableContent {
      flex: 1;
      padding: 6px;
      background: #ffffff;

      .handleColumnWrapper {
        display: flex;
        justify-content: space-around;

        .editButton {
          cursor: pointer;

          &:hover {
            color: rgb(24, 144, 255);
          }
        }

        .deleteButton {
          color: rgb(255, 0, 0);
          cursor: pointer;

          &:hover {
            //color: rgb(24, 144, 255);
          }
        }
      }

      .spinWrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 60vh;
      }

      :global {
        .@{ant-prefix}-table-container {
          height: 100%;

          & > .@{ant-prefix}-table-body {
            border-right: 1px solid #dbe7fb;
            border-bottom: 1px solid #dbe7fb;
          }

          .@{ant-prefix}-table-body {
            flex: 1;
          }

          .@{ant-prefix}-table-summary > table > tfoot > tr > td {
            border-right: none;
          }

          .@{ant-prefix}-table-summary > table > tfoot > tr:not(:last-child) > td {
            border-bottom: none;
          }

          .@{ant-prefix}-table-summary > table > tfoot > tr:last-child > td {
            border-bottom: 1px solid #dbe7fb;
          }
        }

        .@{ant-prefix}-basic-table .@{ant-prefix}-pagination {
          border-top: none;
        }
      }
    }
  }

  .link {
    cursor: pointer;

    &:hover {
      //color: #1685FF;
      font-weight: bold;
      text-decoration: underline;
    }
  }

  :global {
    .@{ant-prefix}-form-item {
      margin-bottom: 0 !important;
    }
  }

  .prefixOrSuffix {
    color: rgba(0, 0, 0, 0.65);
    font-size: 10px;
  }

  :global {
    ::-webkit-scrollbar,
    *::-webkit-scrollbar {
      width: 0px;
      height: 6px;
    }

    ::-webkit-scrollbar-track,
    *::-webkit-scrollbar-track {
      background: #f2f2f2;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-thumb {
      background: #dcdcdc;
      border-radius: 5px;
    }
  }
}