@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
|
@@ -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: 400;
|
|
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 rgba(0, 0, 0, 0.87);
|
|
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: 8px;
|
|
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: 70px;
|
|
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: #f0f0f0;
|
|
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 24px !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 4px;
|
|
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 4px;
|
|
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: -10px;
|
|
3490
|
+
right: -10px;
|
|
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: 10px;
|
|
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: 400;
|
|
3471
|
-
margin-bottom:
|
|
3472
|
-
margin-top: 15px;
|
|
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: 15px;
|
|
3516
|
-
margin-top: 0;
|
|
3517
3661
|
}
|
|
3518
3662
|
|
|
3519
3663
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3533,7 +3677,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3533
3677
|
font-size: 16px;
|
|
3534
3678
|
font-weight: 400;
|
|
3535
3679
|
margin-bottom: 15px;
|
|
3536
|
-
margin-top: 15px;
|
|
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: 15px;
|
|
3581
|
-
margin-top: 0;
|
|
3582
3724
|
}
|
|
3583
3725
|
|
|
3584
3726
|
.e-de-rtl-btn-div {
|