@syncfusion/ej2-richtexteditor 25.1.37 → 25.1.39
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/CHANGELOG.md +36 -0
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +2793 -2632
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +7506 -7346
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/editor-manager/plugin/indents.js +1 -1
- package/src/editor-manager/plugin/inserthtml.js +24 -21
- package/src/editor-manager/plugin/link.js +4 -2
- package/src/editor-manager/plugin/lists.js +49 -17
- package/src/editor-manager/plugin/nodecutter.js +3 -0
- package/src/editor-manager/plugin/selection-commands.d.ts +1 -0
- package/src/editor-manager/plugin/selection-commands.js +84 -2
- package/src/editor-manager/plugin/table.d.ts +4 -0
- package/src/editor-manager/plugin/table.js +62 -19
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +1 -0
- package/src/rich-text-editor/actions/base-quick-toolbar.js +9 -13
- package/src/rich-text-editor/actions/base-toolbar.js +3 -2
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +1 -0
- package/src/rich-text-editor/actions/dropdown-buttons.js +8 -23
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +4 -1
- package/src/rich-text-editor/actions/format-painter.js +4 -1
- package/src/rich-text-editor/actions/html-editor.js +9 -7
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +2 -0
- package/src/rich-text-editor/actions/quick-toolbar.js +18 -4
- package/src/rich-text-editor/base/rich-text-editor.js +4 -18
- package/src/rich-text-editor/base/util.d.ts +0 -4
- package/src/rich-text-editor/base/util.js +1 -35
- package/src/rich-text-editor/formatter/formatter.js +2 -1
- package/src/rich-text-editor/renderer/audio-module.js +9 -4
- package/src/rich-text-editor/renderer/image-module.js +4 -1
- package/src/rich-text-editor/renderer/table-module.js +15 -5
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -1
- package/src/rich-text-editor/renderer/toolbar-renderer.js +30 -24
- package/src/rich-text-editor/renderer/video-module.js +29 -15
- package/styles/bootstrap-dark.css +21 -7
- package/styles/bootstrap.css +14 -3
- package/styles/bootstrap4.css +11 -0
- package/styles/bootstrap5-dark.css +11 -0
- package/styles/bootstrap5.css +11 -0
- package/styles/fabric-dark.css +11 -0
- package/styles/fabric.css +11 -0
- package/styles/fluent-dark.css +28 -5
- package/styles/fluent.css +28 -5
- package/styles/highcontrast-light.css +11 -0
- package/styles/highcontrast.css +11 -0
- package/styles/material-dark.css +12 -1
- package/styles/material.css +12 -1
- package/styles/material3-dark.css +11 -0
- package/styles/material3.css +11 -0
- package/styles/rich-text-editor/_bds-definition.scss +6 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +10 -4
- package/styles/rich-text-editor/_bootstrap-definition.scss +8 -2
- package/styles/rich-text-editor/_bootstrap4-definition.scss +6 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +6 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +6 -0
- package/styles/rich-text-editor/_fabric-definition.scss +6 -0
- package/styles/rich-text-editor/_fluent-definition.scss +11 -5
- package/styles/rich-text-editor/_fusionnew-definition.scss +6 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +6 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +6 -0
- package/styles/rich-text-editor/_layout.scss +13 -3
- package/styles/rich-text-editor/_material-dark-definition.scss +6 -0
- package/styles/rich-text-editor/_material-definition.scss +6 -0
- package/styles/rich-text-editor/_material3-definition.scss +6 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +11 -5
- package/styles/rich-text-editor/_theme.scss +21 -0
- package/styles/rich-text-editor/bootstrap-dark.css +21 -7
- package/styles/rich-text-editor/bootstrap.css +14 -3
- package/styles/rich-text-editor/bootstrap4.css +11 -0
- package/styles/rich-text-editor/bootstrap5-dark.css +11 -0
- package/styles/rich-text-editor/bootstrap5.css +11 -0
- package/styles/rich-text-editor/fabric-dark.css +11 -0
- package/styles/rich-text-editor/fabric.css +11 -0
- package/styles/rich-text-editor/fluent-dark.css +28 -5
- package/styles/rich-text-editor/fluent.css +28 -5
- package/styles/rich-text-editor/highcontrast-light.css +11 -0
- package/styles/rich-text-editor/highcontrast.css +11 -0
- package/styles/rich-text-editor/material-dark.css +12 -1
- package/styles/rich-text-editor/material.css +12 -1
- package/styles/rich-text-editor/material3-dark.css +11 -0
- package/styles/rich-text-editor/material3.css +11 -0
- package/styles/rich-text-editor/tailwind-dark.css +20 -9
- package/styles/rich-text-editor/tailwind.css +20 -9
- package/styles/tailwind-dark.css +20 -9
- package/styles/tailwind.css +20 -9
|
@@ -8,6 +8,7 @@ import * as events from '../base/constant';
|
|
|
8
8
|
import { CLS_TOOLBAR, CLS_DROPDOWN_BTN, CLS_RTE_ELEMENTS, CLS_TB_BTN, CLS_INLINE_DROPDOWN, CLS_COLOR_CONTENT, CLS_FONT_COLOR_DROPDOWN, CLS_BACKGROUND_COLOR_DROPDOWN, CLS_COLOR_PALETTE, CLS_FONT_COLOR_PICKER, CLS_BACKGROUND_COLOR_PICKER, CLS_CUSTOM_TILE, CLS_NOCOLOR_ITEM, CLS_BULLETFORMATLIST_TB_BTN, CLS_NUMBERFORMATLIST_TB_BTN, CLS_LIST_PRIMARY_CONTENT } from '../base/classes';
|
|
9
9
|
import { ColorPicker } from '@syncfusion/ej2-inputs';
|
|
10
10
|
import { hasClass } from '../base/util';
|
|
11
|
+
import { ToolbarStatus } from '../../editor-manager/plugin/toolbar-status';
|
|
11
12
|
/**
|
|
12
13
|
* `Toolbar renderer` module is used to render toolbar in RichTextEditor.
|
|
13
14
|
*
|
|
@@ -65,7 +66,7 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
65
66
|
}
|
|
66
67
|
};
|
|
67
68
|
ToolbarRenderer.prototype.dropDownSelected = function (args) {
|
|
68
|
-
this.parent.notify(events.dropDownSelect, args);
|
|
69
|
+
this.parent.notify(events.dropDownSelect, { element: args.element, item: args.item, originalEvent: args.event });
|
|
69
70
|
this.destroyTooltip();
|
|
70
71
|
};
|
|
71
72
|
ToolbarRenderer.prototype.beforeDropDownItemRender = function (args) {
|
|
@@ -89,6 +90,9 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
89
90
|
break;
|
|
90
91
|
}
|
|
91
92
|
}
|
|
93
|
+
if (args.target.querySelector('.e-active')) {
|
|
94
|
+
args.cancel = true;
|
|
95
|
+
}
|
|
92
96
|
};
|
|
93
97
|
ToolbarRenderer.prototype.dropDownOpen = function (args) {
|
|
94
98
|
if (args.element.parentElement.getAttribute('id').indexOf('TableCell') > -1 && !isNOU(args.element.parentElement.querySelector('.e-cell-merge')) &&
|
|
@@ -111,19 +115,6 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
111
115
|
addClass([listEle[1], listEle[2]], 'e-disabled');
|
|
112
116
|
}
|
|
113
117
|
}
|
|
114
|
-
if (this.parent.showTooltip) {
|
|
115
|
-
this.dropdownTooltip = new Tooltip({
|
|
116
|
-
target: '[aria-owns="' + this.parent.getID() + '"].e-rte-elements [title]',
|
|
117
|
-
showTipPointer: true,
|
|
118
|
-
openDelay: 400,
|
|
119
|
-
opensOn: 'Hover',
|
|
120
|
-
beforeRender: this.tooltipBeforeRender.bind(this),
|
|
121
|
-
cssClass: this.parent.getCssClass(),
|
|
122
|
-
windowCollision: true,
|
|
123
|
-
position: 'BottomCenter'
|
|
124
|
-
});
|
|
125
|
-
this.dropdownTooltip.appendTo(args.element);
|
|
126
|
-
}
|
|
127
118
|
this.parent.notify(events.selectionSave, args);
|
|
128
119
|
};
|
|
129
120
|
ToolbarRenderer.prototype.dropDownClose = function (args) {
|
|
@@ -269,11 +260,22 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
269
260
|
}
|
|
270
261
|
//Formats preselect
|
|
271
262
|
if (args.items[0].command === 'Formats' || args.items[0].command === 'Font') {
|
|
263
|
+
var fontName_1 = [];
|
|
264
|
+
var formats_1 = [];
|
|
265
|
+
_this.parent.format.types.forEach(function (item) {
|
|
266
|
+
formats_1.push(item.value.toLocaleLowerCase());
|
|
267
|
+
});
|
|
268
|
+
_this.parent.fontFamily.items.forEach(function (item) {
|
|
269
|
+
fontName_1.push(item.value);
|
|
270
|
+
});
|
|
271
|
+
var toolbarStatus = ToolbarStatus.get(_this.parent.contentModule.getDocument(), _this.parent.contentModule.getEditPanel(), formats_1, null, fontName_1);
|
|
272
272
|
for (var index = 0; index < args.element.childNodes.length; index++) {
|
|
273
273
|
var divNode = _this.parent.createElement('div');
|
|
274
274
|
divNode.innerHTML = dropDown.content.trim();
|
|
275
|
-
if (divNode.textContent.trim() !== ''
|
|
276
|
-
&& args.element.childNodes[index].textContent.trim() === divNode.textContent.trim())
|
|
275
|
+
if ((divNode.textContent.trim() !== ''
|
|
276
|
+
&& args.element.childNodes[index].textContent.trim() === divNode.textContent.trim()) ||
|
|
277
|
+
((args.items[0].command === 'Formats' && !isNOU(toolbarStatus.formats) && _this.parent.format.types[index].value.toLowerCase() === toolbarStatus.formats.toLowerCase() && args.element.childNodes[index].classList.contains(_this.parent.format.types[index].cssClass))
|
|
278
|
+
|| (args.items[0].command === 'Font' && !isNOU(toolbarStatus.fontname) && _this.parent.fontFamily.items[index].value.toLowerCase() === toolbarStatus.fontname.toLowerCase() && args.element.childNodes[index].classList.contains(_this.parent.fontFamily.items[index].cssClass)))) {
|
|
277
279
|
if (!args.element.childNodes[index].classList.contains('e-active')) {
|
|
278
280
|
addClass([args.element.childNodes[index]], 'e-active');
|
|
279
281
|
}
|
|
@@ -366,9 +368,11 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
366
368
|
for (var index = 0; index < args.element.childNodes.length; index++) {
|
|
367
369
|
if (currentListStyle === args.element.childNodes[index].innerHTML.split(' ').join('').toLocaleLowerCase()) {
|
|
368
370
|
addClass([args.element.childNodes[index]], 'e-active');
|
|
371
|
+
break;
|
|
369
372
|
}
|
|
370
|
-
else if (currentListStyle === '') {
|
|
373
|
+
else if (currentListStyle === '' && args.element.childNodes[index].innerHTML !== 'None') {
|
|
371
374
|
addClass([args.element.childNodes[index]], 'e-active');
|
|
375
|
+
break;
|
|
372
376
|
}
|
|
373
377
|
}
|
|
374
378
|
}
|
|
@@ -457,6 +461,8 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
457
461
|
target: colorPicker.element.parentElement, cssClass: css,
|
|
458
462
|
enablePersistence: this.parent.enablePersistence, enableRtl: this.parent.enableRtl,
|
|
459
463
|
beforeOpen: function (dropDownArgs) {
|
|
464
|
+
colorPicker.inline = true;
|
|
465
|
+
colorPicker.dataBind();
|
|
460
466
|
if (proxy.parent.readonly || !proxy.parent.enabled) {
|
|
461
467
|
dropDownArgs.cancel = true;
|
|
462
468
|
return;
|
|
@@ -595,18 +601,14 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
595
601
|
var colorPicker = new ColorPicker({
|
|
596
602
|
enablePersistence: this.parent.enablePersistence,
|
|
597
603
|
enableRtl: this.parent.enableRtl,
|
|
598
|
-
inline:
|
|
599
|
-
value:
|
|
600
|
-
cssClass: ((item === 'backgroundcolor') ? CLS_BACKGROUND_COLOR_PICKER : CLS_FONT_COLOR_PICKER) + ' ' + args.cssClass + ' ' + 'e-rte-picker-init',
|
|
604
|
+
inline: false,
|
|
605
|
+
value: '#fff',
|
|
601
606
|
created: function () {
|
|
602
607
|
var value = (item === 'backgroundcolor') ? proxy.parent.backgroundColor.default : proxy.parent.fontColor.default;
|
|
603
|
-
colorPicker.
|
|
604
|
-
colorPicker.value = value;
|
|
608
|
+
colorPicker.setProperties({ value: value });
|
|
605
609
|
},
|
|
606
610
|
mode: ((item === 'backgroundcolor') ? proxy.parent.backgroundColor.mode : proxy.parent.fontColor.mode),
|
|
607
611
|
modeSwitcher: ((item === 'backgroundcolor') ? proxy.parent.backgroundColor.modeSwitcher : proxy.parent.fontColor.modeSwitcher),
|
|
608
|
-
presetColors: (item === 'backgroundcolor') ? this.parent.backgroundColor.colorCode : this.parent.fontColor.colorCode,
|
|
609
|
-
columns: (item === 'backgroundcolor') ? this.parent.backgroundColor.columns : this.parent.fontColor.columns,
|
|
610
612
|
beforeTileRender: function (args) {
|
|
611
613
|
args.element.classList.add(CLS_COLOR_PALETTE);
|
|
612
614
|
args.element.classList.add(CLS_CUSTOM_TILE);
|
|
@@ -651,6 +653,10 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
651
653
|
}
|
|
652
654
|
});
|
|
653
655
|
colorPicker.isStringTemplate = true;
|
|
656
|
+
colorPicker.columns = (item === 'backgroundcolor') ? this.parent.backgroundColor.columns : this.parent.fontColor.columns;
|
|
657
|
+
colorPicker.presetColors = (item === 'backgroundcolor') ? this.parent.backgroundColor.colorCode :
|
|
658
|
+
this.parent.fontColor.colorCode;
|
|
659
|
+
colorPicker.cssClass = ((item === 'backgroundcolor') ? CLS_BACKGROUND_COLOR_PICKER : CLS_FONT_COLOR_PICKER) + ' ' + args.cssClass;
|
|
654
660
|
colorPicker.createElement = this.parent.createElement;
|
|
655
661
|
colorPicker.appendTo(document.getElementById(args.target));
|
|
656
662
|
return colorPicker;
|
|
@@ -817,7 +817,7 @@ var Video = /** @class */ (function () {
|
|
|
817
817
|
this.parent.formatter.saveData();
|
|
818
818
|
}
|
|
819
819
|
e.selection.restore();
|
|
820
|
-
this.parent.formatter.process(this.parent, e.args, e.args, {
|
|
820
|
+
this.parent.formatter.process(this.parent, e.args, e.args.originalEvent, {
|
|
821
821
|
selectNode: e.selectNode,
|
|
822
822
|
subCommand: e.args.item.subCommand
|
|
823
823
|
});
|
|
@@ -907,6 +907,9 @@ var Video = /** @class */ (function () {
|
|
|
907
907
|
this.prevSelectedVidEle.style.outline = '';
|
|
908
908
|
}
|
|
909
909
|
}
|
|
910
|
+
if (this.parent.inlineMode.enable && target && this.dialogObj && !closest(target, '#' + this.dialogObj.element.id)) {
|
|
911
|
+
this.dialogObj.hide();
|
|
912
|
+
}
|
|
910
913
|
};
|
|
911
914
|
Video.prototype.removeResizeEle = function () {
|
|
912
915
|
EventHandler.remove(this.contentModule.getDocument(), Browser.touchMoveEvent, this.resizing);
|
|
@@ -924,7 +927,7 @@ var Video = /** @class */ (function () {
|
|
|
924
927
|
}
|
|
925
928
|
var subCommand = (e.args.item) ?
|
|
926
929
|
e.args.item.subCommand : 'Break';
|
|
927
|
-
this.parent.formatter.process(this.parent, e.args, e.args, { selectNode: e.selectNode, subCommand: subCommand });
|
|
930
|
+
this.parent.formatter.process(this.parent, e.args, e.args.originalEvent, { selectNode: e.selectNode, subCommand: subCommand });
|
|
928
931
|
};
|
|
929
932
|
Video.prototype.inline = function (e) {
|
|
930
933
|
if (e.selectNode[0].nodeName !== 'VIDEO' && !this.isEmbedVidElem(e.selectNode[0])) {
|
|
@@ -932,12 +935,12 @@ var Video = /** @class */ (function () {
|
|
|
932
935
|
}
|
|
933
936
|
var subCommand = (e.args.item) ?
|
|
934
937
|
e.args.item.subCommand : 'Inline';
|
|
935
|
-
this.parent.formatter.process(this.parent, e.args, e.args, { selectNode: e.selectNode, subCommand: subCommand });
|
|
938
|
+
this.parent.formatter.process(this.parent, e.args, e.args.originalEvent, { selectNode: e.selectNode, subCommand: subCommand });
|
|
936
939
|
};
|
|
937
940
|
Video.prototype.alignVideo = function (e, type) {
|
|
938
941
|
var subCommand = (e.args.item) ?
|
|
939
942
|
e.args.item.subCommand : type;
|
|
940
|
-
this.parent.formatter.process(this.parent, e.args, e.args, { selectNode: e.selectNode, subCommand: subCommand });
|
|
943
|
+
this.parent.formatter.process(this.parent, e.args, e.args.originalEvent, { selectNode: e.selectNode, subCommand: subCommand });
|
|
941
944
|
};
|
|
942
945
|
Video.prototype.editAreaClickHandler = function (e) {
|
|
943
946
|
if (this.parent.readonly) {
|
|
@@ -1081,7 +1084,7 @@ var Video = /** @class */ (function () {
|
|
|
1081
1084
|
_this.uploadObj.removing();
|
|
1082
1085
|
}
|
|
1083
1086
|
_this.parent.isBlur = false;
|
|
1084
|
-
if (event && event.event.returnValue) {
|
|
1087
|
+
if (event && !isNOU(event.event) && event.event.returnValue) {
|
|
1085
1088
|
if (_this.parent.editorMode === 'HTML') {
|
|
1086
1089
|
selection.restore();
|
|
1087
1090
|
}
|
|
@@ -1173,21 +1176,26 @@ var Video = /** @class */ (function () {
|
|
|
1173
1176
|
}
|
|
1174
1177
|
}
|
|
1175
1178
|
});
|
|
1176
|
-
if (e.selectNode &&
|
|
1177
|
-
e.selectNode[0].nodeName
|
|
1178
|
-
|
|
1179
|
-
e.selectNode[0].
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1179
|
+
if (e.selectNode && e.selectNode[0] && (e.selectNode[0].nodeName === 'VIDEO' || this.isEmbedVidElem(e.selectNode[0]))) {
|
|
1180
|
+
if (e.selectNode[0].nodeName === 'VIDEO') {
|
|
1181
|
+
var regex = new RegExp(/([^\S]|^)(((https?\:\/\/)|(www\.))(\S+))/gi);
|
|
1182
|
+
var sourceElement = e.selectNode[0].querySelector('source');
|
|
1183
|
+
this.inputUrl.value = sourceElement && sourceElement.src && sourceElement.src.match(regex) ? sourceElement.src : '';
|
|
1184
|
+
}
|
|
1185
|
+
else {
|
|
1186
|
+
this.embedInputUrl.value = e.selectNode[0].nodeName === 'IFRAME' ? e.selectNode[0].outerHTML
|
|
1187
|
+
: e.selectNode[0].querySelector('iframe').outerHTML;
|
|
1188
|
+
}
|
|
1184
1189
|
}
|
|
1190
|
+
var isWebUrl = this.inputUrl.value ? true : false;
|
|
1185
1191
|
var embedUrlBtn = new RadioButton({
|
|
1186
1192
|
label: this.i10n.getConstant('embeddedCode'),
|
|
1187
|
-
checked:
|
|
1193
|
+
checked: !isWebUrl,
|
|
1188
1194
|
name: 'URL',
|
|
1189
1195
|
created: function () {
|
|
1190
|
-
|
|
1196
|
+
if (!isWebUrl) {
|
|
1197
|
+
urlContent.appendChild(_this.embedInputUrl);
|
|
1198
|
+
}
|
|
1191
1199
|
},
|
|
1192
1200
|
change: function () {
|
|
1193
1201
|
urlContent.innerHTML = '';
|
|
@@ -1197,7 +1205,13 @@ var Video = /** @class */ (function () {
|
|
|
1197
1205
|
embedUrlBtn.appendTo(videoUrl.querySelector('#embedURL'));
|
|
1198
1206
|
var webUrlBtn = new RadioButton({
|
|
1199
1207
|
label: this.i10n.getConstant('webUrl'),
|
|
1208
|
+
checked: isWebUrl,
|
|
1200
1209
|
name: 'URL',
|
|
1210
|
+
created: function () {
|
|
1211
|
+
if (isWebUrl) {
|
|
1212
|
+
urlContent.appendChild(_this.inputUrl);
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1201
1215
|
change: function () {
|
|
1202
1216
|
urlContent.innerHTML = '';
|
|
1203
1217
|
urlContent.appendChild(_this.inputUrl);
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
476
476
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content {
|
|
477
477
|
padding-top: 1px;
|
|
478
|
-
height:
|
|
478
|
+
height: 35px;
|
|
479
479
|
}
|
|
480
480
|
.e-bigger .e-richtexteditor.e-rte-full-screen iframe,
|
|
481
481
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
@@ -545,11 +545,17 @@
|
|
|
545
545
|
}
|
|
546
546
|
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
547
547
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
548
|
-
padding: 0
|
|
548
|
+
padding: 0 7px;
|
|
549
549
|
}
|
|
550
550
|
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
551
551
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
552
|
-
padding: 0
|
|
552
|
+
padding: 0 7px;
|
|
553
|
+
}
|
|
554
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
555
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
556
|
+
margin-right: 62px;
|
|
557
|
+
margin-top: -3px;
|
|
558
|
+
padding: 18px;
|
|
553
559
|
}
|
|
554
560
|
|
|
555
561
|
.e-richtexteditor {
|
|
@@ -629,7 +635,7 @@
|
|
|
629
635
|
}
|
|
630
636
|
.e-richtexteditor .e-rte-toolbar .e-hor-nav.e-expended-nav {
|
|
631
637
|
height: auto;
|
|
632
|
-
min-height:
|
|
638
|
+
min-height: 40px;
|
|
633
639
|
padding-left: 1px;
|
|
634
640
|
}
|
|
635
641
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-multirow {
|
|
@@ -1383,7 +1389,7 @@
|
|
|
1383
1389
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
1384
1390
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1385
1391
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1386
|
-
padding:
|
|
1392
|
+
padding: 0 2.5px;
|
|
1387
1393
|
}
|
|
1388
1394
|
.e-richtexteditor .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon,
|
|
1389
1395
|
.e-rte-elements .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
@@ -1458,6 +1464,11 @@
|
|
|
1458
1464
|
border: 0 solid transparent;
|
|
1459
1465
|
float: none;
|
|
1460
1466
|
}
|
|
1467
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1468
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1469
|
+
margin-right: 46px;
|
|
1470
|
+
margin-top: -3px;
|
|
1471
|
+
}
|
|
1461
1472
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1462
1473
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1463
1474
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1794,11 +1805,11 @@
|
|
|
1794
1805
|
}
|
|
1795
1806
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1796
1807
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1797
|
-
height:
|
|
1808
|
+
height: 35px;
|
|
1798
1809
|
}
|
|
1799
1810
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1800
1811
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1801
|
-
height:
|
|
1812
|
+
height: 35px;
|
|
1802
1813
|
}
|
|
1803
1814
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1804
1815
|
margin: 0 6px;
|
|
@@ -2944,6 +2955,9 @@
|
|
|
2944
2955
|
.e-richtexteditor .e-video-url-wrap textarea {
|
|
2945
2956
|
height: 80px;
|
|
2946
2957
|
}
|
|
2958
|
+
.e-richtexteditor .e-toolbar-extended .e-toolbar-item:not(.e-active) .e-tbar-btn {
|
|
2959
|
+
border: 1px solid transparent;
|
|
2960
|
+
}
|
|
2947
2961
|
|
|
2948
2962
|
.e-rte-quick-popup {
|
|
2949
2963
|
border: 0;
|
package/styles/bootstrap.css
CHANGED
|
@@ -692,6 +692,12 @@
|
|
|
692
692
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
693
693
|
padding: 0 7px;
|
|
694
694
|
}
|
|
695
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
696
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
697
|
+
margin-right: 62px;
|
|
698
|
+
margin-top: -3px;
|
|
699
|
+
padding: 18px;
|
|
700
|
+
}
|
|
695
701
|
|
|
696
702
|
.e-richtexteditor {
|
|
697
703
|
color: #333;
|
|
@@ -770,7 +776,7 @@
|
|
|
770
776
|
}
|
|
771
777
|
.e-richtexteditor .e-rte-toolbar .e-hor-nav.e-expended-nav {
|
|
772
778
|
height: auto;
|
|
773
|
-
min-height:
|
|
779
|
+
min-height: 40px;
|
|
774
780
|
padding-left: 1px;
|
|
775
781
|
}
|
|
776
782
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-multirow {
|
|
@@ -1524,7 +1530,7 @@
|
|
|
1524
1530
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
1525
1531
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1526
1532
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1527
|
-
padding:
|
|
1533
|
+
padding: 1px 2.5px;
|
|
1528
1534
|
}
|
|
1529
1535
|
.e-richtexteditor .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon,
|
|
1530
1536
|
.e-rte-elements .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
@@ -1599,6 +1605,11 @@
|
|
|
1599
1605
|
border: 0 solid transparent;
|
|
1600
1606
|
float: none;
|
|
1601
1607
|
}
|
|
1608
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1609
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1610
|
+
margin-right: 46px;
|
|
1611
|
+
margin-top: -3px;
|
|
1612
|
+
}
|
|
1602
1613
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1603
1614
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1604
1615
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1770,7 +1781,7 @@
|
|
|
1770
1781
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:focus,
|
|
1771
1782
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:hover,
|
|
1772
1783
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1773
|
-
padding:
|
|
1784
|
+
padding: 7px 3px;
|
|
1774
1785
|
}
|
|
1775
1786
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
1776
1787
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -787,6 +787,12 @@
|
|
|
787
787
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
788
788
|
padding: 0;
|
|
789
789
|
}
|
|
790
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
791
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
792
|
+
margin-right: 65px;
|
|
793
|
+
margin-top: -1px;
|
|
794
|
+
padding: 0;
|
|
795
|
+
}
|
|
790
796
|
|
|
791
797
|
.e-richtexteditor {
|
|
792
798
|
color: #212529;
|
|
@@ -1694,6 +1700,11 @@
|
|
|
1694
1700
|
border: 0 solid transparent;
|
|
1695
1701
|
float: none;
|
|
1696
1702
|
}
|
|
1703
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1704
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1705
|
+
margin-right: 47px;
|
|
1706
|
+
margin-top: -3px;
|
|
1707
|
+
}
|
|
1697
1708
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1698
1709
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1699
1710
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -550,6 +550,12 @@
|
|
|
550
550
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
551
551
|
padding: 0 8px;
|
|
552
552
|
}
|
|
553
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
554
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
555
|
+
margin-right: 63px;
|
|
556
|
+
margin-top: 6px;
|
|
557
|
+
padding: 18px;
|
|
558
|
+
}
|
|
553
559
|
|
|
554
560
|
.e-richtexteditor {
|
|
555
561
|
color: #fff;
|
|
@@ -1465,6 +1471,11 @@
|
|
|
1465
1471
|
border: 0 solid transparent;
|
|
1466
1472
|
float: none;
|
|
1467
1473
|
}
|
|
1474
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1475
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1476
|
+
margin-right: 50px;
|
|
1477
|
+
margin-top: 7px;
|
|
1478
|
+
}
|
|
1468
1479
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1469
1480
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1470
1481
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -550,6 +550,12 @@
|
|
|
550
550
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
551
551
|
padding: 0 8px;
|
|
552
552
|
}
|
|
553
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
554
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
555
|
+
margin-right: 63px;
|
|
556
|
+
margin-top: 6px;
|
|
557
|
+
padding: 18px;
|
|
558
|
+
}
|
|
553
559
|
|
|
554
560
|
.e-richtexteditor {
|
|
555
561
|
color: #212529;
|
|
@@ -1465,6 +1471,11 @@
|
|
|
1465
1471
|
border: 0 solid transparent;
|
|
1466
1472
|
float: none;
|
|
1467
1473
|
}
|
|
1474
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1475
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1476
|
+
margin-right: 50px;
|
|
1477
|
+
margin-top: 7px;
|
|
1478
|
+
}
|
|
1468
1479
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1469
1480
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1470
1481
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
package/styles/fabric-dark.css
CHANGED
|
@@ -540,6 +540,12 @@
|
|
|
540
540
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
541
541
|
padding: 0;
|
|
542
542
|
}
|
|
543
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
544
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
545
|
+
margin-right: 60px;
|
|
546
|
+
margin-top: 3px;
|
|
547
|
+
padding: 18px;
|
|
548
|
+
}
|
|
543
549
|
|
|
544
550
|
.e-richtexteditor {
|
|
545
551
|
color: #dadada;
|
|
@@ -1447,6 +1453,11 @@
|
|
|
1447
1453
|
border: 0 solid transparent;
|
|
1448
1454
|
float: none;
|
|
1449
1455
|
}
|
|
1456
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1457
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1458
|
+
margin-right: 40px;
|
|
1459
|
+
margin-top: -2px;
|
|
1460
|
+
}
|
|
1450
1461
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1451
1462
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1452
1463
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
package/styles/fabric.css
CHANGED
|
@@ -540,6 +540,12 @@
|
|
|
540
540
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
541
541
|
padding: 0;
|
|
542
542
|
}
|
|
543
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
544
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
545
|
+
margin-right: 60px;
|
|
546
|
+
margin-top: 3px;
|
|
547
|
+
padding: 18px;
|
|
548
|
+
}
|
|
543
549
|
|
|
544
550
|
.e-richtexteditor {
|
|
545
551
|
color: #333;
|
|
@@ -1447,6 +1453,11 @@
|
|
|
1447
1453
|
border: 0 solid transparent;
|
|
1448
1454
|
float: none;
|
|
1449
1455
|
}
|
|
1456
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1457
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1458
|
+
margin-right: 40px;
|
|
1459
|
+
margin-top: -2px;
|
|
1460
|
+
}
|
|
1450
1461
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1451
1462
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1452
1463
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
package/styles/fluent-dark.css
CHANGED
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
454
454
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
455
455
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
456
|
-
padding: 0
|
|
456
|
+
padding: 0 8px;
|
|
457
457
|
border-radius: 0;
|
|
458
458
|
}
|
|
459
459
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -543,6 +543,12 @@
|
|
|
543
543
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
544
544
|
padding: 0 8px;
|
|
545
545
|
}
|
|
546
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
547
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
548
|
+
margin-right: 60px;
|
|
549
|
+
margin-top: 10px;
|
|
550
|
+
padding: 5px;
|
|
551
|
+
}
|
|
546
552
|
|
|
547
553
|
.e-richtexteditor {
|
|
548
554
|
color: #f3f2f1;
|
|
@@ -747,7 +753,7 @@
|
|
|
747
753
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
748
754
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
749
755
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
750
|
-
padding: 0;
|
|
756
|
+
padding: 0 4px;
|
|
751
757
|
border-radius: 0;
|
|
752
758
|
}
|
|
753
759
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -1452,6 +1458,11 @@
|
|
|
1452
1458
|
border: 0 solid transparent;
|
|
1453
1459
|
float: none;
|
|
1454
1460
|
}
|
|
1461
|
+
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1462
|
+
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1463
|
+
margin-right: 45px;
|
|
1464
|
+
margin-top: 17px;
|
|
1465
|
+
}
|
|
1455
1466
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1456
1467
|
.e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1457
1468
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2716,7 +2727,7 @@
|
|
|
2716
2727
|
}
|
|
2717
2728
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2718
2729
|
background: #3b3a39;
|
|
2719
|
-
border:
|
|
2730
|
+
border: 1px solid transparent;
|
|
2720
2731
|
}
|
|
2721
2732
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
2722
2733
|
color: #a19f9d;
|
|
@@ -2784,7 +2795,7 @@
|
|
|
2784
2795
|
}
|
|
2785
2796
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active {
|
|
2786
2797
|
background: #3b3a39;
|
|
2787
|
-
border:
|
|
2798
|
+
border: 1px solid transparent;
|
|
2788
2799
|
}
|
|
2789
2800
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active .e-rte-color-content::after {
|
|
2790
2801
|
background: #1b1a19;
|
|
@@ -2973,6 +2984,18 @@
|
|
|
2973
2984
|
.e-richtexteditor .e-video-url-wrap textarea {
|
|
2974
2985
|
height: 80px;
|
|
2975
2986
|
}
|
|
2987
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
2988
|
+
border: 1px solid transparent;
|
|
2989
|
+
}
|
|
2990
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
2991
|
+
border: 1px solid transparent;
|
|
2992
|
+
}
|
|
2993
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
2994
|
+
border: 1px solid transparent;
|
|
2995
|
+
}
|
|
2996
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
2997
|
+
border: 1px solid transparent;
|
|
2998
|
+
}
|
|
2976
2999
|
|
|
2977
3000
|
.e-rte-quick-popup {
|
|
2978
3001
|
border: none;
|
|
@@ -3026,7 +3049,7 @@
|
|
|
3026
3049
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
3027
3050
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
3028
3051
|
background: #3b3a39;
|
|
3029
|
-
border:
|
|
3052
|
+
border: 1px solid transparent;
|
|
3030
3053
|
}
|
|
3031
3054
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
3032
3055
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|