@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
|
@@ -559,6 +559,86 @@
|
|
|
559
559
|
content: '\e91f';
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
+
.e-de-dlg-container {
|
|
563
|
+
padding-bottom: 12px;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.e-de-dlg-row {
|
|
567
|
+
display: -ms-flexbox;
|
|
568
|
+
display: flex;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.e-de-container-row {
|
|
572
|
+
display: -ms-flexbox;
|
|
573
|
+
display: flex;
|
|
574
|
+
padding-bottom: 12px;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.e-de-subcontainer-left {
|
|
578
|
+
padding-right: 6px;
|
|
579
|
+
width: 50%;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.e-de-subcontainer-right {
|
|
583
|
+
padding-left: 6px;
|
|
584
|
+
width: 50%;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.e-de-dlg-tab-first-child {
|
|
588
|
+
padding-top: 6px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.e-de-dlg-heading {
|
|
592
|
+
display: block;
|
|
593
|
+
font-size: 16px;
|
|
594
|
+
font-weight: 400;
|
|
595
|
+
margin-bottom: 12px;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.e-rtl .e-de-subcontainer-left {
|
|
599
|
+
padding-left: 6px;
|
|
600
|
+
padding-right: 0;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.e-rtl .e-de-subcontainer-right {
|
|
604
|
+
padding-left: 0;
|
|
605
|
+
padding-right: 6px;
|
|
606
|
+
width: 50%;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.e-bigger .e-de-dlg-container {
|
|
610
|
+
padding-bottom: 16px;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.e-bigger .e-de-container-row {
|
|
614
|
+
padding-bottom: 16px;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.e-bigger .e-de-subcontainer-left {
|
|
618
|
+
padding-right: 8px;
|
|
619
|
+
width: 50%;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.e-bigger .e-de-subcontainer-right {
|
|
623
|
+
padding-left: 8px;
|
|
624
|
+
width: 50%;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.e-bigger .e-de-dlg-tab-first-child {
|
|
628
|
+
padding-top: 8px;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.e-bigger .e-rtl .e-de-subcontainer-left {
|
|
632
|
+
padding-left: 8px;
|
|
633
|
+
padding-right: 0;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.e-bigger .e-rtl .e-de-subcontainer-right {
|
|
637
|
+
padding-left: 0;
|
|
638
|
+
padding-right: 8px;
|
|
639
|
+
width: 50%;
|
|
640
|
+
}
|
|
641
|
+
|
|
562
642
|
.e-de-blink-cursor {
|
|
563
643
|
border-left: 1px solid #000;
|
|
564
644
|
pointer-events: none;
|
|
@@ -727,7 +807,6 @@
|
|
|
727
807
|
.e-de-ff-radio-div {
|
|
728
808
|
display: -ms-inline-flexbox;
|
|
729
809
|
display: inline-flex;
|
|
730
|
-
margin-bottom: 26px;
|
|
731
810
|
margin-right: 16px;
|
|
732
811
|
}
|
|
733
812
|
|
|
@@ -1087,14 +1166,6 @@
|
|
|
1087
1166
|
float: left;
|
|
1088
1167
|
}
|
|
1089
1168
|
|
|
1090
|
-
.e-de-dlg-sub-header {
|
|
1091
|
-
display: block;
|
|
1092
|
-
font-size: 12px;
|
|
1093
|
-
font-weight: normal;
|
|
1094
|
-
margin-bottom: 8px;
|
|
1095
|
-
margin-top: 0;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
1169
|
.e-de-dlg-footer .e-btn {
|
|
1099
1170
|
margin-left: 10px;
|
|
1100
1171
|
}
|
|
@@ -1211,7 +1282,8 @@
|
|
|
1211
1282
|
}
|
|
1212
1283
|
|
|
1213
1284
|
.e-de-op-more-less {
|
|
1214
|
-
display:
|
|
1285
|
+
display: -ms-inline-flexbox;
|
|
1286
|
+
display: inline-flex;
|
|
1215
1287
|
margin-top: 14px;
|
|
1216
1288
|
}
|
|
1217
1289
|
|
|
@@ -1489,7 +1561,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1489
1561
|
}
|
|
1490
1562
|
|
|
1491
1563
|
.e-documenteditor .e-de-op-close-button {
|
|
1492
|
-
left:
|
|
1564
|
+
left: 250px;
|
|
1493
1565
|
position: absolute;
|
|
1494
1566
|
top: 18px;
|
|
1495
1567
|
padding-top: 0px;
|
|
@@ -1637,7 +1709,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1637
1709
|
}
|
|
1638
1710
|
|
|
1639
1711
|
.e-bigger .e-de-op-more-less {
|
|
1640
|
-
display:
|
|
1712
|
+
display: -ms-inline-flexbox;
|
|
1713
|
+
display: inline-flex;
|
|
1641
1714
|
margin-top: 16px;
|
|
1642
1715
|
}
|
|
1643
1716
|
|
|
@@ -1659,7 +1732,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
1659
1732
|
}
|
|
1660
1733
|
|
|
1661
1734
|
.e-documenteditor .e-de-op-close-button.e-de-rtl {
|
|
1662
|
-
right:
|
|
1735
|
+
right: 255px;
|
|
1663
1736
|
}
|
|
1664
1737
|
|
|
1665
1738
|
.e-de-table-measure-lbl {
|
|
@@ -2025,12 +2098,15 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2025
2098
|
}
|
|
2026
2099
|
|
|
2027
2100
|
.e-de-font-dlg {
|
|
2028
|
-
width:
|
|
2101
|
+
width: max-content;
|
|
2029
2102
|
}
|
|
2030
2103
|
|
|
2031
2104
|
.e-de-hyperlink {
|
|
2032
|
-
|
|
2033
|
-
|
|
2105
|
+
width: 250px;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.e-bigger .e-de-hyperlink {
|
|
2109
|
+
width: 300px;
|
|
2034
2110
|
}
|
|
2035
2111
|
|
|
2036
2112
|
.e-de-insert-table {
|
|
@@ -2194,13 +2270,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2194
2270
|
|
|
2195
2271
|
.e-button-custom {
|
|
2196
2272
|
height: 32px;
|
|
2197
|
-
|
|
2198
|
-
width: 70px;
|
|
2273
|
+
width: 100%;
|
|
2199
2274
|
}
|
|
2200
2275
|
|
|
2201
2276
|
.e-bigger .e-button-custom {
|
|
2202
2277
|
height: 37px;
|
|
2203
|
-
width:
|
|
2278
|
+
width: 100%;
|
|
2204
2279
|
}
|
|
2205
2280
|
|
|
2206
2281
|
.e-styles-listview,
|
|
@@ -2341,13 +2416,13 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2341
2416
|
}
|
|
2342
2417
|
|
|
2343
2418
|
.e-bigger .e-de-style-bold-button-size {
|
|
2344
|
-
margin-left:
|
|
2419
|
+
margin-left: 8px;
|
|
2345
2420
|
margin-right: 8px;
|
|
2346
2421
|
height: 35px;
|
|
2347
2422
|
}
|
|
2348
2423
|
|
|
2349
2424
|
.e-de-style-bold-button-size {
|
|
2350
|
-
margin-left:
|
|
2425
|
+
margin-left: 8px;
|
|
2351
2426
|
margin-right: 8px;
|
|
2352
2427
|
height: 31px;
|
|
2353
2428
|
}
|
|
@@ -2362,12 +2437,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2362
2437
|
}
|
|
2363
2438
|
|
|
2364
2439
|
.e-de-style-icon-button-first-size {
|
|
2365
|
-
margin-left:
|
|
2440
|
+
margin-left: 8px;
|
|
2366
2441
|
margin-right: 3px;
|
|
2367
2442
|
}
|
|
2368
2443
|
|
|
2369
2444
|
.e-de-style-icon-button-last-size {
|
|
2370
|
-
margin-right:
|
|
2445
|
+
margin-right: 8px;
|
|
2371
2446
|
}
|
|
2372
2447
|
|
|
2373
2448
|
.e-de-style-font-color-picker {
|
|
@@ -2815,6 +2890,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2815
2890
|
.e-de-rp-sub-content-div {
|
|
2816
2891
|
line-height: none;
|
|
2817
2892
|
font-size: 12px;
|
|
2893
|
+
margin-bottom: 8px;
|
|
2818
2894
|
}
|
|
2819
2895
|
|
|
2820
2896
|
.e-de-bullet-icons {
|
|
@@ -2869,7 +2945,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2869
2945
|
}
|
|
2870
2946
|
|
|
2871
2947
|
.e-bigger .e-de-font-dlg {
|
|
2872
|
-
width:
|
|
2948
|
+
width: max-content;
|
|
2873
2949
|
}
|
|
2874
2950
|
|
|
2875
2951
|
.e-bigger .e-para-dlg-sub-height {
|
|
@@ -2899,6 +2975,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2899
2975
|
|
|
2900
2976
|
.e-bigger .e-de-rp-header {
|
|
2901
2977
|
font-size: 16px;
|
|
2978
|
+
width: 75%;
|
|
2902
2979
|
}
|
|
2903
2980
|
|
|
2904
2981
|
.e-de-restrict-format {
|
|
@@ -2926,6 +3003,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2926
3003
|
font-weight: normal;
|
|
2927
3004
|
opacity: 0.87;
|
|
2928
3005
|
color: #212529;
|
|
3006
|
+
width: 75%;
|
|
2929
3007
|
}
|
|
2930
3008
|
|
|
2931
3009
|
.e-de-rp-user .e-checkbox-wrapper {
|
|
@@ -2939,8 +3017,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2939
3017
|
opacity: 0.87;
|
|
2940
3018
|
border-radius: 2px;
|
|
2941
3019
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2942
|
-
height: 36px;
|
|
2943
|
-
margin: 0 24px !important;
|
|
2944
3020
|
border-color: #dee2e6;
|
|
2945
3021
|
box-shadow: none;
|
|
2946
3022
|
color: #495057;
|
|
@@ -2948,15 +3024,12 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2948
3024
|
}
|
|
2949
3025
|
|
|
2950
3026
|
.e-bigger .e-de-rp-btn-enforce {
|
|
2951
|
-
margin: 0;
|
|
2952
|
-
width: 100%;
|
|
2953
3027
|
padding-left: 10px;
|
|
2954
3028
|
padding-right: 10px;
|
|
2955
3029
|
}
|
|
2956
3030
|
|
|
2957
3031
|
.e-de-rp-nav-btn {
|
|
2958
|
-
|
|
2959
|
-
width: 210px;
|
|
3032
|
+
width: auto;
|
|
2960
3033
|
}
|
|
2961
3034
|
|
|
2962
3035
|
.e-de-rp-btn-stop-enforce {
|
|
@@ -2965,8 +3038,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2965
3038
|
opacity: 0.87;
|
|
2966
3039
|
border-radius: 2px;
|
|
2967
3040
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
|
|
2968
|
-
height: 36px;
|
|
2969
|
-
margin: 0 46px;
|
|
2970
3041
|
border-color: #dee2e6;
|
|
2971
3042
|
box-shadow: none;
|
|
2972
3043
|
color: #495057;
|
|
@@ -2981,6 +3052,7 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2981
3052
|
.e-de-restrict-pane {
|
|
2982
3053
|
padding-left: 0;
|
|
2983
3054
|
padding-top: 0;
|
|
3055
|
+
padding-right: 0;
|
|
2984
3056
|
}
|
|
2985
3057
|
|
|
2986
3058
|
.e-de-rp-whole-header {
|
|
@@ -2993,16 +3065,14 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
2993
3065
|
border-radius: 2px;
|
|
2994
3066
|
font-size: 12px;
|
|
2995
3067
|
height: 110px;
|
|
2996
|
-
width: 238px;
|
|
2997
3068
|
}
|
|
2998
3069
|
|
|
2999
3070
|
.e-de-rp-enforce {
|
|
3000
|
-
padding
|
|
3001
|
-
text-align: center;
|
|
3071
|
+
padding: 12px;
|
|
3002
3072
|
}
|
|
3003
3073
|
|
|
3004
3074
|
.e-de-rp-enforce-nav {
|
|
3005
|
-
margin: 12px
|
|
3075
|
+
margin: 0 12px 12px 12px;
|
|
3006
3076
|
}
|
|
3007
3077
|
|
|
3008
3078
|
.e-de-enforce-dlg-title {
|
|
@@ -3013,7 +3083,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3013
3083
|
|
|
3014
3084
|
.e-de-enforce .e-de-enforce-dlg-input {
|
|
3015
3085
|
height: 32px;
|
|
3016
|
-
margin-bottom: 8px;
|
|
3017
3086
|
width: 300px;
|
|
3018
3087
|
}
|
|
3019
3088
|
|
|
@@ -3034,6 +3103,8 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3034
3103
|
|
|
3035
3104
|
.e-de-user-dlg-list {
|
|
3036
3105
|
margin-bottom: 15px;
|
|
3106
|
+
display: -ms-inline-flexbox;
|
|
3107
|
+
display: inline-flex;
|
|
3037
3108
|
}
|
|
3038
3109
|
|
|
3039
3110
|
.e-de-user-listview {
|
|
@@ -3066,25 +3137,23 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3066
3137
|
padding: 12px 12px 24px;
|
|
3067
3138
|
}
|
|
3068
3139
|
|
|
3069
|
-
.e-de-rp-stop-div3 {
|
|
3070
|
-
padding: 0 0 12px 12px;
|
|
3071
|
-
}
|
|
3072
|
-
|
|
3073
3140
|
.e-de-rp-close-icon {
|
|
3074
3141
|
float: right;
|
|
3075
3142
|
position: relative;
|
|
3076
3143
|
top: -7px;
|
|
3144
|
+
right: -9px;
|
|
3077
3145
|
}
|
|
3078
3146
|
|
|
3079
3147
|
.e-de-restrict-pane {
|
|
3080
3148
|
height: 100%;
|
|
3081
3149
|
overflow: auto;
|
|
3150
|
+
overflow-x: hidden;
|
|
3082
3151
|
width: 268px;
|
|
3083
3152
|
}
|
|
3084
3153
|
|
|
3085
3154
|
.e-de-rp-nav-lbl {
|
|
3086
3155
|
font-size: 13px;
|
|
3087
|
-
margin: 0
|
|
3156
|
+
margin: 0 12px;
|
|
3088
3157
|
}
|
|
3089
3158
|
|
|
3090
3159
|
.e-documenteditor-optionspane {
|
|
@@ -3203,7 +3272,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3203
3272
|
color: #4d841e;
|
|
3204
3273
|
padding: 5px 4px;
|
|
3205
3274
|
text-transform: initial;
|
|
3206
|
-
width: 66px;
|
|
3207
3275
|
}
|
|
3208
3276
|
|
|
3209
3277
|
.e-btn.e-outline.e-de-track-accept-button:hover {
|
|
@@ -3212,7 +3280,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3212
3280
|
color: #fff;
|
|
3213
3281
|
padding: 5px 4px;
|
|
3214
3282
|
text-transform: initial;
|
|
3215
|
-
width: 66px;
|
|
3216
3283
|
}
|
|
3217
3284
|
|
|
3218
3285
|
.e-btn.e-outline.e-de-track-reject-button {
|
|
@@ -3222,7 +3289,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3222
3289
|
padding: 5px 6px;
|
|
3223
3290
|
margin-left: 8px;
|
|
3224
3291
|
text-transform: initial;
|
|
3225
|
-
width: 64px;
|
|
3226
3292
|
}
|
|
3227
3293
|
|
|
3228
3294
|
.e-btn.e-outline.e-de-track-reject-button:hover {
|
|
@@ -3232,7 +3298,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3232
3298
|
padding: 5px 6px;
|
|
3233
3299
|
margin-left: 8px;
|
|
3234
3300
|
text-transform: initial;
|
|
3235
|
-
width: 64px;
|
|
3236
3301
|
}
|
|
3237
3302
|
|
|
3238
3303
|
.e-de-track-chngs-count {
|
|
@@ -3351,7 +3416,6 @@ label[for*="_wholeWord_e-de-rtl"] {
|
|
|
3351
3416
|
font-size: 13px;
|
|
3352
3417
|
font-weight: normal;
|
|
3353
3418
|
padding-left: 8px;
|
|
3354
|
-
padding-left: 8px;
|
|
3355
3419
|
width: 90%;
|
|
3356
3420
|
}
|
|
3357
3421
|
|
|
@@ -3514,6 +3578,7 @@ textarea.e-de-cmt-textarea {
|
|
|
3514
3578
|
|
|
3515
3579
|
.e-rtl .e-de-rp-close-icon {
|
|
3516
3580
|
float: left;
|
|
3581
|
+
right: 9px;
|
|
3517
3582
|
}
|
|
3518
3583
|
|
|
3519
3584
|
.e-rtl .e-de-cp-option.e-btn.e-icon-btn {
|
|
@@ -3574,6 +3639,13 @@ textarea.e-de-cmt-textarea {
|
|
|
3574
3639
|
padding-right: 8px;
|
|
3575
3640
|
}
|
|
3576
3641
|
|
|
3642
|
+
.e-bigger .e-de-rp-close-icon {
|
|
3643
|
+
float: right;
|
|
3644
|
+
position: relative;
|
|
3645
|
+
top: -8px;
|
|
3646
|
+
right: -10px;
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3577
3649
|
.e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
|
|
3578
3650
|
.e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
|
|
3579
3651
|
margin-right: 12px;
|
|
@@ -3610,6 +3682,80 @@ textarea.e-de-cmt-textarea {
|
|
|
3610
3682
|
top: 0;
|
|
3611
3683
|
}
|
|
3612
3684
|
|
|
3685
|
+
.e-de-rp-mu-btn {
|
|
3686
|
+
margin-top: 3px;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.e-rtl .e-de-cmt-author-name {
|
|
3690
|
+
padding-left: 0%;
|
|
3691
|
+
padding-right: 8px;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
.e-bigger .e-de-cmt-author-name {
|
|
3695
|
+
padding-left: 8px;
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
.e-bigger .e-de-cmt-rply-view {
|
|
3699
|
+
margin-top: 12px;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
.e-bigger .e-de-cmt-sub-container {
|
|
3703
|
+
padding: 8px;
|
|
3704
|
+
}
|
|
3705
|
+
|
|
3706
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3707
|
+
padding-left: 6px;
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
.e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3711
|
+
padding-left: 7px;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
.e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
|
|
3715
|
+
padding: 0%;
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3718
|
+
.e-bigger .e-de-rp-nav-btn {
|
|
3719
|
+
width: auto;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
.e-bigger .e-de-rp-whole-header {
|
|
3723
|
+
padding: 12px;
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
.e-bigger .e-de-rp-sub-div {
|
|
3727
|
+
border-bottom: 1px solid #e4e4e4;
|
|
3728
|
+
padding: 12px;
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
.e-bigger .e-de-rp-enforce {
|
|
3732
|
+
padding: 12px;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
.e-bigger .e-de-enforce .e-de-enforce-dlg-input {
|
|
3736
|
+
width: 300px;
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
.e-bigger .e-rtl .e-de-cmt-author-name {
|
|
3740
|
+
padding-left: 0%;
|
|
3741
|
+
padding-right: 8px;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
|
|
3745
|
+
padding-left: 8px;
|
|
3746
|
+
padding-right: 6px;
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
|
|
3750
|
+
padding-left: 8px;
|
|
3751
|
+
padding-right: 7px;
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3754
|
+
.e-bigger .e-rtl .e-de-rp-close-icon {
|
|
3755
|
+
float: left;
|
|
3756
|
+
right: 10px;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3613
3759
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
3614
3760
|
.e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
|
|
3615
3761
|
font-size: 14px;
|
|
@@ -3624,8 +3770,7 @@ textarea.e-de-cmt-textarea {
|
|
|
3624
3770
|
display: block;
|
|
3625
3771
|
font-size: 16px;
|
|
3626
3772
|
font-weight: 400;
|
|
3627
|
-
margin-bottom:
|
|
3628
|
-
margin-top: 15px;
|
|
3773
|
+
margin-bottom: 8px;
|
|
3629
3774
|
}
|
|
3630
3775
|
|
|
3631
3776
|
.e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
|
|
@@ -3669,7 +3814,6 @@ textarea.e-de-cmt-textarea {
|
|
|
3669
3814
|
font-size: 12px;
|
|
3670
3815
|
font-weight: normal;
|
|
3671
3816
|
margin-bottom: 15px;
|
|
3672
|
-
margin-top: 0;
|
|
3673
3817
|
}
|
|
3674
3818
|
|
|
3675
3819
|
.e-bigger .e-de-rtl-btn-div {
|
|
@@ -3689,7 +3833,6 @@ textarea.e-de-cmt-textarea {
|
|
|
3689
3833
|
font-size: 16px;
|
|
3690
3834
|
font-weight: 400;
|
|
3691
3835
|
margin-bottom: 15px;
|
|
3692
|
-
margin-top: 15px;
|
|
3693
3836
|
opacity: 87%;
|
|
3694
3837
|
}
|
|
3695
3838
|
|
|
@@ -3734,7 +3877,6 @@ textarea.e-de-cmt-textarea {
|
|
|
3734
3877
|
font-size: 12px;
|
|
3735
3878
|
font-weight: normal;
|
|
3736
3879
|
margin-bottom: 15px;
|
|
3737
|
-
margin-top: 0;
|
|
3738
3880
|
}
|
|
3739
3881
|
|
|
3740
3882
|
.e-de-rtl-btn-div {
|