@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
|
@@ -593,6 +593,86 @@
|
|
|
593
593
|
content: '\e882';
|
|
594
594
|
}
|
|
595
595
|
|
|
596
|
+
.e-de-dlg-container {
|
|
597
|
+
padding-bottom: 12px;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.e-de-dlg-row {
|
|
601
|
+
display: -ms-flexbox;
|
|
602
|
+
display: flex;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.e-de-container-row {
|
|
606
|
+
display: -ms-flexbox;
|
|
607
|
+
display: flex;
|
|
608
|
+
padding-bottom: 12px;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.e-de-subcontainer-left {
|
|
612
|
+
padding-right: 6px;
|
|
613
|
+
width: 50%;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.e-de-subcontainer-right {
|
|
617
|
+
padding-left: 6px;
|
|
618
|
+
width: 50%;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.e-de-dlg-tab-first-child {
|
|
622
|
+
padding-top: 6px;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.e-de-dlg-heading {
|
|
626
|
+
display: block;
|
|
627
|
+
font-size: 14px;
|
|
628
|
+
font-weight: 500;
|
|
629
|
+
margin-bottom: 12px;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.e-rtl .e-de-subcontainer-left {
|
|
633
|
+
padding-left: 6px;
|
|
634
|
+
padding-right: 0;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.e-rtl .e-de-subcontainer-right {
|
|
638
|
+
padding-left: 0;
|
|
639
|
+
padding-right: 6px;
|
|
640
|
+
width: 50%;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.e-bigger .e-de-dlg-container {
|
|
644
|
+
padding-bottom: 16px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.e-bigger .e-de-container-row {
|
|
648
|
+
padding-bottom: 16px;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.e-bigger .e-de-subcontainer-left {
|
|
652
|
+
padding-right: 8px;
|
|
653
|
+
width: 50%;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.e-bigger .e-de-subcontainer-right {
|
|
657
|
+
padding-left: 8px;
|
|
658
|
+
width: 50%;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.e-bigger .e-de-dlg-tab-first-child {
|
|
662
|
+
padding-top: 8px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.e-bigger .e-rtl .e-de-subcontainer-left {
|
|
666
|
+
padding-left: 8px;
|
|
667
|
+
padding-right: 0;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.e-bigger .e-rtl .e-de-subcontainer-right {
|
|
671
|
+
padding-left: 0;
|
|
672
|
+
padding-right: 8px;
|
|
673
|
+
width: 50%;
|
|
674
|
+
}
|
|
675
|
+
|
|
596
676
|
.e-de-blink-cursor {
|
|
597
677
|
border-left: 1px solid #000;
|
|
598
678
|
pointer-events: none;
|
|
@@ -761,7 +841,6 @@
|
|
|
761
841
|
.e-de-ff-radio-div {
|
|
762
842
|
display: -ms-inline-flexbox;
|
|
763
843
|
display: inline-flex;
|
|
764
|
-
margin-bottom: 16px;
|
|
765
844
|
margin-right: 16px;
|
|
766
845
|
}
|
|
767
846
|
|
|
@@ -773,7 +852,7 @@
|
|
|
773
852
|
.e-de-ff-radio-scnd-div {
|
|
774
853
|
display: -ms-inline-flexbox;
|
|
775
854
|
display: inline-flex;
|
|
776
|
-
margin-bottom:
|
|
855
|
+
margin-bottom: 0;
|
|
777
856
|
margin-right: 16px;
|
|
778
857
|
}
|
|
779
858
|
|
|
@@ -1122,14 +1201,6 @@
|
|
|
1122
1201
|
float: left;
|
|
1123
1202
|
}
|
|
1124
1203
|
|
|
1125
|
-
.e-de-dlg-sub-header {
|
|
1126
|
-
display: block;
|
|
1127
|
-
font-size: 12px;
|
|
1128
|
-
font-weight: 500;
|
|
1129
|
-
margin-bottom: 4px;
|
|
1130
|
-
margin-top: 0;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
1204
|
.e-de-dlg-footer .e-btn {
|
|
1134
1205
|
margin-left: 10px;
|
|
1135
1206
|
}
|
|
@@ -1246,7 +1317,8 @@
|
|
|
1246
1317
|
}
|
|
1247
1318
|
|
|
1248
1319
|
.e-de-op-more-less {
|
|
1249
|
-
display:
|
|
1320
|
+
display: -ms-inline-flexbox;
|
|
1321
|
+
display: inline-flex;
|
|
1250
1322
|
margin-top: 12px;
|
|
1251
1323
|
}
|
|
1252
1324
|
|
|
@@ -1524,11 +1596,17 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1524
1596
|
}
|
|
1525
1597
|
|
|
1526
1598
|
.e-documenteditor .e-de-op-close-button {
|
|
1527
|
-
left:
|
|
1599
|
+
left: 250px;
|
|
1528
1600
|
position: absolute;
|
|
1529
1601
|
top: 10px;
|
|
1530
1602
|
}
|
|
1531
1603
|
|
|
1604
|
+
.e-bigger .e-documenteditor .e-de-op-close-button {
|
|
1605
|
+
left: 240px;
|
|
1606
|
+
position: absolute;
|
|
1607
|
+
top: 5px;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1532
1610
|
.e-de-style-paragraph-indent-group-button .e-btn.e-active,
|
|
1533
1611
|
.e-de-style-paragraph-group-button .e-btn.e-active,
|
|
1534
1612
|
.e-de-style-font-group-button .e-btn.e-active {
|
|
@@ -1631,11 +1709,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1631
1709
|
}
|
|
1632
1710
|
|
|
1633
1711
|
.e-bigger .e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1634
|
-
right:
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
1638
|
-
margin-bottom: 16px;
|
|
1712
|
+
right: 240px;
|
|
1639
1713
|
}
|
|
1640
1714
|
|
|
1641
1715
|
.e-bigger .e-de-track-date {
|
|
@@ -1679,7 +1753,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1679
1753
|
}
|
|
1680
1754
|
|
|
1681
1755
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1682
|
-
right:
|
|
1756
|
+
right: 255px;
|
|
1683
1757
|
}
|
|
1684
1758
|
|
|
1685
1759
|
.e-de-table-measure-lbl {
|
|
@@ -2045,12 +2119,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2045
2119
|
}
|
|
2046
2120
|
|
|
2047
2121
|
.e-de-font-dlg {
|
|
2048
|
-
width:
|
|
2122
|
+
width: max-content;
|
|
2049
2123
|
}
|
|
2050
2124
|
|
|
2051
2125
|
.e-de-hyperlink {
|
|
2052
|
-
|
|
2053
|
-
|
|
2126
|
+
width: 250px;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
.e-bigger .e-de-hyperlink {
|
|
2130
|
+
width: 300px;
|
|
2054
2131
|
}
|
|
2055
2132
|
|
|
2056
2133
|
.e-de-insert-table {
|
|
@@ -2214,13 +2291,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2214
2291
|
|
|
2215
2292
|
.e-button-custom {
|
|
2216
2293
|
height: 32px;
|
|
2217
|
-
|
|
2218
|
-
width: 70px;
|
|
2294
|
+
width: 100%;
|
|
2219
2295
|
}
|
|
2220
2296
|
|
|
2221
2297
|
.e-bigger .e-button-custom {
|
|
2222
2298
|
height: 37px;
|
|
2223
|
-
width:
|
|
2299
|
+
width: 100%;
|
|
2224
2300
|
}
|
|
2225
2301
|
|
|
2226
2302
|
.e-styles-listview,
|
|
@@ -2376,7 +2452,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2376
2452
|
}
|
|
2377
2453
|
|
|
2378
2454
|
.e-de-style-font-color-picker {
|
|
2379
|
-
margin-left:
|
|
2455
|
+
margin-left: 6px;
|
|
2380
2456
|
}
|
|
2381
2457
|
|
|
2382
2458
|
.e-style-font-fmaily-right {
|
|
@@ -2781,6 +2857,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2781
2857
|
.e-de-rp-sub-content-div {
|
|
2782
2858
|
line-height: 1.5;
|
|
2783
2859
|
font-size: 12px;
|
|
2860
|
+
margin-bottom: 8px;
|
|
2784
2861
|
}
|
|
2785
2862
|
|
|
2786
2863
|
.e-de-bullet-icons {
|
|
@@ -2835,7 +2912,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2835
2912
|
}
|
|
2836
2913
|
|
|
2837
2914
|
.e-bigger .e-de-font-dlg {
|
|
2838
|
-
width:
|
|
2915
|
+
width: max-content;
|
|
2839
2916
|
}
|
|
2840
2917
|
|
|
2841
2918
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -2865,6 +2942,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2865
2942
|
|
|
2866
2943
|
.e-bigger .e-de-rp-header {
|
|
2867
2944
|
font-size: 16px;
|
|
2945
|
+
width: 75%;
|
|
2868
2946
|
}
|
|
2869
2947
|
|
|
2870
2948
|
.e-de-restrict-format {
|
|
@@ -2892,6 +2970,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2892
2970
|
font-weight: 500;
|
|
2893
2971
|
opacity: 0.87;
|
|
2894
2972
|
color: #e9ecef;
|
|
2973
|
+
width: 75%;
|
|
2895
2974
|
}
|
|
2896
2975
|
|
|
2897
2976
|
.e-de-rp-user .e-checkbox-wrapper {
|
|
@@ -2905,18 +2984,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2905
2984
|
opacity: 0.87;
|
|
2906
2985
|
border-radius: 2px;
|
|
2907
2986
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
|
|
2908
|
-
height: 36px;
|
|
2909
|
-
margin: 0 12px !important;
|
|
2910
2987
|
}
|
|
2911
2988
|
|
|
2912
2989
|
.e-bigger .e-de-rp-btn-enforce {
|
|
2913
|
-
margin: 0;
|
|
2914
2990
|
padding-left: 10px;
|
|
2915
2991
|
padding-right: 10px;
|
|
2916
2992
|
}
|
|
2917
2993
|
|
|
2918
2994
|
.e-de-rp-nav-btn {
|
|
2919
|
-
|
|
2995
|
+
width: auto;
|
|
2920
2996
|
}
|
|
2921
2997
|
|
|
2922
2998
|
.e-de-rp-btn-stop-enforce {
|
|
@@ -2925,8 +3001,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2925
3001
|
opacity: 0.87;
|
|
2926
3002
|
border-radius: 2px;
|
|
2927
3003
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
|
|
2928
|
-
height: 36px;
|
|
2929
|
-
margin: 0 65px;
|
|
2930
3004
|
}
|
|
2931
3005
|
|
|
2932
3006
|
.e-de-rp-sub-div {
|
|
@@ -2937,6 +3011,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2937
3011
|
.e-de-restrict-pane {
|
|
2938
3012
|
padding-left: 0;
|
|
2939
3013
|
padding-top: 0;
|
|
3014
|
+
padding-right: 0;
|
|
2940
3015
|
}
|
|
2941
3016
|
|
|
2942
3017
|
.e-de-rp-whole-header {
|
|
@@ -2949,15 +3024,14 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2949
3024
|
border-radius: 2px;
|
|
2950
3025
|
font-size: 12px;
|
|
2951
3026
|
height: 110px;
|
|
2952
|
-
width: 238px;
|
|
2953
3027
|
}
|
|
2954
3028
|
|
|
2955
3029
|
.e-de-rp-enforce {
|
|
2956
|
-
padding
|
|
3030
|
+
padding: 12px;
|
|
2957
3031
|
}
|
|
2958
3032
|
|
|
2959
3033
|
.e-de-rp-enforce-nav {
|
|
2960
|
-
margin: 12px
|
|
3034
|
+
margin: 0 12px 12px 12px;
|
|
2961
3035
|
}
|
|
2962
3036
|
|
|
2963
3037
|
.e-de-enforce-dlg-title {
|
|
@@ -2968,7 +3042,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2968
3042
|
|
|
2969
3043
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
2970
3044
|
height: 32px;
|
|
2971
|
-
margin-bottom: 12px;
|
|
2972
3045
|
width: 300px;
|
|
2973
3046
|
}
|
|
2974
3047
|
|
|
@@ -2989,6 +3062,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2989
3062
|
|
|
2990
3063
|
.e-de-user-dlg-list {
|
|
2991
3064
|
margin-bottom: 12px;
|
|
3065
|
+
display: -ms-inline-flexbox;
|
|
3066
|
+
display: inline-flex;
|
|
2992
3067
|
}
|
|
2993
3068
|
|
|
2994
3069
|
.e-de-user-listview {
|
|
@@ -3021,25 +3096,23 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3021
3096
|
padding: 12px 12px 24px;
|
|
3022
3097
|
}
|
|
3023
3098
|
|
|
3024
|
-
.e-de-rp-stop-div3 {
|
|
3025
|
-
padding: 0 0 12px 12px;
|
|
3026
|
-
}
|
|
3027
|
-
|
|
3028
3099
|
.e-de-rp-close-icon {
|
|
3029
3100
|
float: right;
|
|
3030
3101
|
position: relative;
|
|
3031
3102
|
top: -5px;
|
|
3103
|
+
right: -12px;
|
|
3032
3104
|
}
|
|
3033
3105
|
|
|
3034
3106
|
.e-de-restrict-pane {
|
|
3035
3107
|
height: 100%;
|
|
3036
3108
|
overflow: auto;
|
|
3109
|
+
overflow-x: hidden;
|
|
3037
3110
|
width: 280px;
|
|
3038
3111
|
}
|
|
3039
3112
|
|
|
3040
3113
|
.e-de-rp-nav-lbl {
|
|
3041
3114
|
font-size: 13px;
|
|
3042
|
-
margin: 0
|
|
3115
|
+
margin: 0 12px;
|
|
3043
3116
|
}
|
|
3044
3117
|
|
|
3045
3118
|
.e-documenteditor-optionspane {
|
|
@@ -3073,7 +3146,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3073
3146
|
border: 1px solid #444c54;
|
|
3074
3147
|
border-radius: 2px;
|
|
3075
3148
|
margin: 0;
|
|
3076
|
-
padding:
|
|
3149
|
+
padding: 12px;
|
|
3077
3150
|
}
|
|
3078
3151
|
|
|
3079
3152
|
.e-de-cmt-view {
|
|
@@ -3082,7 +3155,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3082
3155
|
|
|
3083
3156
|
.e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3084
3157
|
border-left: 3px solid #0d6efd;
|
|
3085
|
-
padding-left:
|
|
3158
|
+
padding-left: 10px;
|
|
3086
3159
|
}
|
|
3087
3160
|
|
|
3088
3161
|
.e-de-tc-outer {
|
|
@@ -3158,7 +3231,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3158
3231
|
color: #4d841e;
|
|
3159
3232
|
padding: 5px 4px;
|
|
3160
3233
|
text-transform: initial;
|
|
3161
|
-
width: 66px;
|
|
3162
3234
|
}
|
|
3163
3235
|
|
|
3164
3236
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3167,7 +3239,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3167
3239
|
color: #fff;
|
|
3168
3240
|
padding: 5px 4px;
|
|
3169
3241
|
text-transform: initial;
|
|
3170
|
-
width: 66px;
|
|
3171
3242
|
}
|
|
3172
3243
|
|
|
3173
3244
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3177,7 +3248,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3177
3248
|
padding: 5px 6px;
|
|
3178
3249
|
margin-left: 8px;
|
|
3179
3250
|
text-transform: initial;
|
|
3180
|
-
width: 64px;
|
|
3181
3251
|
}
|
|
3182
3252
|
|
|
3183
3253
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3187,7 +3257,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3187
3257
|
padding: 5px 6px;
|
|
3188
3258
|
margin-left: 8px;
|
|
3189
3259
|
text-transform: initial;
|
|
3190
|
-
width: 64px;
|
|
3191
3260
|
}
|
|
3192
3261
|
|
|
3193
3262
|
.e-de-track-chngs-count {
|
|
@@ -3293,7 +3362,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3293
3362
|
|
|
3294
3363
|
.e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3295
3364
|
border-left: 2px solid #0d6efd;
|
|
3296
|
-
padding-left:
|
|
3365
|
+
padding-left: 11px;
|
|
3297
3366
|
}
|
|
3298
3367
|
|
|
3299
3368
|
.e-de-cmt-author {
|
|
@@ -3305,8 +3374,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3305
3374
|
.e-de-cmt-author-name {
|
|
3306
3375
|
font-size: 14px;
|
|
3307
3376
|
font-weight: 500;
|
|
3308
|
-
padding-left:
|
|
3309
|
-
padding-left: 8px;
|
|
3377
|
+
padding-left: 12px;
|
|
3310
3378
|
width: 90%;
|
|
3311
3379
|
}
|
|
3312
3380
|
|
|
@@ -3343,7 +3411,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3343
3411
|
border: none;
|
|
3344
3412
|
border-top: 1px solid #444c54;
|
|
3345
3413
|
border-radius: 0px;
|
|
3346
|
-
margin: 12px
|
|
3414
|
+
margin: 12px 8px 0 8px;
|
|
3347
3415
|
padding: 0px;
|
|
3348
3416
|
}
|
|
3349
3417
|
|
|
@@ -3463,6 +3531,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3463
3531
|
|
|
3464
3532
|
.e-rtl .e-de-rp-close-icon {
|
|
3465
3533
|
float: left;
|
|
3534
|
+
right: 12px;
|
|
3466
3535
|
}
|
|
3467
3536
|
|
|
3468
3537
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3472,15 +3541,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3472
3541
|
.e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3473
3542
|
border-left: 1px solid #444c54;
|
|
3474
3543
|
border-right: 3px solid #0d6efd;
|
|
3475
|
-
padding-left:
|
|
3476
|
-
padding-right:
|
|
3544
|
+
padding-left: 12px;
|
|
3545
|
+
padding-right: 10px;
|
|
3477
3546
|
}
|
|
3478
3547
|
|
|
3479
3548
|
.e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3480
3549
|
border-left: 1px solid #444c54;
|
|
3481
3550
|
border-right: 2px solid #0d6efd;
|
|
3482
|
-
padding-left:
|
|
3483
|
-
padding-right:
|
|
3551
|
+
padding-left: 12px;
|
|
3552
|
+
padding-right: 11px;
|
|
3484
3553
|
}
|
|
3485
3554
|
|
|
3486
3555
|
.e-rtl .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
|
|
@@ -3523,6 +3592,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3523
3592
|
padding-right: 8px;
|
|
3524
3593
|
}
|
|
3525
3594
|
|
|
3595
|
+
.e-bigger .e-de-rp-close-icon {
|
|
3596
|
+
float: right;
|
|
3597
|
+
position: relative;
|
|
3598
|
+
top: -9px;
|
|
3599
|
+
right: -17px;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3526
3602
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3527
3603
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3528
3604
|
margin-right: 12px;
|
|
@@ -3559,6 +3635,80 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3559
3635
|
top: 0;
|
|
3560
3636
|
}
|
|
3561
3637
|
|
|
3638
|
+
.e-de-rp-mu-btn {
|
|
3639
|
+
margin-top: 3px;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
.e-rtl .e-de-cmt-author-name {
|
|
3643
|
+
padding-left: 0%;
|
|
3644
|
+
padding-right: 12px;
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
.e-bigger .e-de-cmt-author-name {
|
|
3648
|
+
padding-left: 16px;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
.e-bigger .e-de-cmt-rply-view {
|
|
3652
|
+
margin-top: 16px;
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
.e-bigger .e-de-cmt-sub-container {
|
|
3656
|
+
padding: 16px;
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3660
|
+
padding-left: 14px;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3664
|
+
padding-left: 15px;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3668
|
+
padding: 0%;
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
3672
|
+
width: auto;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
.e-bigger .e-de-rp-whole-header {
|
|
3676
|
+
padding: 12px;
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
.e-bigger .e-de-rp-sub-div {
|
|
3680
|
+
border-bottom: 1px solid #444c54;
|
|
3681
|
+
padding: 12px;
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
.e-bigger .e-de-rp-enforce {
|
|
3685
|
+
padding: 12px;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3689
|
+
width: 300px;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3693
|
+
padding-left: 0%;
|
|
3694
|
+
padding-right: 16px;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3698
|
+
padding-left: 16px;
|
|
3699
|
+
padding-right: 14px;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3703
|
+
padding-left: 16px;
|
|
3704
|
+
padding-right: 15px;
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3708
|
+
float: left;
|
|
3709
|
+
right: 17px;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3562
3712
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3563
3713
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3564
3714
|
font-size: 14px;
|
|
@@ -3573,8 +3723,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3573
3723
|
display: block;
|
|
3574
3724
|
font-size: 14px;
|
|
3575
3725
|
font-weight: 500;
|
|
3576
|
-
margin-bottom:
|
|
3577
|
-
margin-top: 12px;
|
|
3726
|
+
margin-bottom: 8px;
|
|
3578
3727
|
}
|
|
3579
3728
|
|
|
3580
3729
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
@@ -3618,7 +3767,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3618
3767
|
font-size: 12px;
|
|
3619
3768
|
font-weight: 500;
|
|
3620
3769
|
margin-bottom: 4px;
|
|
3621
|
-
margin-top: 8px;
|
|
3622
3770
|
}
|
|
3623
3771
|
|
|
3624
3772
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3637,8 +3785,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3637
3785
|
display: block;
|
|
3638
3786
|
font-size: 14px;
|
|
3639
3787
|
font-weight: 500;
|
|
3640
|
-
margin-bottom:
|
|
3641
|
-
margin-top: 12px;
|
|
3788
|
+
margin-bottom: 4px;
|
|
3642
3789
|
opacity: 87%;
|
|
3643
3790
|
}
|
|
3644
3791
|
|
|
@@ -3683,7 +3830,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3683
3830
|
font-size: 12px;
|
|
3684
3831
|
font-weight: 500;
|
|
3685
3832
|
margin-bottom: 4px;
|
|
3686
|
-
margin-top: 8px;
|
|
3687
3833
|
}
|
|
3688
3834
|
|
|
3689
3835
|
.e-de-rtl-btn-div {
|