@syncfusion/ej2-richtexteditor 28.1.33 → 28.1.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-richtexteditor.min.js +1 -10
- package/dist/ej2-richtexteditor.umd.min.js +1 -10
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +67 -18
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +67 -18
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +1 -10
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/package.json +9 -10
- package/src/editor-manager/plugin/inserthtml.js +15 -4
- package/src/editor-manager/plugin/link.js +1 -0
- package/src/editor-manager/plugin/ms-word-clean-up.js +4 -2
- package/src/rich-text-editor/actions/enter-key.js +10 -3
- package/src/rich-text-editor/actions/paste-clean-up.js +26 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +11 -6
- package/styles/bds-lite.css +8 -2
- package/styles/bds.css +8 -2
- package/styles/bootstrap-dark-lite.css +8 -2
- package/styles/bootstrap-dark.css +8 -2
- package/styles/bootstrap-lite.css +8 -2
- package/styles/bootstrap.css +8 -2
- package/styles/bootstrap4-lite.css +8 -2
- package/styles/bootstrap4.css +8 -2
- package/styles/bootstrap5-dark-lite.css +8 -2
- package/styles/bootstrap5-dark.css +8 -2
- package/styles/bootstrap5-lite.css +8 -2
- package/styles/bootstrap5.3-lite.css +8 -2
- package/styles/bootstrap5.3.css +8 -2
- package/styles/bootstrap5.css +8 -2
- package/styles/fabric-dark-lite.css +8 -2
- package/styles/fabric-dark.css +8 -2
- package/styles/fabric-lite.css +8 -2
- package/styles/fabric.css +8 -2
- package/styles/fluent-dark-lite.css +8 -2
- package/styles/fluent-dark.css +8 -2
- package/styles/fluent-lite.css +8 -2
- package/styles/fluent.css +8 -2
- package/styles/fluent2-lite.css +8 -2
- package/styles/fluent2.css +8 -2
- package/styles/highcontrast-light-lite.css +8 -2
- package/styles/highcontrast-light.css +8 -2
- package/styles/highcontrast-lite.css +8 -2
- package/styles/highcontrast.css +8 -2
- package/styles/material-dark-lite.css +8 -2
- package/styles/material-dark.css +8 -2
- package/styles/material-lite.css +8 -2
- package/styles/material.css +8 -2
- package/styles/material3-dark-lite.css +8 -2
- package/styles/material3-dark.css +8 -2
- package/styles/material3-lite.css +8 -2
- package/styles/material3.css +8 -2
- package/styles/rich-text-editor/_layout.scss +6 -5
- package/styles/rich-text-editor/_tailwind3-definition.scss +1 -1
- package/styles/rich-text-editor/bds.css +8 -2
- package/styles/rich-text-editor/bootstrap-dark.css +8 -2
- package/styles/rich-text-editor/bootstrap.css +8 -2
- package/styles/rich-text-editor/bootstrap4.css +8 -2
- package/styles/rich-text-editor/bootstrap5-dark.css +8 -2
- package/styles/rich-text-editor/bootstrap5.3.css +8 -2
- package/styles/rich-text-editor/bootstrap5.css +8 -2
- package/styles/rich-text-editor/fabric-dark.css +8 -2
- package/styles/rich-text-editor/fabric.css +8 -2
- package/styles/rich-text-editor/fluent-dark.css +8 -2
- package/styles/rich-text-editor/fluent.css +8 -2
- package/styles/rich-text-editor/fluent2.css +8 -2
- package/styles/rich-text-editor/highcontrast-light.css +8 -2
- package/styles/rich-text-editor/highcontrast.css +8 -2
- package/styles/rich-text-editor/material-dark.css +8 -2
- package/styles/rich-text-editor/material.css +8 -2
- package/styles/rich-text-editor/material3-dark.css +8 -2
- package/styles/rich-text-editor/material3.css +8 -2
- package/styles/rich-text-editor/tailwind-dark.css +8 -2
- package/styles/rich-text-editor/tailwind.css +8 -2
- package/styles/rich-text-editor/tailwind3.css +13 -8
- package/styles/tailwind-dark-lite.css +8 -2
- package/styles/tailwind-dark.css +8 -2
- package/styles/tailwind-lite.css +8 -2
- package/styles/tailwind.css +8 -2
- package/styles/tailwind3-lite.css +13 -8
- package/styles/tailwind3.css +13 -8
package/dist/global/index.d.ts
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* filename: index.d.ts
|
|
3
|
-
* version : 28.1.33
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
|
|
5
|
-
* Use of this code is subject to the terms of our license.
|
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
-
* applicable laws.
|
|
9
|
-
*/
|
|
10
1
|
import * as _richtexteditor from '@syncfusion/ej2-richtexteditor';
|
|
11
2
|
|
|
12
3
|
export declare namespace ej {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-richtexteditor@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-richtexteditor@
|
|
3
|
+
"_id": "@syncfusion/ej2-richtexteditor@28.1.35",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-XvS4tdC4fw6B2RrZWOcdktXuzzA+1XNL32OGM1vKqgvcAte4gUtd264fj3Je7wpBZuDMIousyIwqzwc4rNiXhg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-richtexteditor",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -18,15 +18,14 @@
|
|
|
18
18
|
},
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/",
|
|
21
|
-
"/@syncfusion/ej2",
|
|
22
21
|
"/@syncfusion/ej2-angular-richtexteditor",
|
|
23
22
|
"/@syncfusion/ej2-gantt",
|
|
24
23
|
"/@syncfusion/ej2-inplace-editor",
|
|
25
24
|
"/@syncfusion/ej2-react-richtexteditor",
|
|
26
25
|
"/@syncfusion/ej2-vue-richtexteditor"
|
|
27
26
|
],
|
|
28
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-
|
|
29
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-richtexteditor/-/ej2-richtexteditor-28.1.35.tgz",
|
|
28
|
+
"_shasum": "17c9393fda07e06cd70a77fac38a567ea35ca990",
|
|
30
29
|
"_spec": "@syncfusion/ej2-richtexteditor@*",
|
|
31
30
|
"_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
|
|
32
31
|
"author": {
|
|
@@ -38,11 +37,11 @@
|
|
|
38
37
|
"bundleDependencies": false,
|
|
39
38
|
"dependencies": {
|
|
40
39
|
"@syncfusion/ej2-base": "~28.1.33",
|
|
41
|
-
"@syncfusion/ej2-buttons": "~28.1.
|
|
42
|
-
"@syncfusion/ej2-dropdowns": "~28.1.
|
|
43
|
-
"@syncfusion/ej2-filemanager": "~28.1.
|
|
40
|
+
"@syncfusion/ej2-buttons": "~28.1.36",
|
|
41
|
+
"@syncfusion/ej2-dropdowns": "~28.1.36",
|
|
42
|
+
"@syncfusion/ej2-filemanager": "~28.1.36",
|
|
44
43
|
"@syncfusion/ej2-inputs": "~28.1.33",
|
|
45
|
-
"@syncfusion/ej2-navigations": "~28.1.
|
|
44
|
+
"@syncfusion/ej2-navigations": "~28.1.36",
|
|
46
45
|
"@syncfusion/ej2-popups": "~28.1.33",
|
|
47
46
|
"@syncfusion/ej2-splitbuttons": "~28.1.33"
|
|
48
47
|
},
|
|
@@ -80,6 +79,6 @@
|
|
|
80
79
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
81
80
|
},
|
|
82
81
|
"typings": "index.d.ts",
|
|
83
|
-
"version": "28.1.
|
|
82
|
+
"version": "28.1.36",
|
|
84
83
|
"sideEffects": false
|
|
85
84
|
}
|
|
@@ -210,7 +210,7 @@ var InsertHtml = /** @class */ (function () {
|
|
|
210
210
|
InsertHtml.pasteInsertHTML = function (nodes, node, range, nodeSelection, nodeCutter, docElement, isCollapsed, closestParentNode, editNode, enterAction) {
|
|
211
211
|
var isCursor = range.startOffset === range.endOffset &&
|
|
212
212
|
range.startContainer === range.endContainer;
|
|
213
|
-
if (isCursor && range.startContainer === editNode && editNode.textContent === '') {
|
|
213
|
+
if (isCursor && range.startContainer === editNode && editNode.textContent === '' && range.startOffset === 0 && range.endOffset === 0) {
|
|
214
214
|
var currentBlockNode = this.getImmediateBlockNode(nodes[nodes.length - 1], editNode);
|
|
215
215
|
nodeSelection.setSelectionText(docElement, currentBlockNode, currentBlockNode, 0, 0);
|
|
216
216
|
range = nodeSelection.getRange(docElement);
|
|
@@ -601,9 +601,20 @@ var InsertHtml = /** @class */ (function () {
|
|
|
601
601
|
}
|
|
602
602
|
}
|
|
603
603
|
if (blockNode && blockNode.nodeName === 'TD' || blockNode.nodeName === 'TH' || blockNode.nodeName === 'TR') {
|
|
604
|
-
var
|
|
605
|
-
|
|
606
|
-
|
|
604
|
+
var parentElem = range.startContainer;
|
|
605
|
+
while (!isNOU(parentElem) && parentElem.parentElement !== blockNode) {
|
|
606
|
+
parentElem = parentElem.parentElement;
|
|
607
|
+
}
|
|
608
|
+
range.deleteContents();
|
|
609
|
+
var splitedElm = nodeCutter.GetSpliceNode(range, parentElem);
|
|
610
|
+
if (splitedElm) {
|
|
611
|
+
splitedElm.parentNode.replaceChild(node, splitedElm);
|
|
612
|
+
}
|
|
613
|
+
else {
|
|
614
|
+
range.insertNode(node);
|
|
615
|
+
}
|
|
616
|
+
this.contentsDeleted = true;
|
|
617
|
+
return;
|
|
607
618
|
}
|
|
608
619
|
else {
|
|
609
620
|
var nodeSelection = new NodeSelection(editNode);
|
|
@@ -190,6 +190,7 @@ var LinkCommand = /** @class */ (function () {
|
|
|
190
190
|
if (child && child.length === 1) {
|
|
191
191
|
e.item.selection.startContainer = e.item.selection.getNodeArray(child[child.length - 1], true);
|
|
192
192
|
e.item.selection.endContainer = e.item.selection.startContainer;
|
|
193
|
+
e.item.selection.endOffset = child[child.length - 1].textContent.length;
|
|
193
194
|
}
|
|
194
195
|
e.item.selection = this.parent.domNode.saveMarker(e.item.selection);
|
|
195
196
|
}
|
|
@@ -189,7 +189,8 @@ var MsWordPaste = /** @class */ (function () {
|
|
|
189
189
|
imgElem[i].getAttribute('v:shapes').indexOf('Graphic') < 0 &&
|
|
190
190
|
imgElem[i].getAttribute('v:shapes').indexOf('_x0000_s') < 0 &&
|
|
191
191
|
imgElem[i].getAttribute('v:shapes').indexOf('_x0000_i') < 0 &&
|
|
192
|
-
imgElem[i].getAttribute('v:shapes').indexOf('img1') < 0
|
|
192
|
+
imgElem[i].getAttribute('v:shapes').indexOf('img1') < 0 &&
|
|
193
|
+
imgElem[i].getAttribute('v:shapes').indexOf('Immagine') < 0) {
|
|
193
194
|
imgElem[i].classList.add('e-rte-image-unsupported');
|
|
194
195
|
}
|
|
195
196
|
imgElem[i].removeAttribute('v:shapes');
|
|
@@ -203,7 +204,8 @@ var MsWordPaste = /** @class */ (function () {
|
|
|
203
204
|
if (imgElem.length > 0) {
|
|
204
205
|
for (var i = 0; i < imgElem.length; i++) {
|
|
205
206
|
imgSrc.push(imgElem[i].getAttribute('src'));
|
|
206
|
-
|
|
207
|
+
var imageName = imgElem[i].getAttribute('src').split('/')[imgElem[i].getAttribute('src').split('/').length - 1].split('.')[0] + i;
|
|
208
|
+
imgName.push(imageName);
|
|
207
209
|
}
|
|
208
210
|
var hexValue = this.hexConversion(rtfData);
|
|
209
211
|
for (var i = 0; i < hexValue.length; i++) {
|
|
@@ -173,7 +173,14 @@ var EnterKeyAction = /** @class */ (function () {
|
|
|
173
173
|
var isMediaNode = false; // To check the image audio and video node cases
|
|
174
174
|
var isFocusedFirst = false;
|
|
175
175
|
var parentElement = _this.range.startContainer.parentElement;
|
|
176
|
-
var isPreWrapApplied =
|
|
176
|
+
var isPreWrapApplied = false;
|
|
177
|
+
var isTextWrapApplied = false;
|
|
178
|
+
if (parentElement) {
|
|
179
|
+
// eslint-disable-next-line max-len
|
|
180
|
+
var computedStyle = _this.parent.contentModule.getDocument().defaultView.getComputedStyle(parentElement);
|
|
181
|
+
isPreWrapApplied = computedStyle.getPropertyValue('white-space') === 'pre-wrap';
|
|
182
|
+
isTextWrapApplied = computedStyle.getPropertyValue('text-wrap') === 'nowrap';
|
|
183
|
+
}
|
|
177
184
|
if (_this.range.startOffset !== 0 && _this.range.endOffset !== 0 &&
|
|
178
185
|
_this.range.startContainer === _this.range.endContainer && !(!isNOU(nearBlockNode.childNodes[0])
|
|
179
186
|
&& (nearBlockNode.childNodes[0].nodeName === 'IMG' || nearBlockNode.querySelectorAll('img, audio, video').length > 0))) {
|
|
@@ -183,9 +190,9 @@ var EnterKeyAction = /** @class */ (function () {
|
|
|
183
190
|
var isSplitTextEmpty = splitFirstText.trim().length === 0;
|
|
184
191
|
var hasContentAfterCursor = startNodeText.slice(_this.range.startOffset).trim().length !== 0;
|
|
185
192
|
var isCursorAtStartNonPreWrap = lastCharBeforeCursor !== 160
|
|
186
|
-
&& isSplitTextEmpty && !isPreWrapApplied;
|
|
193
|
+
&& isSplitTextEmpty && !isPreWrapApplied && !isTextWrapApplied;
|
|
187
194
|
var isCursorAtStartPreWrapWithContent = lastCharBeforeCursor === 32
|
|
188
|
-
&& isPreWrapApplied && isSplitTextEmpty && hasContentAfterCursor;
|
|
195
|
+
&& (isPreWrapApplied || isTextWrapApplied) && isSplitTextEmpty && hasContentAfterCursor;
|
|
189
196
|
if (isCursorAtStartNonPreWrap || isCursorAtStartPreWrapWithContent) {
|
|
190
197
|
isFocusedFirst = true;
|
|
191
198
|
}
|
|
@@ -476,8 +476,20 @@ var PasteCleanup = /** @class */ (function () {
|
|
|
476
476
|
this.parent.trigger(events.imageUploadSuccess, e, function (e) {
|
|
477
477
|
if (!isNullOrUndefined(_this.parent.insertImageSettings.path)) {
|
|
478
478
|
var url = _this.parent.insertImageSettings.path + e.file.name;
|
|
479
|
-
imgElem
|
|
480
|
-
|
|
479
|
+
if (!_this.parent.inputElement.contains(imgElem)) {
|
|
480
|
+
var imgHtmlElems = _this.parent.inputElement.querySelectorAll('#' + imgElem.id);
|
|
481
|
+
for (var i = 0; i < imgHtmlElems.length; i++) {
|
|
482
|
+
var imgHtmlElem = imgHtmlElems[i];
|
|
483
|
+
if (imgHtmlElem && imgHtmlElem.style && imgHtmlElem.style.opacity === '0.5') {
|
|
484
|
+
imgHtmlElem.src = url;
|
|
485
|
+
imgHtmlElem.setAttribute('alt', e.file.name);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
else {
|
|
490
|
+
imgElem.src = url;
|
|
491
|
+
imgElem.setAttribute('alt', e.file.name);
|
|
492
|
+
}
|
|
481
493
|
}
|
|
482
494
|
});
|
|
483
495
|
}
|
|
@@ -490,7 +502,18 @@ var PasteCleanup = /** @class */ (function () {
|
|
|
490
502
|
}
|
|
491
503
|
this.popupCloseTime = setTimeout(function () {
|
|
492
504
|
popupObj.close();
|
|
493
|
-
|
|
505
|
+
if (!_this.parent.inputElement.contains(imgElem)) {
|
|
506
|
+
var imgHtmlElems = _this.parent.inputElement.querySelectorAll('#' + imgElem.id);
|
|
507
|
+
for (var i = 0; i < imgHtmlElems.length; i++) {
|
|
508
|
+
var imgHtmlElem = imgHtmlElems[i];
|
|
509
|
+
if (imgHtmlElem && imgHtmlElem.style && imgHtmlElem.style.opacity === '0.5') {
|
|
510
|
+
imgHtmlElem.style.opacity = '1';
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
else {
|
|
515
|
+
imgElem.style.opacity = '1';
|
|
516
|
+
}
|
|
494
517
|
_this.toolbarEnableDisable(false);
|
|
495
518
|
if (uploadObj && document.body.contains(uploadObj.element)) {
|
|
496
519
|
uploadObj.destroy();
|
|
@@ -428,7 +428,9 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
428
428
|
args.cancel = true;
|
|
429
429
|
return;
|
|
430
430
|
}
|
|
431
|
-
|
|
431
|
+
if (Browser.info.name === 'safari') {
|
|
432
|
+
proxy.parent.notify(events.selectionRestore, {});
|
|
433
|
+
}
|
|
432
434
|
var element = (args.event) ? args.event.target : null;
|
|
433
435
|
proxy.currentElement = dropDown.element;
|
|
434
436
|
proxy.currentDropdown = dropDown;
|
|
@@ -456,10 +458,14 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
456
458
|
args.element.tabIndex = -1;
|
|
457
459
|
dropDown.element.removeAttribute('type');
|
|
458
460
|
dropDown.element.onmousedown = function () {
|
|
459
|
-
|
|
461
|
+
if (Browser.info.name === 'safari') {
|
|
462
|
+
proxy.parent.notify(events.selectionSave, {});
|
|
463
|
+
}
|
|
460
464
|
};
|
|
461
465
|
dropDown.element.onkeydown = function () {
|
|
462
|
-
|
|
466
|
+
if (Browser.info.name === 'safari') {
|
|
467
|
+
proxy.parent.notify(events.selectionSave, {});
|
|
468
|
+
}
|
|
463
469
|
};
|
|
464
470
|
return dropDown;
|
|
465
471
|
};
|
|
@@ -643,11 +649,10 @@ var ToolbarRenderer = /** @class */ (function () {
|
|
|
643
649
|
enableRtl: this.parent.enableRtl,
|
|
644
650
|
inline: true,
|
|
645
651
|
value: null,
|
|
646
|
-
cssClass: ((item === 'backgroundcolor') ? CLS_BACKGROUND_COLOR_PICKER : CLS_FONT_COLOR_PICKER) + ' ' + args.cssClass
|
|
652
|
+
cssClass: ((item === 'backgroundcolor') ? CLS_BACKGROUND_COLOR_PICKER : CLS_FONT_COLOR_PICKER) + ' ' + args.cssClass,
|
|
647
653
|
created: function () {
|
|
648
654
|
var value = (item === 'backgroundcolor') ? proxy.parent.backgroundColor.default : proxy.parent.fontColor.default;
|
|
649
|
-
|
|
650
|
-
colorPicker.setProperties({ value: value, cssClass: cssClass });
|
|
655
|
+
colorPicker.setProperties({ value: value });
|
|
651
656
|
},
|
|
652
657
|
mode: ((item === 'backgroundcolor') ? proxy.parent.backgroundColor.mode : proxy.parent.fontColor.mode),
|
|
653
658
|
modeSwitcher: ((item === 'backgroundcolor') ? proxy.parent.backgroundColor.modeSwitcher : proxy.parent.fontColor.modeSwitcher),
|
package/styles/bds-lite.css
CHANGED
|
@@ -765,6 +765,12 @@
|
|
|
765
765
|
display: inline;
|
|
766
766
|
font-size: 20px;
|
|
767
767
|
}
|
|
768
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
769
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
770
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
771
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
772
|
+
font-size: 20px;
|
|
773
|
+
}
|
|
768
774
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
769
775
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
770
776
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1951,7 +1957,7 @@
|
|
|
1951
1957
|
padding: 1px 0;
|
|
1952
1958
|
}
|
|
1953
1959
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1954
|
-
font-weight:
|
|
1960
|
+
font-weight: normal;
|
|
1955
1961
|
overflow: hidden;
|
|
1956
1962
|
text-overflow: ellipsis;
|
|
1957
1963
|
white-space: nowrap;
|
|
@@ -2386,7 +2392,7 @@
|
|
|
2386
2392
|
margin: 0 auto 10px;
|
|
2387
2393
|
padding: 0 18px;
|
|
2388
2394
|
position: relative;
|
|
2389
|
-
top:
|
|
2395
|
+
top: 6px;
|
|
2390
2396
|
}
|
|
2391
2397
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2392
2398
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
package/styles/bds.css
CHANGED
|
@@ -765,6 +765,12 @@
|
|
|
765
765
|
display: inline;
|
|
766
766
|
font-size: 20px;
|
|
767
767
|
}
|
|
768
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
769
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
770
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
771
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
772
|
+
font-size: 20px;
|
|
773
|
+
}
|
|
768
774
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
769
775
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
770
776
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1951,7 +1957,7 @@
|
|
|
1951
1957
|
padding: 1px 0;
|
|
1952
1958
|
}
|
|
1953
1959
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1954
|
-
font-weight:
|
|
1960
|
+
font-weight: normal;
|
|
1955
1961
|
overflow: hidden;
|
|
1956
1962
|
text-overflow: ellipsis;
|
|
1957
1963
|
white-space: nowrap;
|
|
@@ -2386,7 +2392,7 @@
|
|
|
2386
2392
|
margin: 0 auto 10px;
|
|
2387
2393
|
padding: 0 18px;
|
|
2388
2394
|
position: relative;
|
|
2389
|
-
top:
|
|
2395
|
+
top: 6px;
|
|
2390
2396
|
}
|
|
2391
2397
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2392
2398
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -755,6 +755,12 @@
|
|
|
755
755
|
display: inline;
|
|
756
756
|
font-size: 14px;
|
|
757
757
|
}
|
|
758
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
759
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
760
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
761
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
762
|
+
font-size: 14px;
|
|
763
|
+
}
|
|
758
764
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
759
765
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
760
766
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1941,7 +1947,7 @@
|
|
|
1941
1947
|
padding: 0;
|
|
1942
1948
|
}
|
|
1943
1949
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1944
|
-
font-weight:
|
|
1950
|
+
font-weight: normal;
|
|
1945
1951
|
overflow: hidden;
|
|
1946
1952
|
text-overflow: ellipsis;
|
|
1947
1953
|
white-space: nowrap;
|
|
@@ -2376,7 +2382,7 @@
|
|
|
2376
2382
|
margin: 0 auto 10px;
|
|
2377
2383
|
padding: 0 18px;
|
|
2378
2384
|
position: relative;
|
|
2379
|
-
top:
|
|
2385
|
+
top: 6px;
|
|
2380
2386
|
}
|
|
2381
2387
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2382
2388
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -755,6 +755,12 @@
|
|
|
755
755
|
display: inline;
|
|
756
756
|
font-size: 14px;
|
|
757
757
|
}
|
|
758
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
759
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
760
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
761
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
762
|
+
font-size: 14px;
|
|
763
|
+
}
|
|
758
764
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
759
765
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
760
766
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1941,7 +1947,7 @@
|
|
|
1941
1947
|
padding: 0;
|
|
1942
1948
|
}
|
|
1943
1949
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1944
|
-
font-weight:
|
|
1950
|
+
font-weight: normal;
|
|
1945
1951
|
overflow: hidden;
|
|
1946
1952
|
text-overflow: ellipsis;
|
|
1947
1953
|
white-space: nowrap;
|
|
@@ -2376,7 +2382,7 @@
|
|
|
2376
2382
|
margin: 0 auto 10px;
|
|
2377
2383
|
padding: 0 18px;
|
|
2378
2384
|
position: relative;
|
|
2379
|
-
top:
|
|
2385
|
+
top: 6px;
|
|
2380
2386
|
}
|
|
2381
2387
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2382
2388
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -896,6 +896,12 @@
|
|
|
896
896
|
display: inline;
|
|
897
897
|
font-size: 14px;
|
|
898
898
|
}
|
|
899
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
900
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
901
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
902
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
903
|
+
font-size: 14px;
|
|
904
|
+
}
|
|
899
905
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
900
906
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
901
907
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -2087,7 +2093,7 @@
|
|
|
2087
2093
|
padding: 0;
|
|
2088
2094
|
}
|
|
2089
2095
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
2090
|
-
font-weight:
|
|
2096
|
+
font-weight: normal;
|
|
2091
2097
|
overflow: hidden;
|
|
2092
2098
|
text-overflow: ellipsis;
|
|
2093
2099
|
white-space: nowrap;
|
|
@@ -2522,7 +2528,7 @@
|
|
|
2522
2528
|
margin: 0 auto 10px;
|
|
2523
2529
|
padding: 0 18px;
|
|
2524
2530
|
position: relative;
|
|
2525
|
-
top:
|
|
2531
|
+
top: 6px;
|
|
2526
2532
|
}
|
|
2527
2533
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2528
2534
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
package/styles/bootstrap.css
CHANGED
|
@@ -896,6 +896,12 @@
|
|
|
896
896
|
display: inline;
|
|
897
897
|
font-size: 14px;
|
|
898
898
|
}
|
|
899
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
900
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
901
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
902
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
903
|
+
font-size: 14px;
|
|
904
|
+
}
|
|
899
905
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
900
906
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
901
907
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -2087,7 +2093,7 @@
|
|
|
2087
2093
|
padding: 0;
|
|
2088
2094
|
}
|
|
2089
2095
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
2090
|
-
font-weight:
|
|
2096
|
+
font-weight: normal;
|
|
2091
2097
|
overflow: hidden;
|
|
2092
2098
|
text-overflow: ellipsis;
|
|
2093
2099
|
white-space: nowrap;
|
|
@@ -2522,7 +2528,7 @@
|
|
|
2522
2528
|
margin: 0 auto 10px;
|
|
2523
2529
|
padding: 0 18px;
|
|
2524
2530
|
position: relative;
|
|
2525
|
-
top:
|
|
2531
|
+
top: 6px;
|
|
2526
2532
|
}
|
|
2527
2533
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2528
2534
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -991,6 +991,12 @@
|
|
|
991
991
|
display: inline;
|
|
992
992
|
font-size: 18px;
|
|
993
993
|
}
|
|
994
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
995
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
996
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
997
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
998
|
+
font-size: 18px;
|
|
999
|
+
}
|
|
994
1000
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
995
1001
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
996
1002
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -2177,7 +2183,7 @@
|
|
|
2177
2183
|
padding: 0;
|
|
2178
2184
|
}
|
|
2179
2185
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
2180
|
-
font-weight:
|
|
2186
|
+
font-weight: normal;
|
|
2181
2187
|
overflow: hidden;
|
|
2182
2188
|
text-overflow: ellipsis;
|
|
2183
2189
|
white-space: nowrap;
|
|
@@ -2612,7 +2618,7 @@
|
|
|
2612
2618
|
margin: 0 auto 10px;
|
|
2613
2619
|
padding: 0 18px;
|
|
2614
2620
|
position: relative;
|
|
2615
|
-
top:
|
|
2621
|
+
top: 6px;
|
|
2616
2622
|
}
|
|
2617
2623
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2618
2624
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
package/styles/bootstrap4.css
CHANGED
|
@@ -991,6 +991,12 @@
|
|
|
991
991
|
display: inline;
|
|
992
992
|
font-size: 18px;
|
|
993
993
|
}
|
|
994
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
995
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
996
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
997
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
998
|
+
font-size: 18px;
|
|
999
|
+
}
|
|
994
1000
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
995
1001
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
996
1002
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -2177,7 +2183,7 @@
|
|
|
2177
2183
|
padding: 0;
|
|
2178
2184
|
}
|
|
2179
2185
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
2180
|
-
font-weight:
|
|
2186
|
+
font-weight: normal;
|
|
2181
2187
|
overflow: hidden;
|
|
2182
2188
|
text-overflow: ellipsis;
|
|
2183
2189
|
white-space: nowrap;
|
|
@@ -2612,7 +2618,7 @@
|
|
|
2612
2618
|
margin: 0 auto 10px;
|
|
2613
2619
|
padding: 0 18px;
|
|
2614
2620
|
position: relative;
|
|
2615
|
-
top:
|
|
2621
|
+
top: 6px;
|
|
2616
2622
|
}
|
|
2617
2623
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2618
2624
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -747,6 +747,12 @@
|
|
|
747
747
|
display: inline;
|
|
748
748
|
font-size: 16px;
|
|
749
749
|
}
|
|
750
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
751
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
752
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
753
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
754
|
+
font-size: 16px;
|
|
755
|
+
}
|
|
750
756
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
751
757
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
752
758
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1937,7 +1943,7 @@
|
|
|
1937
1943
|
padding: 1px 0;
|
|
1938
1944
|
}
|
|
1939
1945
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1940
|
-
font-weight:
|
|
1946
|
+
font-weight: 400;
|
|
1941
1947
|
overflow: hidden;
|
|
1942
1948
|
text-overflow: ellipsis;
|
|
1943
1949
|
white-space: nowrap;
|
|
@@ -2403,7 +2409,7 @@
|
|
|
2403
2409
|
margin: 0 auto 10px;
|
|
2404
2410
|
padding: 0 18px;
|
|
2405
2411
|
position: relative;
|
|
2406
|
-
top:
|
|
2412
|
+
top: 6px;
|
|
2407
2413
|
}
|
|
2408
2414
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2409
2415
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -747,6 +747,12 @@
|
|
|
747
747
|
display: inline;
|
|
748
748
|
font-size: 16px;
|
|
749
749
|
}
|
|
750
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
751
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
752
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
753
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
754
|
+
font-size: 16px;
|
|
755
|
+
}
|
|
750
756
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
751
757
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
752
758
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1937,7 +1943,7 @@
|
|
|
1937
1943
|
padding: 1px 0;
|
|
1938
1944
|
}
|
|
1939
1945
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1940
|
-
font-weight:
|
|
1946
|
+
font-weight: 400;
|
|
1941
1947
|
overflow: hidden;
|
|
1942
1948
|
text-overflow: ellipsis;
|
|
1943
1949
|
white-space: nowrap;
|
|
@@ -2403,7 +2409,7 @@
|
|
|
2403
2409
|
margin: 0 auto 10px;
|
|
2404
2410
|
padding: 0 18px;
|
|
2405
2411
|
position: relative;
|
|
2406
|
-
top:
|
|
2412
|
+
top: 6px;
|
|
2407
2413
|
}
|
|
2408
2414
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2409
2415
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -747,6 +747,12 @@
|
|
|
747
747
|
display: inline;
|
|
748
748
|
font-size: 16px;
|
|
749
749
|
}
|
|
750
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
751
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
752
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
753
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
754
|
+
font-size: 16px;
|
|
755
|
+
}
|
|
750
756
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
751
757
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
752
758
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1937,7 +1943,7 @@
|
|
|
1937
1943
|
padding: 1px 0;
|
|
1938
1944
|
}
|
|
1939
1945
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1940
|
-
font-weight:
|
|
1946
|
+
font-weight: 400;
|
|
1941
1947
|
overflow: hidden;
|
|
1942
1948
|
text-overflow: ellipsis;
|
|
1943
1949
|
white-space: nowrap;
|
|
@@ -2403,7 +2409,7 @@
|
|
|
2403
2409
|
margin: 0 auto 10px;
|
|
2404
2410
|
padding: 0 18px;
|
|
2405
2411
|
position: relative;
|
|
2406
|
-
top:
|
|
2412
|
+
top: 6px;
|
|
2407
2413
|
}
|
|
2408
2414
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2409
2415
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|
|
@@ -748,6 +748,12 @@
|
|
|
748
748
|
display: inline;
|
|
749
749
|
font-size: 16px;
|
|
750
750
|
}
|
|
751
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
752
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
753
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color.e-icons::before,
|
|
754
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color.e-icons::before {
|
|
755
|
+
font-size: 16px;
|
|
756
|
+
}
|
|
751
757
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
|
|
752
758
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
|
|
753
759
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret),
|
|
@@ -1934,7 +1940,7 @@
|
|
|
1934
1940
|
padding: 1px 0;
|
|
1935
1941
|
}
|
|
1936
1942
|
.e-rte-quick-popup .e-rte-dropdown-btn.e-tbar-btn .e-rte-dropdown-btn-text {
|
|
1937
|
-
font-weight:
|
|
1943
|
+
font-weight: 400;
|
|
1938
1944
|
overflow: hidden;
|
|
1939
1945
|
text-overflow: ellipsis;
|
|
1940
1946
|
white-space: nowrap;
|
|
@@ -2369,7 +2375,7 @@
|
|
|
2369
2375
|
margin: 0 auto 10px;
|
|
2370
2376
|
padding: 0 18px;
|
|
2371
2377
|
position: relative;
|
|
2372
|
-
top:
|
|
2378
|
+
top: 6px;
|
|
2373
2379
|
}
|
|
2374
2380
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-upload,
|
|
2375
2381
|
.e-rte-img-dialog.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-upload,
|