index.less 2.42 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3 4
.content {
  position: relative;
  display: flex;
  width: 100%;
5
  height: 100%;
邓超's avatar
邓超 committed
6
}
7

mayongxin's avatar
mayongxin committed
8
.tablemanager_container {
邓超's avatar
邓超 committed
9 10 11 12
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
13
  height: 100%;
邓超's avatar
邓超 committed
14
  border: 1px solid #f0f0f0;
15

邓超's avatar
邓超 committed
16 17 18 19
  .lack {
    background-color: rgb(255, 255, 0);
    color: rgb(255, 0, 0);
  }
20 21 22

  .ant-pagination {
    margin: 10px 20px 0 0;
23
  }
24 25 26

  .ant-table-wrapper {
    height: 100%;
邓超's avatar
邓超 committed
27
  }
28 29 30

  .ant-table-container {
    height: 100%;
邓超's avatar
邓超 committed
31
  }
32 33 34 35 36 37 38 39 40 41 42 43 44 45

  .ant-table {
    height: calc(100% - 50px);
  }

  // .ant-table-pagination.ant-pagination {
  //   margin: 0;
  // }
  // .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;
  // }
邓超's avatar
邓超 committed
46 47 48 49
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
50

邓超's avatar
邓超 committed
51
  .ant-btn {
mayongxin's avatar
mayongxin committed
52
    display: flex;
邓超's avatar
邓超 committed
53 54 55 56 57 58
    align-items: center;
  }

  .clickRowStyle {
    background: #cfe7fd;
  }
59

邓超's avatar
邓超 committed
60 61 62 63 64 65 66 67
  .operate_bar {
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
68

邓超's avatar
邓超 committed
69 70 71 72 73 74 75
    .fast_search {
      height: 60px;
      margin-right: 10px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
mayongxin's avatar
mayongxin committed
76

邓超's avatar
邓超 committed
77 78 79 80
      .title {
        margin-left: 20px;
        margin-right: 5px;
      }
mayongxin's avatar
mayongxin committed
81
    }
邓超's avatar
邓超 committed
82 83
  }
}
84

邓超's avatar
邓超 committed
85 86 87 88
.orgContainer {
  position: relative;
  left: 0;
  top: 0;
89 90
  // height: calc(100vh - 74px);
  height: 100%;
邓超's avatar
邓超 committed
91 92 93 94 95
  width: 250px;
  margin-right: 10px;
  transition-property: width;
  transition-duration: 0.5s;
  white-space: nowrap;
96 97 98 99 100

  .ant-card-body {
    padding: 12px 24px 24px 10px;
  }

邓超's avatar
邓超 committed
101 102 103 104 105
  .processTitle {
    font-size: 15px;
    font-weight: bold;
    color: #333e51;
  }
106

邓超's avatar
邓超 committed
107 108 109 110
  .splitLine {
    width: 100%;
    color: #eeecec;
  }
111

邓超's avatar
邓超 committed
112 113 114 115 116 117 118 119 120 121 122
  .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;
  }
123

邓超's avatar
邓超 committed
124 125 126
  .listHover {
    background-color: #f5f6f9;
  }
127

邓超's avatar
邓超 committed
128 129 130
  .pickItem {
    background-color: #aed8fa;
  }
131

邓超's avatar
邓超 committed
132 133 134 135 136 137 138 139 140 141 142
  .switcher {
    display: block;
    position: absolute;
    font-size: 18px;
    color: #1890ff !important;
    top: 50%;
    right: 2px;
    transform: translate(0%, -50%);
    z-index: 1;
  }
}
143

邓超's avatar
邓超 committed
144 145
.orgContainerHide {
  width: 26px;
146 147 148 149
}

.btnImg:hover {
  cursor: pointer;
150
}