king
2020-03-30 461e4fff4b51d067671244eec63b097cd9012b6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.dragdashboard {
  position: relative;
  z-index: 1;
  width: calc(100vw - 400px);
  float: left;
  background: #001529;
  padding-bottom: 5px;
  .card-add {
    border: 1px dashed gray;
    padding: 2px;
    margin-top: 13px;
    margin-left: 10px;
    width: 50px;
    float: left;
    text-align: center;
    cursor: pointer;
  }
  button {
    margin-top: 14px;
    margin-left: 10px;
    padding: 0 10px;
    height: 26px;
  }
}
.card {
  position: relative;
  border: 1px dashed gray;
  margin-top: 7px;
  margin-right: 10px;
  float: left;
  div {
    padding: 5px 20px 5px 5px;
    cursor: move;
    min-width: 43px;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    :hover {
      color: #ffffff;
    }
  }
  .edit {
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    :hover {
      color: #ffffff;
    }
  }
}