king
2023-09-26 3140b58a56be4b1693766121dacb83fe6f6f21df
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
59
60
61
.common-modal-edit-card {
  margin-left: -10px;
  margin-right: -10px;
  .ant-col {
    padding: 10px;
    .ant-card {
      padding: 0px;
      p {
        margin-bottom: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      label {
        margin-right: 15px;
        span.ant-radio + * {
          padding-right: 0px;
          padding-left: 4px;
        }
      }
      .anticon {
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 0.4;
      }
      .base {
        padding: 10px;
        cursor: pointer;
      }
    }
    .ant-card.has-padding {
      padding: 0px 10px 10px;
      .base {
        padding: 10px 0 0;
      }
    }
    .ant-card.selected, .ant-card.fixed {
      border-color: #1890ff;
      box-shadow: 0px 0px 4px #1890ff;
      .anticon {
        opacity: 1;
        color: #1890ff;
      }
      p {
        color: #1890ff;
      }
    }
    .ant-card.fixed {
      cursor: not-allowed;
      .base {
        cursor: not-allowed;
      }
    }
  }
  .search-row {
    .ant-col {
      padding-top: 0px;
    }
  }
}