index.less 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.field {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-height: 20rem;
  overflow-y: scroll;
  .ant-card {
    width: 90.5%;
    margin-left: 40px;
  }
  .ant-card-head-title {
    flex: none;
  }
  .ant-card-extra {
    margin-left: 0.2rem;
  }
  .ant-card-body {
    // padding: 0 ;
    height: 15rem;
21
    overflow-y: scroll;
22
  }
皮倩雯's avatar
皮倩雯 committed
23 24 25 26
  .ant-checkbox-group-item {
    width: 135px !important;
    margin-bottom: 10px;
  }
27
}
shaoan123's avatar
shaoan123 committed
28

皮倩雯's avatar
皮倩雯 committed
29

30 31 32 33
.paneTitle {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 0.5rem 38px;
34
}
35 36
.listEvent {
  display: flex;
37
}
38 39 40 41
.cardList {
  .ant-card-body {
    overflow-y: none !important;
  }
shaoan123's avatar
shaoan123 committed
42
}
43 44 45 46
.unit {
  display: flex;
  margin-left: 1.1rem;
  align-items: center;
47
}
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
.listCard {
  display: flex;
  .cardItem {
    width: 50%;
    padding: 0.5rem;
  }
  .cardContent {
    height: 35rem;
    overflow-y: scroll;
    width: 22rem;
  }
  .cardItemData {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
  }
64
}
65
.sortable-ghost {
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  border-bottom: 2px dashed #1890ff;
}

.doctorTable {
  margin-bottom: 16px;
  table {
    width: 100%;
    td {
      padding: 6px;
      border: 1px solid #e8e8e8;
    }
    thead {
      tr {
        font-weight: 600;
        background: #fafafa;
81
      }
82 83
      td {
        width: 12rem;
84
      }
85 86 87 88
    }
    tbody {
      tr:hover {
        background-color: #ededed;
89
      }
90 91
    }
  }
92
}
93 94 95 96 97 98
.defaultTile {
  background-color: transparent;
}
.activeTile {
  background-color: #dfe8f6;
}
99

100 101
tr.dropOverDownward td {
  border-bottom: 1px dashed #1890ff;
102 103
}

104 105 106 107 108
tr.dropOverUpward td {
  border-top: 1px dashed #1890ff;
}
tr.dropOverGroup td {
  // border: 1px dashed #1890ff;
邓超's avatar
邓超 committed
109
  background-color: #AED8FA;
110 111 112 113
}
.clickRowStyle {
  background: #cfe7fd;
}