@syncfusion/ej2-inplace-editor 20.1.55 → 20.2.36
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/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +5 -5
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +22 -23
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +8 -6
- package/helpers/e2e/inplace-editor.js +74 -58
- package/package.json +16 -16
- package/src/inplace-editor/base/inplace-editor.d.ts +1 -0
- package/src/inplace-editor/base/inplace-editor.js +22 -23
- package/styles/bootstrap-dark.css +11 -139
- package/styles/bootstrap.css +12 -145
- package/styles/bootstrap4.css +22 -195
- package/styles/bootstrap5-dark.css +20 -141
- package/styles/bootstrap5.css +20 -141
- package/styles/fabric-dark.css +11 -137
- package/styles/fabric.css +11 -137
- package/styles/fluent-dark.css +12 -137
- package/styles/fluent.css +11 -136
- package/styles/highcontrast-light.css +12 -172
- package/styles/highcontrast.css +12 -172
- package/styles/inplace-editor/_fluent-definition.scss +1 -1
- package/styles/inplace-editor/_fusionnew-definition.scss +68 -0
- package/styles/inplace-editor/_material3-definition.scss +68 -0
- package/styles/inplace-editor/_theme.scss +8 -0
- package/styles/inplace-editor/bootstrap-dark.css +11 -139
- package/styles/inplace-editor/bootstrap.css +12 -145
- package/styles/inplace-editor/bootstrap4.css +22 -195
- package/styles/inplace-editor/bootstrap5-dark.css +20 -141
- package/styles/inplace-editor/bootstrap5.css +20 -141
- package/styles/inplace-editor/fabric-dark.css +11 -137
- package/styles/inplace-editor/fabric.css +11 -137
- package/styles/inplace-editor/fluent-dark.css +12 -137
- package/styles/inplace-editor/fluent.css +11 -136
- package/styles/inplace-editor/highcontrast-light.css +12 -172
- package/styles/inplace-editor/highcontrast.css +12 -172
- package/styles/inplace-editor/icons/_fusionnew.scss +19 -0
- package/styles/inplace-editor/icons/_material3.scss +19 -0
- package/styles/inplace-editor/material-dark.css +7 -126
- package/styles/inplace-editor/material.css +7 -130
- package/styles/inplace-editor/tailwind-dark.css +9 -128
- package/styles/inplace-editor/tailwind.css +9 -128
- package/styles/material-dark.css +7 -126
- package/styles/material.css +7 -130
- package/styles/tailwind-dark.css +9 -128
- package/styles/tailwind.css +9 -128
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
width: 28px;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
.e-multi-select-wrapper .e-searcher input[type=
|
|
123
|
+
.e-multi-select-wrapper .e-searcher input[type=text] {
|
|
124
124
|
color: #fff;
|
|
125
125
|
height: 100%;
|
|
126
126
|
}
|
|
@@ -133,7 +133,6 @@
|
|
|
133
133
|
transform: rotate(360deg);
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
-
|
|
137
136
|
@keyframes fabric-spinner-rotate {
|
|
138
137
|
0% {
|
|
139
138
|
transform: rotate(0);
|
|
@@ -142,21 +141,18 @@
|
|
|
142
141
|
transform: rotate(360deg);
|
|
143
142
|
}
|
|
144
143
|
}
|
|
145
|
-
|
|
146
144
|
/*! inplaceeditor icons */
|
|
147
145
|
.e-inplaceeditor .e-save-icon::before,
|
|
148
146
|
.e-inplaceeditor-tip .e-save-icon::before {
|
|
149
|
-
content:
|
|
147
|
+
content: "\e774";
|
|
150
148
|
}
|
|
151
|
-
|
|
152
149
|
.e-inplaceeditor .e-cancel-icon::before,
|
|
153
150
|
.e-inplaceeditor-tip .e-cancel-icon::before {
|
|
154
|
-
content:
|
|
151
|
+
content: "\e7e7";
|
|
155
152
|
}
|
|
156
|
-
|
|
157
153
|
.e-inplaceeditor .e-editable-overlay-icon::before,
|
|
158
154
|
.e-inplaceeditor-tip .e-editable-overlay-icon::before {
|
|
159
|
-
content:
|
|
155
|
+
content: "\e730";
|
|
160
156
|
}
|
|
161
157
|
|
|
162
158
|
/*! inplaceeditor layout */
|
|
@@ -164,107 +160,88 @@
|
|
|
164
160
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
165
161
|
padding: 7px 12px 7px 12px;
|
|
166
162
|
}
|
|
167
|
-
|
|
168
163
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper .e-editable-value,
|
|
169
164
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper .e-editable-value {
|
|
170
165
|
font-size: 16px;
|
|
171
166
|
margin: 0 30px 0 0;
|
|
172
167
|
}
|
|
173
|
-
|
|
174
168
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon,
|
|
175
169
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
176
170
|
right: 8px;
|
|
177
171
|
width: 20px;
|
|
178
172
|
}
|
|
179
|
-
|
|
180
173
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before,
|
|
181
174
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
182
175
|
font-size: 16px;
|
|
183
176
|
}
|
|
184
|
-
|
|
185
177
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner,
|
|
186
178
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner {
|
|
187
179
|
right: 8px;
|
|
188
180
|
}
|
|
189
|
-
|
|
190
181
|
.e-bigger .e-inplaceeditor .e-editable-value-container,
|
|
191
182
|
.e-inplaceeditor.e-bigger .e-editable-value-container {
|
|
192
183
|
padding: 7px 12px 7px 12px;
|
|
193
184
|
}
|
|
194
|
-
|
|
195
185
|
.e-bigger .e-inplaceeditor .e-editable-value-container .e-editable-value,
|
|
196
186
|
.e-inplaceeditor.e-bigger .e-editable-value-container .e-editable-value {
|
|
197
187
|
font-size: 16px;
|
|
198
188
|
margin: 0 30px 0 0;
|
|
199
189
|
}
|
|
200
|
-
|
|
201
190
|
.e-bigger .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon,
|
|
202
191
|
.e-inplaceeditor.e-bigger .e-editable-value-container .e-editable-overlay-icon {
|
|
203
192
|
right: 8px;
|
|
204
193
|
width: 20px;
|
|
205
194
|
}
|
|
206
|
-
|
|
207
195
|
.e-bigger .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before,
|
|
208
196
|
.e-inplaceeditor.e-bigger .e-editable-value-container .e-editable-overlay-icon::before {
|
|
209
197
|
font-size: 16px;
|
|
210
198
|
}
|
|
211
|
-
|
|
212
199
|
.e-bigger .e-inplaceeditor .e-editable-value-container .e-spinner-pane .e-spinner-inner,
|
|
213
200
|
.e-inplaceeditor.e-bigger .e-editable-value-container .e-spinner-pane .e-spinner-inner {
|
|
214
201
|
right: 8px;
|
|
215
202
|
}
|
|
216
|
-
|
|
217
203
|
.e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-save,
|
|
218
204
|
.e-inplaceeditor.e-bigger .e-editable-action-buttons .e-btn-save {
|
|
219
205
|
margin: 0 4px 0 0;
|
|
220
206
|
}
|
|
221
|
-
|
|
222
207
|
.e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel,
|
|
223
208
|
.e-inplaceeditor.e-bigger .e-editable-action-buttons .e-btn-cancel {
|
|
224
209
|
margin: 0 0 0 4px;
|
|
225
210
|
}
|
|
226
|
-
|
|
227
211
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-editable-value,
|
|
228
212
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-wrapper .e-editable-value {
|
|
229
213
|
margin: 0 0 0 30px;
|
|
230
214
|
}
|
|
231
|
-
|
|
232
215
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-editable-overlay-icon,
|
|
233
216
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
234
217
|
left: 8px;
|
|
235
218
|
right: auto;
|
|
236
219
|
}
|
|
237
|
-
|
|
238
220
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-spinner-pane,
|
|
239
221
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner,
|
|
240
222
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-wrapper .e-spinner-pane,
|
|
241
223
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner {
|
|
242
224
|
left: 8px;
|
|
243
225
|
}
|
|
244
|
-
|
|
245
226
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-container .e-editable-value,
|
|
246
227
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-container .e-editable-value {
|
|
247
228
|
margin: 0 0 0 30px;
|
|
248
229
|
}
|
|
249
|
-
|
|
250
230
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-container .e-editable-overlay-icon,
|
|
251
231
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-container .e-editable-overlay-icon {
|
|
252
232
|
left: 8px;
|
|
253
233
|
right: auto;
|
|
254
234
|
}
|
|
255
|
-
|
|
256
235
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-container .e-spinner-pane,
|
|
257
236
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-value-container .e-spinner-pane .e-spinner-inner,
|
|
258
237
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-container .e-spinner-pane,
|
|
259
238
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-value-container .e-spinner-pane .e-spinner-inner {
|
|
260
239
|
left: 8px;
|
|
261
240
|
}
|
|
262
|
-
|
|
263
241
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-action-buttons .e-btn-save,
|
|
264
242
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-action-buttons .e-btn-save {
|
|
265
243
|
margin: 0 0 0 4px;
|
|
266
244
|
}
|
|
267
|
-
|
|
268
245
|
.e-bigger .e-inplaceeditor.e-rtl .e-editable-action-buttons .e-btn-cancel,
|
|
269
246
|
.e-inplaceeditor.e-bigger.e-rtl .e-editable-action-buttons .e-btn-cancel {
|
|
270
247
|
margin: 0 4px 0 0;
|
|
@@ -275,17 +252,14 @@
|
|
|
275
252
|
position: relative;
|
|
276
253
|
width: auto;
|
|
277
254
|
}
|
|
278
|
-
|
|
279
255
|
.e-inplaceeditor .e-input-group.e-numeric.e-control-wrapper .e-clear-icon.e-clear-icon-hide {
|
|
280
256
|
display: block;
|
|
281
257
|
visibility: hidden;
|
|
282
258
|
}
|
|
283
|
-
|
|
284
259
|
.e-inplaceeditor .e-input-group.e-numeric.e-control-container .e-clear-icon.e-clear-icon-hide {
|
|
285
260
|
display: block;
|
|
286
261
|
visibility: hidden;
|
|
287
262
|
}
|
|
288
|
-
|
|
289
263
|
.e-inplaceeditor .e-editable-value-wrapper {
|
|
290
264
|
display: inline-block;
|
|
291
265
|
padding: 3px 8px 5px 8px;
|
|
@@ -293,14 +267,12 @@
|
|
|
293
267
|
width: auto;
|
|
294
268
|
word-break: break-word;
|
|
295
269
|
}
|
|
296
|
-
|
|
297
270
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
298
271
|
display: inline-block;
|
|
299
272
|
font-family: "Inter";
|
|
300
273
|
font-size: 14px;
|
|
301
274
|
margin: 0 28px 0 0;
|
|
302
275
|
}
|
|
303
|
-
|
|
304
276
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
305
277
|
bottom: 0;
|
|
306
278
|
cursor: pointer;
|
|
@@ -313,7 +285,6 @@
|
|
|
313
285
|
visibility: hidden;
|
|
314
286
|
width: 20px;
|
|
315
287
|
}
|
|
316
|
-
|
|
317
288
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
318
289
|
-ms-flex-align: center;
|
|
319
290
|
align-items: center;
|
|
@@ -321,34 +292,27 @@
|
|
|
321
292
|
display: flex;
|
|
322
293
|
font-size: 14px;
|
|
323
294
|
}
|
|
324
|
-
|
|
325
295
|
.e-inplaceeditor .e-editable-value-wrapper.e-hide {
|
|
326
296
|
display: none;
|
|
327
297
|
}
|
|
328
|
-
|
|
329
298
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
330
299
|
-webkit-user-select: none;
|
|
331
300
|
-ms-user-select: none;
|
|
332
301
|
user-select: none;
|
|
333
302
|
}
|
|
334
|
-
|
|
335
303
|
.e-inplaceeditor .e-editable-value-wrapper.e-loading {
|
|
336
304
|
pointer-events: none;
|
|
337
305
|
}
|
|
338
|
-
|
|
339
306
|
.e-inplaceeditor .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner {
|
|
340
307
|
left: unset;
|
|
341
308
|
right: 8px;
|
|
342
309
|
}
|
|
343
|
-
|
|
344
310
|
.e-inplaceeditor .e-editable-value-wrapper:hover .e-editable-overlay-icon {
|
|
345
311
|
visibility: visible;
|
|
346
312
|
}
|
|
347
|
-
|
|
348
313
|
.e-inplaceeditor .e-editable-value-wrapper:hover.e-editable-open .e-editable-overlay-icon {
|
|
349
314
|
visibility: hidden;
|
|
350
315
|
}
|
|
351
|
-
|
|
352
316
|
.e-inplaceeditor .e-editable-value-container {
|
|
353
317
|
display: inline-block;
|
|
354
318
|
padding: 3px 8px 5px 8px;
|
|
@@ -356,14 +320,12 @@
|
|
|
356
320
|
width: auto;
|
|
357
321
|
word-break: break-word;
|
|
358
322
|
}
|
|
359
|
-
|
|
360
323
|
.e-inplaceeditor .e-editable-value-container .e-editable-value {
|
|
361
324
|
display: inline-block;
|
|
362
325
|
font-family: "Inter";
|
|
363
326
|
font-size: 14px;
|
|
364
327
|
margin: 0 28px 0 0;
|
|
365
328
|
}
|
|
366
|
-
|
|
367
329
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
368
330
|
bottom: 0;
|
|
369
331
|
cursor: pointer;
|
|
@@ -376,7 +338,6 @@
|
|
|
376
338
|
visibility: hidden;
|
|
377
339
|
width: 20px;
|
|
378
340
|
}
|
|
379
|
-
|
|
380
341
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
381
342
|
-ms-flex-align: center;
|
|
382
343
|
align-items: center;
|
|
@@ -384,83 +345,66 @@
|
|
|
384
345
|
display: flex;
|
|
385
346
|
font-size: 14px;
|
|
386
347
|
}
|
|
387
|
-
|
|
388
348
|
.e-inplaceeditor .e-editable-value-container.e-hide {
|
|
389
349
|
display: none;
|
|
390
350
|
}
|
|
391
|
-
|
|
392
351
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
393
352
|
-webkit-user-select: none;
|
|
394
353
|
-ms-user-select: none;
|
|
395
354
|
user-select: none;
|
|
396
355
|
}
|
|
397
|
-
|
|
398
356
|
.e-inplaceeditor .e-editable-value-container.e-loading {
|
|
399
357
|
pointer-events: none;
|
|
400
358
|
}
|
|
401
|
-
|
|
402
359
|
.e-inplaceeditor .e-editable-value-container .e-spinner-pane .e-spinner-inner {
|
|
403
360
|
left: unset;
|
|
404
361
|
right: 8px;
|
|
405
362
|
}
|
|
406
|
-
|
|
407
363
|
.e-inplaceeditor .e-editable-value-container:hover .e-editable-overlay-icon {
|
|
408
364
|
visibility: visible;
|
|
409
365
|
}
|
|
410
|
-
|
|
411
366
|
.e-inplaceeditor .e-editable-value-container:hover.e-editable-open .e-editable-overlay-icon {
|
|
412
367
|
visibility: hidden;
|
|
413
368
|
}
|
|
414
|
-
|
|
415
369
|
.e-inplaceeditor .e-editable-action-buttons {
|
|
416
370
|
margin-top: 4px;
|
|
417
371
|
position: absolute;
|
|
418
372
|
right: 0;
|
|
419
373
|
z-index: 100;
|
|
420
374
|
}
|
|
421
|
-
|
|
422
375
|
.e-inplaceeditor.e-overlay {
|
|
423
376
|
-webkit-user-select: none;
|
|
424
377
|
-ms-user-select: none;
|
|
425
378
|
user-select: none;
|
|
426
379
|
}
|
|
427
|
-
|
|
428
380
|
.e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-editable-value {
|
|
429
381
|
margin: 0 0 0 28px;
|
|
430
382
|
}
|
|
431
|
-
|
|
432
383
|
.e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
433
384
|
left: 8px;
|
|
434
385
|
right: auto;
|
|
435
386
|
}
|
|
436
|
-
|
|
437
387
|
.e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-spinner-pane {
|
|
438
388
|
right: unset;
|
|
439
389
|
}
|
|
440
|
-
|
|
441
390
|
.e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-spinner-pane,
|
|
442
391
|
.e-inplaceeditor.e-rtl .e-editable-value-wrapper .e-spinner-pane .e-spinner-inner {
|
|
443
392
|
left: 8px;
|
|
444
393
|
}
|
|
445
|
-
|
|
446
394
|
.e-inplaceeditor.e-rtl .e-editable-value-container .e-editable-value {
|
|
447
395
|
margin: 0 0 0 28px;
|
|
448
396
|
}
|
|
449
|
-
|
|
450
397
|
.e-inplaceeditor.e-rtl .e-editable-value-container .e-editable-overlay-icon {
|
|
451
398
|
left: 8px;
|
|
452
399
|
right: auto;
|
|
453
400
|
}
|
|
454
|
-
|
|
455
401
|
.e-inplaceeditor.e-rtl .e-editable-value-container .e-spinner-pane {
|
|
456
402
|
right: unset;
|
|
457
403
|
}
|
|
458
|
-
|
|
459
404
|
.e-inplaceeditor.e-rtl .e-editable-value-container .e-spinner-pane,
|
|
460
405
|
.e-inplaceeditor.e-rtl .e-editable-value-container .e-spinner-pane .e-spinner-inner {
|
|
461
406
|
left: 8px;
|
|
462
407
|
}
|
|
463
|
-
|
|
464
408
|
.e-inplaceeditor.e-rtl .e-editable-action-buttons {
|
|
465
409
|
left: 0;
|
|
466
410
|
right: auto;
|
|
@@ -472,17 +416,14 @@
|
|
|
472
416
|
.e-inplaceeditor-tip.e-bigger {
|
|
473
417
|
width: auto;
|
|
474
418
|
}
|
|
475
|
-
|
|
476
419
|
.e-inplaceeditor .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle,
|
|
477
420
|
.e-inplaceeditor-tip .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
|
|
478
421
|
stroke-width: inherit;
|
|
479
422
|
}
|
|
480
|
-
|
|
481
423
|
.e-inplaceeditor .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle,
|
|
482
424
|
.e-inplaceeditor-tip .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
|
|
483
425
|
stroke-width: inherit;
|
|
484
426
|
}
|
|
485
|
-
|
|
486
427
|
.e-inplaceeditor .e-editable-loading,
|
|
487
428
|
.e-inplaceeditor-tip .e-editable-loading {
|
|
488
429
|
display: none;
|
|
@@ -490,90 +431,74 @@
|
|
|
490
431
|
position: absolute;
|
|
491
432
|
top: 0;
|
|
492
433
|
}
|
|
493
|
-
|
|
494
434
|
.e-inplaceeditor .e-editable-loading.e-show,
|
|
495
435
|
.e-inplaceeditor-tip .e-editable-loading.e-show {
|
|
496
436
|
display: block;
|
|
497
437
|
}
|
|
498
|
-
|
|
499
438
|
.e-inplaceeditor .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner,
|
|
500
439
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
440
|
left: auto;
|
|
502
441
|
right: 5px;
|
|
503
442
|
transform: translateX(-30%) translateY(-50%);
|
|
504
443
|
}
|
|
505
|
-
|
|
506
444
|
.e-inplaceeditor .e-editable-form,
|
|
507
445
|
.e-inplaceeditor-tip .e-editable-form {
|
|
508
446
|
width: 100%;
|
|
509
447
|
}
|
|
510
|
-
|
|
511
448
|
.e-inplaceeditor .e-editable-form.e-loading .e-input-group-icon,
|
|
512
449
|
.e-inplaceeditor-tip .e-editable-form.e-loading .e-input-group-icon {
|
|
513
450
|
visibility: hidden;
|
|
514
451
|
}
|
|
515
|
-
|
|
516
452
|
.e-inplaceeditor .e-component-group,
|
|
517
453
|
.e-inplaceeditor-tip .e-component-group {
|
|
518
454
|
margin-bottom: 4px;
|
|
519
455
|
}
|
|
520
|
-
|
|
521
456
|
.e-inplaceeditor .e-component-group .e-editable-component,
|
|
522
457
|
.e-inplaceeditor-tip .e-component-group .e-editable-component {
|
|
523
458
|
min-width: 150px;
|
|
524
459
|
position: relative;
|
|
525
460
|
}
|
|
526
|
-
|
|
527
461
|
.e-inplaceeditor .e-control-overlay,
|
|
528
462
|
.e-inplaceeditor-tip .e-control-overlay {
|
|
529
463
|
visibility: hidden;
|
|
530
464
|
}
|
|
531
|
-
|
|
532
465
|
.e-inplaceeditor .e-control-overlay.e-richtexteditor,
|
|
533
466
|
.e-inplaceeditor-tip .e-control-overlay.e-richtexteditor {
|
|
534
|
-
opacity: .5;
|
|
467
|
+
opacity: 0.5;
|
|
535
468
|
pointer-events: none;
|
|
536
469
|
-webkit-user-select: none;
|
|
537
470
|
-ms-user-select: none;
|
|
538
471
|
user-select: none;
|
|
539
472
|
visibility: visible;
|
|
540
473
|
}
|
|
541
|
-
|
|
542
474
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save,
|
|
543
475
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save {
|
|
544
476
|
margin: 0 4px 0 0;
|
|
545
477
|
}
|
|
546
|
-
|
|
547
478
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save .e-btn-icon.e-icons,
|
|
548
479
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save .e-btn-icon.e-icons {
|
|
549
480
|
font-size: 16px;
|
|
550
481
|
}
|
|
551
|
-
|
|
552
482
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel,
|
|
553
483
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel {
|
|
554
484
|
margin: 0 0 0 4px;
|
|
555
485
|
}
|
|
556
|
-
|
|
557
486
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel .e-btn-icon.e-icons,
|
|
558
487
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel .e-btn-icon.e-icons {
|
|
559
488
|
font-size: 16px;
|
|
560
489
|
}
|
|
561
|
-
|
|
562
490
|
.e-inplaceeditor .e-editable-action-buttons.e-hide,
|
|
563
491
|
.e-inplaceeditor-tip .e-editable-action-buttons.e-hide {
|
|
564
492
|
visibility: hidden;
|
|
565
493
|
}
|
|
566
|
-
|
|
567
494
|
.e-inplaceeditor.e-rtl .e-editable-action-buttons .e-btn-save,
|
|
568
495
|
.e-inplaceeditor-tip.e-rtl .e-editable-action-buttons .e-btn-save {
|
|
569
496
|
margin: 0 0 0 4px;
|
|
570
497
|
}
|
|
571
|
-
|
|
572
498
|
.e-inplaceeditor.e-rtl .e-editable-action-buttons .e-btn-cancel,
|
|
573
499
|
.e-inplaceeditor-tip.e-rtl .e-editable-action-buttons .e-btn-cancel {
|
|
574
500
|
margin: 0 4px 0 0;
|
|
575
501
|
}
|
|
576
|
-
|
|
577
502
|
.e-inplaceeditor.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner,
|
|
578
503
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
579
504
|
left: 5px;
|
|
@@ -585,34 +510,28 @@
|
|
|
585
510
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
586
511
|
padding: 0;
|
|
587
512
|
}
|
|
588
|
-
|
|
589
513
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
590
514
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
591
515
|
padding: 16px;
|
|
592
516
|
}
|
|
593
|
-
|
|
594
517
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container,
|
|
595
518
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
596
519
|
padding: 16px;
|
|
597
520
|
}
|
|
598
|
-
|
|
599
521
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-wrapper,
|
|
600
522
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-wrapper {
|
|
601
523
|
padding: 16px;
|
|
602
524
|
}
|
|
603
|
-
|
|
604
525
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-container,
|
|
605
526
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-container {
|
|
606
527
|
padding: 16px;
|
|
607
528
|
}
|
|
608
|
-
|
|
609
529
|
.e-bigger .e-inplaceeditor-tip .e-editable-title,
|
|
610
530
|
.e-inplaceeditor-tip.e-bigger .e-editable-title {
|
|
611
531
|
font-size: 14px;
|
|
612
532
|
min-height: 36px;
|
|
613
533
|
padding: 7px 16px 7px 16px;
|
|
614
534
|
}
|
|
615
|
-
|
|
616
535
|
.e-bigger .e-inplaceeditor-tip.e-rtl.e-tooltip-wrap .e-tip-content .e-editable-title,
|
|
617
536
|
.e-inplaceeditor-tip.e-bigger.e-rtl.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
618
537
|
padding: 7px 16px 7px 16px;
|
|
@@ -622,21 +541,17 @@
|
|
|
622
541
|
opacity: 1;
|
|
623
542
|
width: auto;
|
|
624
543
|
}
|
|
625
|
-
|
|
626
544
|
.e-inplaceeditor-tip.e-tooltip-wrap {
|
|
627
545
|
max-width: 100%;
|
|
628
546
|
}
|
|
629
|
-
|
|
630
547
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-input-group.e-numeric.e-control-wrapper .e-clear-icon.e-clear-icon-hide,
|
|
631
548
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-input-group.e-numeric.e-control-container .e-clear-icon.e-clear-icon-hide {
|
|
632
549
|
display: block;
|
|
633
550
|
visibility: hidden;
|
|
634
551
|
}
|
|
635
|
-
|
|
636
552
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
|
|
637
553
|
padding: 0;
|
|
638
554
|
}
|
|
639
|
-
|
|
640
555
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
641
556
|
-ms-flex-line-pack: center;
|
|
642
557
|
align-content: center;
|
|
@@ -652,13 +567,11 @@
|
|
|
652
567
|
justify-content: center;
|
|
653
568
|
padding: 6px 12px 6px 12px;
|
|
654
569
|
}
|
|
655
|
-
|
|
656
570
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
657
571
|
display: -ms-flexbox;
|
|
658
572
|
display: flex;
|
|
659
573
|
padding: 12px;
|
|
660
574
|
}
|
|
661
|
-
|
|
662
575
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper .e-editable-action-buttons {
|
|
663
576
|
float: right;
|
|
664
577
|
margin-top: 4px;
|
|
@@ -666,13 +579,11 @@
|
|
|
666
579
|
right: auto;
|
|
667
580
|
top: auto;
|
|
668
581
|
}
|
|
669
|
-
|
|
670
582
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
671
583
|
display: -ms-flexbox;
|
|
672
584
|
display: flex;
|
|
673
585
|
padding: 12px;
|
|
674
586
|
}
|
|
675
|
-
|
|
676
587
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container .e-editable-action-buttons {
|
|
677
588
|
float: right;
|
|
678
589
|
margin-top: 4px;
|
|
@@ -680,27 +591,21 @@
|
|
|
680
591
|
right: auto;
|
|
681
592
|
top: auto;
|
|
682
593
|
}
|
|
683
|
-
|
|
684
594
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-wrapper {
|
|
685
595
|
padding: 12px;
|
|
686
596
|
}
|
|
687
|
-
|
|
688
597
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title + .e-editable-container {
|
|
689
598
|
padding: 12px;
|
|
690
599
|
}
|
|
691
|
-
|
|
692
600
|
.e-inplaceeditor-tip.e-hide {
|
|
693
601
|
visibility: hidden;
|
|
694
602
|
}
|
|
695
|
-
|
|
696
603
|
.e-inplaceeditor-tip.e-rtl.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
697
604
|
padding: 6px 12px 6px 12px;
|
|
698
605
|
}
|
|
699
|
-
|
|
700
606
|
.e-inplaceeditor-tip.e-rtl.e-tooltip-wrap .e-tip-content .e-editable-wrapper .e-editable-action-buttons {
|
|
701
607
|
float: left;
|
|
702
608
|
}
|
|
703
|
-
|
|
704
609
|
.e-inplaceeditor-tip.e-rtl.e-tooltip-wrap .e-tip-content .e-editable-container .e-editable-action-buttons {
|
|
705
610
|
float: left;
|
|
706
611
|
}
|
|
@@ -736,8 +641,7 @@
|
|
|
736
641
|
font-size: 14px;
|
|
737
642
|
}
|
|
738
643
|
|
|
739
|
-
.e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons
|
|
740
|
-
.e-bigger.e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons {
|
|
644
|
+
.e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons .e-bigger.e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons {
|
|
741
645
|
font-size: 22px;
|
|
742
646
|
}
|
|
743
647
|
|
|
@@ -746,64 +650,50 @@
|
|
|
746
650
|
border-bottom: 1px dashed #fff;
|
|
747
651
|
color: #fff;
|
|
748
652
|
}
|
|
749
|
-
|
|
750
653
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
751
654
|
color: #d1d5db;
|
|
752
655
|
}
|
|
753
|
-
|
|
754
656
|
.e-inplaceeditor .e-editable-value-wrapper.e-loading .e-editable-value {
|
|
755
657
|
border-bottom: 0;
|
|
756
658
|
}
|
|
757
|
-
|
|
758
659
|
.e-inplaceeditor .e-editable-value-wrapper:hover {
|
|
759
660
|
background: #374151;
|
|
760
661
|
border-radius: 4px;
|
|
761
662
|
}
|
|
762
|
-
|
|
763
663
|
.e-inplaceeditor .e-editable-value-wrapper:hover .e-editable-value {
|
|
764
664
|
border-bottom-color: transparent;
|
|
765
665
|
}
|
|
766
|
-
|
|
767
666
|
.e-inplaceeditor .e-editable-value-container .e-editable-value {
|
|
768
667
|
border-bottom: 1px dashed #fff;
|
|
769
668
|
color: #fff;
|
|
770
669
|
}
|
|
771
|
-
|
|
772
670
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
773
671
|
color: #d1d5db;
|
|
774
672
|
}
|
|
775
|
-
|
|
776
673
|
.e-inplaceeditor .e-editable-value-container.e-loading .e-editable-value {
|
|
777
674
|
border-bottom: 0;
|
|
778
675
|
}
|
|
779
|
-
|
|
780
676
|
.e-inplaceeditor .e-editable-value-container:hover {
|
|
781
677
|
background: #374151;
|
|
782
678
|
border-radius: 4px;
|
|
783
679
|
}
|
|
784
|
-
|
|
785
680
|
.e-inplaceeditor .e-editable-value-container:hover .e-editable-value {
|
|
786
681
|
border-bottom-color: transparent;
|
|
787
682
|
}
|
|
788
|
-
|
|
789
|
-
.e-inplaceeditor[data-underline='false'] .e-editable-value-wrapper .e-editable-value {
|
|
683
|
+
.e-inplaceeditor[data-underline=false] .e-editable-value-wrapper .e-editable-value {
|
|
790
684
|
border-bottom: 0;
|
|
791
685
|
}
|
|
792
|
-
|
|
793
|
-
.e-inplaceeditor[data-underline='false'] .e-editable-value-container .e-editable-value {
|
|
686
|
+
.e-inplaceeditor[data-underline=false] .e-editable-value-container .e-editable-value {
|
|
794
687
|
border-bottom: 0;
|
|
795
688
|
}
|
|
796
|
-
|
|
797
689
|
.e-inplaceeditor.e-disable {
|
|
798
690
|
pointer-events: none;
|
|
799
691
|
-ms-touch-action: none;
|
|
800
692
|
touch-action: none;
|
|
801
693
|
}
|
|
802
|
-
|
|
803
694
|
.e-inplaceeditor.e-disable .e-editable-value-wrapper .e-editable-value {
|
|
804
695
|
border-bottom-color: transparent;
|
|
805
696
|
}
|
|
806
|
-
|
|
807
697
|
.e-inplaceeditor.e-disable .e-editable-value-container .e-editable-value {
|
|
808
698
|
border-bottom-color: transparent;
|
|
809
699
|
}
|
|
@@ -814,7 +704,6 @@
|
|
|
814
704
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons {
|
|
815
705
|
color: #d1d5db;
|
|
816
706
|
}
|
|
817
|
-
|
|
818
707
|
.e-inplaceeditor .e-editable-value-wrapper {
|
|
819
708
|
background-color: transparent;
|
|
820
709
|
border-radius: 4px;
|
|
@@ -828,38 +717,30 @@
|
|
|
828
717
|
background: #374151;
|
|
829
718
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
830
719
|
}
|
|
831
|
-
|
|
832
720
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
833
721
|
border-radius: 4px;
|
|
834
722
|
color: #fff;
|
|
835
723
|
}
|
|
836
|
-
|
|
837
724
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
|
|
838
725
|
color: #374151;
|
|
839
726
|
}
|
|
840
|
-
|
|
841
727
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-top {
|
|
842
728
|
border-bottom-color: #374151;
|
|
843
729
|
}
|
|
844
|
-
|
|
845
730
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-bottom {
|
|
846
731
|
border-top-color: #374151;
|
|
847
732
|
}
|
|
848
|
-
|
|
849
733
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup.e-popup {
|
|
850
734
|
border: 1px solid #4b5563;
|
|
851
735
|
}
|
|
852
|
-
|
|
853
736
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
|
|
854
737
|
background: #374151;
|
|
855
738
|
border-bottom: 0;
|
|
856
739
|
color: #9ca3af;
|
|
857
740
|
}
|
|
858
|
-
|
|
859
741
|
.e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-outer.e-tip-top {
|
|
860
742
|
border-bottom-color: #374151;
|
|
861
743
|
}
|
|
862
|
-
|
|
863
744
|
.e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
|
|
864
745
|
color: #374151;
|
|
865
|
-
}
|
|
746
|
+
}
|