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

26 27 28 29 30 31 32 33 34
.paneTitle{
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 0.5rem 4rem;
}
.listEvent{
    display: flex;

}
shaoan123's avatar
shaoan123 committed
35 36 37 38 39
.cardList{
    .ant-card-body{
        overflow-y:none  !important;
    }
}
40 41 42 43 44 45 46 47 48 49 50 51 52
.unit{
    display: flex;
    margin-left: 1.1rem;
    align-items: center;

}
.listCard{
    display: flex;
    .cardItem{
        width: 50%;
        padding: 0.5rem;
    }
    .cardContent{
53
        height:35rem;
54
        overflow-y: scroll;
55
        width: 22rem;
56 57 58 59 60
    }
    .cardItemData{
        padding: 1rem;
        border: 1px solid #b5b8c8;
        margin-bottom: 1rem;
61 62
    }
}
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
.sortable-ghost {
    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;
        }
80 81 82
        td{
            width: 12rem;
        }
83
      }
84 85 86 87 88
      tbody{
          tr:hover{
              background-color:#ededed ;
          }
      }
89 90
    }
  }
91 92 93 94 95
  .defaultTile{
    background-color:transparent ;
}
  .activeTile{
      background-color:#dfe8f6 ;
96 97 98 99 100 101 102 103 104 105 106 107
  }

  tr.drop-over-downward td {
    border-bottom: 2px dashed #1890ff;
  }
  
  tr.drop-over-upward td {
    border-top: 2px dashed #1890ff;
  }
  .clickRowStyle{
    background: #cfe7fd;
}