@syncfusion/ej2-vue-spreadsheet 20.2.49 → 20.3.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 -72
- package/dist/ej2-vue-spreadsheet.umd.min.js +2 -2
- package/dist/ej2-vue-spreadsheet.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es2015.js +66 -76
- package/dist/es6/ej2-vue-spreadsheet.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es5.js +66 -76
- package/dist/es6/ej2-vue-spreadsheet.es5.js.map +1 -1
- package/dist/global/ej2-vue-spreadsheet.min.js +2 -2
- package/package.json +8 -8
- package/src/spreadsheet/cells.directive.d.ts +0 -1
- package/src/spreadsheet/cells.directive.js +5 -6
- package/src/spreadsheet/chart.directive.d.ts +0 -1
- package/src/spreadsheet/chart.directive.js +5 -6
- package/src/spreadsheet/columns.directive.d.ts +0 -1
- package/src/spreadsheet/columns.directive.js +5 -6
- package/src/spreadsheet/conditionalformats.directive.d.ts +0 -1
- package/src/spreadsheet/conditionalformats.directive.js +5 -6
- package/src/spreadsheet/definednames.directive.d.ts +0 -1
- package/src/spreadsheet/definednames.directive.js +5 -6
- package/src/spreadsheet/image.directive.d.ts +0 -1
- package/src/spreadsheet/image.directive.js +5 -6
- package/src/spreadsheet/ranges.directive.d.ts +0 -1
- package/src/spreadsheet/ranges.directive.js +5 -6
- package/src/spreadsheet/rows.directive.d.ts +0 -1
- package/src/spreadsheet/rows.directive.js +5 -6
- package/src/spreadsheet/sheets.directive.d.ts +0 -1
- package/src/spreadsheet/sheets.directive.js +5 -6
- package/src/spreadsheet/spreadsheet.component.d.ts +0 -1
- package/src/spreadsheet/spreadsheet.component.js +4 -5
- package/styles/bootstrap-dark.css +44 -37
- package/styles/bootstrap.css +43 -36
- package/styles/bootstrap4.css +44 -36
- package/styles/bootstrap5-dark.css +47 -37
- package/styles/bootstrap5.css +47 -37
- package/styles/fabric-dark.css +43 -36
- package/styles/fabric.css +43 -36
- package/styles/fluent-dark.css +40 -42
- package/styles/fluent.css +40 -42
- package/styles/highcontrast-light.css +34 -37
- package/styles/highcontrast.css +39 -36
- package/styles/material-dark.css +39 -39
- package/styles/material.css +37 -37
- package/styles/ribbon/bootstrap-dark.css +1 -1
- package/styles/ribbon/bootstrap.css +1 -1
- package/styles/ribbon/bootstrap4.css +1 -1
- package/styles/ribbon/bootstrap5-dark.css +1 -1
- package/styles/ribbon/bootstrap5.css +1 -1
- package/styles/ribbon/fabric-dark.css +1 -1
- package/styles/ribbon/fabric.css +1 -1
- package/styles/ribbon/fluent-dark.css +1 -1
- package/styles/ribbon/fluent.css +1 -1
- package/styles/ribbon/highcontrast-light.css +1 -1
- package/styles/ribbon/highcontrast.css +1 -1
- package/styles/ribbon/material-dark.css +1 -1
- package/styles/ribbon/material.css +1 -1
- package/styles/ribbon/tailwind-dark.css +1 -1
- package/styles/ribbon/tailwind.css +1 -1
- package/styles/spreadsheet/bootstrap-dark.css +43 -36
- package/styles/spreadsheet/bootstrap.css +42 -35
- package/styles/spreadsheet/bootstrap4.css +43 -35
- package/styles/spreadsheet/bootstrap5-dark.css +46 -36
- package/styles/spreadsheet/bootstrap5.css +46 -36
- package/styles/spreadsheet/fabric-dark.css +42 -35
- package/styles/spreadsheet/fabric.css +42 -35
- package/styles/spreadsheet/fluent-dark.css +39 -41
- package/styles/spreadsheet/fluent.css +39 -41
- package/styles/spreadsheet/highcontrast-light.css +33 -36
- package/styles/spreadsheet/highcontrast.css +38 -35
- package/styles/spreadsheet/material-dark.css +38 -38
- package/styles/spreadsheet/material.css +36 -36
- package/styles/spreadsheet/tailwind-dark.css +38 -37
- package/styles/spreadsheet/tailwind.css +38 -37
- package/styles/tailwind-dark.css +39 -38
- package/styles/tailwind.css +39 -38
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/*! Bootstrap specific themes definition's */
|
|
3
3
|
/*! Vertical Tab */
|
|
4
4
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
5
|
+
/* stylelint-disable */
|
|
5
6
|
.e-popup.e-ddl {
|
|
6
7
|
border-radius: 4px;
|
|
7
8
|
box-shadow: none;
|
|
@@ -692,7 +693,7 @@
|
|
|
692
693
|
user-select: none;
|
|
693
694
|
}
|
|
694
695
|
.e-spreadsheet .e-delete-sheet-dlg.e-dialog {
|
|
695
|
-
height: 211px !important;
|
|
696
|
+
height: 211px !important; /* stylelint-disable-line declaration-no-important */
|
|
696
697
|
}
|
|
697
698
|
.e-spreadsheet .e-protect-dlg.e-dialog {
|
|
698
699
|
height: 470px;
|
|
@@ -704,8 +705,8 @@
|
|
|
704
705
|
margin-bottom: 4px;
|
|
705
706
|
}
|
|
706
707
|
.e-spreadsheet .e-custom-format-dlg.e-dialog {
|
|
707
|
-
height: 510px !important;
|
|
708
|
-
width: 530px !important;
|
|
708
|
+
height: 510px !important; /* stylelint-disable-line declaration-no-important */
|
|
709
|
+
width: 530px !important; /* stylelint-disable-line declaration-no-important */
|
|
709
710
|
}
|
|
710
711
|
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-footer-content {
|
|
711
712
|
padding: 0;
|
|
@@ -715,7 +716,7 @@
|
|
|
715
716
|
padding-top: 3px;
|
|
716
717
|
}
|
|
717
718
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
718
|
-
left: 0 !important;
|
|
719
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
719
720
|
}
|
|
720
721
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
721
722
|
font-size: 18px;
|
|
@@ -734,7 +735,7 @@
|
|
|
734
735
|
margin-top: 10px;
|
|
735
736
|
}
|
|
736
737
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
737
|
-
left: 0 !important;
|
|
738
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
738
739
|
}
|
|
739
740
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
740
741
|
font-size: 18px;
|
|
@@ -772,6 +773,7 @@
|
|
|
772
773
|
}
|
|
773
774
|
.e-spreadsheet .e-findtool-dlg .e-dlg-content {
|
|
774
775
|
padding: 0%;
|
|
776
|
+
margin-bottom: 0;
|
|
775
777
|
}
|
|
776
778
|
.e-spreadsheet .e-findtool-dlg .e-dlg-content .e-input-group {
|
|
777
779
|
width: 170px;
|
|
@@ -899,7 +901,7 @@
|
|
|
899
901
|
display: none;
|
|
900
902
|
}
|
|
901
903
|
.e-spreadsheet.e-hide-row-header .e-column-header, .e-spreadsheet.e-hide-row-header .e-sheet-content {
|
|
902
|
-
width: 100% !important;
|
|
904
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
903
905
|
}
|
|
904
906
|
.e-spreadsheet.e-hide-column-header .e-header-panel {
|
|
905
907
|
display: none;
|
|
@@ -1134,8 +1136,8 @@
|
|
|
1134
1136
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1135
1137
|
background-color: #0078d4;
|
|
1136
1138
|
cursor: ns-resize;
|
|
1137
|
-
left: 50%;
|
|
1138
1139
|
position: absolute;
|
|
1140
|
+
right: 50%;
|
|
1139
1141
|
top: 0;
|
|
1140
1142
|
transform: translate(-50%, -50%);
|
|
1141
1143
|
}
|
|
@@ -1150,8 +1152,8 @@
|
|
|
1150
1152
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1151
1153
|
background-color: #0078d4;
|
|
1152
1154
|
cursor: ns-resize;
|
|
1153
|
-
left: 50%;
|
|
1154
1155
|
position: absolute;
|
|
1156
|
+
right: 50%;
|
|
1155
1157
|
top: 100%;
|
|
1156
1158
|
transform: translate(-50%, -50%);
|
|
1157
1159
|
}
|
|
@@ -1272,14 +1274,14 @@
|
|
|
1272
1274
|
}
|
|
1273
1275
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-control.e-chart {
|
|
1274
1276
|
height: 100%;
|
|
1275
|
-
position: initial !important;
|
|
1277
|
+
position: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
1276
1278
|
width: 100%;
|
|
1277
1279
|
}
|
|
1278
1280
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-control.e-accumulationchart {
|
|
1279
1281
|
height: 100%;
|
|
1280
1282
|
overflow: hidden;
|
|
1281
1283
|
padding: 4px;
|
|
1282
|
-
position: initial !important;
|
|
1284
|
+
position: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
1283
1285
|
width: 100%;
|
|
1284
1286
|
}
|
|
1285
1287
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-ss-overlay-l,
|
|
@@ -1397,7 +1399,7 @@
|
|
|
1397
1399
|
margin-right: 8px;
|
|
1398
1400
|
}
|
|
1399
1401
|
.e-spreadsheet .e-hide {
|
|
1400
|
-
display: none !important;
|
|
1402
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1401
1403
|
}
|
|
1402
1404
|
.e-spreadsheet .e-selection {
|
|
1403
1405
|
border-style: solid;
|
|
@@ -1514,7 +1516,7 @@
|
|
|
1514
1516
|
text-align: right;
|
|
1515
1517
|
}
|
|
1516
1518
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn:not(.e-tbar-btn) {
|
|
1517
|
-
font-weight:
|
|
1519
|
+
font-weight: normal;
|
|
1518
1520
|
padding-bottom: 0;
|
|
1519
1521
|
padding-top: 0;
|
|
1520
1522
|
}
|
|
@@ -1543,17 +1545,17 @@
|
|
|
1543
1545
|
font-size: 16px;
|
|
1544
1546
|
}
|
|
1545
1547
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-chart-icon, .e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-chart-type-icon {
|
|
1546
|
-
font-size: 30px !important;
|
|
1548
|
+
font-size: 30px !important; /* stylelint-disable-line declaration-no-important */
|
|
1547
1549
|
margin-right: 5px;
|
|
1548
1550
|
padding: 0 5px;
|
|
1549
1551
|
width: 30px;
|
|
1550
1552
|
}
|
|
1551
1553
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-switch-row-column-icon {
|
|
1552
|
-
font-size: 18px !important;
|
|
1554
|
+
font-size: 18px !important; /* stylelint-disable-line declaration-no-important */
|
|
1553
1555
|
margin-right: 5px;
|
|
1554
1556
|
}
|
|
1555
1557
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-addchart-icon {
|
|
1556
|
-
font-size: 18px !important;
|
|
1558
|
+
font-size: 18px !important; /* stylelint-disable-line declaration-no-important */
|
|
1557
1559
|
margin-right: -5px;
|
|
1558
1560
|
}
|
|
1559
1561
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn.e-split-colorpicker {
|
|
@@ -1730,7 +1732,7 @@
|
|
|
1730
1732
|
}
|
|
1731
1733
|
.e-spreadsheet .e-validation-list .e-input-group {
|
|
1732
1734
|
border: 0;
|
|
1733
|
-
box-shadow: none !important;
|
|
1735
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1734
1736
|
}
|
|
1735
1737
|
.e-spreadsheet .e-validation-list .e-ddl-icon {
|
|
1736
1738
|
bottom: 5px;
|
|
@@ -1880,7 +1882,7 @@
|
|
|
1880
1882
|
}
|
|
1881
1883
|
.e-spreadsheet .e-hyperlink-dlg.e-dialog,
|
|
1882
1884
|
.e-spreadsheet .e-edithyperlink-dlg.e-dialog {
|
|
1883
|
-
max-height: 640px !important;
|
|
1885
|
+
max-height: 640px !important; /* stylelint-disable-line declaration-no-important */
|
|
1884
1886
|
}
|
|
1885
1887
|
.e-spreadsheet .e-hyperlink-dlg.e-dialog .e-dlg-header-content,
|
|
1886
1888
|
.e-spreadsheet .e-edithyperlink-dlg.e-dialog .e-dlg-header-content {
|
|
@@ -1990,7 +1992,7 @@
|
|
|
1990
1992
|
text-align: left;
|
|
1991
1993
|
}
|
|
1992
1994
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1993
|
-
left: 0 !important;
|
|
1995
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1994
1996
|
}
|
|
1995
1997
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1996
1998
|
font-size: 18px;
|
|
@@ -2010,7 +2012,7 @@
|
|
|
2010
2012
|
margin-bottom: 4px;
|
|
2011
2013
|
}
|
|
2012
2014
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2013
|
-
left: 0 !important;
|
|
2015
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2014
2016
|
}
|
|
2015
2017
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2016
2018
|
font-size: 18px;
|
|
@@ -2029,7 +2031,7 @@
|
|
|
2029
2031
|
margin-top: 10px;
|
|
2030
2032
|
}
|
|
2031
2033
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2032
|
-
left: 0 !important;
|
|
2034
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2033
2035
|
}
|
|
2034
2036
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2035
2037
|
font-size: 18px;
|
|
@@ -2061,7 +2063,7 @@
|
|
|
2061
2063
|
height: 18px;
|
|
2062
2064
|
margin-right: -1px;
|
|
2063
2065
|
padding: 0;
|
|
2064
|
-
position:
|
|
2066
|
+
position: relative;
|
|
2065
2067
|
right: 0;
|
|
2066
2068
|
width: 20px;
|
|
2067
2069
|
z-index: 2;
|
|
@@ -2072,7 +2074,7 @@
|
|
|
2072
2074
|
}
|
|
2073
2075
|
.e-colorpicker-wrapper.e-border-colorpicker .e-container {
|
|
2074
2076
|
box-shadow: none;
|
|
2075
|
-
width: 270px !important;
|
|
2077
|
+
width: 270px !important; /* stylelint-disable-line declaration-no-important */
|
|
2076
2078
|
}
|
|
2077
2079
|
.e-colorpicker-wrapper.e-border-colorpicker .e-container .e-selected-value {
|
|
2078
2080
|
display: -ms-flexbox;
|
|
@@ -2141,36 +2143,33 @@
|
|
|
2141
2143
|
font-family: "Calibri";
|
|
2142
2144
|
}
|
|
2143
2145
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2144
|
-
font-family: "Comic Sans MS";
|
|
2145
|
-
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2146
|
font-family: "Courier";
|
|
2148
2147
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2150
2149
|
font-family: "Courier New";
|
|
2151
2150
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2153
2152
|
font-family: "Din Condensed";
|
|
2154
2153
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2156
2155
|
font-family: "Georgia";
|
|
2157
2156
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2159
2158
|
font-family: "Helvetica";
|
|
2160
2159
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2162
2161
|
font-family: "Helvetica New";
|
|
2163
2162
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2165
2164
|
font-family: "Roboto";
|
|
2166
2165
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2168
2167
|
font-family: "Tahoma";
|
|
2169
2168
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2171
2170
|
font-family: "Times New Roman";
|
|
2172
2171
|
}
|
|
2173
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2174
2173
|
font-family: "Verdana";
|
|
2175
2174
|
}
|
|
2176
2175
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2456,7 +2455,7 @@
|
|
|
2456
2455
|
}
|
|
2457
2456
|
.e-spreadsheet-function-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2458
2457
|
font-size: 16px;
|
|
2459
|
-
font-weight:
|
|
2458
|
+
font-weight: normal;
|
|
2460
2459
|
}
|
|
2461
2460
|
.e-spreadsheet-function-dlg.e-dialog .e-dlg-content {
|
|
2462
2461
|
overflow: hidden;
|
|
@@ -2548,11 +2547,11 @@
|
|
|
2548
2547
|
|
|
2549
2548
|
.e-bigger .e-spreadsheet .e-protect-dlg.e-dialog,
|
|
2550
2549
|
.e-bigger.e-spreadsheet .e-protect-dlg.e-dialog {
|
|
2551
|
-
height: 790px !important;
|
|
2550
|
+
height: 790px !important; /* stylelint-disable-line declaration-no-important */
|
|
2552
2551
|
}
|
|
2553
2552
|
.e-bigger .e-spreadsheet .e-delete-sheet-dlg.e-dialog,
|
|
2554
2553
|
.e-bigger.e-spreadsheet .e-delete-sheet-dlg.e-dialog {
|
|
2555
|
-
height: 240px !important;
|
|
2554
|
+
height: 240px !important; /* stylelint-disable-line declaration-no-important */
|
|
2556
2555
|
}
|
|
2557
2556
|
.e-bigger .e-spreadsheet .e-merge-alert-dlg.e-dialog,
|
|
2558
2557
|
.e-bigger.e-spreadsheet .e-merge-alert-dlg.e-dialog {
|
|
@@ -2568,7 +2567,7 @@
|
|
|
2568
2567
|
}
|
|
2569
2568
|
.e-bigger .e-spreadsheet .e-spreadsheet-function-dlg.e-dialog,
|
|
2570
2569
|
.e-bigger.e-spreadsheet .e-spreadsheet-function-dlg.e-dialog {
|
|
2571
|
-
height: 515px !important;
|
|
2570
|
+
height: 515px !important; /* stylelint-disable-line declaration-no-important */
|
|
2572
2571
|
}
|
|
2573
2572
|
.e-bigger .e-spreadsheet .e-validation-list .e-ddl-icon,
|
|
2574
2573
|
.e-bigger.e-spreadsheet .e-validation-list .e-ddl-icon {
|
|
@@ -2726,8 +2725,8 @@
|
|
|
2726
2725
|
}
|
|
2727
2726
|
.e-bigger .e-spreadsheet .e-customsort-dlg.e-dialog,
|
|
2728
2727
|
.e-bigger.e-spreadsheet .e-customsort-dlg.e-dialog {
|
|
2729
|
-
width: 590px !important;
|
|
2730
|
-
width: 630px !important;
|
|
2728
|
+
width: 590px !important; /* stylelint-disable-line declaration-no-important */
|
|
2729
|
+
width: 630px !important; /* stylelint-disable-line declaration-no-important */
|
|
2731
2730
|
}
|
|
2732
2731
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
2733
2732
|
.e-bigger.e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item {
|
|
@@ -2789,7 +2788,6 @@
|
|
|
2789
2788
|
.e-bigger.e-spreadsheet .e-checkboxtree.e-rtl ul {
|
|
2790
2789
|
padding-right: 0;
|
|
2791
2790
|
}
|
|
2792
|
-
|
|
2793
2791
|
.e-bigger.e-dropdown-popup.e-font-size-ddb ul,
|
|
2794
2792
|
.e-bigger .e-dropdown-popup.e-font-size-ddb ul {
|
|
2795
2793
|
min-width: 70px;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/*! Bootstrap specific themes definition's */
|
|
3
3
|
/*! Vertical Tab */
|
|
4
4
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
5
|
+
/* stylelint-disable */
|
|
5
6
|
.e-popup.e-ddl {
|
|
6
7
|
border-radius: 4px;
|
|
7
8
|
box-shadow: none;
|
|
@@ -692,7 +693,7 @@
|
|
|
692
693
|
user-select: none;
|
|
693
694
|
}
|
|
694
695
|
.e-spreadsheet .e-delete-sheet-dlg.e-dialog {
|
|
695
|
-
height: 211px !important;
|
|
696
|
+
height: 211px !important; /* stylelint-disable-line declaration-no-important */
|
|
696
697
|
}
|
|
697
698
|
.e-spreadsheet .e-protect-dlg.e-dialog {
|
|
698
699
|
height: 470px;
|
|
@@ -704,8 +705,8 @@
|
|
|
704
705
|
margin-bottom: 4px;
|
|
705
706
|
}
|
|
706
707
|
.e-spreadsheet .e-custom-format-dlg.e-dialog {
|
|
707
|
-
height: 510px !important;
|
|
708
|
-
width: 530px !important;
|
|
708
|
+
height: 510px !important; /* stylelint-disable-line declaration-no-important */
|
|
709
|
+
width: 530px !important; /* stylelint-disable-line declaration-no-important */
|
|
709
710
|
}
|
|
710
711
|
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-footer-content {
|
|
711
712
|
padding: 0;
|
|
@@ -715,7 +716,7 @@
|
|
|
715
716
|
padding-top: 3px;
|
|
716
717
|
}
|
|
717
718
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
718
|
-
left: 0 !important;
|
|
719
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
719
720
|
}
|
|
720
721
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
721
722
|
font-size: 18px;
|
|
@@ -734,7 +735,7 @@
|
|
|
734
735
|
margin-top: 10px;
|
|
735
736
|
}
|
|
736
737
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
737
|
-
left: 0 !important;
|
|
738
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
738
739
|
}
|
|
739
740
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
740
741
|
font-size: 18px;
|
|
@@ -772,6 +773,7 @@
|
|
|
772
773
|
}
|
|
773
774
|
.e-spreadsheet .e-findtool-dlg .e-dlg-content {
|
|
774
775
|
padding: 0%;
|
|
776
|
+
margin-bottom: 0;
|
|
775
777
|
}
|
|
776
778
|
.e-spreadsheet .e-findtool-dlg .e-dlg-content .e-input-group {
|
|
777
779
|
width: 170px;
|
|
@@ -899,7 +901,7 @@
|
|
|
899
901
|
display: none;
|
|
900
902
|
}
|
|
901
903
|
.e-spreadsheet.e-hide-row-header .e-column-header, .e-spreadsheet.e-hide-row-header .e-sheet-content {
|
|
902
|
-
width: 100% !important;
|
|
904
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
903
905
|
}
|
|
904
906
|
.e-spreadsheet.e-hide-column-header .e-header-panel {
|
|
905
907
|
display: none;
|
|
@@ -1134,8 +1136,8 @@
|
|
|
1134
1136
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1135
1137
|
background-color: #0078d4;
|
|
1136
1138
|
cursor: ns-resize;
|
|
1137
|
-
left: 50%;
|
|
1138
1139
|
position: absolute;
|
|
1140
|
+
right: 50%;
|
|
1139
1141
|
top: 0;
|
|
1140
1142
|
transform: translate(-50%, -50%);
|
|
1141
1143
|
}
|
|
@@ -1150,8 +1152,8 @@
|
|
|
1150
1152
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1151
1153
|
background-color: #0078d4;
|
|
1152
1154
|
cursor: ns-resize;
|
|
1153
|
-
left: 50%;
|
|
1154
1155
|
position: absolute;
|
|
1156
|
+
right: 50%;
|
|
1155
1157
|
top: 100%;
|
|
1156
1158
|
transform: translate(-50%, -50%);
|
|
1157
1159
|
}
|
|
@@ -1272,14 +1274,14 @@
|
|
|
1272
1274
|
}
|
|
1273
1275
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-control.e-chart {
|
|
1274
1276
|
height: 100%;
|
|
1275
|
-
position: initial !important;
|
|
1277
|
+
position: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
1276
1278
|
width: 100%;
|
|
1277
1279
|
}
|
|
1278
1280
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-control.e-accumulationchart {
|
|
1279
1281
|
height: 100%;
|
|
1280
1282
|
overflow: hidden;
|
|
1281
1283
|
padding: 4px;
|
|
1282
|
-
position: initial !important;
|
|
1284
|
+
position: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
1283
1285
|
width: 100%;
|
|
1284
1286
|
}
|
|
1285
1287
|
.e-spreadsheet .e-sheet .e-datavisualization-chart .e-ss-overlay-l,
|
|
@@ -1397,7 +1399,7 @@
|
|
|
1397
1399
|
margin-right: 8px;
|
|
1398
1400
|
}
|
|
1399
1401
|
.e-spreadsheet .e-hide {
|
|
1400
|
-
display: none !important;
|
|
1402
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1401
1403
|
}
|
|
1402
1404
|
.e-spreadsheet .e-selection {
|
|
1403
1405
|
border-style: solid;
|
|
@@ -1514,7 +1516,7 @@
|
|
|
1514
1516
|
text-align: right;
|
|
1515
1517
|
}
|
|
1516
1518
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn:not(.e-tbar-btn) {
|
|
1517
|
-
font-weight:
|
|
1519
|
+
font-weight: normal;
|
|
1518
1520
|
padding-bottom: 0;
|
|
1519
1521
|
padding-top: 0;
|
|
1520
1522
|
}
|
|
@@ -1543,17 +1545,17 @@
|
|
|
1543
1545
|
font-size: 16px;
|
|
1544
1546
|
}
|
|
1545
1547
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-chart-icon, .e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-chart-type-icon {
|
|
1546
|
-
font-size: 30px !important;
|
|
1548
|
+
font-size: 30px !important; /* stylelint-disable-line declaration-no-important */
|
|
1547
1549
|
margin-right: 5px;
|
|
1548
1550
|
padding: 0 5px;
|
|
1549
1551
|
width: 30px;
|
|
1550
1552
|
}
|
|
1551
1553
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-switch-row-column-icon {
|
|
1552
|
-
font-size: 18px !important;
|
|
1554
|
+
font-size: 18px !important; /* stylelint-disable-line declaration-no-important */
|
|
1553
1555
|
margin-right: 5px;
|
|
1554
1556
|
}
|
|
1555
1557
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn .e-addchart-icon {
|
|
1556
|
-
font-size: 18px !important;
|
|
1558
|
+
font-size: 18px !important; /* stylelint-disable-line declaration-no-important */
|
|
1557
1559
|
margin-right: -5px;
|
|
1558
1560
|
}
|
|
1559
1561
|
.e-spreadsheet .e-ribbon .e-toolbar .e-toolbar-item .e-btn.e-split-colorpicker {
|
|
@@ -1730,7 +1732,7 @@
|
|
|
1730
1732
|
}
|
|
1731
1733
|
.e-spreadsheet .e-validation-list .e-input-group {
|
|
1732
1734
|
border: 0;
|
|
1733
|
-
box-shadow: none !important;
|
|
1735
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1734
1736
|
}
|
|
1735
1737
|
.e-spreadsheet .e-validation-list .e-ddl-icon {
|
|
1736
1738
|
bottom: 5px;
|
|
@@ -1880,7 +1882,7 @@
|
|
|
1880
1882
|
}
|
|
1881
1883
|
.e-spreadsheet .e-hyperlink-dlg.e-dialog,
|
|
1882
1884
|
.e-spreadsheet .e-edithyperlink-dlg.e-dialog {
|
|
1883
|
-
max-height: 640px !important;
|
|
1885
|
+
max-height: 640px !important; /* stylelint-disable-line declaration-no-important */
|
|
1884
1886
|
}
|
|
1885
1887
|
.e-spreadsheet .e-hyperlink-dlg.e-dialog .e-dlg-header-content,
|
|
1886
1888
|
.e-spreadsheet .e-edithyperlink-dlg.e-dialog .e-dlg-header-content {
|
|
@@ -1990,7 +1992,7 @@
|
|
|
1990
1992
|
text-align: left;
|
|
1991
1993
|
}
|
|
1992
1994
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1993
|
-
left: 0 !important;
|
|
1995
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1994
1996
|
}
|
|
1995
1997
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1996
1998
|
font-size: 18px;
|
|
@@ -2010,7 +2012,7 @@
|
|
|
2010
2012
|
margin-bottom: 4px;
|
|
2011
2013
|
}
|
|
2012
2014
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2013
|
-
left: 0 !important;
|
|
2015
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2014
2016
|
}
|
|
2015
2017
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2016
2018
|
font-size: 18px;
|
|
@@ -2029,7 +2031,7 @@
|
|
|
2029
2031
|
margin-top: 10px;
|
|
2030
2032
|
}
|
|
2031
2033
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2032
|
-
left: 0 !important;
|
|
2034
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2033
2035
|
}
|
|
2034
2036
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2035
2037
|
font-size: 18px;
|
|
@@ -2061,7 +2063,7 @@
|
|
|
2061
2063
|
height: 18px;
|
|
2062
2064
|
margin-right: -1px;
|
|
2063
2065
|
padding: 0;
|
|
2064
|
-
position:
|
|
2066
|
+
position: relative;
|
|
2065
2067
|
right: 0;
|
|
2066
2068
|
width: 20px;
|
|
2067
2069
|
z-index: 2;
|
|
@@ -2072,7 +2074,7 @@
|
|
|
2072
2074
|
}
|
|
2073
2075
|
.e-colorpicker-wrapper.e-border-colorpicker .e-container {
|
|
2074
2076
|
box-shadow: none;
|
|
2075
|
-
width: 270px !important;
|
|
2077
|
+
width: 270px !important; /* stylelint-disable-line declaration-no-important */
|
|
2076
2078
|
}
|
|
2077
2079
|
.e-colorpicker-wrapper.e-border-colorpicker .e-container .e-selected-value {
|
|
2078
2080
|
display: -ms-flexbox;
|
|
@@ -2141,36 +2143,33 @@
|
|
|
2141
2143
|
font-family: "Calibri";
|
|
2142
2144
|
}
|
|
2143
2145
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2144
|
-
font-family: "Comic Sans MS";
|
|
2145
|
-
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2146
|
font-family: "Courier";
|
|
2148
2147
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2150
2149
|
font-family: "Courier New";
|
|
2151
2150
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2153
2152
|
font-family: "Din Condensed";
|
|
2154
2153
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2156
2155
|
font-family: "Georgia";
|
|
2157
2156
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2159
2158
|
font-family: "Helvetica";
|
|
2160
2159
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2162
2161
|
font-family: "Helvetica New";
|
|
2163
2162
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2165
2164
|
font-family: "Roboto";
|
|
2166
2165
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2168
2167
|
font-family: "Tahoma";
|
|
2169
2168
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2171
2170
|
font-family: "Times New Roman";
|
|
2172
2171
|
}
|
|
2173
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2174
2173
|
font-family: "Verdana";
|
|
2175
2174
|
}
|
|
2176
2175
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2456,7 +2455,7 @@
|
|
|
2456
2455
|
}
|
|
2457
2456
|
.e-spreadsheet-function-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2458
2457
|
font-size: 16px;
|
|
2459
|
-
font-weight:
|
|
2458
|
+
font-weight: normal;
|
|
2460
2459
|
}
|
|
2461
2460
|
.e-spreadsheet-function-dlg.e-dialog .e-dlg-content {
|
|
2462
2461
|
overflow: hidden;
|
|
@@ -2548,11 +2547,11 @@
|
|
|
2548
2547
|
|
|
2549
2548
|
.e-bigger .e-spreadsheet .e-protect-dlg.e-dialog,
|
|
2550
2549
|
.e-bigger.e-spreadsheet .e-protect-dlg.e-dialog {
|
|
2551
|
-
height: 790px !important;
|
|
2550
|
+
height: 790px !important; /* stylelint-disable-line declaration-no-important */
|
|
2552
2551
|
}
|
|
2553
2552
|
.e-bigger .e-spreadsheet .e-delete-sheet-dlg.e-dialog,
|
|
2554
2553
|
.e-bigger.e-spreadsheet .e-delete-sheet-dlg.e-dialog {
|
|
2555
|
-
height: 240px !important;
|
|
2554
|
+
height: 240px !important; /* stylelint-disable-line declaration-no-important */
|
|
2556
2555
|
}
|
|
2557
2556
|
.e-bigger .e-spreadsheet .e-merge-alert-dlg.e-dialog,
|
|
2558
2557
|
.e-bigger.e-spreadsheet .e-merge-alert-dlg.e-dialog {
|
|
@@ -2568,7 +2567,7 @@
|
|
|
2568
2567
|
}
|
|
2569
2568
|
.e-bigger .e-spreadsheet .e-spreadsheet-function-dlg.e-dialog,
|
|
2570
2569
|
.e-bigger.e-spreadsheet .e-spreadsheet-function-dlg.e-dialog {
|
|
2571
|
-
height: 515px !important;
|
|
2570
|
+
height: 515px !important; /* stylelint-disable-line declaration-no-important */
|
|
2572
2571
|
}
|
|
2573
2572
|
.e-bigger .e-spreadsheet .e-validation-list .e-ddl-icon,
|
|
2574
2573
|
.e-bigger.e-spreadsheet .e-validation-list .e-ddl-icon {
|
|
@@ -2726,8 +2725,8 @@
|
|
|
2726
2725
|
}
|
|
2727
2726
|
.e-bigger .e-spreadsheet .e-customsort-dlg.e-dialog,
|
|
2728
2727
|
.e-bigger.e-spreadsheet .e-customsort-dlg.e-dialog {
|
|
2729
|
-
width: 590px !important;
|
|
2730
|
-
width: 630px !important;
|
|
2728
|
+
width: 590px !important; /* stylelint-disable-line declaration-no-important */
|
|
2729
|
+
width: 630px !important; /* stylelint-disable-line declaration-no-important */
|
|
2731
2730
|
}
|
|
2732
2731
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
2733
2732
|
.e-bigger.e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item {
|
|
@@ -2789,7 +2788,6 @@
|
|
|
2789
2788
|
.e-bigger.e-spreadsheet .e-checkboxtree.e-rtl ul {
|
|
2790
2789
|
padding-right: 0;
|
|
2791
2790
|
}
|
|
2792
|
-
|
|
2793
2791
|
.e-bigger.e-dropdown-popup.e-font-size-ddb ul,
|
|
2794
2792
|
.e-bigger .e-dropdown-popup.e-font-size-ddb ul {
|
|
2795
2793
|
min-width: 70px;
|