@syncfusion/ej2-richtexteditor 19.2.62 → 19.3.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.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.md +21 -9
- 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 +858 -245
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +864 -243
- 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 +12 -12
- package/src/common/types.d.ts +8 -0
- package/src/editor-manager/base/editor-manager.d.ts +1 -1
- package/src/editor-manager/base/editor-manager.js +6 -6
- package/src/editor-manager/base/interface.d.ts +7 -1
- package/src/editor-manager/plugin/clearformat-exec.js +2 -2
- package/src/editor-manager/plugin/clearformat.d.ts +3 -1
- package/src/editor-manager/plugin/clearformat.js +19 -9
- package/src/editor-manager/plugin/dom-node.js +2 -2
- package/src/editor-manager/plugin/formats.d.ts +1 -0
- package/src/editor-manager/plugin/formats.js +87 -7
- package/src/editor-manager/plugin/image.js +55 -47
- package/src/editor-manager/plugin/inserthtml.js +10 -2
- package/src/editor-manager/plugin/isformatted.js +2 -1
- package/src/editor-manager/plugin/lists.d.ts +1 -0
- package/src/editor-manager/plugin/lists.js +87 -8
- package/src/editor-manager/plugin/nodecutter.d.ts +1 -0
- package/src/editor-manager/plugin/nodecutter.js +1 -0
- package/src/editor-manager/plugin/selection-commands.d.ts +2 -1
- package/src/editor-manager/plugin/selection-commands.js +14 -6
- package/src/editor-manager/plugin/selection-exec.js +2 -2
- package/src/editor-manager/plugin/table.js +19 -9
- package/src/rich-text-editor/actions/base-quick-toolbar.js +3 -4
- package/src/rich-text-editor/actions/enter-key.d.ts +18 -0
- package/src/rich-text-editor/actions/enter-key.js +290 -0
- package/src/rich-text-editor/actions/html-editor.js +30 -20
- package/src/rich-text-editor/actions/paste-clean-up.js +5 -5
- package/src/rich-text-editor/actions/resize.js +4 -4
- package/src/rich-text-editor/base/constant.d.ts +5 -0
- package/src/rich-text-editor/base/constant.js +5 -0
- package/src/rich-text-editor/base/interface.d.ts +15 -3
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +27 -1
- package/src/rich-text-editor/base/rich-text-editor.d.ts +34 -5
- package/src/rich-text-editor/base/rich-text-editor.js +58 -56
- package/src/rich-text-editor/base/util.d.ts +7 -1
- package/src/rich-text-editor/base/util.js +45 -11
- package/src/rich-text-editor/formatter/formatter.js +9 -7
- package/src/rich-text-editor/models/items.js +3 -3
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +2 -2
- package/src/rich-text-editor/renderer/image-module.d.ts +6 -0
- package/src/rich-text-editor/renderer/image-module.js +70 -26
- package/src/rich-text-editor/renderer/link-module.js +4 -3
- package/src/rich-text-editor/renderer/popup-renderer.js +1 -2
- package/src/rich-text-editor/renderer/render.js +10 -2
- package/src/rich-text-editor/renderer/table-module.js +13 -5
- package/src/rich-text-editor/renderer/view-source.js +21 -3
- package/styles/bootstrap-dark.css +25 -12
- package/styles/bootstrap.css +25 -12
- package/styles/bootstrap4.css +21 -13
- package/styles/bootstrap5-dark.css +3058 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +3058 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +20 -12
- package/styles/fabric.css +20 -12
- package/styles/highcontrast-light.css +20 -12
- package/styles/highcontrast.css +19 -18
- package/styles/material-dark.css +22 -14
- package/styles/material.css +19 -11
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +1 -1
- package/styles/rich-text-editor/_bootstrap-definition.scss +1 -1
- package/styles/rich-text-editor/_bootstrap4-definition.scss +2 -2
- package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +168 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +1 -1
- package/styles/rich-text-editor/_fabric-definition.scss +1 -1
- package/styles/rich-text-editor/_highcontrast-definition.scss +2 -2
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +1 -1
- package/styles/rich-text-editor/_layout.scss +64 -7
- package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -165
- package/styles/rich-text-editor/_tailwind-definition.scss +74 -72
- package/styles/rich-text-editor/_theme.scss +103 -3
- package/styles/rich-text-editor/bootstrap-dark.css +25 -12
- package/styles/rich-text-editor/bootstrap.css +25 -12
- package/styles/rich-text-editor/bootstrap4.css +21 -13
- package/styles/rich-text-editor/bootstrap5-dark.css +3058 -0
- package/styles/rich-text-editor/bootstrap5-dark.scss +4 -0
- package/styles/rich-text-editor/bootstrap5.css +3058 -0
- package/styles/rich-text-editor/bootstrap5.scss +4 -0
- package/styles/rich-text-editor/fabric-dark.css +20 -12
- package/styles/rich-text-editor/fabric.css +20 -12
- package/styles/rich-text-editor/highcontrast-light.css +20 -12
- package/styles/rich-text-editor/highcontrast.css +19 -18
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +1 -1
- package/styles/rich-text-editor/icons/_bootstrap.scss +1 -1
- package/styles/rich-text-editor/icons/_bootstrap4.scss +1 -1
- package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_bootstrap5.scss +303 -0
- package/styles/rich-text-editor/icons/_fabric-dark.scss +1 -1
- package/styles/rich-text-editor/icons/_fabric.scss +1 -1
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +1 -1
- package/styles/rich-text-editor/icons/_highcontrast.scss +1 -1
- package/styles/rich-text-editor/icons/_material-dark.scss +1 -1
- package/styles/rich-text-editor/icons/_material.scss +1 -1
- package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -304
- package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
- package/styles/rich-text-editor/material-dark.css +22 -14
- package/styles/rich-text-editor/material.css +19 -11
- package/styles/rich-text-editor/tailwind-dark.css +51 -20
- package/styles/rich-text-editor/tailwind.css +49 -18
- package/styles/tailwind-dark.css +51 -20
- package/styles/tailwind.css +49 -18
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'rich-text-editor/bootstrap5.scss';
|
package/styles/fabric-dark.css
CHANGED
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
content: '\e33c';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
.e-rte-toolbar .e-dimension::before,
|
|
189
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
188
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
189
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
190
190
|
content: '\e336';
|
|
191
191
|
}
|
|
192
192
|
|
|
@@ -652,15 +652,15 @@
|
|
|
652
652
|
font-size: 13px;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
663
|
-
|
|
655
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
663
|
+
line-height: 1;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
1874
1874
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list,
|
|
1875
1875
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list {
|
|
1876
|
-
line-height:
|
|
1876
|
+
line-height: 40px;
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content::after,
|
|
@@ -2383,6 +2383,10 @@
|
|
|
2383
2383
|
border-bottom: 0;
|
|
2384
2384
|
}
|
|
2385
2385
|
|
|
2386
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2387
|
+
color: #6f6c6c;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2386
2390
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn,
|
|
2387
2391
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2388
2392
|
background: #514f4f;
|
|
@@ -2647,6 +2651,10 @@
|
|
|
2647
2651
|
border-bottom: 0;
|
|
2648
2652
|
}
|
|
2649
2653
|
|
|
2654
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2655
|
+
border-bottom: 0;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2650
2658
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2651
2659
|
border-top: 0;
|
|
2652
2660
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
content: '\e33c';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
.e-rte-toolbar .e-dimension::before,
|
|
189
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
188
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
189
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
190
190
|
content: '\e336';
|
|
191
191
|
}
|
|
192
192
|
|
|
@@ -652,15 +652,15 @@
|
|
|
652
652
|
font-size: 13px;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
663
|
-
|
|
655
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
663
|
+
line-height: 1;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
1874
1874
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list,
|
|
1875
1875
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list {
|
|
1876
|
-
line-height:
|
|
1876
|
+
line-height: 40px;
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content::after,
|
|
@@ -2383,6 +2383,10 @@
|
|
|
2383
2383
|
border-bottom: 0;
|
|
2384
2384
|
}
|
|
2385
2385
|
|
|
2386
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2387
|
+
color: #c8c8c8;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2386
2390
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn,
|
|
2387
2391
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2388
2392
|
background: rgba(0, 0, 0, 0.12);
|
|
@@ -2647,6 +2651,10 @@
|
|
|
2647
2651
|
border-bottom: 0;
|
|
2648
2652
|
}
|
|
2649
2653
|
|
|
2654
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2655
|
+
border-bottom: 0;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2650
2658
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2651
2659
|
border-top: 0;
|
|
2652
2660
|
}
|
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
content: '\e33c';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
.e-rte-toolbar .e-dimension::before,
|
|
189
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
188
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
189
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
190
190
|
content: '\e336';
|
|
191
191
|
}
|
|
192
192
|
|
|
@@ -652,15 +652,15 @@
|
|
|
652
652
|
font-size: 13px;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
663
|
-
|
|
655
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
663
|
+
line-height: 1;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
1874
1874
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list,
|
|
1875
1875
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list {
|
|
1876
|
-
line-height:
|
|
1876
|
+
line-height: 36px;
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content::after,
|
|
@@ -2383,6 +2383,10 @@
|
|
|
2383
2383
|
border-bottom: 0;
|
|
2384
2384
|
}
|
|
2385
2385
|
|
|
2386
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2387
|
+
color: #000;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2386
2390
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn,
|
|
2387
2391
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2388
2392
|
background: #400074;
|
|
@@ -2647,6 +2651,10 @@
|
|
|
2647
2651
|
border-bottom: 0;
|
|
2648
2652
|
}
|
|
2649
2653
|
|
|
2654
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2655
|
+
border-bottom: 0;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2650
2658
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2651
2659
|
border-top: 0;
|
|
2652
2660
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
content: '\e33c';
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
.e-rte-toolbar .e-dimension::before,
|
|
189
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
188
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
189
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
190
190
|
content: '\e336';
|
|
191
191
|
}
|
|
192
192
|
|
|
@@ -652,15 +652,15 @@
|
|
|
652
652
|
font-size: 13px;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
663
|
-
|
|
655
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
663
|
+
line-height: 1;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
1874
1874
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list,
|
|
1875
1875
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list {
|
|
1876
|
-
line-height:
|
|
1876
|
+
line-height: 36px;
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content::after,
|
|
@@ -2547,10 +2547,6 @@
|
|
|
2547
2547
|
color: #000;
|
|
2548
2548
|
}
|
|
2549
2549
|
|
|
2550
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2551
|
-
color: #fff;
|
|
2552
|
-
}
|
|
2553
|
-
|
|
2554
2550
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn.e-active {
|
|
2555
2551
|
background: #ffd939;
|
|
2556
2552
|
}
|
|
@@ -2647,6 +2643,10 @@
|
|
|
2647
2643
|
border-bottom: 0;
|
|
2648
2644
|
}
|
|
2649
2645
|
|
|
2646
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2647
|
+
border-bottom: 0;
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
2650
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2651
2651
|
border-top: 0;
|
|
2652
2652
|
}
|
|
@@ -2721,7 +2721,7 @@
|
|
|
2721
2721
|
}
|
|
2722
2722
|
|
|
2723
2723
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-tbar-btn:active .e-icons {
|
|
2724
|
-
color: #
|
|
2724
|
+
color: #fff;
|
|
2725
2725
|
}
|
|
2726
2726
|
|
|
2727
2727
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
@@ -2882,6 +2882,7 @@ span.e-rte-imageboxmark {
|
|
|
2882
2882
|
|
|
2883
2883
|
.e-rte-table.e-alternate-border tbody tr:nth-child(2n) {
|
|
2884
2884
|
background-color: #f5f5f5;
|
|
2885
|
+
color: #000;
|
|
2885
2886
|
}
|
|
2886
2887
|
|
|
2887
2888
|
.e-rte-table th {
|
|
@@ -2915,7 +2916,7 @@ span.e-table-box.e-rbox-select {
|
|
|
2915
2916
|
.e-rte-inline-popup .e-rte-quick-toolbar.e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn:active .e-icons,
|
|
2916
2917
|
.e-rte-inline-popup .e-rte-quick-toolbar.e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn:focus .e-icons,
|
|
2917
2918
|
.e-rte-inline-popup .e-rte-quick-toolbar.e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2918
|
-
color: #
|
|
2919
|
+
color: #fff;
|
|
2919
2920
|
}
|
|
2920
2921
|
|
|
2921
2922
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
package/styles/material-dark.css
CHANGED
|
@@ -186,8 +186,8 @@
|
|
|
186
186
|
content: '\e33c';
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
.e-rte-toolbar .e-dimension::before,
|
|
190
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
189
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
190
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
191
191
|
content: '\e336';
|
|
192
192
|
}
|
|
193
193
|
|
|
@@ -653,15 +653,15 @@
|
|
|
653
653
|
font-size: 13px;
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
663
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
664
|
-
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
663
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
664
|
+
line-height: 1;
|
|
665
665
|
}
|
|
666
666
|
|
|
667
667
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -2384,6 +2384,10 @@
|
|
|
2384
2384
|
border-bottom: 0;
|
|
2385
2385
|
}
|
|
2386
2386
|
|
|
2387
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2388
|
+
color: rgba(255, 255, 255, 0.38);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2387
2391
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn,
|
|
2388
2392
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2389
2393
|
background: rgba(255, 255, 255, 0.22);
|
|
@@ -2648,6 +2652,10 @@
|
|
|
2648
2652
|
border-bottom: 0;
|
|
2649
2653
|
}
|
|
2650
2654
|
|
|
2655
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2656
|
+
border-bottom: 0;
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2651
2659
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2652
2660
|
border-top: 0;
|
|
2653
2661
|
}
|
|
@@ -2876,8 +2884,8 @@ span.e-rte-imageboxmark {
|
|
|
2876
2884
|
}
|
|
2877
2885
|
|
|
2878
2886
|
.e-rte-table-popup.e-popup-open .e-rte-tablecell.e-active {
|
|
2879
|
-
background-color: rgba(
|
|
2880
|
-
border: 1px solid #
|
|
2887
|
+
background-color: rgba(0, 176, 255, 0.2);
|
|
2888
|
+
border: 1px solid #00b0ff;
|
|
2881
2889
|
}
|
|
2882
2890
|
|
|
2883
2891
|
.e-rte-table.e-alternate-border tbody tr:nth-child(2n) {
|
|
@@ -2904,7 +2912,7 @@ span.e-table-box.e-rbox-select {
|
|
|
2904
2912
|
}
|
|
2905
2913
|
|
|
2906
2914
|
.e-table-rhelper {
|
|
2907
|
-
background-color: #
|
|
2915
|
+
background-color: #00b0ff;
|
|
2908
2916
|
}
|
|
2909
2917
|
|
|
2910
2918
|
.e-rte-dialog-upload.e-upload.e-lib.e-keyboard {
|
package/styles/material.css
CHANGED
|
@@ -186,8 +186,8 @@
|
|
|
186
186
|
content: '\e33c';
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
.e-rte-toolbar .e-dimension::before,
|
|
190
|
-
.e-rte-dropdown-popup .e-dimension::before {
|
|
189
|
+
.e-rte-toolbar .e-img-dimension::before,
|
|
190
|
+
.e-rte-dropdown-popup .e-img-dimension::before {
|
|
191
191
|
content: '\e336';
|
|
192
192
|
}
|
|
193
193
|
|
|
@@ -653,15 +653,15 @@
|
|
|
653
653
|
font-size: 13px;
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
657
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
658
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
659
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
660
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
661
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
662
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-
|
|
663
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-
|
|
664
|
-
|
|
656
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
657
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
658
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
659
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
660
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
661
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
662
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
663
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
664
|
+
line-height: 1;
|
|
665
665
|
}
|
|
666
666
|
|
|
667
667
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-background-color.e-icons::before,
|
|
@@ -2384,6 +2384,10 @@
|
|
|
2384
2384
|
border-bottom: 0;
|
|
2385
2385
|
}
|
|
2386
2386
|
|
|
2387
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
2388
|
+
color: rgba(0, 0, 0, 0.26);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2387
2391
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn,
|
|
2388
2392
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2389
2393
|
background: rgba(0, 0, 0, 0.12);
|
|
@@ -2648,6 +2652,10 @@
|
|
|
2648
2652
|
border-bottom: 0;
|
|
2649
2653
|
}
|
|
2650
2654
|
|
|
2655
|
+
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended.e-popup-open {
|
|
2656
|
+
border-bottom: 0;
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2651
2659
|
.e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-expand-open + .e-rte-content {
|
|
2652
2660
|
border-top: 0;
|
|
2653
2661
|
}
|
|
@@ -85,7 +85,7 @@ $rte-split-btn-bar-bg: $grey-ad !default;
|
|
|
85
85
|
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
86
86
|
$rte-split-btn-bar-size: 1px !default;
|
|
87
87
|
$rte-split-btn-active-border: 1px solid $grey-ad !default;
|
|
88
|
-
$rte-split-btn-active-color-icon-line-height:
|
|
88
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
89
89
|
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
90
90
|
|
|
91
91
|
$rte-link-valid-color: #f00 !default;
|
|
@@ -83,7 +83,7 @@ $rte-split-btn-bar-bg: $grey-ad !default;
|
|
|
83
83
|
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
84
84
|
$rte-split-btn-bar-size: 1px !default;
|
|
85
85
|
$rte-split-btn-active-border: 1px solid $grey-ad !default;
|
|
86
|
-
$rte-split-btn-active-color-icon-line-height:
|
|
86
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
87
87
|
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
88
88
|
|
|
89
89
|
$rte-link-valid-color: #f00 !default;
|
|
@@ -76,8 +76,8 @@ $rte-split-btn-bar-bg: darken($gray-600, 10%) !default;
|
|
|
76
76
|
$rte-split-btn-active-bar-bg: darken($gray-600, 12.5%) !default;
|
|
77
77
|
$rte-split-btn-bar-size: 1px !default;
|
|
78
78
|
$rte-split-btn-active-border: 1px solid $gray-600 !default;
|
|
79
|
-
$rte-split-btn-active-color-icon-line-height:
|
|
80
|
-
$rte-big-split-btn-active-color-icon-line-height:
|
|
79
|
+
$rte-split-btn-active-color-icon-line-height: 28px !default;
|
|
80
|
+
$rte-big-split-btn-active-color-icon-line-height: 36px !default;
|
|
81
81
|
$rte-link-valid-color: $danger !default;
|
|
82
82
|
$rte-img-popup-color: $gray-900 !default;
|
|
83
83
|
$rte-img-border-color: rgba(0, 0, 0, .2) !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
|
2
|
+
//Layout Variables Start
|
|
3
|
+
$rte-border-size: 1px !default;
|
|
4
|
+
$rte-2px-border-size: 2px !default;
|
|
5
|
+
$rte-border-type: solid !default;
|
|
6
|
+
$rte-list-btn-flex: column !default;
|
|
7
|
+
$rte-list-btn-line-height: 1 !default;
|
|
8
|
+
$rte-split-btn-line-height: 20px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
11
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
12
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
13
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
14
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
15
|
+
$rte-quick-item-padding: 0 !default;
|
|
16
|
+
$rte-quick-item-icon-min-width: 24px !default; // Clarify
|
|
17
|
+
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
|
+
$rte-content-padding: 16px !default;
|
|
19
|
+
$rte-toolbar-icon-size: $text-base !default;
|
|
20
|
+
$rte-toolbar-big-icon-size: $text-lg !default;
|
|
21
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
22
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
23
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
24
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
26
|
+
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
27
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
28
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
29
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
30
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
31
|
+
$rte-big-quick-drop-btn-caret-font-size: 12px !default;
|
|
32
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
33
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
34
|
+
$rte-tb-items-margin-left: 7px !default;
|
|
35
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
|
+
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
38
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
39
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
|
+
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
41
|
+
$rte-format-btn-min-width: 75px !default;
|
|
42
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
43
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
44
|
+
$rte-drop-btn-padding-left: 7px !default;
|
|
45
|
+
$dropdown-btn-font-size: $text-sm;
|
|
46
|
+
$dropdown-btn-big-font-size: $text-base;
|
|
47
|
+
$rte-drop-btn-padding-right: 7px !default;
|
|
48
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 7px !default;
|
|
50
|
+
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
|
+
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
+
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
|
+
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
|
+
$rte-font-icon-width: 30px !default;
|
|
58
|
+
$rte-font-arrow-width: 18px !default;
|
|
59
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
60
|
+
$rte-font-icon-line-height: $leading-tight !default;
|
|
61
|
+
$rte-placeholder-line-height: $leading-normal !default;
|
|
62
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
63
|
+
$rte-table-popup-padding: 10px !default;
|
|
64
|
+
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
65
|
+
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
66
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
67
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
68
|
+
$rte-content-font-size: $text-sm !default;
|
|
69
|
+
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
70
|
+
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
71
|
+
$font-weight: $font-weight-normal !default;
|
|
72
|
+
$rte-table-popup-bdr-radius: 6px !default;
|
|
73
|
+
$rte-resize-handler-width: 15px;
|
|
74
|
+
$rte-resize-handler-height: 15px;
|
|
75
|
+
$rte-resize-handler-position: 0;
|
|
76
|
+
$rte-big-inline-tmp-min-width: 48px;
|
|
77
|
+
$rte-inline-tmp-min-width: 55px;
|
|
78
|
+
$rte-big-inline-tmp-size-min-width: 59px;
|
|
79
|
+
$rte-inline-tmp-size-min-width: 66px;
|
|
80
|
+
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
|
+
$rte-inline-tmp-color-min-width: 55px;
|
|
82
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
83
|
+
//Layout Variables End
|
|
84
|
+
|
|
85
|
+
//Theme Variables Start
|
|
86
|
+
$rte-split-btn-active-border: 0 !default;
|
|
87
|
+
$rte-border-color: $border-light !default;
|
|
88
|
+
$rte-content-bg: $content-bg-color !default;
|
|
89
|
+
$rte-full-screen-bg: $content-bg-color !default;
|
|
90
|
+
$rte-content-font-color: $content-text-color !default;
|
|
91
|
+
$rte-item-color: $content-text-color !default;
|
|
92
|
+
$rte-icons-color: $content-text-color !default;
|
|
93
|
+
$rte-img-popup-border: 1px solid $border-light !default;
|
|
94
|
+
$rte-img-popup-box-shadow: $shadow !default;
|
|
95
|
+
$rte-img-popup-color: $border-light !default;
|
|
96
|
+
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
97
|
+
$rte-quick-item-active-font-color: $white !default;
|
|
98
|
+
$rte-quick-item-border: 0 !default;
|
|
99
|
+
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
100
|
+
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
101
|
+
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
102
|
+
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
103
|
+
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
104
|
+
$rte-quick-pop-border: none !default;
|
|
105
|
+
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
106
|
+
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
107
|
+
$rte-quick-vr-line-color: $border-light !default;
|
|
108
|
+
$rte-quick-pop-shadow: none !default;
|
|
109
|
+
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
110
|
+
$rte-quick-tb-btn-hover: $secondary-bg-color-hover !default;
|
|
111
|
+
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
112
|
+
$rte-tb-active-font-color: $white !default;
|
|
113
|
+
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
114
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
115
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
116
|
+
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
117
|
+
$rte-drop-btn-active-color: $white !default;
|
|
118
|
+
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
119
|
+
$rte-split-btn-active-hover-font-color: $white !default;
|
|
120
|
+
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
121
|
+
$rte-split-btn-active-color: $white !default;
|
|
122
|
+
$rte-split-btn-hover-bg: $secondary-bg-color-hover !default;
|
|
123
|
+
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
124
|
+
$rte-split-btn-span-hover-bg: $secondary-bg-color-hover !default;
|
|
125
|
+
$rte-split-btn-span-focus-bg: $secondary-bg-color-pressed !default;
|
|
126
|
+
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
127
|
+
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
128
|
+
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
129
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
130
|
+
$rte-split-btn-active-border: 0 !default;
|
|
131
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
132
|
+
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
133
|
+
|
|
134
|
+
$rte-link-valid-color: $danger !default;
|
|
135
|
+
$rte-upload-drag-border-clr: $border-dark !default;
|
|
136
|
+
$rte-img-header-clr: $content-text-color !default;
|
|
137
|
+
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
138
|
+
$rte-default-character-count-color: $content-text-color-disabled !default;
|
|
139
|
+
$rte-warning-character-count-color: $warning !default;
|
|
140
|
+
$rte-error-character-count-color: $danger !default;
|
|
141
|
+
$rte-img-border: dashed 2px $primary !default;
|
|
142
|
+
$rte-font-family: $font-family !default;
|
|
143
|
+
$rte-content-color: $content-text-color !default;
|
|
144
|
+
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
145
|
+
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
146
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
147
|
+
$rte-overlay-color: $overlay-bg-color !default;
|
|
148
|
+
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
149
|
+
$rte-anchor-color: $primary !default;
|
|
150
|
+
$rte-ext-tbar-overlay-dropdown-color: $content-bg-color-alt4 !default;
|
|
151
|
+
$rte-img-resize-back-color: $primary !default;
|
|
152
|
+
$rte-img-resize-color: $primary-text-color !default;
|
|
153
|
+
$rte-table-header-color: $content-text-color-alt1 !default;
|
|
154
|
+
$rte-table-span-bg-color: $content-bg-color !default;
|
|
155
|
+
$rte-table-span-border: 1px solid $border-light !default;
|
|
156
|
+
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
157
|
+
$rte-table-span-active-border-color: $primary !default;
|
|
158
|
+
$rte-table-select-border-color: $primary !default;
|
|
159
|
+
$rte-table-popup-bg: $flyout-bg-color !default;
|
|
160
|
+
$rte-table-popup-color: $border-light !default;
|
|
161
|
+
$rte-table-popup-box: $shadow !default;
|
|
162
|
+
$rte-table-border-color: $border-light !default;
|
|
163
|
+
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
164
|
+
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
165
|
+
//Theme Variables End
|
|
166
|
+
|
|
167
|
+
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
168
|
+
$transparent: $transparent;
|
|
@@ -84,7 +84,7 @@ $rte-split-btn-bar-bg: $neutral-tertiary !default;
|
|
|
84
84
|
$rte-split-btn-active-bar-bg: $neutral-tertiary !default;
|
|
85
85
|
$rte-split-btn-bar-size: 1px !default;
|
|
86
86
|
$rte-split-btn-active-border: 0 !default;
|
|
87
|
-
$rte-split-btn-active-color-icon-line-height:
|
|
87
|
+
$rte-split-btn-active-color-icon-line-height: 40px !default;
|
|
88
88
|
$rte-big-split-btn-active-color-icon-line-height: 48px !default;
|
|
89
89
|
|
|
90
90
|
$rte-link-valid-color: transparent !default;
|