ny
23 小时以前 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
.jnpf-report-designer {
  display: flex;
  height: 100%;
 
  &__body {
    position: relative;
    display: flex;
    flex: 1;
    overflow: hidden;
  }
 
  .design-wrap {
    width: 100%;
    height: calc(100%);
  }
 
  .flex-row {
    display: flex;
    height: calc(100%);
    overflow: hidden;
 
    .left-side {
      min-width: 250px;
      max-width: 250px;
      height: calc(100%);
      background: var(--component-background);
      border-radius: 8px;
 
      .tabs-content {
        height: calc(100% - 42px);
        overflow: hidden auto;
        user-select: none;
 
        .right-radio {
          .ant-radio-button-wrapper {
            padding: 0 11px;
          }
        }
 
        .components-list {
          .components-list-title {
            font-weight: 600;
 
            .title-tip {
              margin-left: 4px;
              font-size: 12px;
              font-weight: normal;
              color: #999;
            }
          }
 
          .ant-collapse-content-box {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 10px;
          }
 
          .components-item {
            width: 110px;
            margin-bottom: 10px;
            transition: transform 0ms !important;
 
            &.disabled {
              .components-body {
                color: var(--text-color-secondary);
                cursor: not-allowed;
 
                &:hover {
                  color: var(--text-color-secondary);
                  border-color: var(--border-color-base);
                }
              }
            }
 
            &.ep-click-item .components-body {
              cursor: pointer;
            }
 
            .components-body {
              display: flex;
              align-items: center;
              height: 36px;
              padding-left: 8px;
              font-size: 12px;
              line-height: 34px;
              color: var(--text-color);
              cursor: move;
              border: 1px solid var(--border-color-base);
              border-radius: var(--radius);
 
              i {
                height: 16px;
                margin-right: 4px;
                line-height: 16px;
              }
 
              &:hover {
                color: var(--primary-color);
                border: 1px solid var(--primary-color);
              }
            }
          }
        }
 
        .dataSet-content {
          height: 100%;
 
          .dataSet-content-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 50px;
            padding: 10px;
            font-size: 16px;
            border-bottom: 1px solid var(--border-color-base1);
          }
 
          .dataSet-content-main {
            height: calc(100% - 50px);
          }
        }
      }
    }
 
    .center-side {
      box-sizing: border-box;
      flex: 1;
      min-width: 800px;
      margin: 0 0 0 10px;
      overflow: hidden;
      background: var(--component-background);
      border-radius: 8px;
    }
  }
 
  .right-radio .ant-radio-wrapper {
    margin-inline-end: 6px;
  }
 
  .data-source-display-type-radio .ant-radio-wrapper {
    margin-inline-end: 0;
  }
}
 
.jnpf-basic-report-designer {
  .report-config-container {
    position: absolute;
    top: -60px;
    bottom: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    padding: 70px 10px 10px;
    background: var(--app-base-background);
    background-repeat: no-repeat;
    background-position: top center;
    background-clip: content-box;
    background-size: cover;
 
    .report-config-container-main {
      height: 100%;
      padding: 20px;
      overflow-y: auto;
      background-color: var(--component-background);
      border-radius: 8px;
 
      .title {
        margin-bottom: 10px;
        font-weight: 600;
      }
    }
  }
}
 
.univer-dialog-root .univer-dialog-mask {
  background: #00000080 !important;
}