index.less
1.69 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.qx-export-modal {
  .ant-modal-content {
    overflow: hidden;
    border-radius: 8px;
  }
  .ant-modal-header {
    height: 48px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
  }
  .ant-modal-body {
    padding: 24px;
  }
  &-title {
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
  }
  &-status {
    margin-bottom: 24px;
  }
  &-tree {
    position: relative;
    height: 304px;
    padding: 16px 0 6px 16px;
    background: #f9f9f9;
    border-radius: 4px;
    .ant-tree {
      height: calc(100% - 22px);
      overflow-y: scroll;
      background-color: unset;
    }
    .ant-tree-switcher {
      display: none;
    }
    .ant-tree-draggable-icon {
      margin-right: 6px !important;
    }
    .qx-export-filter {
      position: absolute;
      top: 12px;
      right: 16px;
      z-index: 2;
      .ant-input {
        &::placeholder {
          color: rgba(0, 0, 0, 0.25);
        }
      }
      .ant-input-affix-wrapper {
        height: 28px;
        padding: 4px 10px;
        .ant-input-prefix {
          svg {
            color: rgba(0, 0, 0, 0.25);
          }
        }
      }
    }
  }
}
.qx-export-notification {
  .anticon-check-circle,
  .anticon-exclamation-circle {
    font-size: 21px;
  }
  .ant-notification-notice-icon {
    line-height: 20px;
  }
  .ant-notification-notice-message {
    margin-left: 36px;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .ant-notification-notice-description {
    margin-left: 36px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 22px;
    span {
      color: #3499ff;
      cursor: pointer;
    }
  }
}