@syncfusion/ej2-angular-spreadsheet 20.3.60-ngcc → 20.3.60
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/spreadsheet/cells.directive.d.ts +5 -0
- package/src/spreadsheet/chart.directive.d.ts +5 -0
- package/src/spreadsheet/columns.directive.d.ts +5 -0
- package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
- package/src/spreadsheet/definednames.directive.d.ts +5 -0
- package/src/spreadsheet/image.directive.d.ts +5 -0
- package/src/spreadsheet/ranges.directive.d.ts +5 -0
- package/src/spreadsheet/rows.directive.d.ts +5 -0
- package/src/spreadsheet/sheets.directive.d.ts +5 -0
- package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
- package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
- package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
- package/styles/bootstrap-dark.css +9 -34
- package/styles/bootstrap.css +9 -34
- package/styles/bootstrap4.css +9 -34
- package/styles/bootstrap5-dark.css +9 -34
- package/styles/bootstrap5.css +9 -34
- package/styles/fabric-dark.css +9 -34
- package/styles/fabric.css +9 -34
- package/styles/fluent-dark.css +9 -34
- package/styles/fluent.css +9 -34
- package/styles/highcontrast-light.css +9 -34
- package/styles/highcontrast.css +9 -34
- package/styles/material-dark.css +9 -34
- package/styles/material.css +9 -34
- package/styles/ribbon/_all.scss +2 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +13 -0
- package/styles/ribbon/_bootstrap-definition.scss +12 -0
- package/styles/ribbon/_bootstrap4-definition.scss +13 -0
- package/styles/ribbon/_bootstrap5-dark-definition.scss +1 -0
- package/styles/ribbon/_bootstrap5-definition.scss +14 -0
- package/styles/ribbon/_fabric-dark-definition.scss +14 -0
- package/styles/ribbon/_fabric-definition.scss +14 -0
- package/styles/ribbon/_fluent-dark-definition.scss +1 -0
- package/styles/ribbon/_fluent-definition.scss +14 -0
- package/styles/ribbon/_fusionnew-definition.scss +14 -0
- package/styles/ribbon/_highcontrast-definition.scss +12 -0
- package/styles/ribbon/_highcontrast-light-definition.scss +12 -0
- package/styles/ribbon/_layout.scss +241 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +12 -0
- package/styles/ribbon/_material3-definition.scss +15 -0
- package/styles/ribbon/_mixin.scss +89 -0
- package/styles/ribbon/_tailwind-dark-definition.scss +1 -0
- package/styles/ribbon/_tailwind-definition.scss +13 -0
- package/styles/ribbon/_theme.scss +154 -0
- package/styles/ribbon/bootstrap-dark.scss +4 -1
- package/styles/ribbon/bootstrap.scss +4 -1
- package/styles/ribbon/bootstrap4.scss +4 -1
- package/styles/ribbon/bootstrap5-dark.scss +4 -1
- package/styles/ribbon/bootstrap5.scss +4 -1
- package/styles/ribbon/fabric-dark.scss +4 -1
- package/styles/ribbon/fabric.scss +4 -1
- package/styles/ribbon/fluent-dark.scss +4 -1
- package/styles/ribbon/fluent.scss +4 -1
- package/styles/ribbon/highcontrast-light.scss +3 -1
- package/styles/ribbon/highcontrast.scss +4 -1
- package/styles/ribbon/icons/_bootstrap-dark.scss +15 -0
- package/styles/ribbon/icons/_bootstrap.scss +15 -0
- package/styles/ribbon/icons/_bootstrap4.scss +9 -0
- package/styles/ribbon/icons/_bootstrap5-dark.scss +1 -0
- package/styles/ribbon/icons/_bootstrap5.scss +15 -0
- package/styles/ribbon/icons/_fabric-dark.scss +9 -0
- package/styles/ribbon/icons/_fabric.scss +9 -0
- package/styles/ribbon/icons/_fluent-dark.scss +1 -0
- package/styles/ribbon/icons/_fluent.scss +15 -0
- package/styles/ribbon/icons/_fusionnew.scss +15 -0
- package/styles/ribbon/icons/_highcontrast.scss +9 -0
- package/styles/ribbon/icons/_material-dark.scss +15 -0
- package/styles/ribbon/icons/_material.scss +15 -0
- package/styles/ribbon/icons/_material3.scss +15 -0
- package/styles/ribbon/icons/_tailwind-dark.scss +15 -0
- package/styles/ribbon/icons/_tailwind.scss +15 -0
- package/styles/ribbon/material-dark.scss +4 -1
- package/styles/ribbon/material.scss +4 -1
- package/styles/ribbon/tailwind-dark.scss +4 -1
- package/styles/ribbon/tailwind.scss +4 -1
- package/styles/spreadsheet/_all.scss +2 -0
- package/styles/spreadsheet/_bootstrap-dark-definition.scss +154 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +154 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +153 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +156 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +151 -0
- package/styles/spreadsheet/_fabric-definition.scss +151 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +152 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +151 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +150 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +146 -0
- package/styles/spreadsheet/_layout.scss +3015 -0
- package/styles/spreadsheet/_material-dark-definition.scss +153 -0
- package/styles/spreadsheet/_material-definition.scss +151 -0
- package/styles/spreadsheet/_material3-definition.scss +151 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +158 -0
- package/styles/spreadsheet/_theme.scss +1365 -0
- package/styles/spreadsheet/bootstrap-dark.css +9 -34
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +9 -34
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +9 -34
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +9 -34
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +9 -34
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +9 -34
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +9 -34
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +9 -34
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +9 -34
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +9 -34
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +9 -34
- package/styles/spreadsheet/highcontrast.scss +23 -1
- package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
- package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
- package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
- package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
- package/styles/spreadsheet/icons/_fabric.scss +994 -0
- package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
- package/styles/spreadsheet/icons/_fluent.scss +996 -0
- package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
- package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
- package/styles/spreadsheet/icons/_material-dark.scss +993 -0
- package/styles/spreadsheet/icons/_material.scss +995 -0
- package/styles/spreadsheet/icons/_material3.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind.scss +996 -0
- package/styles/spreadsheet/material-dark.css +9 -34
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +9 -34
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +9 -34
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +9 -34
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +9 -34
- package/styles/tailwind.css +9 -34
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/CHANGELOG.md +0 -1355
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1585
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -1074,19 +1074,6 @@
|
|
|
1074
1074
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1075
1075
|
right: 0;
|
|
1076
1076
|
}
|
|
1077
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1078
|
-
border-left-color: transparent;
|
|
1079
|
-
}
|
|
1080
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1081
|
-
border-left: none;
|
|
1082
|
-
border-right: none;
|
|
1083
|
-
left: 0.5px;
|
|
1084
|
-
}
|
|
1085
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1086
|
-
border-left: none;
|
|
1087
|
-
border-right: none;
|
|
1088
|
-
right: 0.5px;
|
|
1089
|
-
}
|
|
1090
1077
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1091
1078
|
position: relative;
|
|
1092
1079
|
}
|
|
@@ -1526,36 +1513,33 @@
|
|
|
1526
1513
|
font-family: "Calibri";
|
|
1527
1514
|
}
|
|
1528
1515
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
1529
|
-
font-family: "Comic Sans MS";
|
|
1530
|
-
}
|
|
1531
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1532
1516
|
font-family: "Courier";
|
|
1533
1517
|
}
|
|
1534
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1518
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1535
1519
|
font-family: "Courier New";
|
|
1536
1520
|
}
|
|
1537
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1521
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
1538
1522
|
font-family: "Din Condensed";
|
|
1539
1523
|
}
|
|
1540
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1524
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
1541
1525
|
font-family: "Georgia";
|
|
1542
1526
|
}
|
|
1543
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1527
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
1544
1528
|
font-family: "Helvetica";
|
|
1545
1529
|
}
|
|
1546
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1530
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
1547
1531
|
font-family: "Helvetica New";
|
|
1548
1532
|
}
|
|
1549
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1533
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
1550
1534
|
font-family: "Roboto";
|
|
1551
1535
|
}
|
|
1552
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1536
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
1553
1537
|
font-family: "Tahoma";
|
|
1554
1538
|
}
|
|
1555
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1539
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
1556
1540
|
font-family: "Times New Roman";
|
|
1557
1541
|
}
|
|
1558
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1542
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
1559
1543
|
font-family: "Verdana";
|
|
1560
1544
|
}
|
|
1561
1545
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2416,15 +2400,6 @@
|
|
|
2416
2400
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
2417
2401
|
border-left-color: #000;
|
|
2418
2402
|
}
|
|
2419
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
2420
|
-
border-left-color: transparent;
|
|
2421
|
-
}
|
|
2422
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
2423
|
-
border-left-color: #000;
|
|
2424
|
-
}
|
|
2425
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
2426
|
-
border-right-color: #000;
|
|
2427
|
-
}
|
|
2428
2403
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
2429
2404
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
2430
2405
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/highcontrast.css
CHANGED
|
@@ -1641,19 +1641,6 @@
|
|
|
1641
1641
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1642
1642
|
right: 0;
|
|
1643
1643
|
}
|
|
1644
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1645
|
-
border-left-color: transparent;
|
|
1646
|
-
}
|
|
1647
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1648
|
-
border-left: 1px solid #fff;
|
|
1649
|
-
border-right: none;
|
|
1650
|
-
left: 0.5px;
|
|
1651
|
-
}
|
|
1652
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1653
|
-
border-left: none;
|
|
1654
|
-
border-right: 1px solid #fff;
|
|
1655
|
-
right: 0.5px;
|
|
1656
|
-
}
|
|
1657
1644
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1658
1645
|
position: relative;
|
|
1659
1646
|
}
|
|
@@ -2093,36 +2080,33 @@
|
|
|
2093
2080
|
font-family: "Calibri";
|
|
2094
2081
|
}
|
|
2095
2082
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2096
|
-
font-family: "Comic Sans MS";
|
|
2097
|
-
}
|
|
2098
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2099
2083
|
font-family: "Courier";
|
|
2100
2084
|
}
|
|
2101
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2085
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2102
2086
|
font-family: "Courier New";
|
|
2103
2087
|
}
|
|
2104
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2088
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2105
2089
|
font-family: "Din Condensed";
|
|
2106
2090
|
}
|
|
2107
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2091
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2108
2092
|
font-family: "Georgia";
|
|
2109
2093
|
}
|
|
2110
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2094
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2111
2095
|
font-family: "Helvetica";
|
|
2112
2096
|
}
|
|
2113
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2097
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2114
2098
|
font-family: "Helvetica New";
|
|
2115
2099
|
}
|
|
2116
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2100
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2117
2101
|
font-family: "Roboto";
|
|
2118
2102
|
}
|
|
2119
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2103
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2120
2104
|
font-family: "Tahoma";
|
|
2121
2105
|
}
|
|
2122
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2106
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2123
2107
|
font-family: "Times New Roman";
|
|
2124
2108
|
}
|
|
2125
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2109
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2126
2110
|
font-family: "Verdana";
|
|
2127
2111
|
}
|
|
2128
2112
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3006,15 +2990,6 @@
|
|
|
3006
2990
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3007
2991
|
border-left-color: #969696;
|
|
3008
2992
|
}
|
|
3009
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3010
|
-
border-left-color: transparent;
|
|
3011
|
-
}
|
|
3012
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3013
|
-
border-left-color: #969696;
|
|
3014
|
-
}
|
|
3015
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3016
|
-
border-right-color: #969696;
|
|
3017
|
-
}
|
|
3018
2993
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3019
2994
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3020
2995
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/material-dark.css
CHANGED
|
@@ -1685,19 +1685,6 @@
|
|
|
1685
1685
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1686
1686
|
right: 0;
|
|
1687
1687
|
}
|
|
1688
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1689
|
-
border-left-color: transparent;
|
|
1690
|
-
}
|
|
1691
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1692
|
-
border-left: 1px solid #616161;
|
|
1693
|
-
border-right: none;
|
|
1694
|
-
left: 0.5px;
|
|
1695
|
-
}
|
|
1696
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1697
|
-
border-left: none;
|
|
1698
|
-
border-right: 1px solid #616161;
|
|
1699
|
-
right: 0.5px;
|
|
1700
|
-
}
|
|
1701
1688
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1702
1689
|
position: relative;
|
|
1703
1690
|
}
|
|
@@ -2136,36 +2123,33 @@
|
|
|
2136
2123
|
font-family: "Calibri";
|
|
2137
2124
|
}
|
|
2138
2125
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2139
|
-
font-family: "Comic Sans MS";
|
|
2140
|
-
}
|
|
2141
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2142
2126
|
font-family: "Courier";
|
|
2143
2127
|
}
|
|
2144
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2128
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2145
2129
|
font-family: "Courier New";
|
|
2146
2130
|
}
|
|
2147
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2131
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2148
2132
|
font-family: "Din Condensed";
|
|
2149
2133
|
}
|
|
2150
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2134
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2151
2135
|
font-family: "Georgia";
|
|
2152
2136
|
}
|
|
2153
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2137
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2154
2138
|
font-family: "Helvetica";
|
|
2155
2139
|
}
|
|
2156
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2140
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2157
2141
|
font-family: "Helvetica New";
|
|
2158
2142
|
}
|
|
2159
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2143
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2160
2144
|
font-family: "Roboto";
|
|
2161
2145
|
}
|
|
2162
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2146
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2163
2147
|
font-family: "Tahoma";
|
|
2164
2148
|
}
|
|
2165
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2149
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2166
2150
|
font-family: "Times New Roman";
|
|
2167
2151
|
}
|
|
2168
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2152
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2169
2153
|
font-family: "Verdana";
|
|
2170
2154
|
}
|
|
2171
2155
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3047,15 +3031,6 @@
|
|
|
3047
3031
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3048
3032
|
border-left-color: #757575;
|
|
3049
3033
|
}
|
|
3050
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3051
|
-
border-left-color: transparent;
|
|
3052
|
-
}
|
|
3053
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3054
|
-
border-left-color: #757575;
|
|
3055
|
-
}
|
|
3056
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3057
|
-
border-right-color: #757575;
|
|
3058
|
-
}
|
|
3059
3034
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3060
3035
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3061
3036
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/material.css
CHANGED
|
@@ -1724,19 +1724,6 @@
|
|
|
1724
1724
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1725
1725
|
right: 0;
|
|
1726
1726
|
}
|
|
1727
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1728
|
-
border-left-color: transparent;
|
|
1729
|
-
}
|
|
1730
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1731
|
-
border-left: 1px solid #e0e0e0;
|
|
1732
|
-
border-right: none;
|
|
1733
|
-
left: 0.5px;
|
|
1734
|
-
}
|
|
1735
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1736
|
-
border-left: none;
|
|
1737
|
-
border-right: 1px solid #e0e0e0;
|
|
1738
|
-
right: 0.5px;
|
|
1739
|
-
}
|
|
1740
1727
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1741
1728
|
position: relative;
|
|
1742
1729
|
}
|
|
@@ -2174,36 +2161,33 @@
|
|
|
2174
2161
|
font-family: "Calibri";
|
|
2175
2162
|
}
|
|
2176
2163
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2177
|
-
font-family: "Comic Sans MS";
|
|
2178
|
-
}
|
|
2179
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2180
2164
|
font-family: "Courier";
|
|
2181
2165
|
}
|
|
2182
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2183
2167
|
font-family: "Courier New";
|
|
2184
2168
|
}
|
|
2185
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2186
2170
|
font-family: "Din Condensed";
|
|
2187
2171
|
}
|
|
2188
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2189
2173
|
font-family: "Georgia";
|
|
2190
2174
|
}
|
|
2191
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2175
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2192
2176
|
font-family: "Helvetica";
|
|
2193
2177
|
}
|
|
2194
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2178
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2195
2179
|
font-family: "Helvetica New";
|
|
2196
2180
|
}
|
|
2197
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2181
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2198
2182
|
font-family: "Roboto";
|
|
2199
2183
|
}
|
|
2200
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2184
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2201
2185
|
font-family: "Tahoma";
|
|
2202
2186
|
}
|
|
2203
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2187
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2204
2188
|
font-family: "Times New Roman";
|
|
2205
2189
|
}
|
|
2206
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2190
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2207
2191
|
font-family: "Verdana";
|
|
2208
2192
|
}
|
|
2209
2193
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3075,15 +3059,6 @@
|
|
|
3075
3059
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3076
3060
|
border-left-color: #cccccc;
|
|
3077
3061
|
}
|
|
3078
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3079
|
-
border-left-color: transparent;
|
|
3080
|
-
}
|
|
3081
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3082
|
-
border-left-color: #cccccc;
|
|
3083
|
-
}
|
|
3084
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3085
|
-
border-right-color: #cccccc;
|
|
3086
|
-
}
|
|
3087
3062
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3088
3063
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3089
3064
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap' !default;
|
|
2
|
+
$ribbon-border-color: $grey-88 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-content-bg-color: $gray-darker !default;
|
|
5
|
+
$ribbon-header-bg-color: #191919 !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 16.5px 4px 17.5px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
9
|
+
$expand-icon-color: $grey-dark-font !default;
|
|
10
|
+
$ribbon-header-height: 45px !default;
|
|
11
|
+
$ribbon-focus-text-color: $grey-dark-font !default;
|
|
12
|
+
$ribbon-focus-bg-color: $grey-44 !default;
|
|
13
|
+
$ribbon-comb-icon-color: $grey-dark-font !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap' !default;
|
|
2
|
+
$ribbon-border-color: #e5e5e5 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-content-bg-color: $grey-white !default;
|
|
5
|
+
$ribbon-header-bg-color: $grey-f9 !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 16.5px 4px 17.5px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
9
|
+
$expand-icon-color: $gray-light !default;
|
|
10
|
+
$ribbon-header-height: 45px !default;
|
|
11
|
+
$ribbon-focus-bg-color: $grey-lighter !default;
|
|
12
|
+
$ribbon-focus-text-color: $brand-primary-darken-25 !default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap4' !default;
|
|
2
|
+
$ribbon-border-color: $gray-300 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-header-bg-color: $gray-100 !default;
|
|
5
|
+
$ribbon-content-bg-color: $white !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 15px 5px !default;
|
|
8
|
+
$ribbon-comb-icon-color: $gray-700 !default;
|
|
9
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
10
|
+
$expand-icon-color: $gray-600 !default;
|
|
11
|
+
$ribbon-header-height: 41px !default;
|
|
12
|
+
$ribbon-focus-text-color: darken($primary, 15%) !default;
|
|
13
|
+
$ribbon-focus-bg-color: #eee !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap5' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$separator-border-color: $border-light !default;
|
|
10
|
+
$expand-icon-color: $icon-color !default;
|
|
11
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
12
|
+
$ribbon-focus-text-color: $primary-bg-color-pressed !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'fabric' !default;
|
|
2
|
+
$border-color: $neutral-quintenary !default;
|
|
3
|
+
$ribbon-border: 1px solid $border-color !default;
|
|
4
|
+
$tab-header-height: 38px !default;
|
|
5
|
+
$bigger-tab-header-height: 48px !default;
|
|
6
|
+
$ribbon-header-bg-color: $neutral-lighter !default;
|
|
7
|
+
$file-menu-wrap-padding: 0 0 0 8px !default;
|
|
8
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
9
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
10
|
+
$ribbon-comb-icon-color: $neutral-light-font !default;
|
|
11
|
+
$expand-icon-color: $neutral-light-font !default;
|
|
12
|
+
$ribbon-focus-bg-color: initial !default;
|
|
13
|
+
$ribbon-focus-text-color: $neutral-light-fontalt !default;
|
|
14
|
+
$ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'fabric' !default;
|
|
2
|
+
$border-color: $neutral-light !default;
|
|
3
|
+
$ribbon-border: 1px solid $border-color !default;
|
|
4
|
+
$tab-header-height: 38px !default;
|
|
5
|
+
$bigger-tab-header-height: 48px !default;
|
|
6
|
+
$ribbon-header-bg-color: $neutral-white !default;
|
|
7
|
+
$ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
|
|
8
|
+
$file-menu-wrap-padding: 0 0 0 8px !default;
|
|
9
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
10
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
11
|
+
$ribbon-comb-icon-color: $neutral-light-font !default;
|
|
12
|
+
$expand-icon-color: $neutral-secondary !default;
|
|
13
|
+
$ribbon-focus-bg-color: initial !default;
|
|
14
|
+
$ribbon-focus-text-color: $neutral-light-font !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-definition.scss';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'FluentUI' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
10
|
+
$separator-border-color: $border-light !default;
|
|
11
|
+
$ribbon-focus-text-color: $content-text-color !default;
|
|
12
|
+
$expand-icon-color: $icon-color !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: $content-bg-color-alt2 !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap5' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
10
|
+
$separator-border-color: $border-light !default;
|
|
11
|
+
$ribbon-focus-text-color: $primary-bg-color-pressed !default;
|
|
12
|
+
$expand-icon-color: $icon-color !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'highcontrast' !default;
|
|
2
|
+
$ribbon-border-color: $bg-base-100 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-header-bg-color: $bg-base-0 !default;
|
|
5
|
+
$file-menu-wrap-padding: 0 !default;
|
|
6
|
+
$ribbon-focused-wrap-focus-border-color: $hover-border !default;
|
|
7
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
9
|
+
$ribbon-comb-icon-color: $content-font !default;
|
|
10
|
+
$expand-icon-color: $content-font !default;
|
|
11
|
+
$ribbon-focus-bg-color: initial !default;
|
|
12
|
+
$ribbon-focus-text-color: $content-font !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'highcontrast' !default;
|
|
2
|
+
$ribbon-border-color: transparent !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$file-menu-wrap-padding: 0 !default;
|
|
5
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
6
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
7
|
+
$expand-icon-color: initial !default;
|
|
8
|
+
$ribbon-comb-icon-color: $content-font !default;
|
|
9
|
+
$ribbon-header-bg-color: transparent !default;
|
|
10
|
+
$ribbon-focused-wrap-focus-border-color: $hover-border !default;
|
|
11
|
+
$ribbon-focus-bg-color: initial !default;
|
|
12
|
+
$ribbon-focus-text-color: $content-font !default;
|