@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34
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/README.md +45 -137
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
- package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/license +10 -0
- package/package.json +18 -8
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -1
- package/src/document-editor/documenteditor.component.d.ts +1 -2
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
- package/src/index.d.ts +1 -1
- package/styles/bootstrap-dark.css +102 -37
- package/styles/bootstrap.css +106 -37
- package/styles/bootstrap4.css +110 -37
- package/styles/bootstrap5-dark.css +102 -37
- package/styles/bootstrap5.css +102 -37
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_theme.scss +68 -3
- package/styles/document-editor/bootstrap-dark.css +6 -0
- package/styles/document-editor/bootstrap.css +10 -0
- package/styles/document-editor/bootstrap4.css +14 -0
- package/styles/document-editor/bootstrap5-dark.css +6 -0
- package/styles/document-editor/bootstrap5.css +6 -0
- package/styles/document-editor/fabric-dark.css +6 -0
- package/styles/document-editor/fabric.css +10 -0
- package/styles/document-editor/fluent-dark.css +6 -0
- package/styles/document-editor/fluent.css +6 -0
- package/styles/document-editor/highcontrast.css +6 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +6 -6
- package/styles/document-editor/material-dark.css +6 -0
- package/styles/document-editor/material.css +6 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +5 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +5 -0
- package/styles/document-editor/tailwind-dark.css +6 -0
- package/styles/document-editor/tailwind.css +6 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +1 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
- package/styles/document-editor-container/_material-dark-definition.scss +2 -1
- package/styles/document-editor-container/_material-definition.scss +1 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +163 -0
- package/styles/document-editor-container/_tailwind-definition.scss +1 -0
- package/styles/document-editor-container/_theme.scss +271 -52
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
- package/styles/document-editor-container/icons/_fabric.scss +15 -0
- package/styles/document-editor-container/icons/_fluent.scss +15 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
- package/styles/document-editor-container/icons/_material-dark.scss +15 -0
- package/styles/document-editor-container/icons/_material.scss +15 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +29 -15
- package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
- package/styles/document-editor-container/icons/_tailwind.scss +15 -0
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +6 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +6 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +102 -37
- package/styles/fabric.css +106 -37
- package/styles/fluent-dark.css +102 -37
- package/styles/fluent.css +102 -37
- package/styles/highcontrast-light.css +96 -37
- package/styles/highcontrast.css +102 -37
- package/styles/material-dark.css +107 -42
- package/styles/material.css +103 -37
- package/styles/material3-dark.css +6094 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +6150 -0
- package/styles/material3.scss +4 -0
- package/styles/tailwind-dark.css +101 -36
- package/styles/tailwind.css +101 -36
- package/schematics/collection.json +0 -15
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
- package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
font-family: "e-icons";
|
|
426
426
|
}
|
|
427
427
|
|
|
428
|
+
.e-de-e-paragraph-style-mark::before {
|
|
429
|
+
content: "\e844";
|
|
430
|
+
font-family: "e-icons";
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.e-de-e-character-style-mark::before {
|
|
434
|
+
content: "\e8bf";
|
|
435
|
+
font-family: "e-icons";
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.e-de-e-linked-style-mark::before {
|
|
439
|
+
content: "\e8c0";
|
|
440
|
+
font-family: "e-icons";
|
|
441
|
+
}
|
|
442
|
+
|
|
428
443
|
.e-de-ctnr-columns::before {
|
|
429
444
|
content: "\e8b4";
|
|
430
445
|
font-family: "e-icons";
|
|
@@ -557,6 +572,46 @@
|
|
|
557
572
|
height: 100%;
|
|
558
573
|
}
|
|
559
574
|
|
|
575
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
576
|
+
box-shadow: none;
|
|
577
|
+
height: 31px;
|
|
578
|
+
}
|
|
579
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
580
|
+
box-shadow: none;
|
|
581
|
+
}
|
|
582
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
583
|
+
box-shadow: none;
|
|
584
|
+
}
|
|
585
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
586
|
+
box-shadow: none;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.e-de-ctnr-group-btn-middle button {
|
|
590
|
+
border-radius: 0px;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
594
|
+
box-shadow: none;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
598
|
+
.e-de-ctn .e-de-status-bar button {
|
|
599
|
+
box-shadow: none;
|
|
600
|
+
height: 31px;
|
|
601
|
+
}
|
|
602
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
603
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
604
|
+
box-shadow: none;
|
|
605
|
+
}
|
|
606
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
607
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
608
|
+
box-shadow: none;
|
|
609
|
+
}
|
|
610
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
611
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
612
|
+
box-shadow: none;
|
|
613
|
+
}
|
|
614
|
+
|
|
560
615
|
.e-de-statusbar-pageweb {
|
|
561
616
|
background: #f8f9fa;
|
|
562
617
|
border: 0;
|
|
@@ -592,7 +647,10 @@
|
|
|
592
647
|
}
|
|
593
648
|
|
|
594
649
|
.e-de-listview-icon {
|
|
650
|
+
height: auto;
|
|
651
|
+
width: auto;
|
|
595
652
|
line-height: 22px;
|
|
653
|
+
margin-right: 12px;
|
|
596
654
|
}
|
|
597
655
|
|
|
598
656
|
.e-de-linespacing {
|
|
@@ -692,14 +750,22 @@
|
|
|
692
750
|
.e-de-statusbar-separator {
|
|
693
751
|
border-left: 1px solid #dee2e6;
|
|
694
752
|
height: 16px;
|
|
695
|
-
margin-left:
|
|
753
|
+
margin-left: 7.5px;
|
|
754
|
+
margin-right: 7.5px;
|
|
755
|
+
margin-top: 6px;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.e-bigger .e-de-statusbar-separator {
|
|
759
|
+
border-left: 1px solid #dee2e6;
|
|
760
|
+
height: 16px;
|
|
761
|
+
margin-left: 7.5px;
|
|
762
|
+
margin-right: 7.5px;
|
|
696
763
|
margin-top: 6px;
|
|
697
764
|
}
|
|
698
765
|
|
|
699
766
|
.e-de-statusbar-spellcheck {
|
|
700
767
|
border-radius: 2px;
|
|
701
768
|
font-weight: 400;
|
|
702
|
-
margin-left: 7.5px;
|
|
703
769
|
}
|
|
704
770
|
|
|
705
771
|
.e-de-ctn {
|
|
@@ -712,7 +778,6 @@
|
|
|
712
778
|
|
|
713
779
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
714
780
|
border-radius: 2px;
|
|
715
|
-
margin-left: 7.5px;
|
|
716
781
|
}
|
|
717
782
|
|
|
718
783
|
.e-de-ctnr-toolbar {
|
|
@@ -1120,6 +1185,7 @@
|
|
|
1120
1185
|
}
|
|
1121
1186
|
|
|
1122
1187
|
.e-de-review-pane {
|
|
1188
|
+
background: #f8f9fa;
|
|
1123
1189
|
border-left: 1px solid #ced4da;
|
|
1124
1190
|
height: 100%;
|
|
1125
1191
|
min-height: 200px;
|
|
@@ -1137,34 +1203,6 @@
|
|
|
1137
1203
|
width: 306px;
|
|
1138
1204
|
}
|
|
1139
1205
|
|
|
1140
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
1141
|
-
box-shadow: none;
|
|
1142
|
-
height: 31px;
|
|
1143
|
-
}
|
|
1144
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
1145
|
-
box-shadow: none;
|
|
1146
|
-
}
|
|
1147
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
1148
|
-
box-shadow: none;
|
|
1149
|
-
}
|
|
1150
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1151
|
-
box-shadow: none;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
.e-de-ctnr-group-btn button {
|
|
1155
|
-
box-shadow: none;
|
|
1156
|
-
height: 31px;
|
|
1157
|
-
}
|
|
1158
|
-
.e-de-ctnr-group-btn button:focus {
|
|
1159
|
-
box-shadow: none;
|
|
1160
|
-
}
|
|
1161
|
-
.e-de-ctnr-group-btn button:active {
|
|
1162
|
-
box-shadow: none;
|
|
1163
|
-
}
|
|
1164
|
-
.e-de-ctnr-group-btn button:hover {
|
|
1165
|
-
box-shadow: none;
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
1206
|
.e-de-property-div-padding {
|
|
1169
1207
|
border-bottom: 0.5px solid #dee2e6;
|
|
1170
1208
|
padding: 12px;
|
|
@@ -1297,7 +1335,7 @@
|
|
|
1297
1335
|
}
|
|
1298
1336
|
|
|
1299
1337
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
1300
|
-
border-bottom: 1px solid #6c757d;
|
|
1338
|
+
border-bottom: 1px solid #6c757d !important;
|
|
1301
1339
|
margin-left: 5px;
|
|
1302
1340
|
width: 100%;
|
|
1303
1341
|
}
|
|
@@ -1366,10 +1404,10 @@
|
|
|
1366
1404
|
}
|
|
1367
1405
|
|
|
1368
1406
|
.e-de-list-container {
|
|
1369
|
-
background: #f8f9fa;
|
|
1370
1407
|
border: 1px solid #ccc;
|
|
1371
1408
|
border-radius: 2px;
|
|
1372
1409
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1410
|
+
background: #f8f9fa;
|
|
1373
1411
|
box-sizing: border-box;
|
|
1374
1412
|
display: inline-block;
|
|
1375
1413
|
line-height: normal;
|
|
@@ -1642,7 +1680,7 @@
|
|
|
1642
1680
|
}
|
|
1643
1681
|
|
|
1644
1682
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1645
|
-
height:
|
|
1683
|
+
height: 36px !important;
|
|
1646
1684
|
}
|
|
1647
1685
|
|
|
1648
1686
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -1669,7 +1707,10 @@
|
|
|
1669
1707
|
margin-left: 12px;
|
|
1670
1708
|
}
|
|
1671
1709
|
.e-rtl .e-de-listview-icon {
|
|
1710
|
+
height: auto;
|
|
1711
|
+
width: auto;
|
|
1672
1712
|
line-height: 22px;
|
|
1713
|
+
margin-left: 12px;
|
|
1673
1714
|
}
|
|
1674
1715
|
|
|
1675
1716
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -1792,7 +1833,6 @@
|
|
|
1792
1833
|
height: 81px;
|
|
1793
1834
|
}
|
|
1794
1835
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
1795
|
-
height: 25px;
|
|
1796
1836
|
margin: 0 16px;
|
|
1797
1837
|
}
|
|
1798
1838
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1895,6 +1935,19 @@
|
|
|
1895
1935
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1896
1936
|
box-shadow: none;
|
|
1897
1937
|
}
|
|
1938
|
+
.e-bigger .e-de-status-bar button {
|
|
1939
|
+
height: 38px;
|
|
1940
|
+
box-shadow: none;
|
|
1941
|
+
}
|
|
1942
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
1943
|
+
box-shadow: none;
|
|
1944
|
+
}
|
|
1945
|
+
.e-bigger .e-de-status-bar button:active {
|
|
1946
|
+
box-shadow: none;
|
|
1947
|
+
}
|
|
1948
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
1949
|
+
box-shadow: none;
|
|
1950
|
+
}
|
|
1898
1951
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
1899
1952
|
box-shadow: none;
|
|
1900
1953
|
height: 38px;
|
|
@@ -2009,18 +2062,18 @@
|
|
|
2009
2062
|
margin-left: 10px;
|
|
2010
2063
|
}
|
|
2011
2064
|
.e-bigger .e-de-status-bar {
|
|
2012
|
-
background
|
|
2065
|
+
background: #f8f9fa;
|
|
2013
2066
|
display: -ms-flexbox;
|
|
2014
2067
|
display: flex;
|
|
2015
2068
|
padding-top: 5px;
|
|
2016
2069
|
width: 100%;
|
|
2017
2070
|
}
|
|
2018
2071
|
.e-bigger .e-de-statusbar-zoom {
|
|
2019
|
-
background-color: #f8f9fa;
|
|
2020
2072
|
border: 0;
|
|
2021
2073
|
color: #495057;
|
|
2022
2074
|
float: right;
|
|
2023
2075
|
height: 34px;
|
|
2076
|
+
background-color: #f8f9fa;
|
|
2024
2077
|
}
|
|
2025
2078
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
2026
2079
|
line-height: 25px;
|
|
@@ -2036,7 +2089,10 @@
|
|
|
2036
2089
|
margin-right: 16px;
|
|
2037
2090
|
}
|
|
2038
2091
|
.e-bigger .e-de-listview-icon {
|
|
2092
|
+
height: auto;
|
|
2093
|
+
width: auto;
|
|
2039
2094
|
line-height: 22px;
|
|
2095
|
+
margin-right: 16px;
|
|
2040
2096
|
}
|
|
2041
2097
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
2042
2098
|
height: 24px;
|
|
@@ -2044,7 +2100,10 @@
|
|
|
2044
2100
|
margin-left: 16px;
|
|
2045
2101
|
}
|
|
2046
2102
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
2103
|
+
height: auto;
|
|
2104
|
+
width: auto;
|
|
2047
2105
|
line-height: 22px;
|
|
2106
|
+
margin-left: 16px;
|
|
2048
2107
|
}
|
|
2049
2108
|
|
|
2050
2109
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -400,6 +400,21 @@
|
|
|
400
400
|
font-family: "e-icons";
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.e-de-e-paragraph-style-mark::before {
|
|
404
|
+
content: "\e353";
|
|
405
|
+
font-family: "e-icons";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before {
|
|
409
|
+
content: "\e982";
|
|
410
|
+
font-family: "e-icons";
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before {
|
|
414
|
+
content: "\e983";
|
|
415
|
+
font-family: "e-icons";
|
|
416
|
+
}
|
|
417
|
+
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: "\e972";
|
|
405
420
|
font-family: "e-icons";
|
|
@@ -532,6 +547,46 @@
|
|
|
532
547
|
height: 100%;
|
|
533
548
|
}
|
|
534
549
|
|
|
550
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
551
|
+
box-shadow: none;
|
|
552
|
+
height: 32px;
|
|
553
|
+
}
|
|
554
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
555
|
+
box-shadow: none;
|
|
556
|
+
}
|
|
557
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
558
|
+
box-shadow: none;
|
|
559
|
+
}
|
|
560
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
561
|
+
box-shadow: none;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.e-de-ctnr-group-btn-middle button {
|
|
565
|
+
border-radius: 0px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
569
|
+
box-shadow: none;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
573
|
+
.e-de-ctn .e-de-status-bar button {
|
|
574
|
+
box-shadow: none;
|
|
575
|
+
height: 32px;
|
|
576
|
+
}
|
|
577
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
578
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
579
|
+
box-shadow: none;
|
|
580
|
+
}
|
|
581
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
582
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
583
|
+
box-shadow: none;
|
|
584
|
+
}
|
|
585
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
586
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
587
|
+
box-shadow: none;
|
|
588
|
+
}
|
|
589
|
+
|
|
535
590
|
.e-de-statusbar-pageweb {
|
|
536
591
|
background: #282727;
|
|
537
592
|
border: 0;
|
|
@@ -569,7 +624,10 @@
|
|
|
569
624
|
}
|
|
570
625
|
|
|
571
626
|
.e-de-listview-icon {
|
|
627
|
+
height: auto;
|
|
628
|
+
width: auto;
|
|
572
629
|
line-height: 22px;
|
|
630
|
+
margin-right: 12px;
|
|
573
631
|
}
|
|
574
632
|
|
|
575
633
|
.e-de-linespacing {
|
|
@@ -640,14 +698,22 @@
|
|
|
640
698
|
.e-de-statusbar-separator {
|
|
641
699
|
border-left: 1px solid #dadada;
|
|
642
700
|
height: 16px;
|
|
643
|
-
margin-left:
|
|
701
|
+
margin-left: 7.5px;
|
|
702
|
+
margin-right: 7.5px;
|
|
703
|
+
margin-top: 10px;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.e-bigger .e-de-statusbar-separator {
|
|
707
|
+
border-left: 1px solid #dadada;
|
|
708
|
+
height: 16px;
|
|
709
|
+
margin-left: 7.5px;
|
|
710
|
+
margin-right: 7.5px;
|
|
644
711
|
margin-top: 10px;
|
|
645
712
|
}
|
|
646
713
|
|
|
647
714
|
.e-de-statusbar-spellcheck {
|
|
648
715
|
border-radius: 2px;
|
|
649
716
|
font-weight: 400;
|
|
650
|
-
margin-left: 7.5px;
|
|
651
717
|
}
|
|
652
718
|
|
|
653
719
|
.e-de-ctn {
|
|
@@ -660,7 +726,6 @@
|
|
|
660
726
|
|
|
661
727
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
662
728
|
border-radius: 2px;
|
|
663
|
-
margin-left: 7.5px;
|
|
664
729
|
}
|
|
665
730
|
|
|
666
731
|
.e-de-ctnr-toolbar {
|
|
@@ -910,6 +975,7 @@
|
|
|
910
975
|
}
|
|
911
976
|
|
|
912
977
|
.e-de-review-pane {
|
|
978
|
+
background: #282727;
|
|
913
979
|
border-left: 1px solid #4a4848;
|
|
914
980
|
height: 100%;
|
|
915
981
|
min-height: 200px;
|
|
@@ -927,34 +993,6 @@
|
|
|
927
993
|
width: 272px;
|
|
928
994
|
}
|
|
929
995
|
|
|
930
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
931
|
-
box-shadow: none;
|
|
932
|
-
height: 32px;
|
|
933
|
-
}
|
|
934
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
935
|
-
box-shadow: none;
|
|
936
|
-
}
|
|
937
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
938
|
-
box-shadow: none;
|
|
939
|
-
}
|
|
940
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
941
|
-
box-shadow: none;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.e-de-ctnr-group-btn button {
|
|
945
|
-
box-shadow: none;
|
|
946
|
-
height: 32px;
|
|
947
|
-
}
|
|
948
|
-
.e-de-ctnr-group-btn button:focus {
|
|
949
|
-
box-shadow: none;
|
|
950
|
-
}
|
|
951
|
-
.e-de-ctnr-group-btn button:active {
|
|
952
|
-
box-shadow: none;
|
|
953
|
-
}
|
|
954
|
-
.e-de-ctnr-group-btn button:hover {
|
|
955
|
-
box-shadow: none;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
996
|
.e-de-property-div-padding {
|
|
959
997
|
border-bottom: 0.5px solid #4a4848;
|
|
960
998
|
padding: 12.5px;
|
|
@@ -1078,7 +1116,7 @@
|
|
|
1078
1116
|
}
|
|
1079
1117
|
|
|
1080
1118
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
1081
|
-
border-bottom: 1px solid #ccc;
|
|
1119
|
+
border-bottom: 1px solid #ccc !important;
|
|
1082
1120
|
margin-left: 5px;
|
|
1083
1121
|
width: 100%;
|
|
1084
1122
|
}
|
|
@@ -1147,10 +1185,10 @@
|
|
|
1147
1185
|
}
|
|
1148
1186
|
|
|
1149
1187
|
.e-de-list-container {
|
|
1150
|
-
background: #282727;
|
|
1151
1188
|
border: 1px solid #ccc;
|
|
1152
1189
|
border-radius: 2px;
|
|
1153
1190
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1191
|
+
background: #282727;
|
|
1154
1192
|
box-sizing: border-box;
|
|
1155
1193
|
display: inline-block;
|
|
1156
1194
|
line-height: normal;
|
|
@@ -1423,7 +1461,7 @@
|
|
|
1423
1461
|
}
|
|
1424
1462
|
|
|
1425
1463
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1426
|
-
height:
|
|
1464
|
+
height: 36px !important;
|
|
1427
1465
|
}
|
|
1428
1466
|
|
|
1429
1467
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -1450,7 +1488,10 @@
|
|
|
1450
1488
|
margin-left: 12px;
|
|
1451
1489
|
}
|
|
1452
1490
|
.e-rtl .e-de-listview-icon {
|
|
1491
|
+
height: auto;
|
|
1492
|
+
width: auto;
|
|
1453
1493
|
line-height: 22px;
|
|
1494
|
+
margin-left: 12px;
|
|
1454
1495
|
}
|
|
1455
1496
|
|
|
1456
1497
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -1561,7 +1602,6 @@
|
|
|
1561
1602
|
height: 82px;
|
|
1562
1603
|
}
|
|
1563
1604
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
1564
|
-
height: 25px;
|
|
1565
1605
|
margin: 0 7.5px;
|
|
1566
1606
|
}
|
|
1567
1607
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1663,6 +1703,19 @@
|
|
|
1663
1703
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1664
1704
|
box-shadow: none;
|
|
1665
1705
|
}
|
|
1706
|
+
.e-bigger .e-de-status-bar button {
|
|
1707
|
+
height: 38px;
|
|
1708
|
+
box-shadow: none;
|
|
1709
|
+
}
|
|
1710
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
1711
|
+
box-shadow: none;
|
|
1712
|
+
}
|
|
1713
|
+
.e-bigger .e-de-status-bar button:active {
|
|
1714
|
+
box-shadow: none;
|
|
1715
|
+
}
|
|
1716
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
1717
|
+
box-shadow: none;
|
|
1718
|
+
}
|
|
1666
1719
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
1667
1720
|
box-shadow: none;
|
|
1668
1721
|
height: 38px;
|
|
@@ -1776,18 +1829,18 @@
|
|
|
1776
1829
|
margin-left: 10px;
|
|
1777
1830
|
}
|
|
1778
1831
|
.e-bigger .e-de-status-bar {
|
|
1779
|
-
background
|
|
1832
|
+
background: #282727;
|
|
1780
1833
|
display: -ms-flexbox;
|
|
1781
1834
|
display: flex;
|
|
1782
1835
|
padding-top: 3px;
|
|
1783
1836
|
width: 100%;
|
|
1784
1837
|
}
|
|
1785
1838
|
.e-bigger .e-de-statusbar-zoom {
|
|
1786
|
-
background-color: #282727;
|
|
1787
1839
|
border: 0;
|
|
1788
1840
|
color: #dadada;
|
|
1789
1841
|
float: right;
|
|
1790
1842
|
height: 34px;
|
|
1843
|
+
background-color: #282727;
|
|
1791
1844
|
}
|
|
1792
1845
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
1793
1846
|
line-height: 25px;
|
|
@@ -1803,7 +1856,10 @@
|
|
|
1803
1856
|
margin-right: 16px;
|
|
1804
1857
|
}
|
|
1805
1858
|
.e-bigger .e-de-listview-icon {
|
|
1859
|
+
height: auto;
|
|
1860
|
+
width: auto;
|
|
1806
1861
|
line-height: 22px;
|
|
1862
|
+
margin-right: 16px;
|
|
1807
1863
|
}
|
|
1808
1864
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
1809
1865
|
height: 24px;
|
|
@@ -1811,7 +1867,10 @@
|
|
|
1811
1867
|
margin-left: 16px;
|
|
1812
1868
|
}
|
|
1813
1869
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
1870
|
+
height: auto;
|
|
1871
|
+
width: auto;
|
|
1814
1872
|
line-height: 22px;
|
|
1873
|
+
margin-left: 16px;
|
|
1815
1874
|
}
|
|
1816
1875
|
|
|
1817
1876
|
.e-de-ctn .e-de-bzr-button {
|