@syncfusion/ej2-vue-documenteditor 21.1.35 → 21.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/CHANGELOG.md +186 -0
- package/README.md +1 -1
- package/dist/ej2-vue-documenteditor.umd.min.js +2 -2
- package/dist/ej2-vue-documenteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es2015.js +4 -4
- package/dist/es6/ej2-vue-documenteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es5.js +4 -4
- package/dist/es6/ej2-vue-documenteditor.es5.js.map +1 -1
- package/dist/global/ej2-vue-documenteditor.min.js +2 -2
- package/package.json +10 -9
- package/src/document-editor/documenteditor.component.js +2 -2
- package/src/document-editor-container/documenteditorcontainer.component.js +2 -2
- package/styles/bootstrap-dark.css +103 -37
- package/styles/bootstrap.css +107 -37
- package/styles/bootstrap4.css +111 -37
- package/styles/bootstrap5-dark.css +103 -37
- package/styles/bootstrap5.css +103 -37
- package/styles/document-editor/bootstrap-dark.css +7 -0
- package/styles/document-editor/bootstrap.css +11 -0
- package/styles/document-editor/bootstrap4.css +15 -0
- package/styles/document-editor/bootstrap5-dark.css +7 -0
- package/styles/document-editor/bootstrap5.css +7 -0
- package/styles/document-editor/fabric-dark.css +7 -0
- package/styles/document-editor/fabric.css +11 -0
- package/styles/document-editor/fluent-dark.css +7 -0
- package/styles/document-editor/fluent.css +7 -0
- package/styles/document-editor/highcontrast-light.css +1 -0
- package/styles/document-editor/highcontrast.css +7 -0
- package/styles/document-editor/material-dark.css +7 -0
- package/styles/document-editor/material.css +7 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +2 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +2 -0
- package/styles/document-editor/tailwind-dark.css +7 -0
- package/styles/document-editor/tailwind.css +7 -0
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +2 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +2 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +103 -37
- package/styles/fabric.css +107 -37
- package/styles/fluent-dark.css +103 -37
- package/styles/fluent.css +103 -37
- package/styles/highcontrast-light.css +97 -37
- package/styles/highcontrast.css +103 -37
- package/styles/material-dark.css +108 -42
- package/styles/material.css +104 -37
- package/styles/material3-dark.css +6150 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +6261 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +102 -36
- package/styles/tailwind.css +102 -36
package/styles/bootstrap5.css
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
color: #6c757d;
|
|
47
47
|
content: "\e8bc";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e71d";
|
|
@@ -2497,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2497
2498
|
margin-left: 6px;
|
|
2498
2499
|
}
|
|
2499
2500
|
|
|
2501
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2502
|
+
height: 40px !important;
|
|
2503
|
+
width: auto !important;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2500
2506
|
.e-de-style-bold-button-size {
|
|
2501
2507
|
margin-left: 6px;
|
|
2502
2508
|
}
|
|
@@ -3409,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3409
3415
|
|
|
3410
3416
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3411
3417
|
margin-top: 0px;
|
|
3418
|
+
background: #f8f9fa;
|
|
3412
3419
|
}
|
|
3413
3420
|
|
|
3414
3421
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -4340,6 +4347,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4340
4347
|
font-family: "e-icons";
|
|
4341
4348
|
}
|
|
4342
4349
|
|
|
4350
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4351
|
+
content: "\e844";
|
|
4352
|
+
font-family: "e-icons";
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.e-de-e-character-style-mark::before {
|
|
4356
|
+
content: "\e8bf";
|
|
4357
|
+
font-family: "e-icons";
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
.e-de-e-linked-style-mark::before {
|
|
4361
|
+
content: "\e8c0";
|
|
4362
|
+
font-family: "e-icons";
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4343
4365
|
.e-de-ctnr-columns::before {
|
|
4344
4366
|
content: "\e8b4";
|
|
4345
4367
|
font-family: "e-icons";
|
|
@@ -4472,6 +4494,46 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4472
4494
|
height: 100%;
|
|
4473
4495
|
}
|
|
4474
4496
|
|
|
4497
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4498
|
+
box-shadow: none;
|
|
4499
|
+
height: 31px;
|
|
4500
|
+
}
|
|
4501
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4502
|
+
box-shadow: none;
|
|
4503
|
+
}
|
|
4504
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4505
|
+
box-shadow: none;
|
|
4506
|
+
}
|
|
4507
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4508
|
+
box-shadow: none;
|
|
4509
|
+
}
|
|
4510
|
+
|
|
4511
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4512
|
+
border-radius: 0px;
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4516
|
+
box-shadow: none;
|
|
4517
|
+
}
|
|
4518
|
+
|
|
4519
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4520
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4521
|
+
box-shadow: none;
|
|
4522
|
+
height: 31px;
|
|
4523
|
+
}
|
|
4524
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4525
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4526
|
+
box-shadow: none;
|
|
4527
|
+
}
|
|
4528
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4529
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4530
|
+
box-shadow: none;
|
|
4531
|
+
}
|
|
4532
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4533
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4534
|
+
box-shadow: none;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4475
4537
|
.e-de-statusbar-pageweb {
|
|
4476
4538
|
background: #f8f9fa;
|
|
4477
4539
|
border: 0;
|
|
@@ -4507,7 +4569,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4507
4569
|
}
|
|
4508
4570
|
|
|
4509
4571
|
.e-de-listview-icon {
|
|
4572
|
+
height: auto;
|
|
4573
|
+
width: auto;
|
|
4510
4574
|
line-height: 22px;
|
|
4575
|
+
margin-right: 12px;
|
|
4511
4576
|
}
|
|
4512
4577
|
|
|
4513
4578
|
.e-de-linespacing {
|
|
@@ -4607,14 +4672,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4607
4672
|
.e-de-statusbar-separator {
|
|
4608
4673
|
border-left: 1px solid #dee2e6;
|
|
4609
4674
|
height: 16px;
|
|
4610
|
-
margin-left:
|
|
4675
|
+
margin-left: 7.5px;
|
|
4676
|
+
margin-right: 7.5px;
|
|
4677
|
+
margin-top: 6px;
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4681
|
+
border-left: 1px solid #dee2e6;
|
|
4682
|
+
height: 16px;
|
|
4683
|
+
margin-left: 7.5px;
|
|
4684
|
+
margin-right: 7.5px;
|
|
4611
4685
|
margin-top: 6px;
|
|
4612
4686
|
}
|
|
4613
4687
|
|
|
4614
4688
|
.e-de-statusbar-spellcheck {
|
|
4615
4689
|
border-radius: 2px;
|
|
4616
4690
|
font-weight: 400;
|
|
4617
|
-
margin-left: 7.5px;
|
|
4618
4691
|
}
|
|
4619
4692
|
|
|
4620
4693
|
.e-de-ctn {
|
|
@@ -4627,7 +4700,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4627
4700
|
|
|
4628
4701
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4629
4702
|
border-radius: 2px;
|
|
4630
|
-
margin-left: 7.5px;
|
|
4631
4703
|
}
|
|
4632
4704
|
|
|
4633
4705
|
.e-de-ctnr-toolbar {
|
|
@@ -5035,6 +5107,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5035
5107
|
}
|
|
5036
5108
|
|
|
5037
5109
|
.e-de-review-pane {
|
|
5110
|
+
background: #f8f9fa;
|
|
5038
5111
|
border-left: 1px solid #ced4da;
|
|
5039
5112
|
height: 100%;
|
|
5040
5113
|
min-height: 200px;
|
|
@@ -5052,34 +5125,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5052
5125
|
width: 306px;
|
|
5053
5126
|
}
|
|
5054
5127
|
|
|
5055
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
5056
|
-
box-shadow: none;
|
|
5057
|
-
height: 31px;
|
|
5058
|
-
}
|
|
5059
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
5060
|
-
box-shadow: none;
|
|
5061
|
-
}
|
|
5062
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
5063
|
-
box-shadow: none;
|
|
5064
|
-
}
|
|
5065
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5066
|
-
box-shadow: none;
|
|
5067
|
-
}
|
|
5068
|
-
|
|
5069
|
-
.e-de-ctnr-group-btn button {
|
|
5070
|
-
box-shadow: none;
|
|
5071
|
-
height: 31px;
|
|
5072
|
-
}
|
|
5073
|
-
.e-de-ctnr-group-btn button:focus {
|
|
5074
|
-
box-shadow: none;
|
|
5075
|
-
}
|
|
5076
|
-
.e-de-ctnr-group-btn button:active {
|
|
5077
|
-
box-shadow: none;
|
|
5078
|
-
}
|
|
5079
|
-
.e-de-ctnr-group-btn button:hover {
|
|
5080
|
-
box-shadow: none;
|
|
5081
|
-
}
|
|
5082
|
-
|
|
5083
5128
|
.e-de-property-div-padding {
|
|
5084
5129
|
border-bottom: 0.5px solid #dee2e6;
|
|
5085
5130
|
padding: 12px;
|
|
@@ -5212,7 +5257,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5212
5257
|
}
|
|
5213
5258
|
|
|
5214
5259
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
5215
|
-
border-bottom: 1px solid #6c757d;
|
|
5260
|
+
border-bottom: 1px solid #6c757d !important;
|
|
5216
5261
|
margin-left: 5px;
|
|
5217
5262
|
width: 100%;
|
|
5218
5263
|
}
|
|
@@ -5281,10 +5326,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5281
5326
|
}
|
|
5282
5327
|
|
|
5283
5328
|
.e-de-list-container {
|
|
5284
|
-
background: #f8f9fa;
|
|
5285
5329
|
border: 1px solid #ccc;
|
|
5286
5330
|
border-radius: 2px;
|
|
5287
5331
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
5332
|
+
background: #f8f9fa;
|
|
5288
5333
|
box-sizing: border-box;
|
|
5289
5334
|
display: inline-block;
|
|
5290
5335
|
line-height: normal;
|
|
@@ -5557,7 +5602,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5557
5602
|
}
|
|
5558
5603
|
|
|
5559
5604
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5560
|
-
height:
|
|
5605
|
+
height: 36px !important;
|
|
5561
5606
|
}
|
|
5562
5607
|
|
|
5563
5608
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5584,7 +5629,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5584
5629
|
margin-left: 12px;
|
|
5585
5630
|
}
|
|
5586
5631
|
.e-rtl .e-de-listview-icon {
|
|
5632
|
+
height: auto;
|
|
5633
|
+
width: auto;
|
|
5587
5634
|
line-height: 22px;
|
|
5635
|
+
margin-left: 12px;
|
|
5588
5636
|
}
|
|
5589
5637
|
|
|
5590
5638
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -5707,7 +5755,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5707
5755
|
height: 81px;
|
|
5708
5756
|
}
|
|
5709
5757
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5710
|
-
height: 25px;
|
|
5711
5758
|
margin: 0 16px;
|
|
5712
5759
|
}
|
|
5713
5760
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -5810,6 +5857,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5810
5857
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5811
5858
|
box-shadow: none;
|
|
5812
5859
|
}
|
|
5860
|
+
.e-bigger .e-de-status-bar button {
|
|
5861
|
+
height: 38px;
|
|
5862
|
+
box-shadow: none;
|
|
5863
|
+
}
|
|
5864
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5865
|
+
box-shadow: none;
|
|
5866
|
+
}
|
|
5867
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5868
|
+
box-shadow: none;
|
|
5869
|
+
}
|
|
5870
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5871
|
+
box-shadow: none;
|
|
5872
|
+
}
|
|
5813
5873
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5814
5874
|
box-shadow: none;
|
|
5815
5875
|
height: 38px;
|
|
@@ -5924,18 +5984,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5924
5984
|
margin-left: 10px;
|
|
5925
5985
|
}
|
|
5926
5986
|
.e-bigger .e-de-status-bar {
|
|
5927
|
-
background
|
|
5987
|
+
background: #f8f9fa;
|
|
5928
5988
|
display: -ms-flexbox;
|
|
5929
5989
|
display: flex;
|
|
5930
5990
|
padding-top: 5px;
|
|
5931
5991
|
width: 100%;
|
|
5932
5992
|
}
|
|
5933
5993
|
.e-bigger .e-de-statusbar-zoom {
|
|
5934
|
-
background-color: #f8f9fa;
|
|
5935
5994
|
border: 0;
|
|
5936
5995
|
color: #495057;
|
|
5937
5996
|
float: right;
|
|
5938
5997
|
height: 34px;
|
|
5998
|
+
background-color: #f8f9fa;
|
|
5939
5999
|
}
|
|
5940
6000
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
5941
6001
|
line-height: 25px;
|
|
@@ -5951,7 +6011,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5951
6011
|
margin-right: 16px;
|
|
5952
6012
|
}
|
|
5953
6013
|
.e-bigger .e-de-listview-icon {
|
|
6014
|
+
height: auto;
|
|
6015
|
+
width: auto;
|
|
5954
6016
|
line-height: 22px;
|
|
6017
|
+
margin-right: 16px;
|
|
5955
6018
|
}
|
|
5956
6019
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
5957
6020
|
height: 24px;
|
|
@@ -5959,7 +6022,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5959
6022
|
margin-left: 16px;
|
|
5960
6023
|
}
|
|
5961
6024
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
6025
|
+
height: auto;
|
|
6026
|
+
width: auto;
|
|
5962
6027
|
line-height: 22px;
|
|
6028
|
+
margin-left: 16px;
|
|
5963
6029
|
}
|
|
5964
6030
|
|
|
5965
6031
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e98a";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -2350,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2350
2351
|
height: 35px;
|
|
2351
2352
|
}
|
|
2352
2353
|
|
|
2354
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2355
|
+
height: 40px !important;
|
|
2356
|
+
width: auto !important;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2353
2359
|
.e-de-style-bold-button-size {
|
|
2354
2360
|
margin-left: 8px;
|
|
2355
2361
|
margin-right: 8px;
|
|
@@ -3310,6 +3316,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3310
3316
|
|
|
3311
3317
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3312
3318
|
margin-top: 0px;
|
|
3319
|
+
background: #1a1a1a;
|
|
3313
3320
|
}
|
|
3314
3321
|
|
|
3315
3322
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e98a";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -2346,6 +2347,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2346
2347
|
height: 35px;
|
|
2347
2348
|
}
|
|
2348
2349
|
|
|
2350
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2351
|
+
height: 40px !important;
|
|
2352
|
+
width: auto !important;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2349
2355
|
.e-de-style-bold-button-size {
|
|
2350
2356
|
margin-left: 8px;
|
|
2351
2357
|
margin-right: 8px;
|
|
@@ -3209,6 +3215,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3209
3215
|
font-weight: normal;
|
|
3210
3216
|
}
|
|
3211
3217
|
|
|
3218
|
+
.e-de-track-toolbar .e-de-track-pane-drop-btn {
|
|
3219
|
+
padding-top: 4px !important;
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3212
3222
|
.e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
|
|
3213
3223
|
opacity: 1;
|
|
3214
3224
|
font-weight: normal;
|
|
@@ -3307,6 +3317,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3307
3317
|
|
|
3308
3318
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3309
3319
|
margin-top: 0px;
|
|
3320
|
+
background: #fff;
|
|
3310
3321
|
}
|
|
3311
3322
|
|
|
3312
3323
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e978";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -1728,6 +1729,14 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1728
1729
|
margin-top: 0 !important;
|
|
1729
1730
|
}
|
|
1730
1731
|
|
|
1732
|
+
.e-de-bookmark .e-bookmark-textbox-input {
|
|
1733
|
+
box-sizing: border-box !important;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.e-de-cp-option {
|
|
1737
|
+
background: transparent;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1731
1740
|
.e-styles-common {
|
|
1732
1741
|
padding-top: 14px;
|
|
1733
1742
|
}
|
|
@@ -2486,6 +2495,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2486
2495
|
height: 35px;
|
|
2487
2496
|
}
|
|
2488
2497
|
|
|
2498
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2499
|
+
height: 40px !important;
|
|
2500
|
+
width: auto !important;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2489
2503
|
.e-de-style-bold-button-size {
|
|
2490
2504
|
margin-left: 8px;
|
|
2491
2505
|
margin-right: 8px;
|
|
@@ -3454,6 +3468,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3454
3468
|
|
|
3455
3469
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3456
3470
|
margin-top: 0px;
|
|
3471
|
+
background: #f8f9fa;
|
|
3457
3472
|
}
|
|
3458
3473
|
|
|
3459
3474
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
color: #adb5bd;
|
|
47
47
|
content: "\e8bc";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e71d";
|
|
@@ -2497,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2497
2498
|
margin-left: 6px;
|
|
2498
2499
|
}
|
|
2499
2500
|
|
|
2501
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2502
|
+
height: 40px !important;
|
|
2503
|
+
width: auto !important;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2500
2506
|
.e-de-style-bold-button-size {
|
|
2501
2507
|
margin-left: 6px;
|
|
2502
2508
|
}
|
|
@@ -3409,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3409
3415
|
|
|
3410
3416
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3411
3417
|
margin-top: 0px;
|
|
3418
|
+
background: #282d31;
|
|
3412
3419
|
}
|
|
3413
3420
|
|
|
3414
3421
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
color: #6c757d;
|
|
47
47
|
content: "\e8bc";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e71d";
|
|
@@ -2497,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2497
2498
|
margin-left: 6px;
|
|
2498
2499
|
}
|
|
2499
2500
|
|
|
2501
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2502
|
+
height: 40px !important;
|
|
2503
|
+
width: auto !important;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2500
2506
|
.e-de-style-bold-button-size {
|
|
2501
2507
|
margin-left: 6px;
|
|
2502
2508
|
}
|
|
@@ -3409,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3409
3415
|
|
|
3410
3416
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3411
3417
|
margin-top: 0px;
|
|
3418
|
+
background: #f8f9fa;
|
|
3412
3419
|
}
|
|
3413
3420
|
|
|
3414
3421
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e97e";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -2350,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2350
2351
|
height: 35px;
|
|
2351
2352
|
}
|
|
2352
2353
|
|
|
2354
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2355
|
+
height: 40px !important;
|
|
2356
|
+
width: auto !important;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2353
2359
|
.e-de-style-bold-button-size {
|
|
2354
2360
|
margin-left: 8px;
|
|
2355
2361
|
margin-right: 8px;
|
|
@@ -3310,6 +3316,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3310
3316
|
|
|
3311
3317
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3312
3318
|
margin-top: 0px;
|
|
3319
|
+
background: #201f1f;
|
|
3313
3320
|
}
|
|
3314
3321
|
|
|
3315
3322
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e97e";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -2350,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2350
2351
|
height: 35px;
|
|
2351
2352
|
}
|
|
2352
2353
|
|
|
2354
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2355
|
+
height: 40px !important;
|
|
2356
|
+
width: auto !important;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2353
2359
|
.e-de-style-bold-button-size {
|
|
2354
2360
|
margin-left: 8px;
|
|
2355
2361
|
margin-right: 8px;
|
|
@@ -3213,6 +3219,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3213
3219
|
font-weight: normal;
|
|
3214
3220
|
}
|
|
3215
3221
|
|
|
3222
|
+
.e-de-track-toolbar .e-de-track-pane-drop-btn {
|
|
3223
|
+
padding-top: 4px !important;
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3216
3226
|
.e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
|
|
3217
3227
|
opacity: 1;
|
|
3218
3228
|
font-weight: normal;
|
|
@@ -3310,6 +3320,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3310
3320
|
|
|
3311
3321
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3312
3322
|
margin-top: 0px;
|
|
3323
|
+
background: #fff;
|
|
3313
3324
|
}
|
|
3314
3325
|
|
|
3315
3326
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
45
45
|
content: "\e8bc";
|
|
46
46
|
font-family: "e-icons";
|
|
47
|
+
font-size: 14px;
|
|
47
48
|
}
|
|
48
49
|
.e-documenteditor .e-de-cmt-post::before {
|
|
49
50
|
content: "\e71d";
|
|
@@ -2441,6 +2442,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2441
2442
|
margin-left: 12px;
|
|
2442
2443
|
}
|
|
2443
2444
|
|
|
2445
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2446
|
+
height: 40px !important;
|
|
2447
|
+
width: auto !important;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2444
2450
|
.e-de-style-bold-button-size {
|
|
2445
2451
|
margin-left: 12px;
|
|
2446
2452
|
}
|
|
@@ -3351,6 +3357,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3351
3357
|
|
|
3352
3358
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3353
3359
|
margin-top: 0px;
|
|
3360
|
+
background: #201f1e;
|
|
3354
3361
|
}
|
|
3355
3362
|
|
|
3356
3363
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
45
45
|
content: "\e8bc";
|
|
46
46
|
font-family: "e-icons";
|
|
47
|
+
font-size: 14px;
|
|
47
48
|
}
|
|
48
49
|
.e-documenteditor .e-de-cmt-post::before {
|
|
49
50
|
content: "\e71d";
|
|
@@ -2441,6 +2442,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2441
2442
|
margin-left: 12px;
|
|
2442
2443
|
}
|
|
2443
2444
|
|
|
2445
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2446
|
+
height: 40px !important;
|
|
2447
|
+
width: auto !important;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2444
2450
|
.e-de-style-bold-button-size {
|
|
2445
2451
|
margin-left: 12px;
|
|
2446
2452
|
}
|
|
@@ -3351,6 +3357,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3351
3357
|
|
|
3352
3358
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3353
3359
|
margin-top: 0px;
|
|
3360
|
+
background: #faf9f8;
|
|
3354
3361
|
}
|
|
3355
3362
|
|
|
3356
3363
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
47
47
|
content: "\e97a";
|
|
48
48
|
font-family: "e-icons";
|
|
49
|
+
font-size: 14px;
|
|
49
50
|
}
|
|
50
51
|
.e-documenteditor .e-de-cmt-post::before {
|
|
51
52
|
content: "\e816";
|
|
@@ -2350,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2350
2351
|
height: 35px;
|
|
2351
2352
|
}
|
|
2352
2353
|
|
|
2354
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2355
|
+
height: 40px !important;
|
|
2356
|
+
width: auto !important;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2353
2359
|
.e-de-style-bold-button-size {
|
|
2354
2360
|
margin-left: 8px;
|
|
2355
2361
|
margin-right: 8px;
|
|
@@ -3310,6 +3316,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3310
3316
|
|
|
3311
3317
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3312
3318
|
margin-top: 0px;
|
|
3319
|
+
background: #000;
|
|
3313
3320
|
}
|
|
3314
3321
|
|
|
3315
3322
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
53
53
|
content: "\e97a";
|
|
54
54
|
font-family: "e-icons";
|
|
55
|
+
font-size: 14px;
|
|
55
56
|
}
|
|
56
57
|
.e-documenteditor .e-de-cmt-post::before {
|
|
57
58
|
content: "\e816";
|
|
@@ -2345,6 +2346,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2345
2346
|
height: 35px;
|
|
2346
2347
|
}
|
|
2347
2348
|
|
|
2349
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2350
|
+
height: 40px !important;
|
|
2351
|
+
width: auto !important;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2348
2354
|
.e-de-style-bold-button-size {
|
|
2349
2355
|
margin-left: 8px;
|
|
2350
2356
|
margin-right: 8px;
|
|
@@ -3305,6 +3311,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3305
3311
|
|
|
3306
3312
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3307
3313
|
margin-top: 0px;
|
|
3314
|
+
background: #212121;
|
|
3308
3315
|
}
|
|
3309
3316
|
|
|
3310
3317
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
53
53
|
content: "\e97a";
|
|
54
54
|
font-family: "e-icons";
|
|
55
|
+
font-size: 14px;
|
|
55
56
|
}
|
|
56
57
|
.e-documenteditor .e-de-cmt-post::before {
|
|
57
58
|
content: "\e816";
|
|
@@ -2345,6 +2346,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2345
2346
|
height: 35px;
|
|
2346
2347
|
}
|
|
2347
2348
|
|
|
2349
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2350
|
+
height: 40px !important;
|
|
2351
|
+
width: auto !important;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2348
2354
|
.e-de-style-bold-button-size {
|
|
2349
2355
|
margin-left: 8px;
|
|
2350
2356
|
margin-right: 8px;
|
|
@@ -3305,6 +3311,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3305
3311
|
|
|
3306
3312
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3307
3313
|
margin-top: 0px;
|
|
3314
|
+
background: #fff;
|
|
3308
3315
|
}
|
|
3309
3316
|
|
|
3310
3317
|
.e-de-cmt-view:hover .e-de-cp-option {
|