@gct-paas/word 0.1.19 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/command/commands/SetDataGroup2D.d.ts +3 -11
- package/dist/core/model/document/Wtc.d.ts +1 -0
- package/dist/core/view/utils/TextUtil.d.ts +17 -0
- package/dist/index.es.js +384 -149
- package/dist/runtime/canvas/__common__/context-menu/index.type.d.ts +3 -0
- package/dist/runtime/canvas/__common__/context-menu/index.vue.d.ts +2 -1
- package/dist/runtime/canvas/__common__/context-menu/table-menu.vue.d.ts +6 -1
- package/dist/runtime/canvas/doc-layout.vue.d.ts +3 -1
- package/dist/runtime/designer/main/editable-canvas.vue.d.ts +3 -1
- package/dist/runtime/renderer/main/preview-canvas.vue.d.ts +3 -1
- package/dist/sdk/doc-runtime/composables/useDocOperations.d.ts +6 -0
- package/dist/sdk/engine/index.d.ts +1 -1
- package/dist/sdk/types/index.d.ts +6 -1
- package/dist/sdk/vue/layouts/doc-design-layout.vue.d.ts +2 -1
- package/dist/sdk/vue/layouts/doc-render-layout.vue.d.ts +3 -1
- package/dist/utils/composables/useDragLine.d.ts +18 -0
- package/dist/word.css +157 -150
- package/package.json +1 -1
package/dist/word.css
CHANGED
|
@@ -6130,7 +6130,7 @@
|
|
|
6130
6130
|
max-width: 80%;
|
|
6131
6131
|
max-height: 80%;
|
|
6132
6132
|
}
|
|
6133
|
-
.gct-input-wrapper[data-v-
|
|
6133
|
+
.gct-input-wrapper[data-v-c407ada7] {
|
|
6134
6134
|
position: relative;
|
|
6135
6135
|
display: inline-flex;
|
|
6136
6136
|
width: 100%;
|
|
@@ -6140,7 +6140,7 @@
|
|
|
6140
6140
|
line-height: 1.5715;
|
|
6141
6141
|
background-color: #fff;
|
|
6142
6142
|
}
|
|
6143
|
-
.gct-input[data-v-
|
|
6143
|
+
.gct-input[data-v-c407ada7] {
|
|
6144
6144
|
position: relative;
|
|
6145
6145
|
display: inline-block;
|
|
6146
6146
|
width: 100%;
|
|
@@ -6157,50 +6157,54 @@
|
|
|
6157
6157
|
box-sizing: border-box;
|
|
6158
6158
|
outline: none;
|
|
6159
6159
|
}
|
|
6160
|
-
.gct-input[data-v-
|
|
6160
|
+
.gct-input[data-v-c407ada7]:focus {
|
|
6161
6161
|
border-color: #026ac8;
|
|
6162
6162
|
box-shadow: 0 0 0 2px rgba(2, 106, 200, 0.2);
|
|
6163
6163
|
outline: 0;
|
|
6164
6164
|
}
|
|
6165
|
-
.gct-input:focus ~ .gct-input-clear-icon[data-v-
|
|
6165
|
+
.gct-input:focus ~ .gct-input-clear-icon[data-v-c407ada7] {
|
|
6166
6166
|
opacity: 1;
|
|
6167
6167
|
}
|
|
6168
|
-
.gct-input:focus ~ .gct-input-count[data-v-
|
|
6168
|
+
.gct-input:focus ~ .gct-input-count[data-v-c407ada7] {
|
|
6169
6169
|
opacity: 0;
|
|
6170
6170
|
}
|
|
6171
|
-
.gct-input[data-v-
|
|
6171
|
+
.gct-input[data-v-c407ada7]:hover {
|
|
6172
6172
|
border-color: #026ac8;
|
|
6173
6173
|
}
|
|
6174
|
-
.gct-input-lg[data-v-
|
|
6174
|
+
.gct-input-lg[data-v-c407ada7] {
|
|
6175
6175
|
padding: 6.5px 11px;
|
|
6176
6176
|
font-size: 16px;
|
|
6177
6177
|
}
|
|
6178
|
-
.gct-input-sm[data-v-
|
|
6178
|
+
.gct-input-sm[data-v-c407ada7] {
|
|
6179
6179
|
padding: 0px 7px;
|
|
6180
6180
|
font-size: 12px;
|
|
6181
6181
|
}
|
|
6182
|
-
.gct-input-disabled[data-v-
|
|
6182
|
+
.gct-input-disabled[data-v-c407ada7] {
|
|
6183
6183
|
color: rgba(0, 0, 0, 0.25);
|
|
6184
6184
|
background-color: #f5f5f5;
|
|
6185
6185
|
border-color: #d9d9d9;
|
|
6186
6186
|
cursor: not-allowed;
|
|
6187
6187
|
opacity: 1;
|
|
6188
6188
|
}
|
|
6189
|
-
.gct-input-disabled[data-v-
|
|
6189
|
+
.gct-input-disabled[data-v-c407ada7]:hover {
|
|
6190
6190
|
border-color: #d9d9d9;
|
|
6191
6191
|
}
|
|
6192
|
-
.gct-input-readonly[data-v-
|
|
6192
|
+
.gct-input-readonly[data-v-c407ada7] {
|
|
6193
6193
|
background-color: #f5f5f5;
|
|
6194
6194
|
cursor: default;
|
|
6195
6195
|
}
|
|
6196
|
-
.gct-input-
|
|
6196
|
+
.gct-input-password-masked[data-v-c407ada7] {
|
|
6197
|
+
-webkit-text-security: disc;
|
|
6198
|
+
text-security: disc;
|
|
6199
|
+
}
|
|
6200
|
+
.gct-input-borderless[data-v-c407ada7] {
|
|
6197
6201
|
border: none;
|
|
6198
6202
|
box-shadow: none;
|
|
6199
6203
|
}
|
|
6200
|
-
.gct-input-borderless[data-v-
|
|
6204
|
+
.gct-input-borderless[data-v-c407ada7]:focus {
|
|
6201
6205
|
box-shadow: none;
|
|
6202
6206
|
}
|
|
6203
|
-
.gct-input-affix-wrapper[data-v-
|
|
6207
|
+
.gct-input-affix-wrapper[data-v-c407ada7] {
|
|
6204
6208
|
position: relative;
|
|
6205
6209
|
display: inline-flex;
|
|
6206
6210
|
width: 100%;
|
|
@@ -6209,45 +6213,45 @@
|
|
|
6209
6213
|
border-radius: 4px;
|
|
6210
6214
|
transition: all 0.3s;
|
|
6211
6215
|
}
|
|
6212
|
-
.gct-input-affix-wrapper[data-v-
|
|
6216
|
+
.gct-input-affix-wrapper[data-v-c407ada7]:focus-within {
|
|
6213
6217
|
border-color: #026ac8;
|
|
6214
6218
|
box-shadow: 0 0 0 2px rgba(2, 106, 200, 0.2);
|
|
6215
6219
|
outline: 0;
|
|
6216
6220
|
}
|
|
6217
|
-
.gct-input-affix-wrapper[data-v-
|
|
6221
|
+
.gct-input-affix-wrapper[data-v-c407ada7]:hover {
|
|
6218
6222
|
border-color: #026ac8;
|
|
6219
6223
|
}
|
|
6220
|
-
.gct-input-affix-wrapper .gct-input[data-v-
|
|
6224
|
+
.gct-input-affix-wrapper .gct-input[data-v-c407ada7] {
|
|
6221
6225
|
border: none;
|
|
6222
6226
|
outline: none;
|
|
6223
6227
|
box-shadow: none;
|
|
6224
6228
|
}
|
|
6225
|
-
.gct-input-affix-wrapper .gct-input[data-v-
|
|
6229
|
+
.gct-input-affix-wrapper .gct-input[data-v-c407ada7]:focus {
|
|
6226
6230
|
box-shadow: none;
|
|
6227
6231
|
}
|
|
6228
|
-
.gct-input-affix-wrapper-lg[data-v-
|
|
6232
|
+
.gct-input-affix-wrapper-lg[data-v-c407ada7] {
|
|
6229
6233
|
border-radius: 4px;
|
|
6230
6234
|
}
|
|
6231
|
-
.gct-input-affix-wrapper-sm[data-v-
|
|
6235
|
+
.gct-input-affix-wrapper-sm[data-v-c407ada7] {
|
|
6232
6236
|
border-radius: 2px;
|
|
6233
6237
|
}
|
|
6234
|
-
.gct-input-affix-wrapper-disabled[data-v-
|
|
6238
|
+
.gct-input-affix-wrapper-disabled[data-v-c407ada7] {
|
|
6235
6239
|
background-color: #f5f5f5;
|
|
6236
6240
|
cursor: not-allowed;
|
|
6237
6241
|
opacity: 1;
|
|
6238
6242
|
}
|
|
6239
|
-
.gct-input-affix-wrapper-disabled[data-v-
|
|
6243
|
+
.gct-input-affix-wrapper-disabled[data-v-c407ada7]:hover {
|
|
6240
6244
|
border-color: #d9d9d9;
|
|
6241
6245
|
}
|
|
6242
|
-
.gct-input-affix-wrapper-borderless[data-v-
|
|
6246
|
+
.gct-input-affix-wrapper-borderless[data-v-c407ada7] {
|
|
6243
6247
|
border: none;
|
|
6244
6248
|
box-shadow: none;
|
|
6245
6249
|
}
|
|
6246
|
-
.gct-input-affix-wrapper-borderless[data-v-
|
|
6250
|
+
.gct-input-affix-wrapper-borderless[data-v-c407ada7]:focus-within {
|
|
6247
6251
|
box-shadow: none;
|
|
6248
6252
|
}
|
|
6249
|
-
.gct-input-prefix[data-v-
|
|
6250
|
-
.gct-input-suffix[data-v-
|
|
6253
|
+
.gct-input-prefix[data-v-c407ada7],
|
|
6254
|
+
.gct-input-suffix[data-v-c407ada7] {
|
|
6251
6255
|
display: flex;
|
|
6252
6256
|
flex: none;
|
|
6253
6257
|
align-items: center;
|
|
@@ -6255,35 +6259,35 @@
|
|
|
6255
6259
|
font-size: 13px;
|
|
6256
6260
|
width: 24px;
|
|
6257
6261
|
}
|
|
6258
|
-
.gct-input-prefix[data-v-
|
|
6262
|
+
.gct-input-prefix[data-v-c407ada7] {
|
|
6259
6263
|
margin-right: 4px;
|
|
6260
6264
|
}
|
|
6261
|
-
.gct-input-suffix[data-v-
|
|
6265
|
+
.gct-input-suffix[data-v-c407ada7] {
|
|
6262
6266
|
margin-left: 4px;
|
|
6263
6267
|
}
|
|
6264
|
-
.gct-input-prefix-text[data-v-
|
|
6265
|
-
.gct-input-suffix-text[data-v-
|
|
6268
|
+
.gct-input-prefix-text[data-v-c407ada7],
|
|
6269
|
+
.gct-input-suffix-text[data-v-c407ada7] {
|
|
6266
6270
|
color: rgba(0, 0, 0, 0.45);
|
|
6267
6271
|
}
|
|
6268
|
-
.gct-input-prefix-icon[data-v-
|
|
6269
|
-
.gct-input-suffix-icon[data-v-
|
|
6272
|
+
.gct-input-prefix-icon[data-v-c407ada7],
|
|
6273
|
+
.gct-input-suffix-icon[data-v-c407ada7] {
|
|
6270
6274
|
display: inline-flex;
|
|
6271
6275
|
align-items: center;
|
|
6272
6276
|
color: rgba(0, 0, 0, 0.45);
|
|
6273
6277
|
}
|
|
6274
|
-
.gct-input-append-icon[data-v-
|
|
6278
|
+
.gct-input-append-icon[data-v-c407ada7] {
|
|
6275
6279
|
display: flex;
|
|
6276
6280
|
align-items: center;
|
|
6277
6281
|
padding-right: 6px;
|
|
6278
6282
|
color: rgba(0, 0, 0, 0.45);
|
|
6279
6283
|
}
|
|
6280
|
-
.gct-input-prepend-icon[data-v-
|
|
6284
|
+
.gct-input-prepend-icon[data-v-c407ada7] {
|
|
6281
6285
|
display: flex;
|
|
6282
6286
|
align-items: center;
|
|
6283
6287
|
padding-left: 6px;
|
|
6284
6288
|
color: rgba(0, 0, 0, 0.45);
|
|
6285
6289
|
}
|
|
6286
|
-
.gct-input-clear-icon[data-v-
|
|
6290
|
+
.gct-input-clear-icon[data-v-c407ada7] {
|
|
6287
6291
|
display: flex;
|
|
6288
6292
|
align-items: center;
|
|
6289
6293
|
margin: 0 8px;
|
|
@@ -6291,11 +6295,11 @@
|
|
|
6291
6295
|
opacity: 0;
|
|
6292
6296
|
z-index: 99;
|
|
6293
6297
|
}
|
|
6294
|
-
.gct-input-clear-icon:hover .gct-icon[data-v-
|
|
6298
|
+
.gct-input-clear-icon:hover .gct-icon[data-v-c407ada7] {
|
|
6295
6299
|
transition: color 0.3s;
|
|
6296
6300
|
color: rgba(0, 0, 0, 0.45);
|
|
6297
6301
|
}
|
|
6298
|
-
.gct-input-count[data-v-
|
|
6302
|
+
.gct-input-count[data-v-c407ada7] {
|
|
6299
6303
|
position: absolute;
|
|
6300
6304
|
right: 4px;
|
|
6301
6305
|
color: rgba(0, 0, 0, 0.45);
|
|
@@ -6304,7 +6308,7 @@
|
|
|
6304
6308
|
top: 50%;
|
|
6305
6309
|
transform: translateY(-50%);
|
|
6306
6310
|
}
|
|
6307
|
-
.gct-input-clear-icon-default[data-v-
|
|
6311
|
+
.gct-input-clear-icon-default[data-v-c407ada7] {
|
|
6308
6312
|
font-size: 12px;
|
|
6309
6313
|
width: 12px;
|
|
6310
6314
|
height: 12px;
|
|
@@ -6313,32 +6317,32 @@
|
|
|
6313
6317
|
justify-content: center;
|
|
6314
6318
|
}
|
|
6315
6319
|
/* 适配不同尺寸的包装器 */
|
|
6316
|
-
.gct-input-affix-wrapper-lg .gct-input-prepend-icon[data-v-
|
|
6317
|
-
.gct-input-affix-wrapper-lg .gct-input-append-icon[data-v-
|
|
6320
|
+
.gct-input-affix-wrapper-lg .gct-input-prepend-icon[data-v-c407ada7],
|
|
6321
|
+
.gct-input-affix-wrapper-lg .gct-input-append-icon[data-v-c407ada7] {
|
|
6318
6322
|
padding: 0 12px;
|
|
6319
6323
|
}
|
|
6320
|
-
.gct-input-affix-wrapper-sm .gct-input-prepend-icon[data-v-
|
|
6321
|
-
.gct-input-affix-wrapper-sm .gct-input-append-icon[data-v-
|
|
6324
|
+
.gct-input-affix-wrapper-sm .gct-input-prepend-icon[data-v-c407ada7],
|
|
6325
|
+
.gct-input-affix-wrapper-sm .gct-input-append-icon[data-v-c407ada7] {
|
|
6322
6326
|
padding: 0 6px;
|
|
6323
6327
|
}
|
|
6324
|
-
.gct-input-affix-wrapper-lg .gct-input-search-button[data-v-
|
|
6328
|
+
.gct-input-affix-wrapper-lg .gct-input-search-button[data-v-c407ada7] {
|
|
6325
6329
|
padding: 0 12px;
|
|
6326
6330
|
}
|
|
6327
|
-
.gct-input-affix-wrapper-sm .gct-input-search-button[data-v-
|
|
6331
|
+
.gct-input-affix-wrapper-sm .gct-input-search-button[data-v-c407ada7] {
|
|
6328
6332
|
padding: 0 8px;
|
|
6329
6333
|
}
|
|
6330
6334
|
/* 响应式调整 */
|
|
6331
6335
|
@media (max-width: 768px) {
|
|
6332
|
-
.gct-input-wrapper[data-v-
|
|
6336
|
+
.gct-input-wrapper[data-v-c407ada7] {
|
|
6333
6337
|
font-size: 16px;
|
|
6334
6338
|
/* 移动端防止缩放 */
|
|
6335
6339
|
}
|
|
6336
|
-
.gct-input[data-v-
|
|
6337
|
-
.gct-input-textarea[data-v-
|
|
6340
|
+
.gct-input[data-v-c407ada7],
|
|
6341
|
+
.gct-input-textarea[data-v-c407ada7] {
|
|
6338
6342
|
font-size: 16px;
|
|
6339
6343
|
}
|
|
6340
6344
|
}
|
|
6341
|
-
input[data-v-
|
|
6345
|
+
input[data-v-c407ada7]::placeholder {
|
|
6342
6346
|
color: rgba(0, 0, 0, 0.25);
|
|
6343
6347
|
opacity: 1;
|
|
6344
6348
|
}
|
|
@@ -7817,7 +7821,7 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7817
7821
|
user-select: none;
|
|
7818
7822
|
cursor: pointer;
|
|
7819
7823
|
}
|
|
7820
|
-
.table-action[data-v-
|
|
7824
|
+
.table-action[data-v-c40eef9f] {
|
|
7821
7825
|
position: absolute;
|
|
7822
7826
|
inset: 0;
|
|
7823
7827
|
z-index: 999;
|
|
@@ -7826,47 +7830,47 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7826
7830
|
width: 0;
|
|
7827
7831
|
height: 0;
|
|
7828
7832
|
}
|
|
7829
|
-
.table-action.preview[data-v-
|
|
7833
|
+
.table-action.preview[data-v-c40eef9f] {
|
|
7830
7834
|
pointer-events: none;
|
|
7831
7835
|
}
|
|
7832
|
-
.table-action .guide-line[data-v-
|
|
7836
|
+
.table-action .guide-line[data-v-c40eef9f] {
|
|
7833
7837
|
position: absolute;
|
|
7834
7838
|
pointer-events: none;
|
|
7835
7839
|
background: #026ac8;
|
|
7836
7840
|
}
|
|
7837
|
-
.table-action .guide-line.vertical[data-v-
|
|
7841
|
+
.table-action .guide-line.vertical[data-v-c40eef9f] {
|
|
7838
7842
|
top: 0;
|
|
7839
7843
|
width: 2px;
|
|
7840
7844
|
z-index: 99;
|
|
7841
7845
|
}
|
|
7842
|
-
.table-action .guide-line.horizontal[data-v-
|
|
7846
|
+
.table-action .guide-line.horizontal[data-v-c40eef9f] {
|
|
7843
7847
|
left: 0;
|
|
7844
7848
|
height: 2px;
|
|
7845
7849
|
z-index: 99;
|
|
7846
7850
|
}
|
|
7847
|
-
.table-action .guide-resize-handle[data-v-
|
|
7851
|
+
.table-action .guide-resize-handle[data-v-c40eef9f] {
|
|
7848
7852
|
position: absolute;
|
|
7849
7853
|
z-index: 99;
|
|
7850
7854
|
background: transparent;
|
|
7851
7855
|
}
|
|
7852
|
-
.table-action .guide-resize-handle[data-v-
|
|
7856
|
+
.table-action .guide-resize-handle[data-v-c40eef9f]:hover {
|
|
7853
7857
|
background: #026ac8;
|
|
7854
7858
|
}
|
|
7855
|
-
.table-action .guide-resize-handle.is-drag[data-v-
|
|
7859
|
+
.table-action .guide-resize-handle.is-drag[data-v-c40eef9f] {
|
|
7856
7860
|
display: none;
|
|
7857
7861
|
}
|
|
7858
|
-
.table-action .guide-resize-handle.col-resize-handle[data-v-
|
|
7862
|
+
.table-action .guide-resize-handle.col-resize-handle[data-v-c40eef9f] {
|
|
7859
7863
|
width: 2px;
|
|
7860
7864
|
top: 100%;
|
|
7861
7865
|
left: 100%;
|
|
7862
7866
|
cursor: col-resize;
|
|
7863
7867
|
}
|
|
7864
|
-
.table-action .guide-resize-handle.row-resize-handle[data-v-
|
|
7868
|
+
.table-action .guide-resize-handle.row-resize-handle[data-v-c40eef9f] {
|
|
7865
7869
|
height: 2px;
|
|
7866
7870
|
left: 100%;
|
|
7867
7871
|
cursor: row-resize;
|
|
7868
7872
|
}
|
|
7869
|
-
.table-action .corner[data-v-
|
|
7873
|
+
.table-action .corner[data-v-c40eef9f] {
|
|
7870
7874
|
position: absolute;
|
|
7871
7875
|
left: -10px;
|
|
7872
7876
|
top: -10px;
|
|
@@ -7877,13 +7881,13 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7877
7881
|
cursor: pointer;
|
|
7878
7882
|
transition: background 0.2s;
|
|
7879
7883
|
}
|
|
7880
|
-
.table-action .corner[data-v-
|
|
7884
|
+
.table-action .corner[data-v-c40eef9f]:hover {
|
|
7881
7885
|
background: #d4d4d4;
|
|
7882
7886
|
}
|
|
7883
|
-
.table-action .corner.active[data-v-
|
|
7887
|
+
.table-action .corner.active[data-v-c40eef9f] {
|
|
7884
7888
|
background: #026ac8;
|
|
7885
7889
|
}
|
|
7886
|
-
.table-action .corner .remove-all-btn[data-v-
|
|
7890
|
+
.table-action .corner .remove-all-btn[data-v-c40eef9f] {
|
|
7887
7891
|
position: absolute;
|
|
7888
7892
|
border: 1px solid #dadada;
|
|
7889
7893
|
width: 20px;
|
|
@@ -7898,37 +7902,37 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7898
7902
|
top: -22px;
|
|
7899
7903
|
left: -22px;
|
|
7900
7904
|
}
|
|
7901
|
-
.table-action .corner .remove-all-btn[data-v-
|
|
7905
|
+
.table-action .corner .remove-all-btn[data-v-c40eef9f]:hover {
|
|
7902
7906
|
border-color: #ff4d4f;
|
|
7903
7907
|
}
|
|
7904
|
-
.table-action .corner .remove-all-btn[data-v-
|
|
7908
|
+
.table-action .corner .remove-all-btn[data-v-c40eef9f]:hover .gct-icon {
|
|
7905
7909
|
color: #ff4d4f !important;
|
|
7906
7910
|
}
|
|
7907
|
-
.table-action .col-headers[data-v-
|
|
7908
|
-
.table-action .row-headers[data-v-
|
|
7911
|
+
.table-action .col-headers[data-v-c40eef9f],
|
|
7912
|
+
.table-action .row-headers[data-v-c40eef9f] {
|
|
7909
7913
|
position: absolute;
|
|
7910
7914
|
}
|
|
7911
|
-
.table-action .header-handle[data-v-
|
|
7915
|
+
.table-action .header-handle[data-v-c40eef9f] {
|
|
7912
7916
|
background: #f0f0f0;
|
|
7913
7917
|
cursor: pointer;
|
|
7914
7918
|
transition: background 0.2s;
|
|
7915
7919
|
box-sizing: border-box;
|
|
7916
7920
|
}
|
|
7917
|
-
.table-action .header-handle[data-v-
|
|
7921
|
+
.table-action .header-handle[data-v-c40eef9f]:hover {
|
|
7918
7922
|
background: #d4d4d4;
|
|
7919
7923
|
}
|
|
7920
|
-
.table-action .header-handle.active[data-v-
|
|
7924
|
+
.table-action .header-handle.active[data-v-c40eef9f] {
|
|
7921
7925
|
background: #026ac8;
|
|
7922
7926
|
}
|
|
7923
|
-
.table-action .header-handle.active.is-remove-hover[data-v-
|
|
7927
|
+
.table-action .header-handle.active.is-remove-hover[data-v-c40eef9f] {
|
|
7924
7928
|
transition: background 0s;
|
|
7925
7929
|
background: rgba(255, 77, 79, 0.6);
|
|
7926
7930
|
}
|
|
7927
|
-
.table-action .add-btn[data-v-
|
|
7931
|
+
.table-action .add-btn[data-v-c40eef9f] {
|
|
7928
7932
|
position: absolute;
|
|
7929
7933
|
pointer-events: auto;
|
|
7930
7934
|
}
|
|
7931
|
-
.table-action .add-btn[data-v-
|
|
7935
|
+
.table-action .add-btn[data-v-c40eef9f] .gct-icon {
|
|
7932
7936
|
position: absolute;
|
|
7933
7937
|
width: 20px;
|
|
7934
7938
|
height: 20px;
|
|
@@ -7941,11 +7945,11 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7941
7945
|
cursor: pointer;
|
|
7942
7946
|
box-sizing: border-box;
|
|
7943
7947
|
}
|
|
7944
|
-
.table-action .add-btn[data-v-
|
|
7948
|
+
.table-action .add-btn[data-v-c40eef9f] .gct-icon:hover {
|
|
7945
7949
|
border-color: #026ac8;
|
|
7946
7950
|
color: #026ac8 !important;
|
|
7947
7951
|
}
|
|
7948
|
-
.table-action .remove-btn[data-v-
|
|
7952
|
+
.table-action .remove-btn[data-v-c40eef9f] {
|
|
7949
7953
|
position: absolute;
|
|
7950
7954
|
border: 1px solid #dadada;
|
|
7951
7955
|
width: 20px;
|
|
@@ -7958,20 +7962,20 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7958
7962
|
box-sizing: border-box;
|
|
7959
7963
|
cursor: pointer;
|
|
7960
7964
|
}
|
|
7961
|
-
.table-action .remove-btn[data-v-
|
|
7965
|
+
.table-action .remove-btn[data-v-c40eef9f]:hover {
|
|
7962
7966
|
border-color: #ff4d4f;
|
|
7963
7967
|
}
|
|
7964
|
-
.table-action .remove-btn[data-v-
|
|
7968
|
+
.table-action .remove-btn[data-v-c40eef9f]:hover .gct-icon {
|
|
7965
7969
|
color: #ff4d4f !important;
|
|
7966
7970
|
}
|
|
7967
|
-
.table-action .col-headers[data-v-
|
|
7971
|
+
.table-action .col-headers[data-v-c40eef9f] {
|
|
7968
7972
|
top: -10px;
|
|
7969
7973
|
display: flex;
|
|
7970
7974
|
}
|
|
7971
|
-
.table-action .col-headers .col-header[data-v-
|
|
7975
|
+
.table-action .col-headers .col-header[data-v-c40eef9f] {
|
|
7972
7976
|
position: relative;
|
|
7973
7977
|
}
|
|
7974
|
-
.table-action .col-headers .col-header .col-header-handle[data-v-
|
|
7978
|
+
.table-action .col-headers .col-header .col-header-handle[data-v-c40eef9f] {
|
|
7975
7979
|
background: #f0f0f0;
|
|
7976
7980
|
cursor: pointer;
|
|
7977
7981
|
transition: background 0.2s;
|
|
@@ -7979,24 +7983,24 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
7979
7983
|
height: 10px;
|
|
7980
7984
|
border-left: 1px solid #dadada;
|
|
7981
7985
|
}
|
|
7982
|
-
.table-action .col-headers .col-header .col-header-handle[data-v-
|
|
7986
|
+
.table-action .col-headers .col-header .col-header-handle[data-v-c40eef9f]:hover {
|
|
7983
7987
|
background: #d4d4d4;
|
|
7984
7988
|
}
|
|
7985
|
-
.table-action .col-headers .col-header .col-header-handle.active[data-v-
|
|
7989
|
+
.table-action .col-headers .col-header .col-header-handle.active[data-v-c40eef9f] {
|
|
7986
7990
|
background: #026ac8;
|
|
7987
7991
|
}
|
|
7988
|
-
.table-action .col-headers .col-header .col-header-handle.active.is-remove-hover[data-v-
|
|
7992
|
+
.table-action .col-headers .col-header .col-header-handle.active.is-remove-hover[data-v-c40eef9f] {
|
|
7989
7993
|
transition: background 0s;
|
|
7990
7994
|
background: rgba(255, 77, 79, 0.6);
|
|
7991
7995
|
}
|
|
7992
|
-
.table-action .col-headers .col-header .col-add-btn[data-v-
|
|
7996
|
+
.table-action .col-headers .col-header .col-add-btn[data-v-c40eef9f] {
|
|
7993
7997
|
position: absolute;
|
|
7994
7998
|
pointer-events: auto;
|
|
7995
7999
|
width: 100%;
|
|
7996
8000
|
height: 24px;
|
|
7997
8001
|
top: -24px;
|
|
7998
8002
|
}
|
|
7999
|
-
.table-action .col-headers .col-header .col-add-btn[data-v-
|
|
8003
|
+
.table-action .col-headers .col-header .col-add-btn[data-v-c40eef9f] .gct-icon {
|
|
8000
8004
|
position: absolute;
|
|
8001
8005
|
width: 20px;
|
|
8002
8006
|
height: 20px;
|
|
@@ -8009,18 +8013,18 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8009
8013
|
cursor: pointer;
|
|
8010
8014
|
box-sizing: border-box;
|
|
8011
8015
|
}
|
|
8012
|
-
.table-action .col-headers .col-header .col-add-btn[data-v-
|
|
8016
|
+
.table-action .col-headers .col-header .col-add-btn[data-v-c40eef9f] .gct-icon:hover {
|
|
8013
8017
|
border-color: #026ac8;
|
|
8014
8018
|
color: #026ac8 !important;
|
|
8015
8019
|
}
|
|
8016
|
-
.table-action .col-headers .col-header .col-add-btn[data-v-
|
|
8020
|
+
.table-action .col-headers .col-header .col-add-btn[data-v-c40eef9f] .gct-icon.left {
|
|
8017
8021
|
transform: translateX(-50%);
|
|
8018
8022
|
}
|
|
8019
|
-
.table-action .col-headers .col-header .col-add-btn[data-v-
|
|
8023
|
+
.table-action .col-headers .col-header .col-add-btn[data-v-c40eef9f] .gct-icon.right {
|
|
8020
8024
|
left: 100%;
|
|
8021
8025
|
transform: translateX(-50%);
|
|
8022
8026
|
}
|
|
8023
|
-
.table-action .col-headers .col-header .col-remove-btn[data-v-
|
|
8027
|
+
.table-action .col-headers .col-header .col-remove-btn[data-v-c40eef9f] {
|
|
8024
8028
|
position: absolute;
|
|
8025
8029
|
border: 1px solid #dadada;
|
|
8026
8030
|
width: 20px;
|
|
@@ -8036,29 +8040,29 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8036
8040
|
transform: translateX(-50%);
|
|
8037
8041
|
left: 50%;
|
|
8038
8042
|
}
|
|
8039
|
-
.table-action .col-headers .col-header .col-remove-btn[data-v-
|
|
8043
|
+
.table-action .col-headers .col-header .col-remove-btn[data-v-c40eef9f]:hover {
|
|
8040
8044
|
border-color: #ff4d4f;
|
|
8041
8045
|
}
|
|
8042
|
-
.table-action .col-headers .col-header .col-remove-btn[data-v-
|
|
8046
|
+
.table-action .col-headers .col-header .col-remove-btn[data-v-c40eef9f]:hover .gct-icon {
|
|
8043
8047
|
color: #ff4d4f !important;
|
|
8044
8048
|
}
|
|
8045
|
-
.table-action .col-headers .col-header:first-child .col-add-btn[data-v-
|
|
8049
|
+
.table-action .col-headers .col-header:first-child .col-add-btn[data-v-c40eef9f] .gct-icon.left {
|
|
8046
8050
|
left: 0;
|
|
8047
8051
|
transform: translateX(0);
|
|
8048
8052
|
}
|
|
8049
|
-
.table-action .col-headers .col-header:last-child .col-header-handle[data-v-
|
|
8053
|
+
.table-action .col-headers .col-header:last-child .col-header-handle[data-v-c40eef9f] {
|
|
8050
8054
|
border-top-right-radius: 6px;
|
|
8051
8055
|
}
|
|
8052
|
-
.table-action .col-headers .col-header:last-child .col-add-btn[data-v-
|
|
8056
|
+
.table-action .col-headers .col-header:last-child .col-add-btn[data-v-c40eef9f] .gct-icon.right {
|
|
8053
8057
|
transform: translateX(-100%);
|
|
8054
8058
|
}
|
|
8055
|
-
.table-action .row-headers[data-v-
|
|
8059
|
+
.table-action .row-headers[data-v-c40eef9f] {
|
|
8056
8060
|
left: -10px;
|
|
8057
8061
|
}
|
|
8058
|
-
.table-action .row-headers .row-header[data-v-
|
|
8062
|
+
.table-action .row-headers .row-header[data-v-c40eef9f] {
|
|
8059
8063
|
position: relative;
|
|
8060
8064
|
}
|
|
8061
|
-
.table-action .row-headers .row-header .row-header-handle[data-v-
|
|
8065
|
+
.table-action .row-headers .row-header .row-header-handle[data-v-c40eef9f] {
|
|
8062
8066
|
background: #f0f0f0;
|
|
8063
8067
|
cursor: pointer;
|
|
8064
8068
|
transition: background 0.2s;
|
|
@@ -8066,17 +8070,17 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8066
8070
|
width: 10px;
|
|
8067
8071
|
border-top: 1px solid #dadada;
|
|
8068
8072
|
}
|
|
8069
|
-
.table-action .row-headers .row-header .row-header-handle[data-v-
|
|
8073
|
+
.table-action .row-headers .row-header .row-header-handle[data-v-c40eef9f]:hover {
|
|
8070
8074
|
background: #d4d4d4;
|
|
8071
8075
|
}
|
|
8072
|
-
.table-action .row-headers .row-header .row-header-handle.active[data-v-
|
|
8076
|
+
.table-action .row-headers .row-header .row-header-handle.active[data-v-c40eef9f] {
|
|
8073
8077
|
background: #026ac8;
|
|
8074
8078
|
}
|
|
8075
|
-
.table-action .row-headers .row-header .row-header-handle.active.is-remove-hover[data-v-
|
|
8079
|
+
.table-action .row-headers .row-header .row-header-handle.active.is-remove-hover[data-v-c40eef9f] {
|
|
8076
8080
|
transition: background 0s;
|
|
8077
8081
|
background: rgba(255, 77, 79, 0.6);
|
|
8078
8082
|
}
|
|
8079
|
-
.table-action .row-headers .row-header .row-add-btn[data-v-
|
|
8083
|
+
.table-action .row-headers .row-header .row-add-btn[data-v-c40eef9f] {
|
|
8080
8084
|
position: absolute;
|
|
8081
8085
|
pointer-events: auto;
|
|
8082
8086
|
width: 24px;
|
|
@@ -8084,7 +8088,7 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8084
8088
|
left: -24px;
|
|
8085
8089
|
top: 0;
|
|
8086
8090
|
}
|
|
8087
|
-
.table-action .row-headers .row-header .row-add-btn[data-v-
|
|
8091
|
+
.table-action .row-headers .row-header .row-add-btn[data-v-c40eef9f] .gct-icon {
|
|
8088
8092
|
position: absolute;
|
|
8089
8093
|
width: 20px;
|
|
8090
8094
|
height: 20px;
|
|
@@ -8097,19 +8101,19 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8097
8101
|
cursor: pointer;
|
|
8098
8102
|
box-sizing: border-box;
|
|
8099
8103
|
}
|
|
8100
|
-
.table-action .row-headers .row-header .row-add-btn[data-v-
|
|
8104
|
+
.table-action .row-headers .row-header .row-add-btn[data-v-c40eef9f] .gct-icon:hover {
|
|
8101
8105
|
border-color: #026ac8;
|
|
8102
8106
|
color: #026ac8 !important;
|
|
8103
8107
|
}
|
|
8104
|
-
.table-action .row-headers .row-header .row-add-btn[data-v-
|
|
8108
|
+
.table-action .row-headers .row-header .row-add-btn[data-v-c40eef9f] .gct-icon.top {
|
|
8105
8109
|
top: 0;
|
|
8106
8110
|
transform: translateY(-50%);
|
|
8107
8111
|
}
|
|
8108
|
-
.table-action .row-headers .row-header .row-add-btn[data-v-
|
|
8112
|
+
.table-action .row-headers .row-header .row-add-btn[data-v-c40eef9f] .gct-icon.bottom {
|
|
8109
8113
|
top: 100%;
|
|
8110
8114
|
transform: translateY(-50%);
|
|
8111
8115
|
}
|
|
8112
|
-
.table-action .row-headers .row-header .row-remove-btn[data-v-
|
|
8116
|
+
.table-action .row-headers .row-header .row-remove-btn[data-v-c40eef9f] {
|
|
8113
8117
|
position: absolute;
|
|
8114
8118
|
border: 1px solid #dadada;
|
|
8115
8119
|
width: 20px;
|
|
@@ -8125,19 +8129,19 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
8125
8129
|
top: 50%;
|
|
8126
8130
|
transform: translateY(-50%);
|
|
8127
8131
|
}
|
|
8128
|
-
.table-action .row-headers .row-header .row-remove-btn[data-v-
|
|
8132
|
+
.table-action .row-headers .row-header .row-remove-btn[data-v-c40eef9f]:hover {
|
|
8129
8133
|
border-color: #ff4d4f;
|
|
8130
8134
|
}
|
|
8131
|
-
.table-action .row-headers .row-header .row-remove-btn[data-v-
|
|
8135
|
+
.table-action .row-headers .row-header .row-remove-btn[data-v-c40eef9f]:hover .gct-icon {
|
|
8132
8136
|
color: #ff4d4f !important;
|
|
8133
8137
|
}
|
|
8134
|
-
.table-action .row-headers .row-header:first-child .row-add-btn[data-v-
|
|
8138
|
+
.table-action .row-headers .row-header:first-child .row-add-btn[data-v-c40eef9f] .gct-icon.top {
|
|
8135
8139
|
transform: translateY(0);
|
|
8136
8140
|
}
|
|
8137
|
-
.table-action .row-headers .row-header:last-child .row-header-handle[data-v-
|
|
8141
|
+
.table-action .row-headers .row-header:last-child .row-header-handle[data-v-c40eef9f] {
|
|
8138
8142
|
border-bottom-left-radius: 6px;
|
|
8139
8143
|
}
|
|
8140
|
-
.table-action .row-headers .row-header:last-child .row-add-btn[data-v-
|
|
8144
|
+
.table-action .row-headers .row-header:last-child .row-add-btn[data-v-c40eef9f] .gct-icon.bottom {
|
|
8141
8145
|
transform: translateY(-100%);
|
|
8142
8146
|
}
|
|
8143
8147
|
.sub-table-action[data-v-adc8fb9a] {
|
|
@@ -8854,7 +8858,7 @@ ul li .widget-icon[data-v-1e28101c] {
|
|
|
8854
8858
|
line-height: 22px;
|
|
8855
8859
|
}
|
|
8856
8860
|
|
|
8857
|
-
[data-v-
|
|
8861
|
+
[data-v-05c3a67d] .gct-input-number {
|
|
8858
8862
|
text-align: center;
|
|
8859
8863
|
width: 48px;
|
|
8860
8864
|
}
|
|
@@ -9112,7 +9116,7 @@ ul li .widget-icon[data-v-1e28101c] {
|
|
|
9112
9116
|
left: 0;
|
|
9113
9117
|
height: 100%;
|
|
9114
9118
|
}
|
|
9115
|
-
.page-container[data-v-
|
|
9119
|
+
.page-container[data-v-fcaa8330] {
|
|
9116
9120
|
position: absolute;
|
|
9117
9121
|
top: 0;
|
|
9118
9122
|
left: 0;
|
|
@@ -9130,76 +9134,79 @@ ul li .widget-icon[data-v-1e28101c] {
|
|
|
9130
9134
|
position: relative;
|
|
9131
9135
|
background-color: #f0f0f0;
|
|
9132
9136
|
}
|
|
9133
|
-
.doc-design-layout[data-v-
|
|
9137
|
+
.doc-design-layout[data-v-e6b0dcfe] {
|
|
9134
9138
|
display: flex;
|
|
9135
9139
|
flex-direction: column;
|
|
9136
|
-
height: 100%;
|
|
9137
9140
|
width: 100%;
|
|
9141
|
+
height: 100%;
|
|
9138
9142
|
}
|
|
9139
|
-
.doc-design-layout.preview[data-v-
|
|
9143
|
+
.doc-design-layout.preview[data-v-e6b0dcfe] {
|
|
9140
9144
|
pointer-events: none;
|
|
9141
9145
|
}
|
|
9142
|
-
.doc-design-layout .design-body[data-v-
|
|
9146
|
+
.doc-design-layout .design-body[data-v-e6b0dcfe] {
|
|
9143
9147
|
flex: 1;
|
|
9144
9148
|
display: flex;
|
|
9145
9149
|
min-height: 0;
|
|
9146
9150
|
}
|
|
9147
|
-
.doc-design-layout .design-body .design-sidebar[data-v-
|
|
9148
|
-
|
|
9151
|
+
.doc-design-layout .design-body .design-sidebar[data-v-e6b0dcfe] {
|
|
9152
|
+
position: relative;
|
|
9153
|
+
overflow: hidden;
|
|
9149
9154
|
background: #fff;
|
|
9150
9155
|
flex-shrink: 0;
|
|
9151
9156
|
}
|
|
9152
|
-
.doc-design-layout .design-body .design-sidebar.left[data-v-
|
|
9157
|
+
.doc-design-layout .design-body .design-sidebar.left[data-v-e6b0dcfe] {
|
|
9153
9158
|
border-right: 1px solid #e0e0e0;
|
|
9154
9159
|
}
|
|
9155
|
-
.doc-design-layout .design-body .design-sidebar.right[data-v-
|
|
9160
|
+
.doc-design-layout .design-body .design-sidebar.right[data-v-e6b0dcfe] {
|
|
9156
9161
|
border-left: 1px solid #e0e0e0;
|
|
9157
9162
|
}
|
|
9158
|
-
.doc-design-layout .design-body .design-sidebar
|
|
9163
|
+
.doc-design-layout .design-body .design-sidebar .right-container[data-v-e6b0dcfe] {
|
|
9159
9164
|
position: relative;
|
|
9160
9165
|
display: flex;
|
|
9166
|
+
width: 100%;
|
|
9161
9167
|
height: 100%;
|
|
9162
9168
|
overflow: hidden;
|
|
9163
9169
|
}
|
|
9164
|
-
.doc-design-layout .design-body .design-
|
|
9165
|
-
|
|
9166
|
-
|
|
9170
|
+
.doc-design-layout .design-body .design-sidebar .right-container .divider[data-v-e6b0dcfe] {
|
|
9171
|
+
position: absolute;
|
|
9172
|
+
left: 0;
|
|
9173
|
+
top: 0;
|
|
9174
|
+
z-index: 10;
|
|
9175
|
+
width: 6px;
|
|
9176
|
+
height: 100%;
|
|
9177
|
+
cursor: ew-resize;
|
|
9178
|
+
left: 46px;
|
|
9179
|
+
transform: translateX(-50%);
|
|
9180
|
+
}
|
|
9181
|
+
.doc-design-layout .design-body .design-main[data-v-e6b0dcfe] {
|
|
9167
9182
|
position: relative;
|
|
9183
|
+
flex: 1;
|
|
9168
9184
|
min-height: 0;
|
|
9185
|
+
overflow: hidden;
|
|
9169
9186
|
}
|
|
9170
|
-
.doc-design-layout .design-body .design-main .empty-container[data-v-
|
|
9187
|
+
.doc-design-layout .design-body .design-main .empty-container[data-v-e6b0dcfe] {
|
|
9171
9188
|
position: absolute;
|
|
9172
|
-
box-sizing: border-box;
|
|
9173
|
-
pointer-events: all;
|
|
9174
|
-
width: 100%;
|
|
9175
|
-
height: 100%;
|
|
9176
9189
|
top: 0;
|
|
9177
|
-
transform: translateX(-50%);
|
|
9178
9190
|
left: 50%;
|
|
9191
|
+
z-index: 2;
|
|
9179
9192
|
display: flex;
|
|
9180
9193
|
align-items: center;
|
|
9181
9194
|
justify-content: center;
|
|
9182
|
-
z-index: 2;
|
|
9183
|
-
}
|
|
9184
|
-
.doc-design-layout .design-body .design-main .empty-content[data-v-90a572b9] {
|
|
9185
|
-
width: 200px;
|
|
9186
|
-
text-align: center;
|
|
9187
|
-
color: #666;
|
|
9188
|
-
line-height: 1;
|
|
9189
|
-
}
|
|
9190
|
-
.doc-design-layout .design-body .design-main .empty-content > img[data-v-90a572b9] {
|
|
9191
9195
|
width: 100%;
|
|
9192
9196
|
height: 100%;
|
|
9197
|
+
box-sizing: border-box;
|
|
9198
|
+
pointer-events: all;
|
|
9199
|
+
transform: translateX(-50%);
|
|
9193
9200
|
}
|
|
9194
|
-
.doc-design-layout .design-footer[data-v-
|
|
9195
|
-
height: 28px;
|
|
9196
|
-
border-top: 1px solid #e0e0e0;
|
|
9197
|
-
background: #f8f8f8;
|
|
9201
|
+
.doc-design-layout .design-footer[data-v-e6b0dcfe] {
|
|
9198
9202
|
flex-shrink: 0;
|
|
9199
9203
|
display: flex;
|
|
9200
9204
|
align-items: center;
|
|
9205
|
+
height: 28px;
|
|
9201
9206
|
padding: 0 12px;
|
|
9202
9207
|
font-size: 12px;
|
|
9208
|
+
background: #f8f8f8;
|
|
9209
|
+
border-top: 1px solid #e0e0e0;
|
|
9203
9210
|
}
|
|
9204
9211
|
.render-container[data-v-c852bc0c] {
|
|
9205
9212
|
overflow-y: auto;
|
|
@@ -10329,7 +10336,7 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
10329
10336
|
.panel-data-init .data-source-area[data-v-6003ed85] .data-source-item.is-last .data-source-title.is-child.is-last .line::after {
|
|
10330
10337
|
display: none;
|
|
10331
10338
|
}
|
|
10332
|
-
.add-tmpl-btn[data-v-
|
|
10339
|
+
.add-tmpl-btn[data-v-25c2d428] {
|
|
10333
10340
|
width: 100%;
|
|
10334
10341
|
}.menu {
|
|
10335
10342
|
width: 268px;
|
|
@@ -10372,12 +10379,12 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
10372
10379
|
.remove-icon[data-v-ae02c285]:hover {
|
|
10373
10380
|
background: #f2f5f8;
|
|
10374
10381
|
color: #000000;
|
|
10375
|
-
}.tmpl-card[data-v-
|
|
10382
|
+
}.tmpl-card[data-v-5eca0a1c] {
|
|
10376
10383
|
background: #ffffff;
|
|
10377
10384
|
box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.08);
|
|
10378
10385
|
border-radius: 6px 6px 6px 6px;
|
|
10379
10386
|
}
|
|
10380
|
-
.tmpl-card__header[data-v-
|
|
10387
|
+
.tmpl-card__header[data-v-5eca0a1c] {
|
|
10381
10388
|
border-bottom: 1px solid #f2f5f8;
|
|
10382
10389
|
display: flex;
|
|
10383
10390
|
justify-content: space-between;
|
|
@@ -10385,22 +10392,22 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
10385
10392
|
height: 34px;
|
|
10386
10393
|
padding: 0 3px 0 8px;
|
|
10387
10394
|
}
|
|
10388
|
-
.tmpl-card__header .header_title[data-v-
|
|
10395
|
+
.tmpl-card__header .header_title[data-v-5eca0a1c] {
|
|
10389
10396
|
display: flex;
|
|
10390
10397
|
align-items: center;
|
|
10391
10398
|
}
|
|
10392
|
-
.tmpl-card__icon[data-v-
|
|
10399
|
+
.tmpl-card__icon[data-v-5eca0a1c] {
|
|
10393
10400
|
font-size: 12px;
|
|
10394
10401
|
color: #026ac8;
|
|
10395
10402
|
margin-right: 4px;
|
|
10396
10403
|
line-height: 1;
|
|
10397
10404
|
}
|
|
10398
|
-
.tmpl-card__title[data-v-
|
|
10405
|
+
.tmpl-card__title[data-v-5eca0a1c] {
|
|
10399
10406
|
font-weight: 600;
|
|
10400
10407
|
font-size: 12px;
|
|
10401
10408
|
color: #1a1d23;
|
|
10402
10409
|
}
|
|
10403
|
-
.tmpl-card__title[data-v-
|
|
10410
|
+
.tmpl-card__title[data-v-5eca0a1c] {
|
|
10404
10411
|
font-weight: 600;
|
|
10405
10412
|
font-size: 12px;
|
|
10406
10413
|
color: #1a1d23;
|