@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 #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: 8px;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
1172
|
.e-de-dlg-footer .e-btn {
|
|
1102
1173
|
margin-left: 10px;
|
|
1103
1174
|
}
|
|
@@ -1210,7 +1281,8 @@
|
|
|
1210
1281
|
}
|
|
1211
1282
|
|
|
1212
1283
|
.e-de-op-more-less {
|
|
1213
|
-
display:
|
|
1284
|
+
display: -ms-inline-flexbox;
|
|
1285
|
+
display: inline-flex;
|
|
1214
1286
|
margin-top: 14px;
|
|
1215
1287
|
}
|
|
1216
1288
|
|
|
@@ -1488,7 +1560,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1488
1560
|
}
|
|
1489
1561
|
|
|
1490
1562
|
.e-documenteditor .e-de-op-close-button {
|
|
1491
|
-
left:
|
|
1563
|
+
left: 250px;
|
|
1492
1564
|
position: absolute;
|
|
1493
1565
|
top: 18px;
|
|
1494
1566
|
}
|
|
@@ -1503,7 +1575,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1503
1575
|
}
|
|
1504
1576
|
|
|
1505
1577
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1506
|
-
right:
|
|
1578
|
+
right: 255px;
|
|
1507
1579
|
}
|
|
1508
1580
|
|
|
1509
1581
|
.e-de-table-measure-lbl {
|
|
@@ -1869,12 +1941,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1869
1941
|
}
|
|
1870
1942
|
|
|
1871
1943
|
.e-de-font-dlg {
|
|
1872
|
-
width:
|
|
1944
|
+
width: max-content;
|
|
1873
1945
|
}
|
|
1874
1946
|
|
|
1875
1947
|
.e-de-hyperlink {
|
|
1876
|
-
|
|
1877
|
-
|
|
1948
|
+
width: 250px;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.e-bigger .e-de-hyperlink {
|
|
1952
|
+
width: 300px;
|
|
1878
1953
|
}
|
|
1879
1954
|
|
|
1880
1955
|
.e-de-insert-table {
|
|
@@ -2038,13 +2113,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2038
2113
|
|
|
2039
2114
|
.e-button-custom {
|
|
2040
2115
|
height: 32px;
|
|
2041
|
-
|
|
2042
|
-
width: 70px;
|
|
2116
|
+
width: 100%;
|
|
2043
2117
|
}
|
|
2044
2118
|
|
|
2045
2119
|
.e-bigger .e-button-custom {
|
|
2046
2120
|
height: 37px;
|
|
2047
|
-
width:
|
|
2121
|
+
width: 100%;
|
|
2048
2122
|
}
|
|
2049
2123
|
|
|
2050
2124
|
.e-styles-listview,
|
|
@@ -2194,13 +2268,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2194
2268
|
}
|
|
2195
2269
|
|
|
2196
2270
|
.e-bigger .e-de-style-bold-button-size {
|
|
2197
|
-
margin-left:
|
|
2271
|
+
margin-left: 8px;
|
|
2198
2272
|
margin-right: 8px;
|
|
2199
2273
|
height: 35px;
|
|
2200
2274
|
}
|
|
2201
2275
|
|
|
2202
2276
|
.e-de-style-bold-button-size {
|
|
2203
|
-
margin-left:
|
|
2277
|
+
margin-left: 8px;
|
|
2204
2278
|
margin-right: 8px;
|
|
2205
2279
|
height: 31px;
|
|
2206
2280
|
}
|
|
@@ -2215,12 +2289,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2215
2289
|
}
|
|
2216
2290
|
|
|
2217
2291
|
.e-de-style-icon-button-first-size {
|
|
2218
|
-
margin-left:
|
|
2292
|
+
margin-left: 8px;
|
|
2219
2293
|
margin-right: 3px;
|
|
2220
2294
|
}
|
|
2221
2295
|
|
|
2222
2296
|
.e-de-style-icon-button-last-size {
|
|
2223
|
-
margin-right:
|
|
2297
|
+
margin-right: 8px;
|
|
2224
2298
|
}
|
|
2225
2299
|
|
|
2226
2300
|
.e-de-style-font-color-picker {
|
|
@@ -2668,6 +2742,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2668
2742
|
.e-de-rp-sub-content-div {
|
|
2669
2743
|
line-height: none;
|
|
2670
2744
|
font-size: 12px;
|
|
2745
|
+
margin-bottom: 8px;
|
|
2671
2746
|
}
|
|
2672
2747
|
|
|
2673
2748
|
.e-de-bullet-icons {
|
|
@@ -2722,7 +2797,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2722
2797
|
}
|
|
2723
2798
|
|
|
2724
2799
|
.e-bigger .e-de-font-dlg {
|
|
2725
|
-
width:
|
|
2800
|
+
width: max-content;
|
|
2726
2801
|
}
|
|
2727
2802
|
|
|
2728
2803
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -2752,6 +2827,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2752
2827
|
|
|
2753
2828
|
.e-bigger .e-de-rp-header {
|
|
2754
2829
|
font-size: 16px;
|
|
2830
|
+
width: 75%;
|
|
2755
2831
|
}
|
|
2756
2832
|
|
|
2757
2833
|
.e-de-restrict-format {
|
|
@@ -2779,6 +2855,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2779
2855
|
font-weight: normal;
|
|
2780
2856
|
opacity: 0.87;
|
|
2781
2857
|
color: #777;
|
|
2858
|
+
width: 75%;
|
|
2782
2859
|
}
|
|
2783
2860
|
|
|
2784
2861
|
.e-de-rp-user .e-checkbox-wrapper {
|
|
@@ -2792,20 +2869,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2792
2869
|
opacity: 0.87;
|
|
2793
2870
|
border-radius: 2px;
|
|
2794
2871
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2795
|
-
height: 36px;
|
|
2796
|
-
margin: 0 24px !important;
|
|
2797
2872
|
}
|
|
2798
2873
|
|
|
2799
2874
|
.e-bigger .e-de-rp-btn-enforce {
|
|
2800
|
-
margin: 0;
|
|
2801
|
-
width: 100%;
|
|
2802
2875
|
padding-left: 10px;
|
|
2803
2876
|
padding-right: 10px;
|
|
2804
2877
|
}
|
|
2805
2878
|
|
|
2806
2879
|
.e-de-rp-nav-btn {
|
|
2807
|
-
|
|
2808
|
-
width: 210px;
|
|
2880
|
+
width: auto;
|
|
2809
2881
|
}
|
|
2810
2882
|
|
|
2811
2883
|
.e-de-rp-btn-stop-enforce {
|
|
@@ -2814,8 +2886,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2814
2886
|
opacity: 0.87;
|
|
2815
2887
|
border-radius: 2px;
|
|
2816
2888
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2817
|
-
height: 36px;
|
|
2818
|
-
margin: 0 46px;
|
|
2819
2889
|
}
|
|
2820
2890
|
|
|
2821
2891
|
.e-de-rp-sub-div {
|
|
@@ -2826,6 +2896,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2826
2896
|
.e-de-restrict-pane {
|
|
2827
2897
|
padding-left: 0;
|
|
2828
2898
|
padding-top: 0;
|
|
2899
|
+
padding-right: 0;
|
|
2829
2900
|
}
|
|
2830
2901
|
|
|
2831
2902
|
.e-de-rp-whole-header {
|
|
@@ -2838,15 +2909,14 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2838
2909
|
border-radius: 2px;
|
|
2839
2910
|
font-size: 12px;
|
|
2840
2911
|
height: 110px;
|
|
2841
|
-
width: 238px;
|
|
2842
2912
|
}
|
|
2843
2913
|
|
|
2844
2914
|
.e-de-rp-enforce {
|
|
2845
|
-
padding
|
|
2915
|
+
padding: 12px;
|
|
2846
2916
|
}
|
|
2847
2917
|
|
|
2848
2918
|
.e-de-rp-enforce-nav {
|
|
2849
|
-
margin: 12px
|
|
2919
|
+
margin: 0 12px 12px 12px;
|
|
2850
2920
|
}
|
|
2851
2921
|
|
|
2852
2922
|
.e-de-enforce-dlg-title {
|
|
@@ -2857,7 +2927,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2857
2927
|
|
|
2858
2928
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
2859
2929
|
height: 32px;
|
|
2860
|
-
margin-bottom: 8px;
|
|
2861
2930
|
width: 300px;
|
|
2862
2931
|
}
|
|
2863
2932
|
|
|
@@ -2879,6 +2948,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2879
2948
|
|
|
2880
2949
|
.e-de-user-dlg-list {
|
|
2881
2950
|
margin-bottom: 15px;
|
|
2951
|
+
display: -ms-inline-flexbox;
|
|
2952
|
+
display: inline-flex;
|
|
2882
2953
|
}
|
|
2883
2954
|
|
|
2884
2955
|
.e-de-user-listview {
|
|
@@ -2911,25 +2982,23 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2911
2982
|
padding: 12px 12px 24px;
|
|
2912
2983
|
}
|
|
2913
2984
|
|
|
2914
|
-
.e-de-rp-stop-div3 {
|
|
2915
|
-
padding: 0 0 12px 12px;
|
|
2916
|
-
}
|
|
2917
|
-
|
|
2918
2985
|
.e-de-rp-close-icon {
|
|
2919
2986
|
float: right;
|
|
2920
2987
|
position: relative;
|
|
2921
2988
|
top: -7px;
|
|
2989
|
+
right: -8px;
|
|
2922
2990
|
}
|
|
2923
2991
|
|
|
2924
2992
|
.e-de-restrict-pane {
|
|
2925
2993
|
height: 100%;
|
|
2926
2994
|
overflow: auto;
|
|
2995
|
+
overflow-x: hidden;
|
|
2927
2996
|
width: 268px;
|
|
2928
2997
|
}
|
|
2929
2998
|
|
|
2930
2999
|
.e-de-rp-nav-lbl {
|
|
2931
3000
|
font-size: 13px;
|
|
2932
|
-
margin: 0
|
|
3001
|
+
margin: 0 12px;
|
|
2933
3002
|
}
|
|
2934
3003
|
|
|
2935
3004
|
.e-documenteditor-optionspane {
|
|
@@ -3048,7 +3117,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3048
3117
|
color: #4d841e;
|
|
3049
3118
|
padding: 5px 4px;
|
|
3050
3119
|
text-transform: initial;
|
|
3051
|
-
width: 66px;
|
|
3052
3120
|
}
|
|
3053
3121
|
|
|
3054
3122
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3057,7 +3125,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3057
3125
|
color: #fff;
|
|
3058
3126
|
padding: 5px 4px;
|
|
3059
3127
|
text-transform: initial;
|
|
3060
|
-
width: 66px;
|
|
3061
3128
|
}
|
|
3062
3129
|
|
|
3063
3130
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3067,7 +3134,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3067
3134
|
padding: 5px 6px;
|
|
3068
3135
|
margin-left: 8px;
|
|
3069
3136
|
text-transform: initial;
|
|
3070
|
-
width: 64px;
|
|
3071
3137
|
}
|
|
3072
3138
|
|
|
3073
3139
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3077,7 +3143,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3077
3143
|
padding: 5px 6px;
|
|
3078
3144
|
margin-left: 8px;
|
|
3079
3145
|
text-transform: initial;
|
|
3080
|
-
width: 64px;
|
|
3081
3146
|
}
|
|
3082
3147
|
|
|
3083
3148
|
.e-de-track-chngs-count {
|
|
@@ -3196,7 +3261,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3196
3261
|
font-size: 13px;
|
|
3197
3262
|
font-weight: normal;
|
|
3198
3263
|
padding-left: 8px;
|
|
3199
|
-
padding-left: 8px;
|
|
3200
3264
|
width: 90%;
|
|
3201
3265
|
}
|
|
3202
3266
|
|
|
@@ -3355,6 +3419,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3355
3419
|
|
|
3356
3420
|
.e-rtl .e-de-rp-close-icon {
|
|
3357
3421
|
float: left;
|
|
3422
|
+
right: 8px;
|
|
3358
3423
|
}
|
|
3359
3424
|
|
|
3360
3425
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3415,6 +3480,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3415
3480
|
padding-right: 8px;
|
|
3416
3481
|
}
|
|
3417
3482
|
|
|
3483
|
+
.e-bigger .e-de-rp-close-icon {
|
|
3484
|
+
float: right;
|
|
3485
|
+
position: relative;
|
|
3486
|
+
top: -10px;
|
|
3487
|
+
right: -10px;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3418
3490
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3419
3491
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3420
3492
|
margin-right: 12px;
|
|
@@ -3451,6 +3523,80 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3451
3523
|
top: 0;
|
|
3452
3524
|
}
|
|
3453
3525
|
|
|
3526
|
+
.e-de-rp-mu-btn {
|
|
3527
|
+
margin-top: 3px;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
.e-rtl .e-de-cmt-author-name {
|
|
3531
|
+
padding-left: 0%;
|
|
3532
|
+
padding-right: 8px;
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
.e-bigger .e-de-cmt-author-name {
|
|
3536
|
+
padding-left: 8px;
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
.e-bigger .e-de-cmt-rply-view {
|
|
3540
|
+
margin-top: 12px;
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
.e-bigger .e-de-cmt-sub-container {
|
|
3544
|
+
padding: 8px;
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3548
|
+
padding-left: 6px;
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3552
|
+
padding-left: 7px;
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3556
|
+
padding: 0%;
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
3560
|
+
width: auto;
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
.e-bigger .e-de-rp-whole-header {
|
|
3564
|
+
padding: 12px;
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
.e-bigger .e-de-rp-sub-div {
|
|
3568
|
+
border-bottom: 1px solid #e4e4e4;
|
|
3569
|
+
padding: 12px;
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
.e-bigger .e-de-rp-enforce {
|
|
3573
|
+
padding: 12px;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3577
|
+
width: 300px;
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3581
|
+
padding-left: 0%;
|
|
3582
|
+
padding-right: 8px;
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3586
|
+
padding-left: 8px;
|
|
3587
|
+
padding-right: 6px;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3591
|
+
padding-left: 8px;
|
|
3592
|
+
padding-right: 7px;
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3596
|
+
float: left;
|
|
3597
|
+
right: 10px;
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3454
3600
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3455
3601
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3456
3602
|
font-size: 14px;
|
|
@@ -3465,8 +3611,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3465
3611
|
display: block;
|
|
3466
3612
|
font-size: 16px;
|
|
3467
3613
|
font-weight: 400;
|
|
3468
|
-
margin-bottom:
|
|
3469
|
-
margin-top: 15px;
|
|
3614
|
+
margin-bottom: 8px;
|
|
3470
3615
|
}
|
|
3471
3616
|
|
|
3472
3617
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
@@ -3510,7 +3655,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3510
3655
|
font-size: 12px;
|
|
3511
3656
|
font-weight: normal;
|
|
3512
3657
|
margin-bottom: 15px;
|
|
3513
|
-
margin-top: 0;
|
|
3514
3658
|
}
|
|
3515
3659
|
|
|
3516
3660
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3530,7 +3674,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3530
3674
|
font-size: 16px;
|
|
3531
3675
|
font-weight: 400;
|
|
3532
3676
|
margin-bottom: 15px;
|
|
3533
|
-
margin-top: 15px;
|
|
3534
3677
|
opacity: 87%;
|
|
3535
3678
|
}
|
|
3536
3679
|
|
|
@@ -3575,7 +3718,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3575
3718
|
font-size: 12px;
|
|
3576
3719
|
font-weight: normal;
|
|
3577
3720
|
margin-bottom: 15px;
|
|
3578
|
-
margin-top: 0;
|
|
3579
3721
|
}
|
|
3580
3722
|
|
|
3581
3723
|
.e-de-rtl-btn-div {
|