ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
91
92
93
94
95
96
97
98
99
100
101
102
html:not(.dark) {
  .global-layout {
    &.blue-bg {
      background-image: url('@/assets/images/bg/blueBg.png');
    }
 
    &.purple-bg {
      background-image: url('@/assets/images/bg/purpleBg.png');
    }
 
    &.green-bg {
      background-image: url('@/assets/images/bg/greenBg.png');
    }
  }
 
  .ant-modal.designer-modal {
    position: relative;
    background-color: var(--app-base-background);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
 
    &.process-designer-modal {
      &::before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: url('@/assets/images/bg-dot.png') repeat 100% 100%;
      }
    }
 
    .ant-modal-content {
      background-color: transparent !important;
 
      .ant-modal-header {
        background-color: transparent !important;
      }
 
      .ant-modal-body {
        background-color: transparent !important;
 
        & > .scrollbar {
          background-color: transparent !important;
        }
      }
 
      .process-flow-container {
        background-color: transparent !important;
      }
    }
  }
}
 
html:not(.dark)[data-bg='blue'] {
  .ant-modal.designer-modal {
    background-image: url('@/assets/images/bg/blueBg.png');
  }
 
  .jnpf-basic-report-designer {
    .report-config-container {
      background-image: url('@/assets/images/bg/blueBg.png');
    }
  }
}
 
html:not(.dark)[data-bg='purple'] {
  .ant-modal.designer-modal {
    background-image: url('@/assets/images/bg/purpleBg.png');
  }
 
  .jnpf-basic-report-designer {
    .report-config-container {
      background-image: url('@/assets/images/bg/purpleBg.png');
    }
  }
}
 
html:not(.dark)[data-bg='green'] {
  .ant-modal.designer-modal {
    background-image: url('@/assets/images/bg/greenBg.png');
  }
 
  .jnpf-basic-report-designer {
    .report-config-container {
      background-image: url('@/assets/images/bg/greenBg.png');
    }
  }
}
 
.dark,
.dark[data-theme='custom'],
.dark[data-theme='default'] {
  .jnpf-basic-report-designer {
    .report-config-container {
      background: var(--app-main-background);
    }
  }
}