@syncfusion/ej2-angular-documenteditor 19.4.55 → 20.1.48
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 +58 -0
- 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/material-dark.css
CHANGED
|
@@ -556,6 +556,86 @@
|
|
|
556
556
|
content: '\e91f';
|
|
557
557
|
}
|
|
558
558
|
|
|
559
|
+
.e-de-dlg-container {
|
|
560
|
+
padding-bottom: 12px;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.e-de-dlg-row {
|
|
564
|
+
display: -ms-flexbox;
|
|
565
|
+
display: flex;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.e-de-container-row {
|
|
569
|
+
display: -ms-flexbox;
|
|
570
|
+
display: flex;
|
|
571
|
+
padding-bottom: 12px;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.e-de-subcontainer-left {
|
|
575
|
+
padding-right: 6px;
|
|
576
|
+
width: 50%;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.e-de-subcontainer-right {
|
|
580
|
+
padding-left: 6px;
|
|
581
|
+
width: 50%;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.e-de-dlg-tab-first-child {
|
|
585
|
+
padding-top: 6px;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.e-de-dlg-heading {
|
|
589
|
+
display: block;
|
|
590
|
+
font-size: 14px;
|
|
591
|
+
font-weight: 400;
|
|
592
|
+
margin-bottom: 12px;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.e-rtl .e-de-subcontainer-left {
|
|
596
|
+
padding-left: 6px;
|
|
597
|
+
padding-right: 0;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.e-rtl .e-de-subcontainer-right {
|
|
601
|
+
padding-left: 0;
|
|
602
|
+
padding-right: 6px;
|
|
603
|
+
width: 50%;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.e-bigger .e-de-dlg-container {
|
|
607
|
+
padding-bottom: 16px;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.e-bigger .e-de-container-row {
|
|
611
|
+
padding-bottom: 16px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.e-bigger .e-de-subcontainer-left {
|
|
615
|
+
padding-right: 8px;
|
|
616
|
+
width: 50%;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.e-bigger .e-de-subcontainer-right {
|
|
620
|
+
padding-left: 8px;
|
|
621
|
+
width: 50%;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.e-bigger .e-de-dlg-tab-first-child {
|
|
625
|
+
padding-top: 8px;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.e-bigger .e-rtl .e-de-subcontainer-left {
|
|
629
|
+
padding-left: 8px;
|
|
630
|
+
padding-right: 0;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.e-bigger .e-rtl .e-de-subcontainer-right {
|
|
634
|
+
padding-left: 0;
|
|
635
|
+
padding-right: 8px;
|
|
636
|
+
width: 50%;
|
|
637
|
+
}
|
|
638
|
+
|
|
559
639
|
.e-de-blink-cursor {
|
|
560
640
|
border-left: 1px solid rgba(0, 0, 0, 0.87);
|
|
561
641
|
pointer-events: none;
|
|
@@ -724,7 +804,6 @@
|
|
|
724
804
|
.e-de-ff-radio-div {
|
|
725
805
|
display: -ms-inline-flexbox;
|
|
726
806
|
display: inline-flex;
|
|
727
|
-
margin-bottom: 26px;
|
|
728
807
|
margin-right: 16px;
|
|
729
808
|
}
|
|
730
809
|
|
|
@@ -1084,14 +1163,6 @@
|
|
|
1084
1163
|
float: left;
|
|
1085
1164
|
}
|
|
1086
1165
|
|
|
1087
|
-
.e-de-dlg-sub-header {
|
|
1088
|
-
display: block;
|
|
1089
|
-
font-size: 12px;
|
|
1090
|
-
font-weight: normal;
|
|
1091
|
-
margin-bottom: 15px;
|
|
1092
|
-
margin-top: 8px;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
1166
|
.e-de-dlg-footer .e-btn {
|
|
1096
1167
|
margin-left: 10px;
|
|
1097
1168
|
}
|
|
@@ -1208,7 +1279,8 @@
|
|
|
1208
1279
|
}
|
|
1209
1280
|
|
|
1210
1281
|
.e-de-op-more-less {
|
|
1211
|
-
display:
|
|
1282
|
+
display: -ms-inline-flexbox;
|
|
1283
|
+
display: inline-flex;
|
|
1212
1284
|
margin-top: 14px;
|
|
1213
1285
|
}
|
|
1214
1286
|
|
|
@@ -1486,7 +1558,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1486
1558
|
}
|
|
1487
1559
|
|
|
1488
1560
|
.e-documenteditor .e-de-op-close-button {
|
|
1489
|
-
left:
|
|
1561
|
+
left: 250px;
|
|
1490
1562
|
position: absolute;
|
|
1491
1563
|
top: 18px;
|
|
1492
1564
|
}
|
|
@@ -1501,7 +1573,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1501
1573
|
}
|
|
1502
1574
|
|
|
1503
1575
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1504
|
-
right:
|
|
1576
|
+
right: 255px;
|
|
1505
1577
|
}
|
|
1506
1578
|
|
|
1507
1579
|
.e-de-table-measure-lbl {
|
|
@@ -1867,12 +1939,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1867
1939
|
}
|
|
1868
1940
|
|
|
1869
1941
|
.e-de-font-dlg {
|
|
1870
|
-
width:
|
|
1942
|
+
width: max-content;
|
|
1871
1943
|
}
|
|
1872
1944
|
|
|
1873
1945
|
.e-de-hyperlink {
|
|
1874
|
-
|
|
1875
|
-
|
|
1946
|
+
width: 250px;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
.e-bigger .e-de-hyperlink {
|
|
1950
|
+
width: 300px;
|
|
1876
1951
|
}
|
|
1877
1952
|
|
|
1878
1953
|
.e-de-insert-table {
|
|
@@ -2036,13 +2111,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2036
2111
|
|
|
2037
2112
|
.e-button-custom {
|
|
2038
2113
|
height: 34px;
|
|
2039
|
-
|
|
2040
|
-
width: 80px;
|
|
2114
|
+
width: 100%;
|
|
2041
2115
|
}
|
|
2042
2116
|
|
|
2043
2117
|
.e-bigger .e-button-custom {
|
|
2044
2118
|
height: 37px;
|
|
2045
|
-
width:
|
|
2119
|
+
width: 100%;
|
|
2046
2120
|
}
|
|
2047
2121
|
|
|
2048
2122
|
.e-styles-listview,
|
|
@@ -2192,13 +2266,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2192
2266
|
}
|
|
2193
2267
|
|
|
2194
2268
|
.e-bigger .e-de-style-bold-button-size {
|
|
2195
|
-
margin-left:
|
|
2269
|
+
margin-left: 8px;
|
|
2196
2270
|
margin-right: 8px;
|
|
2197
2271
|
height: 35px;
|
|
2198
2272
|
}
|
|
2199
2273
|
|
|
2200
2274
|
.e-de-style-bold-button-size {
|
|
2201
|
-
margin-left:
|
|
2275
|
+
margin-left: 8px;
|
|
2202
2276
|
margin-right: 8px;
|
|
2203
2277
|
height: 31px;
|
|
2204
2278
|
}
|
|
@@ -2213,12 +2287,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2213
2287
|
}
|
|
2214
2288
|
|
|
2215
2289
|
.e-de-style-icon-button-first-size {
|
|
2216
|
-
margin-left:
|
|
2290
|
+
margin-left: 8px;
|
|
2217
2291
|
margin-right: 3px;
|
|
2218
2292
|
}
|
|
2219
2293
|
|
|
2220
2294
|
.e-de-style-icon-button-last-size {
|
|
2221
|
-
margin-right:
|
|
2295
|
+
margin-right: 8px;
|
|
2222
2296
|
}
|
|
2223
2297
|
|
|
2224
2298
|
.e-de-style-font-color-picker {
|
|
@@ -2666,6 +2740,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2666
2740
|
.e-de-rp-sub-content-div {
|
|
2667
2741
|
line-height: none;
|
|
2668
2742
|
font-size: 12px;
|
|
2743
|
+
margin-bottom: 8px;
|
|
2669
2744
|
}
|
|
2670
2745
|
|
|
2671
2746
|
.e-de-bullet-icons {
|
|
@@ -2720,7 +2795,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2720
2795
|
}
|
|
2721
2796
|
|
|
2722
2797
|
.e-bigger .e-de-font-dlg {
|
|
2723
|
-
width:
|
|
2798
|
+
width: max-content;
|
|
2724
2799
|
}
|
|
2725
2800
|
|
|
2726
2801
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -2750,6 +2825,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2750
2825
|
|
|
2751
2826
|
.e-bigger .e-de-rp-header {
|
|
2752
2827
|
font-size: 16px;
|
|
2828
|
+
width: 75%;
|
|
2753
2829
|
}
|
|
2754
2830
|
|
|
2755
2831
|
.e-de-restrict-format {
|
|
@@ -2777,6 +2853,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2777
2853
|
font-weight: normal;
|
|
2778
2854
|
opacity: 0.87;
|
|
2779
2855
|
color: #9e9e9e;
|
|
2856
|
+
width: 75%;
|
|
2780
2857
|
}
|
|
2781
2858
|
|
|
2782
2859
|
.e-de-rp-user .e-checkbox-wrapper {
|
|
@@ -2790,20 +2867,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2790
2867
|
opacity: 0.87;
|
|
2791
2868
|
border-radius: 2px;
|
|
2792
2869
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2793
|
-
height: 36px;
|
|
2794
|
-
margin: 0 0 !important;
|
|
2795
2870
|
}
|
|
2796
2871
|
|
|
2797
2872
|
.e-bigger .e-de-rp-btn-enforce {
|
|
2798
|
-
margin: 0;
|
|
2799
|
-
width: 100%;
|
|
2800
2873
|
padding-left: 4px;
|
|
2801
2874
|
padding-right: 4px;
|
|
2802
2875
|
}
|
|
2803
2876
|
|
|
2804
2877
|
.e-de-rp-nav-btn {
|
|
2805
|
-
|
|
2806
|
-
width: 210px;
|
|
2878
|
+
width: auto;
|
|
2807
2879
|
}
|
|
2808
2880
|
|
|
2809
2881
|
.e-de-rp-btn-stop-enforce {
|
|
@@ -2812,8 +2884,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2812
2884
|
opacity: 0.87;
|
|
2813
2885
|
border-radius: 2px;
|
|
2814
2886
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2815
|
-
height: 36px;
|
|
2816
|
-
margin: 0 46px;
|
|
2817
2887
|
}
|
|
2818
2888
|
|
|
2819
2889
|
.e-de-rp-sub-div {
|
|
@@ -2824,6 +2894,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2824
2894
|
.e-de-restrict-pane {
|
|
2825
2895
|
padding-left: 0;
|
|
2826
2896
|
padding-top: 0;
|
|
2897
|
+
padding-right: 0;
|
|
2827
2898
|
}
|
|
2828
2899
|
|
|
2829
2900
|
.e-de-rp-whole-header {
|
|
@@ -2836,15 +2907,14 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2836
2907
|
border-radius: 2px;
|
|
2837
2908
|
font-size: 12px;
|
|
2838
2909
|
height: 110px;
|
|
2839
|
-
width: 238px;
|
|
2840
2910
|
}
|
|
2841
2911
|
|
|
2842
2912
|
.e-de-rp-enforce {
|
|
2843
|
-
padding
|
|
2913
|
+
padding: 12px;
|
|
2844
2914
|
}
|
|
2845
2915
|
|
|
2846
2916
|
.e-de-rp-enforce-nav {
|
|
2847
|
-
margin: 12px
|
|
2917
|
+
margin: 0 12px 12px 12px;
|
|
2848
2918
|
}
|
|
2849
2919
|
|
|
2850
2920
|
.e-de-enforce-dlg-title {
|
|
@@ -2855,7 +2925,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2855
2925
|
|
|
2856
2926
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
2857
2927
|
height: 16px;
|
|
2858
|
-
margin-bottom: 8px;
|
|
2859
2928
|
width: 300px;
|
|
2860
2929
|
}
|
|
2861
2930
|
|
|
@@ -2877,6 +2946,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2877
2946
|
|
|
2878
2947
|
.e-de-user-dlg-list {
|
|
2879
2948
|
margin-bottom: 15px;
|
|
2949
|
+
display: -ms-inline-flexbox;
|
|
2950
|
+
display: inline-flex;
|
|
2880
2951
|
}
|
|
2881
2952
|
|
|
2882
2953
|
.e-de-user-listview {
|
|
@@ -2909,25 +2980,23 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2909
2980
|
padding: 12px 12px 24px;
|
|
2910
2981
|
}
|
|
2911
2982
|
|
|
2912
|
-
.e-de-rp-stop-div3 {
|
|
2913
|
-
padding: 0 0 12px 12px;
|
|
2914
|
-
}
|
|
2915
|
-
|
|
2916
2983
|
.e-de-rp-close-icon {
|
|
2917
2984
|
float: right;
|
|
2918
2985
|
position: relative;
|
|
2919
2986
|
top: -7px;
|
|
2987
|
+
right: -7px;
|
|
2920
2988
|
}
|
|
2921
2989
|
|
|
2922
2990
|
.e-de-restrict-pane {
|
|
2923
2991
|
height: 100%;
|
|
2924
2992
|
overflow: auto;
|
|
2993
|
+
overflow-x: hidden;
|
|
2925
2994
|
width: 268px;
|
|
2926
2995
|
}
|
|
2927
2996
|
|
|
2928
2997
|
.e-de-rp-nav-lbl {
|
|
2929
2998
|
font-size: 13px;
|
|
2930
|
-
margin: 0
|
|
2999
|
+
margin: 0 12px;
|
|
2931
3000
|
}
|
|
2932
3001
|
|
|
2933
3002
|
.e-documenteditor-optionspane {
|
|
@@ -3046,7 +3115,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3046
3115
|
color: #4d841e;
|
|
3047
3116
|
padding: 5px 6px;
|
|
3048
3117
|
text-transform: initial;
|
|
3049
|
-
width: 66px;
|
|
3050
3118
|
}
|
|
3051
3119
|
|
|
3052
3120
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3055,7 +3123,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3055
3123
|
color: #fff;
|
|
3056
3124
|
padding: 5px 6px;
|
|
3057
3125
|
text-transform: initial;
|
|
3058
|
-
width: 66px;
|
|
3059
3126
|
}
|
|
3060
3127
|
|
|
3061
3128
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3065,7 +3132,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3065
3132
|
padding: 5px 6px;
|
|
3066
3133
|
margin-left: 8px;
|
|
3067
3134
|
text-transform: initial;
|
|
3068
|
-
width: 64px;
|
|
3069
3135
|
}
|
|
3070
3136
|
|
|
3071
3137
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3075,7 +3141,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3075
3141
|
padding: 5px 6px;
|
|
3076
3142
|
margin-left: 8px;
|
|
3077
3143
|
text-transform: initial;
|
|
3078
|
-
width: 64px;
|
|
3079
3144
|
}
|
|
3080
3145
|
|
|
3081
3146
|
.e-de-track-chngs-count {
|
|
@@ -3194,7 +3259,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3194
3259
|
font-size: 13px;
|
|
3195
3260
|
font-weight: normal;
|
|
3196
3261
|
padding-left: 8px;
|
|
3197
|
-
padding-left: 8px;
|
|
3198
3262
|
width: 90%;
|
|
3199
3263
|
}
|
|
3200
3264
|
|
|
@@ -3352,6 +3416,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3352
3416
|
|
|
3353
3417
|
.e-rtl .e-de-rp-close-icon {
|
|
3354
3418
|
float: left;
|
|
3419
|
+
right: 7px;
|
|
3355
3420
|
}
|
|
3356
3421
|
|
|
3357
3422
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3412,6 +3477,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3412
3477
|
padding-right: 8px;
|
|
3413
3478
|
}
|
|
3414
3479
|
|
|
3480
|
+
.e-bigger .e-de-rp-close-icon {
|
|
3481
|
+
float: right;
|
|
3482
|
+
position: relative;
|
|
3483
|
+
top: -8px;
|
|
3484
|
+
right: -10px;
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3415
3487
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3416
3488
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3417
3489
|
margin-right: 12px;
|
|
@@ -3448,6 +3520,80 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3448
3520
|
top: 0;
|
|
3449
3521
|
}
|
|
3450
3522
|
|
|
3523
|
+
.e-de-rp-mu-btn {
|
|
3524
|
+
margin-top: 3px;
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
|
+
.e-rtl .e-de-cmt-author-name {
|
|
3528
|
+
padding-left: 0%;
|
|
3529
|
+
padding-right: 8px;
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
.e-bigger .e-de-cmt-author-name {
|
|
3533
|
+
padding-left: 8px;
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
.e-bigger .e-de-cmt-rply-view {
|
|
3537
|
+
margin-top: 12px;
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
.e-bigger .e-de-cmt-sub-container {
|
|
3541
|
+
padding: 8px;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3545
|
+
padding-left: 6px;
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3549
|
+
padding-left: 7px;
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3553
|
+
padding: 0%;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
3557
|
+
width: auto;
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
.e-bigger .e-de-rp-whole-header {
|
|
3561
|
+
padding: 12px;
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3564
|
+
.e-bigger .e-de-rp-sub-div {
|
|
3565
|
+
border-bottom: 1px solid #e4e4e4;
|
|
3566
|
+
padding: 12px;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
.e-bigger .e-de-rp-enforce {
|
|
3570
|
+
padding: 12px;
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3574
|
+
width: 300px;
|
|
3575
|
+
}
|
|
3576
|
+
|
|
3577
|
+
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3578
|
+
padding-left: 0%;
|
|
3579
|
+
padding-right: 8px;
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3583
|
+
padding-left: 8px;
|
|
3584
|
+
padding-right: 6px;
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3588
|
+
padding-left: 8px;
|
|
3589
|
+
padding-right: 7px;
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3593
|
+
float: left;
|
|
3594
|
+
right: 10px;
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3451
3597
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3452
3598
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3453
3599
|
font-size: 14px;
|
|
@@ -3462,8 +3608,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3462
3608
|
display: block;
|
|
3463
3609
|
font-size: 14px;
|
|
3464
3610
|
font-weight: 700;
|
|
3465
|
-
margin-bottom:
|
|
3466
|
-
margin-top: 24px;
|
|
3611
|
+
margin-bottom: 8px;
|
|
3467
3612
|
}
|
|
3468
3613
|
|
|
3469
3614
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
@@ -3507,7 +3652,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3507
3652
|
font-size: 12px;
|
|
3508
3653
|
font-weight: normal;
|
|
3509
3654
|
margin-bottom: 8px;
|
|
3510
|
-
margin-top: 0;
|
|
3511
3655
|
}
|
|
3512
3656
|
|
|
3513
3657
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3526,8 +3670,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3526
3670
|
display: block;
|
|
3527
3671
|
font-size: 14px;
|
|
3528
3672
|
font-weight: 700;
|
|
3529
|
-
margin-bottom:
|
|
3530
|
-
margin-top: 24px;
|
|
3673
|
+
margin-bottom: 8px;
|
|
3531
3674
|
opacity: 87%;
|
|
3532
3675
|
}
|
|
3533
3676
|
|
|
@@ -3572,7 +3715,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3572
3715
|
font-size: 12px;
|
|
3573
3716
|
font-weight: normal;
|
|
3574
3717
|
margin-bottom: 8px;
|
|
3575
|
-
margin-top: 0;
|
|
3576
3718
|
}
|
|
3577
3719
|
|
|
3578
3720
|
.e-de-rtl-btn-div {
|
|
@@ -4036,6 +4178,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4036
4178
|
top: 100px;
|
|
4037
4179
|
}
|
|
4038
4180
|
|
|
4181
|
+
.e-de-scrollbar-hide::-webkit-scrollbar {
|
|
4182
|
+
width: 0;
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
.e-de-scrollbar-hide {
|
|
4186
|
+
-ms-overflow-style: none;
|
|
4187
|
+
scrollbar-width: none;
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4039
4190
|
.e-de-toolbar {
|
|
4040
4191
|
height: 100%;
|
|
4041
4192
|
}
|
|
@@ -4081,6 +4232,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4081
4232
|
border: 0;
|
|
4082
4233
|
color: #fff;
|
|
4083
4234
|
float: right;
|
|
4235
|
+
font-weight: 400;
|
|
4084
4236
|
height: 33px;
|
|
4085
4237
|
}
|
|
4086
4238
|
|
|
@@ -4109,9 +4261,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4109
4261
|
border: 0;
|
|
4110
4262
|
box-shadow: none;
|
|
4111
4263
|
float: right;
|
|
4112
|
-
height: 33px;
|
|
4113
4264
|
margin-left: calc(100% - 380px);
|
|
4114
|
-
width: 33px;
|
|
4115
4265
|
}
|
|
4116
4266
|
|
|
4117
4267
|
.e-bigger .e-btn-pageweb-spellcheck {
|
|
@@ -4147,9 +4297,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4147
4297
|
|
|
4148
4298
|
.e-de-statusbar-spellcheck {
|
|
4149
4299
|
border-radius: 2px;
|
|
4150
|
-
|
|
4300
|
+
font-weight: 400;
|
|
4151
4301
|
margin-left: 7.5px;
|
|
4152
|
-
width: 91px;
|
|
4153
4302
|
}
|
|
4154
4303
|
|
|
4155
4304
|
.e-de-ctn {
|
|
@@ -4162,9 +4311,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4162
4311
|
|
|
4163
4312
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4164
4313
|
border-radius: 2px;
|
|
4165
|
-
height: 34px;
|
|
4166
4314
|
margin-left: 7.5px;
|
|
4167
|
-
width: 111px;
|
|
4168
4315
|
}
|
|
4169
4316
|
|
|
4170
4317
|
.e-de-ctnr-toolbar {
|
|
@@ -4473,8 +4620,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4473
4620
|
|
|
4474
4621
|
.e-de-property-div-padding {
|
|
4475
4622
|
border-bottom: 0.5px solid #616161;
|
|
4476
|
-
padding
|
|
4477
|
-
padding-top: 12.5px;
|
|
4623
|
+
padding: 12.5px;
|
|
4478
4624
|
}
|
|
4479
4625
|
|
|
4480
4626
|
.e-de-ctnr-dropdown-ftr {
|
|
@@ -4487,7 +4633,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4487
4633
|
text-indent: 1.2em;
|
|
4488
4634
|
}
|
|
4489
4635
|
|
|
4490
|
-
.e-de-char-fmt-btn-left > button
|
|
4636
|
+
.e-de-char-fmt-btn-left > button,
|
|
4637
|
+
.e-de-insert-del-cell button {
|
|
4491
4638
|
width: 38.5px;
|
|
4492
4639
|
}
|
|
4493
4640
|
|
|
@@ -4503,7 +4650,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4503
4650
|
width: 150px;
|
|
4504
4651
|
}
|
|
4505
4652
|
|
|
4506
|
-
.e-bigger .e-de-char-fmt-btn-left > button
|
|
4653
|
+
.e-bigger .e-de-char-fmt-btn-left > button,
|
|
4654
|
+
.e-bigger .e-de-insert-del-cell button {
|
|
4507
4655
|
width: 38.5px;
|
|
4508
4656
|
}
|
|
4509
4657
|
|
|
@@ -4913,37 +5061,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4913
5061
|
padding-right: 12px;
|
|
4914
5062
|
}
|
|
4915
5063
|
|
|
4916
|
-
.e-de-border-style-div {
|
|
4917
|
-
margin-left: 12px;
|
|
4918
|
-
}
|
|
4919
|
-
|
|
4920
|
-
.e-de-border-style-div.e-de-rtl {
|
|
4921
|
-
margin-left: 0;
|
|
4922
|
-
margin-right: 12px;
|
|
4923
|
-
}
|
|
4924
|
-
|
|
4925
|
-
.e-de-insert-del-cell {
|
|
4926
|
-
margin-left: 12px;
|
|
4927
|
-
}
|
|
4928
|
-
|
|
4929
|
-
.e-de-insert-del-cell.e-de-rtl {
|
|
4930
|
-
margin-left: 0;
|
|
4931
|
-
margin-right: 12px;
|
|
4932
|
-
}
|
|
4933
|
-
|
|
4934
|
-
.e-de-cell-margin {
|
|
4935
|
-
margin-left: 12px;
|
|
4936
|
-
}
|
|
4937
|
-
|
|
4938
|
-
.e-de-align-text {
|
|
4939
|
-
margin-left: 12px;
|
|
4940
|
-
}
|
|
4941
|
-
|
|
4942
|
-
.e-de-align-text.e-de-rtl {
|
|
4943
|
-
margin-left: 0;
|
|
4944
|
-
margin-right: 12px;
|
|
4945
|
-
}
|
|
4946
|
-
|
|
4947
5064
|
.e-de-border-size-button {
|
|
4948
5065
|
height: 28px;
|
|
4949
5066
|
margin-top: 14px;
|
|
@@ -4955,27 +5072,22 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
4955
5072
|
width: 100px;
|
|
4956
5073
|
}
|
|
4957
5074
|
|
|
4958
|
-
.e-de-cell-
|
|
4959
|
-
margin-left: 12px;
|
|
4960
|
-
}
|
|
4961
|
-
|
|
4962
|
-
.e-de-cell-div.e-de-rtl {
|
|
4963
|
-
margin-left: 0;
|
|
5075
|
+
.e-de-cell-text-box {
|
|
4964
5076
|
margin-right: 12px;
|
|
4965
5077
|
}
|
|
4966
5078
|
|
|
4967
|
-
.e-de-cell-text-box {
|
|
4968
|
-
margin-
|
|
5079
|
+
.e-de-pane-rtl .e-de-cell-text-box {
|
|
5080
|
+
margin-left: 12px;
|
|
5081
|
+
margin-right: 0;
|
|
4969
5082
|
}
|
|
4970
5083
|
|
|
4971
5084
|
.e-de-prop-fill-label {
|
|
4972
|
-
margin-left: 10.3px;
|
|
4973
5085
|
margin-right: 8px;
|
|
4974
5086
|
}
|
|
4975
5087
|
|
|
4976
5088
|
.e-de-prop-fill-label.e-de-rtl {
|
|
4977
5089
|
margin-left: 8px;
|
|
4978
|
-
margin-right:
|
|
5090
|
+
margin-right: 0;
|
|
4979
5091
|
}
|
|
4980
5092
|
|
|
4981
5093
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5009,35 +5121,18 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5009
5121
|
}
|
|
5010
5122
|
|
|
5011
5123
|
.e-bigger .e-de-prop-fill-label {
|
|
5012
|
-
margin-left:
|
|
5124
|
+
margin-left: 0;
|
|
5013
5125
|
margin-right: 9.8px;
|
|
5014
5126
|
}
|
|
5015
5127
|
|
|
5016
5128
|
.e-bigger .e-de-prop-fill-label.e-de-rtl {
|
|
5017
5129
|
margin-left: 9.8px;
|
|
5018
|
-
margin-right:
|
|
5019
|
-
}
|
|
5020
|
-
|
|
5021
|
-
.e-bigger .e-de-cell-text-box {
|
|
5022
|
-
margin-right: 16px;
|
|
5023
|
-
}
|
|
5024
|
-
|
|
5025
|
-
.e-bigger .e-de-cell-div {
|
|
5026
|
-
margin-left: 16px;
|
|
5130
|
+
margin-right: 0px;
|
|
5027
5131
|
}
|
|
5028
5132
|
|
|
5029
|
-
.e-bigger .e-de-cell-
|
|
5030
|
-
margin-left: 0;
|
|
5031
|
-
margin-right: 16px;
|
|
5032
|
-
}
|
|
5033
|
-
|
|
5034
|
-
.e-bigger .e-de-border-style-div {
|
|
5133
|
+
.e-bigger .e-rtl .e-de-cell-text-box {
|
|
5035
5134
|
margin-left: 16px;
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
.e-bigger .e-de-border-style-div.e-de-rtl {
|
|
5039
|
-
margin-left: 0;
|
|
5040
|
-
margin-right: 16px;
|
|
5135
|
+
margin-right: 0;
|
|
5041
5136
|
}
|
|
5042
5137
|
|
|
5043
5138
|
.e-bigger .e-de-color-picker {
|
|
@@ -5051,33 +5146,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5051
5146
|
width: 96px;
|
|
5052
5147
|
}
|
|
5053
5148
|
|
|
5054
|
-
.e-bigger .e-de-align-text {
|
|
5055
|
-
margin-left: 16px;
|
|
5056
|
-
}
|
|
5057
|
-
|
|
5058
|
-
.e-bigger .e-de-align-text.e-de-rtl {
|
|
5059
|
-
margin-left: 0;
|
|
5060
|
-
margin-right: 16px;
|
|
5061
|
-
}
|
|
5062
|
-
|
|
5063
|
-
.e-bigger .e-de-insert-del-cell {
|
|
5064
|
-
margin-left: 16px;
|
|
5065
|
-
}
|
|
5066
|
-
|
|
5067
|
-
.e-bigger .e-de-insert-del-cell.e-de-rtl {
|
|
5068
|
-
margin-left: 0;
|
|
5069
|
-
margin-right: 16px;
|
|
5070
|
-
}
|
|
5071
|
-
|
|
5072
|
-
.e-bigger .e-de-cell-margin {
|
|
5073
|
-
margin-left: 14px;
|
|
5074
|
-
}
|
|
5075
|
-
|
|
5076
|
-
.e-bigger .e-de-cell-margin.e-de-rtl {
|
|
5077
|
-
margin-left: 0;
|
|
5078
|
-
margin-right: 14px;
|
|
5079
|
-
}
|
|
5080
|
-
|
|
5081
5149
|
.e-bigger .e-de-stylediv {
|
|
5082
5150
|
padding-left: 16px;
|
|
5083
5151
|
}
|
|
@@ -5320,8 +5388,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
5320
5388
|
|
|
5321
5389
|
.e-bigger .e-de-property-div-padding {
|
|
5322
5390
|
border-bottom: 0.5px solid #616161;
|
|
5323
|
-
padding
|
|
5324
|
-
padding-top: 15.5px;
|
|
5391
|
+
padding: 16px;
|
|
5325
5392
|
}
|
|
5326
5393
|
|
|
5327
5394
|
.e-bigger .e-de-font-clr-picker > div button,
|