@syncfusion/ej2-inplace-editor 20.1.55 → 20.2.43

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