@syncfusion/ej2-angular-documenteditor 19.4.56 → 20.1.47
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 +0 -240
- package/dist/ej2-angular-documenteditor.umd.js +1 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +218 -151
- package/styles/bootstrap.css +218 -151
- package/styles/bootstrap4.css +224 -157
- package/styles/bootstrap5-dark.css +253 -172
- package/styles/bootstrap5.css +253 -172
- package/styles/document-editor/bootstrap-dark.css +192 -50
- package/styles/document-editor/bootstrap.css +192 -50
- package/styles/document-editor/bootstrap4.css +194 -52
- package/styles/document-editor/bootstrap5-dark.css +207 -61
- package/styles/document-editor/bootstrap5.css +207 -61
- package/styles/document-editor/fabric-dark.css +193 -51
- package/styles/document-editor/fabric.css +193 -51
- package/styles/document-editor/fluent-dark.css +3782 -0
- package/styles/document-editor/fluent-dark.scss +1 -0
- package/styles/document-editor/fluent.css +3782 -0
- package/styles/document-editor/fluent.scss +1 -0
- package/styles/document-editor/highcontrast-light.css +5 -9
- package/styles/document-editor/highcontrast.css +193 -51
- package/styles/document-editor/material-dark.css +193 -51
- package/styles/document-editor/material.css +193 -51
- package/styles/document-editor/tailwind-dark.css +319 -261
- package/styles/document-editor/tailwind.css +319 -261
- package/styles/document-editor-container/bootstrap-dark.css +26 -101
- package/styles/document-editor-container/bootstrap.css +26 -101
- package/styles/document-editor-container/bootstrap4.css +30 -105
- package/styles/document-editor-container/bootstrap5-dark.css +46 -111
- package/styles/document-editor-container/bootstrap5.css +46 -111
- package/styles/document-editor-container/fabric-dark.css +26 -101
- package/styles/document-editor-container/fabric.css +26 -101
- package/styles/document-editor-container/fluent-dark.css +1996 -0
- package/styles/document-editor-container/fluent-dark.scss +1 -0
- package/styles/document-editor-container/fluent.css +1996 -0
- package/styles/document-editor-container/fluent.scss +1 -0
- package/styles/document-editor-container/highcontrast-light.css +29 -104
- package/styles/document-editor-container/highcontrast.css +26 -101
- package/styles/document-editor-container/material-dark.css +26 -101
- package/styles/document-editor-container/material.css +26 -101
- package/styles/document-editor-container/tailwind-dark.css +134 -271
- package/styles/document-editor-container/tailwind.css +134 -271
- package/styles/fabric-dark.css +219 -152
- package/styles/fabric.css +219 -152
- package/styles/fluent-dark.css +5779 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +5779 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +31 -110
- package/styles/highcontrast.css +219 -152
- package/styles/material-dark.css +219 -152
- package/styles/material.css +219 -152
- package/styles/tailwind-dark.css +453 -532
- package/styles/tailwind.css +453 -532
package/styles/fabric.css
CHANGED
|
@@ -562,6 +562,86 @@
|
|
|
562
562
|
content: '\e68a';
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
+
.e-de-dlg-container {
|
|
566
|
+
padding-bottom: 12px;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.e-de-dlg-row {
|
|
570
|
+
display: -ms-flexbox;
|
|
571
|
+
display: flex;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.e-de-container-row {
|
|
575
|
+
display: -ms-flexbox;
|
|
576
|
+
display: flex;
|
|
577
|
+
padding-bottom: 12px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.e-de-subcontainer-left {
|
|
581
|
+
padding-right: 6px;
|
|
582
|
+
width: 50%;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.e-de-subcontainer-right {
|
|
586
|
+
padding-left: 6px;
|
|
587
|
+
width: 50%;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.e-de-dlg-tab-first-child {
|
|
591
|
+
padding-top: 6px;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.e-de-dlg-heading {
|
|
595
|
+
display: block;
|
|
596
|
+
font-size: 16px;
|
|
597
|
+
font-weight: 600;
|
|
598
|
+
margin-bottom: 12px;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.e-rtl .e-de-subcontainer-left {
|
|
602
|
+
padding-left: 6px;
|
|
603
|
+
padding-right: 0;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.e-rtl .e-de-subcontainer-right {
|
|
607
|
+
padding-left: 0;
|
|
608
|
+
padding-right: 6px;
|
|
609
|
+
width: 50%;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.e-bigger .e-de-dlg-container {
|
|
613
|
+
padding-bottom: 16px;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.e-bigger .e-de-container-row {
|
|
617
|
+
padding-bottom: 16px;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.e-bigger .e-de-subcontainer-left {
|
|
621
|
+
padding-right: 8px;
|
|
622
|
+
width: 50%;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.e-bigger .e-de-subcontainer-right {
|
|
626
|
+
padding-left: 8px;
|
|
627
|
+
width: 50%;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.e-bigger .e-de-dlg-tab-first-child {
|
|
631
|
+
padding-top: 8px;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.e-bigger .e-rtl .e-de-subcontainer-left {
|
|
635
|
+
padding-left: 8px;
|
|
636
|
+
padding-right: 0;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.e-bigger .e-rtl .e-de-subcontainer-right {
|
|
640
|
+
padding-left: 0;
|
|
641
|
+
padding-right: 8px;
|
|
642
|
+
width: 50%;
|
|
643
|
+
}
|
|
644
|
+
|
|
565
645
|
.e-de-blink-cursor {
|
|
566
646
|
border-left: 1px solid #000;
|
|
567
647
|
pointer-events: none;
|
|
@@ -730,7 +810,6 @@
|
|
|
730
810
|
.e-de-ff-radio-div {
|
|
731
811
|
display: -ms-inline-flexbox;
|
|
732
812
|
display: inline-flex;
|
|
733
|
-
margin-bottom: 26px;
|
|
734
813
|
margin-right: 16px;
|
|
735
814
|
}
|
|
736
815
|
|
|
@@ -1090,14 +1169,6 @@
|
|
|
1090
1169
|
float: left;
|
|
1091
1170
|
}
|
|
1092
1171
|
|
|
1093
|
-
.e-de-dlg-sub-header {
|
|
1094
|
-
display: block;
|
|
1095
|
-
font-size: 12px;
|
|
1096
|
-
font-weight: normal;
|
|
1097
|
-
margin-bottom: 8px;
|
|
1098
|
-
margin-top: 5px;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
1172
|
.e-de-dlg-footer .e-btn {
|
|
1102
1173
|
margin-left: 10px;
|
|
1103
1174
|
}
|
|
@@ -1214,7 +1285,8 @@
|
|
|
1214
1285
|
}
|
|
1215
1286
|
|
|
1216
1287
|
.e-de-op-more-less {
|
|
1217
|
-
display:
|
|
1288
|
+
display: -ms-inline-flexbox;
|
|
1289
|
+
display: inline-flex;
|
|
1218
1290
|
margin-top: 14px;
|
|
1219
1291
|
}
|
|
1220
1292
|
|
|
@@ -1492,7 +1564,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1492
1564
|
}
|
|
1493
1565
|
|
|
1494
1566
|
.e-documenteditor .e-de-op-close-button {
|
|
1495
|
-
left:
|
|
1567
|
+
left: 250px;
|
|
1496
1568
|
position: absolute;
|
|
1497
1569
|
top: 18px;
|
|
1498
1570
|
}
|
|
@@ -1507,7 +1579,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1507
1579
|
}
|
|
1508
1580
|
|
|
1509
1581
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1510
|
-
right:
|
|
1582
|
+
right: 255px;
|
|
1511
1583
|
}
|
|
1512
1584
|
|
|
1513
1585
|
.e-de-table-measure-lbl {
|
|
@@ -1873,12 +1945,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1873
1945
|
}
|
|
1874
1946
|
|
|
1875
1947
|
.e-de-font-dlg {
|
|
1876
|
-
width:
|
|
1948
|
+
width: max-content;
|
|
1877
1949
|
}
|
|
1878
1950
|
|
|
1879
1951
|
.e-de-hyperlink {
|
|
1880
|
-
|
|
1881
|
-
|
|
1952
|
+
width: 250px;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
.e-bigger .e-de-hyperlink {
|
|
1956
|
+
width: 300px;
|
|
1882
1957
|
}
|
|
1883
1958
|
|
|
1884
1959
|
.e-de-insert-table {
|
|
@@ -2042,13 +2117,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2042
2117
|
|
|
2043
2118
|
.e-button-custom {
|
|
2044
2119
|
height: 32px;
|
|
2045
|
-
|
|
2046
|
-
width: 84px;
|
|
2120
|
+
width: 100%;
|
|
2047
2121
|
}
|
|
2048
2122
|
|
|
2049
2123
|
.e-bigger .e-button-custom {
|
|
2050
2124
|
height: 37px;
|
|
2051
|
-
width:
|
|
2125
|
+
width: 100%;
|
|
2052
2126
|
}
|
|
2053
2127
|
|
|
2054
2128
|
.e-styles-listview,
|
|
@@ -2198,13 +2272,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2198
2272
|
}
|
|
2199
2273
|
|
|
2200
2274
|
.e-bigger .e-de-style-bold-button-size {
|
|
2201
|
-
margin-left:
|
|
2275
|
+
margin-left: 8px;
|
|
2202
2276
|
margin-right: 8px;
|
|
2203
2277
|
height: 35px;
|
|
2204
2278
|
}
|
|
2205
2279
|
|
|
2206
2280
|
.e-de-style-bold-button-size {
|
|
2207
|
-
margin-left:
|
|
2281
|
+
margin-left: 8px;
|
|
2208
2282
|
margin-right: 8px;
|
|
2209
2283
|
height: 31px;
|
|
2210
2284
|
}
|
|
@@ -2219,12 +2293,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2219
2293
|
}
|
|
2220
2294
|
|
|
2221
2295
|
.e-de-style-icon-button-first-size {
|
|
2222
|
-
margin-left:
|
|
2296
|
+
margin-left: 8px;
|
|
2223
2297
|
margin-right: 3px;
|
|
2224
2298
|
}
|
|
2225
2299
|
|
|
2226
2300
|
.e-de-style-icon-button-last-size {
|
|
2227
|
-
margin-right:
|
|
2301
|
+
margin-right: 8px;
|
|
2228
2302
|
}
|
|
2229
2303
|
|
|
2230
2304
|
.e-de-style-font-color-picker {
|
|
@@ -2672,6 +2746,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2672
2746
|
.e-de-rp-sub-content-div {
|
|
2673
2747
|
line-height: none;
|
|
2674
2748
|
font-size: 12px;
|
|
2749
|
+
margin-bottom: 8px;
|
|
2675
2750
|
}
|
|
2676
2751
|
|
|
2677
2752
|
.e-de-bullet-icons {
|
|
@@ -2726,7 +2801,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2726
2801
|
}
|
|
2727
2802
|
|
|
2728
2803
|
.e-bigger .e-de-font-dlg {
|
|
2729
|
-
width:
|
|
2804
|
+
width: max-content;
|
|
2730
2805
|
}
|
|
2731
2806
|
|
|
2732
2807
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -2756,6 +2831,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2756
2831
|
|
|
2757
2832
|
.e-bigger .e-de-rp-header {
|
|
2758
2833
|
font-size: 16px;
|
|
2834
|
+
width: 75%;
|
|
2759
2835
|
}
|
|
2760
2836
|
|
|
2761
2837
|
.e-de-restrict-format {
|
|
@@ -2783,6 +2859,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2783
2859
|
font-weight: normal;
|
|
2784
2860
|
opacity: 0.87;
|
|
2785
2861
|
color: #333;
|
|
2862
|
+
width: 75%;
|
|
2786
2863
|
}
|
|
2787
2864
|
|
|
2788
2865
|
.e-de-rp-user .e-checkbox-wrapper {
|
|
@@ -2796,20 +2873,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2796
2873
|
opacity: 0.87;
|
|
2797
2874
|
border-radius: 2px;
|
|
2798
2875
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2799
|
-
height: 36px;
|
|
2800
|
-
margin: 0 15px !important;
|
|
2801
2876
|
}
|
|
2802
2877
|
|
|
2803
2878
|
.e-bigger .e-de-rp-btn-enforce {
|
|
2804
|
-
margin: 0;
|
|
2805
|
-
width: 100%;
|
|
2806
2879
|
padding-left: 10px;
|
|
2807
2880
|
padding-right: 10px;
|
|
2808
2881
|
}
|
|
2809
2882
|
|
|
2810
2883
|
.e-de-rp-nav-btn {
|
|
2811
|
-
|
|
2812
|
-
width: 210px;
|
|
2884
|
+
width: auto;
|
|
2813
2885
|
}
|
|
2814
2886
|
|
|
2815
2887
|
.e-de-rp-btn-stop-enforce {
|
|
@@ -2818,8 +2890,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2818
2890
|
opacity: 0.87;
|
|
2819
2891
|
border-radius: 2px;
|
|
2820
2892
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2821
|
-
height: 36px;
|
|
2822
|
-
margin: 0 46px;
|
|
2823
2893
|
}
|
|
2824
2894
|
|
|
2825
2895
|
.e-de-rp-sub-div {
|
|
@@ -2830,6 +2900,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2830
2900
|
.e-de-restrict-pane {
|
|
2831
2901
|
padding-left: 0;
|
|
2832
2902
|
padding-top: 0;
|
|
2903
|
+
padding-right: 0;
|
|
2833
2904
|
}
|
|
2834
2905
|
|
|
2835
2906
|
.e-de-rp-whole-header {
|
|
@@ -2842,15 +2913,14 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2842
2913
|
border-radius: 2px;
|
|
2843
2914
|
font-size: 12px;
|
|
2844
2915
|
height: 110px;
|
|
2845
|
-
width: 238px;
|
|
2846
2916
|
}
|
|
2847
2917
|
|
|
2848
2918
|
.e-de-rp-enforce {
|
|
2849
|
-
padding
|
|
2919
|
+
padding: 12px;
|
|
2850
2920
|
}
|
|
2851
2921
|
|
|
2852
2922
|
.e-de-rp-enforce-nav {
|
|
2853
|
-
margin: 12px
|
|
2923
|
+
margin: 0 12px 12px 12px;
|
|
2854
2924
|
}
|
|
2855
2925
|
|
|
2856
2926
|
.e-de-enforce-dlg-title {
|
|
@@ -2861,7 +2931,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2861
2931
|
|
|
2862
2932
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
2863
2933
|
height: 32px;
|
|
2864
|
-
margin-bottom: 8px;
|
|
2865
2934
|
width: 300px;
|
|
2866
2935
|
}
|
|
2867
2936
|
|
|
@@ -2883,6 +2952,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2883
2952
|
|
|
2884
2953
|
.e-de-user-dlg-list {
|
|
2885
2954
|
margin-bottom: 15px;
|
|
2955
|
+
display: -ms-inline-flexbox;
|
|
2956
|
+
display: inline-flex;
|
|
2886
2957
|
}
|
|
2887
2958
|
|
|
2888
2959
|
.e-de-user-listview {
|
|
@@ -2915,25 +2986,23 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2915
2986
|
padding: 12px 12px 24px;
|
|
2916
2987
|
}
|
|
2917
2988
|
|
|
2918
|
-
.e-de-rp-stop-div3 {
|
|
2919
|
-
padding: 0 0 12px 12px;
|
|
2920
|
-
}
|
|
2921
|
-
|
|
2922
2989
|
.e-de-rp-close-icon {
|
|
2923
2990
|
float: right;
|
|
2924
2991
|
position: relative;
|
|
2925
2992
|
top: -7px;
|
|
2993
|
+
right: -8px;
|
|
2926
2994
|
}
|
|
2927
2995
|
|
|
2928
2996
|
.e-de-restrict-pane {
|
|
2929
2997
|
height: 100%;
|
|
2930
2998
|
overflow: auto;
|
|
2999
|
+
overflow-x: hidden;
|
|
2931
3000
|
width: 268px;
|
|
2932
3001
|
}
|
|
2933
3002
|
|
|
2934
3003
|
.e-de-rp-nav-lbl {
|
|
2935
3004
|
font-size: 13px;
|
|
2936
|
-
margin: 0
|
|
3005
|
+
margin: 0 12px;
|
|
2937
3006
|
}
|
|
2938
3007
|
|
|
2939
3008
|
.e-documenteditor-optionspane {
|
|
@@ -3052,7 +3121,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3052
3121
|
color: #4d841e;
|
|
3053
3122
|
padding: 5px 6px;
|
|
3054
3123
|
text-transform: initial;
|
|
3055
|
-
width: 66px;
|
|
3056
3124
|
}
|
|
3057
3125
|
|
|
3058
3126
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3061,7 +3129,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3061
3129
|
color: #fff;
|
|
3062
3130
|
padding: 5px 6px;
|
|
3063
3131
|
text-transform: initial;
|
|
3064
|
-
width: 66px;
|
|
3065
3132
|
}
|
|
3066
3133
|
|
|
3067
3134
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3071,7 +3138,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3071
3138
|
padding: 5px 6px;
|
|
3072
3139
|
margin-left: 8px;
|
|
3073
3140
|
text-transform: initial;
|
|
3074
|
-
width: 64px;
|
|
3075
3141
|
}
|
|
3076
3142
|
|
|
3077
3143
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3081,7 +3147,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3081
3147
|
padding: 5px 6px;
|
|
3082
3148
|
margin-left: 8px;
|
|
3083
3149
|
text-transform: initial;
|
|
3084
|
-
width: 64px;
|
|
3085
3150
|
}
|
|
3086
3151
|
|
|
3087
3152
|
.e-de-track-chngs-count {
|
|
@@ -3200,7 +3265,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3200
3265
|
font-size: 13px;
|
|
3201
3266
|
font-weight: normal;
|
|
3202
3267
|
padding-left: 8px;
|
|
3203
|
-
padding-left: 8px;
|
|
3204
3268
|
width: 90%;
|
|
3205
3269
|
}
|
|
3206
3270
|
|
|
@@ -3358,6 +3422,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3358
3422
|
|
|
3359
3423
|
.e-rtl .e-de-rp-close-icon {
|
|
3360
3424
|
float: left;
|
|
3425
|
+
right: 8px;
|
|
3361
3426
|
}
|
|
3362
3427
|
|
|
3363
3428
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3418,6 +3483,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3418
3483
|
padding-right: 8px;
|
|
3419
3484
|
}
|
|
3420
3485
|
|
|
3486
|
+
.e-bigger .e-de-rp-close-icon {
|
|
3487
|
+
float: right;
|
|
3488
|
+
position: relative;
|
|
3489
|
+
top: -9px;
|
|
3490
|
+
right: -11px;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3421
3493
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3422
3494
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3423
3495
|
margin-right: 12px;
|
|
@@ -3454,6 +3526,80 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3454
3526
|
top: 0;
|
|
3455
3527
|
}
|
|
3456
3528
|
|
|
3529
|
+
.e-de-rp-mu-btn {
|
|
3530
|
+
margin-top: 3px;
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3533
|
+
.e-rtl .e-de-cmt-author-name {
|
|
3534
|
+
padding-left: 0%;
|
|
3535
|
+
padding-right: 8px;
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
.e-bigger .e-de-cmt-author-name {
|
|
3539
|
+
padding-left: 8px;
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
.e-bigger .e-de-cmt-rply-view {
|
|
3543
|
+
margin-top: 12px;
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
.e-bigger .e-de-cmt-sub-container {
|
|
3547
|
+
padding: 8px;
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3551
|
+
padding-left: 6px;
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3555
|
+
padding-left: 7px;
|
|
3556
|
+
}
|
|
3557
|
+
|
|
3558
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3559
|
+
padding: 0%;
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
3563
|
+
width: auto;
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
.e-bigger .e-de-rp-whole-header {
|
|
3567
|
+
padding: 12px;
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
.e-bigger .e-de-rp-sub-div {
|
|
3571
|
+
border-bottom: 1px solid #e4e4e4;
|
|
3572
|
+
padding: 12px;
|
|
3573
|
+
}
|
|
3574
|
+
|
|
3575
|
+
.e-bigger .e-de-rp-enforce {
|
|
3576
|
+
padding: 12px;
|
|
3577
|
+
}
|
|
3578
|
+
|
|
3579
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3580
|
+
width: 300px;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3584
|
+
padding-left: 0%;
|
|
3585
|
+
padding-right: 8px;
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3589
|
+
padding-left: 8px;
|
|
3590
|
+
padding-right: 6px;
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3594
|
+
padding-left: 8px;
|
|
3595
|
+
padding-right: 7px;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3599
|
+
float: left;
|
|
3600
|
+
right: 11px;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3457
3603
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3458
3604
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3459
3605
|
font-size: 14px;
|
|
@@ -3468,8 +3614,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3468
3614
|
display: block;
|
|
3469
3615
|
font-size: 16px;
|
|
3470
3616
|
font-weight: 700;
|
|
3471
|
-
margin-bottom:
|
|
3472
|
-
margin-top: 17px;
|
|
3617
|
+
margin-bottom: 8px;
|
|
3473
3618
|
}
|
|
3474
3619
|
|
|
3475
3620
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
@@ -3513,7 +3658,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3513
3658
|
font-size: 12px;
|
|
3514
3659
|
font-weight: normal;
|
|
3515
3660
|
margin-bottom: 8px;
|
|
3516
|
-
margin-top: 0;
|
|
3517
3661
|
}
|
|
3518
3662
|
|
|
3519
3663
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3532,8 +3676,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3532
3676
|
display: block;
|
|
3533
3677
|
font-size: 16px;
|
|
3534
3678
|
font-weight: 700;
|
|
3535
|
-
margin-bottom:
|
|
3536
|
-
margin-top: 17px;
|
|
3679
|
+
margin-bottom: 8px;
|
|
3537
3680
|
opacity: 87%;
|
|
3538
3681
|
}
|
|
3539
3682
|
|
|
@@ -3578,7 +3721,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3578
3721
|
font-size: 12px;
|
|
3579
3722
|
font-weight: normal;
|
|
3580
3723
|
margin-bottom: 8px;
|
|
3581
|
-
margin-top: 0;
|
|
3582
3724
|
}
|
|
3583
3725
|
|
|
3584
3726
|
.e-de-rtl-btn-div {
|
|
@@ -4040,6 +4182,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4040
4182
|
top: 100px;
|
|
4041
4183
|
}
|
|
4042
4184
|
|
|
4185
|
+
.e-de-scrollbar-hide::-webkit-scrollbar {
|
|
4186
|
+
width: 0;
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
.e-de-scrollbar-hide {
|
|
4190
|
+
-ms-overflow-style: none;
|
|
4191
|
+
scrollbar-width: none;
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4043
4194
|
.e-de-toolbar {
|
|
4044
4195
|
height: 100%;
|
|
4045
4196
|
}
|
|
@@ -4085,6 +4236,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4085
4236
|
border: 0;
|
|
4086
4237
|
color: #333;
|
|
4087
4238
|
float: right;
|
|
4239
|
+
font-weight: 400;
|
|
4088
4240
|
height: 33px;
|
|
4089
4241
|
}
|
|
4090
4242
|
|
|
@@ -4113,9 +4265,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4113
4265
|
border: 0;
|
|
4114
4266
|
box-shadow: none;
|
|
4115
4267
|
float: right;
|
|
4116
|
-
height: 33px;
|
|
4117
4268
|
margin-left: calc(100% - 405px);
|
|
4118
|
-
width: 33px;
|
|
4119
4269
|
}
|
|
4120
4270
|
|
|
4121
4271
|
.e-bigger .e-btn-pageweb-spellcheck {
|
|
@@ -4151,9 +4301,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4151
4301
|
|
|
4152
4302
|
.e-de-statusbar-spellcheck {
|
|
4153
4303
|
border-radius: 2px;
|
|
4154
|
-
|
|
4304
|
+
font-weight: 400;
|
|
4155
4305
|
margin-left: 7.5px;
|
|
4156
|
-
width: 111px;
|
|
4157
4306
|
}
|
|
4158
4307
|
|
|
4159
4308
|
.e-de-ctn {
|
|
@@ -4166,9 +4315,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4166
4315
|
|
|
4167
4316
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4168
4317
|
border-radius: 2px;
|
|
4169
|
-
height: 34px;
|
|
4170
4318
|
margin-left: 7.5px;
|
|
4171
|
-
width: 125px;
|
|
4172
4319
|
}
|
|
4173
4320
|
|
|
4174
4321
|
.e-de-ctnr-toolbar {
|
|
@@ -4479,8 +4626,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4479
4626
|
|
|
4480
4627
|
.e-de-property-div-padding {
|
|
4481
4628
|
border-bottom: 0.5px solid #e0e0e0;
|
|
4482
|
-
padding
|
|
4483
|
-
padding-top: 12.5px;
|
|
4629
|
+
padding: 12.5px;
|
|
4484
4630
|
}
|
|
4485
4631
|
|
|
4486
4632
|
.e-de-ctnr-dropdown-ftr {
|
|
@@ -4493,7 +4639,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4493
4639
|
text-indent: 1.2em;
|
|
4494
4640
|
}
|
|
4495
4641
|
|
|
4496
|
-
.e-de-char-fmt-btn-left > button
|
|
4642
|
+
.e-de-char-fmt-btn-left > button,
|
|
4643
|
+
.e-de-insert-del-cell button {
|
|
4497
4644
|
width: 37.25px;
|
|
4498
4645
|
}
|
|
4499
4646
|
|
|
@@ -4509,7 +4656,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4509
4656
|
width: 149px;
|
|
4510
4657
|
}
|
|
4511
4658
|
|
|
4512
|
-
.e-bigger .e-de-char-fmt-btn-left > button
|
|
4659
|
+
.e-bigger .e-de-char-fmt-btn-left > button,
|
|
4660
|
+
.e-bigger .e-de-insert-del-cell button {
|
|
4513
4661
|
width: 37.25px;
|
|
4514
4662
|
}
|
|
4515
4663
|
|
|
@@ -4921,37 +5069,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4921
5069
|
padding-right: 12px;
|
|
4922
5070
|
}
|
|
4923
5071
|
|
|
4924
|
-
.e-de-border-style-div {
|
|
4925
|
-
margin-left: 12px;
|
|
4926
|
-
}
|
|
4927
|
-
|
|
4928
|
-
.e-de-border-style-div.e-de-rtl {
|
|
4929
|
-
margin-left: 0;
|
|
4930
|
-
margin-right: 12px;
|
|
4931
|
-
}
|
|
4932
|
-
|
|
4933
|
-
.e-de-insert-del-cell {
|
|
4934
|
-
margin-left: 12px;
|
|
4935
|
-
}
|
|
4936
|
-
|
|
4937
|
-
.e-de-insert-del-cell.e-de-rtl {
|
|
4938
|
-
margin-left: 0;
|
|
4939
|
-
margin-right: 12px;
|
|
4940
|
-
}
|
|
4941
|
-
|
|
4942
|
-
.e-de-cell-margin {
|
|
4943
|
-
margin-left: 12px;
|
|
4944
|
-
}
|
|
4945
|
-
|
|
4946
|
-
.e-de-align-text {
|
|
4947
|
-
margin-left: 12px;
|
|
4948
|
-
}
|
|
4949
|
-
|
|
4950
|
-
.e-de-align-text.e-de-rtl {
|
|
4951
|
-
margin-left: 0;
|
|
4952
|
-
margin-right: 12px;
|
|
4953
|
-
}
|
|
4954
|
-
|
|
4955
5072
|
.e-de-border-size-button {
|
|
4956
5073
|
height: 28px;
|
|
4957
5074
|
margin-top: 14px;
|
|
@@ -4963,27 +5080,22 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4963
5080
|
width: 100px;
|
|
4964
5081
|
}
|
|
4965
5082
|
|
|
4966
|
-
.e-de-cell-
|
|
4967
|
-
margin-left: 12px;
|
|
4968
|
-
}
|
|
4969
|
-
|
|
4970
|
-
.e-de-cell-div.e-de-rtl {
|
|
4971
|
-
margin-left: 0;
|
|
5083
|
+
.e-de-cell-text-box {
|
|
4972
5084
|
margin-right: 12px;
|
|
4973
5085
|
}
|
|
4974
5086
|
|
|
4975
|
-
.e-de-cell-text-box {
|
|
4976
|
-
margin-
|
|
5087
|
+
.e-de-pane-rtl .e-de-cell-text-box {
|
|
5088
|
+
margin-left: 12px;
|
|
5089
|
+
margin-right: 0;
|
|
4977
5090
|
}
|
|
4978
5091
|
|
|
4979
5092
|
.e-de-prop-fill-label {
|
|
4980
|
-
margin-left: 10.3px;
|
|
4981
5093
|
margin-right: 8px;
|
|
4982
5094
|
}
|
|
4983
5095
|
|
|
4984
5096
|
.e-de-prop-fill-label.e-de-rtl {
|
|
4985
5097
|
margin-left: 8px;
|
|
4986
|
-
margin-right:
|
|
5098
|
+
margin-right: 0;
|
|
4987
5099
|
}
|
|
4988
5100
|
|
|
4989
5101
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5017,35 +5129,18 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5017
5129
|
}
|
|
5018
5130
|
|
|
5019
5131
|
.e-bigger .e-de-prop-fill-label {
|
|
5020
|
-
margin-left:
|
|
5132
|
+
margin-left: 0;
|
|
5021
5133
|
margin-right: 9.8px;
|
|
5022
5134
|
}
|
|
5023
5135
|
|
|
5024
5136
|
.e-bigger .e-de-prop-fill-label.e-de-rtl {
|
|
5025
5137
|
margin-left: 9.8px;
|
|
5026
|
-
margin-right:
|
|
5138
|
+
margin-right: 0px;
|
|
5027
5139
|
}
|
|
5028
5140
|
|
|
5029
|
-
.e-bigger .e-de-cell-text-box {
|
|
5030
|
-
margin-right: 16px;
|
|
5031
|
-
}
|
|
5032
|
-
|
|
5033
|
-
.e-bigger .e-de-cell-div {
|
|
5141
|
+
.e-bigger .e-rtl .e-de-cell-text-box {
|
|
5034
5142
|
margin-left: 16px;
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
.e-bigger .e-de-cell-div.e-de-rtl {
|
|
5038
|
-
margin-left: 0;
|
|
5039
|
-
margin-right: 16px;
|
|
5040
|
-
}
|
|
5041
|
-
|
|
5042
|
-
.e-bigger .e-de-border-style-div {
|
|
5043
|
-
margin-left: 16px;
|
|
5044
|
-
}
|
|
5045
|
-
|
|
5046
|
-
.e-bigger .e-de-border-style-div.e-de-rtl {
|
|
5047
|
-
margin-left: 0;
|
|
5048
|
-
margin-right: 16px;
|
|
5143
|
+
margin-right: 0;
|
|
5049
5144
|
}
|
|
5050
5145
|
|
|
5051
5146
|
.e-bigger .e-de-color-picker {
|
|
@@ -5059,33 +5154,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5059
5154
|
width: 96px;
|
|
5060
5155
|
}
|
|
5061
5156
|
|
|
5062
|
-
.e-bigger .e-de-align-text {
|
|
5063
|
-
margin-left: 16px;
|
|
5064
|
-
}
|
|
5065
|
-
|
|
5066
|
-
.e-bigger .e-de-align-text.e-de-rtl {
|
|
5067
|
-
margin-left: 0;
|
|
5068
|
-
margin-right: 16px;
|
|
5069
|
-
}
|
|
5070
|
-
|
|
5071
|
-
.e-bigger .e-de-insert-del-cell {
|
|
5072
|
-
margin-left: 16px;
|
|
5073
|
-
}
|
|
5074
|
-
|
|
5075
|
-
.e-bigger .e-de-insert-del-cell.e-de-rtl {
|
|
5076
|
-
margin-left: 0;
|
|
5077
|
-
margin-right: 16px;
|
|
5078
|
-
}
|
|
5079
|
-
|
|
5080
|
-
.e-bigger .e-de-cell-margin {
|
|
5081
|
-
margin-left: 14px;
|
|
5082
|
-
}
|
|
5083
|
-
|
|
5084
|
-
.e-bigger .e-de-cell-margin.e-de-rtl {
|
|
5085
|
-
margin-left: 0;
|
|
5086
|
-
margin-right: 14px;
|
|
5087
|
-
}
|
|
5088
|
-
|
|
5089
5157
|
.e-bigger .e-de-stylediv {
|
|
5090
5158
|
padding-left: 16px;
|
|
5091
5159
|
}
|
|
@@ -5328,8 +5396,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5328
5396
|
|
|
5329
5397
|
.e-bigger .e-de-property-div-padding {
|
|
5330
5398
|
border-bottom: 0.5px solid #e0e0e0;
|
|
5331
|
-
padding
|
|
5332
|
-
padding-top: 15.5px;
|
|
5399
|
+
padding: 16px;
|
|
5333
5400
|
}
|
|
5334
5401
|
|
|
5335
5402
|
.e-bigger .e-de-font-clr-picker > div button,
|