index.less 2.07 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3 4 5
.content {
  position: relative;
  display: flex;
  width: 100%;
}
mayongxin's avatar
mayongxin committed
6
.tablemanager_container {
邓超's avatar
邓超 committed
7 8 9 10 11 12 13 14 15
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #f0f0f0;
  .lack {
    background-color: rgb(255, 255, 0);
    color: rgb(255, 0, 0);
  }
16 17 18
  .ant-table-pagination.ant-pagination {
    margin: 0;
  }
邓超's avatar
邓超 committed
19 20 21 22 23 24 25 26 27 28 29
  .ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
    margin-left: 0;
  }
  .ant-table.ant-table-bordered > .ant-table-container {
    border: none;
  }
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
  .ant-btn {
mayongxin's avatar
mayongxin committed
30
    display: flex;
邓超's avatar
邓超 committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    align-items: center;
  }

  .clickRowStyle {
    background: #cfe7fd;
  }
  .operate_bar {
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    .fast_search {
      height: 60px;
      margin-right: 10px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
mayongxin's avatar
mayongxin committed
52

邓超's avatar
邓超 committed
53 54 55 56
      .title {
        margin-left: 20px;
        margin-right: 5px;
      }
mayongxin's avatar
mayongxin committed
57
    }
邓超's avatar
邓超 committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  }
}
.orgContainer {
  position: relative;
  left: 0;
  top: 0;
  height: calc(100vh - 74px);
  width: 250px;
  margin-right: 10px;
  transition-property: width;
  transition-duration: 0.5s;
  white-space: nowrap;
  .processTitle {
    font-size: 15px;
    font-weight: bold;
    color: #333e51;
    padding-left: 14px;
  }
  .splitLine {
    width: 100%;
    color: #eeecec;
  }
  .listItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #414e65;
    cursor: pointer;
  }
  .listHover {
    background-color: #f5f6f9;
  }
94

邓超's avatar
邓超 committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  .pickItem {
    background-color: #aed8fa;
  }
  .switcher {
    display: block;
    position: absolute;
    font-size: 18px;
    color: #1890ff !important;
    top: 50%;
    right: 2px;
    transform: translate(0%, -50%);
    z-index: 1;
  }
}
.orgContainerHide {
  width: 26px;
111
}