@syncfusion/ej2-navigations 24.2.4 → 24.2.8
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 +9 -0
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +9 -11
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +9 -11
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/treeview/treeview.js +9 -11
- package/styles/bootstrap-dark.css +26 -4
- package/styles/bootstrap.css +22 -0
- package/styles/bootstrap4.css +26 -4
- package/styles/bootstrap5-dark.css +22 -0
- package/styles/bootstrap5.css +22 -0
- package/styles/fabric-dark.css +22 -0
- package/styles/fabric.css +22 -0
- package/styles/fluent-dark.css +33 -11
- package/styles/fluent.css +33 -11
- package/styles/highcontrast-light.css +22 -0
- package/styles/highcontrast.css +22 -0
- package/styles/material-dark.css +22 -0
- package/styles/material.css +22 -0
- package/styles/material3-dark.css +22 -0
- package/styles/material3.css +22 -0
- package/styles/tailwind-dark.css +22 -0
- package/styles/tailwind.css +22 -0
- package/styles/toolbar/_bootstrap-dark-definition.scss +3 -3
- package/styles/toolbar/_bootstrap4-definition.scss +3 -3
- package/styles/toolbar/_fluent-definition.scss +3 -3
- package/styles/toolbar/_layout.scss +35 -0
- package/styles/toolbar/bootstrap-dark.css +26 -4
- package/styles/toolbar/bootstrap.css +22 -0
- package/styles/toolbar/bootstrap4.css +26 -4
- package/styles/toolbar/bootstrap5-dark.css +22 -0
- package/styles/toolbar/bootstrap5.css +22 -0
- package/styles/toolbar/fabric-dark.css +22 -0
- package/styles/toolbar/fabric.css +22 -0
- package/styles/toolbar/fluent-dark.css +33 -11
- package/styles/toolbar/fluent.css +33 -11
- package/styles/toolbar/highcontrast-light.css +22 -0
- package/styles/toolbar/highcontrast.css +22 -0
- package/styles/toolbar/material-dark.css +22 -0
- package/styles/toolbar/material.css +22 -0
- package/styles/toolbar/material3-dark.css +22 -0
- package/styles/toolbar/material3.css +22 -0
- package/styles/toolbar/tailwind-dark.css +22 -0
- package/styles/toolbar/tailwind.css +22 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -63
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -39
package/styles/fluent.css
CHANGED
|
@@ -1553,6 +1553,19 @@
|
|
|
1553
1553
|
white-space: nowrap;
|
|
1554
1554
|
overflow: hidden;
|
|
1555
1555
|
}
|
|
1556
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1557
|
+
display: -ms-flexbox;
|
|
1558
|
+
display: flex;
|
|
1559
|
+
-ms-flex-wrap: nowrap;
|
|
1560
|
+
flex-wrap: nowrap;
|
|
1561
|
+
width: 100%;
|
|
1562
|
+
}
|
|
1563
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1564
|
+
position: absolute;
|
|
1565
|
+
}
|
|
1566
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1567
|
+
width: calc(100% - 28px);
|
|
1568
|
+
}
|
|
1556
1569
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1557
1570
|
position: absolute;
|
|
1558
1571
|
top: -9999px;
|
|
@@ -1657,6 +1670,12 @@
|
|
|
1657
1670
|
min-height: 38px;
|
|
1658
1671
|
vertical-align: middle;
|
|
1659
1672
|
width: auto;
|
|
1673
|
+
-ms-flex: 0 0 auto;
|
|
1674
|
+
flex: 0 0 auto;
|
|
1675
|
+
}
|
|
1676
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1677
|
+
-ms-flex-positive: 1;
|
|
1678
|
+
flex-grow: 1;
|
|
1660
1679
|
}
|
|
1661
1680
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1662
1681
|
display: -ms-flexbox;
|
|
@@ -1672,7 +1691,7 @@
|
|
|
1672
1691
|
padding: 0 4px;
|
|
1673
1692
|
border-radius: 2px;
|
|
1674
1693
|
line-height: 22px;
|
|
1675
|
-
border:
|
|
1694
|
+
border: 1px solid transparent;
|
|
1676
1695
|
cursor: pointer;
|
|
1677
1696
|
font-size: 18px;
|
|
1678
1697
|
font-weight: 400;
|
|
@@ -2000,6 +2019,9 @@
|
|
|
2000
2019
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2001
2020
|
display: table;
|
|
2002
2021
|
}
|
|
2022
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2023
|
+
margin-right: 8px;
|
|
2024
|
+
}
|
|
2003
2025
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2004
2026
|
padding: 4px;
|
|
2005
2027
|
}
|
|
@@ -2090,7 +2112,7 @@
|
|
|
2090
2112
|
background: transparent;
|
|
2091
2113
|
box-shadow: none;
|
|
2092
2114
|
color: #605e5c;
|
|
2093
|
-
border:
|
|
2115
|
+
border: 1px solid transparent;
|
|
2094
2116
|
}
|
|
2095
2117
|
.e-toolbar .e-toolbar-item .e-tbar-btn .e-icons {
|
|
2096
2118
|
color: #605e5c;
|
|
@@ -2112,9 +2134,9 @@
|
|
|
2112
2134
|
background: none;
|
|
2113
2135
|
border-radius: 0;
|
|
2114
2136
|
color: #201f1e;
|
|
2115
|
-
border-color:
|
|
2137
|
+
border-color: transparent;
|
|
2116
2138
|
border-style: solid;
|
|
2117
|
-
border-width:
|
|
2139
|
+
border-width: 1px;
|
|
2118
2140
|
box-shadow: inset 0 0 0 1px;
|
|
2119
2141
|
}
|
|
2120
2142
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
@@ -2127,7 +2149,7 @@
|
|
|
2127
2149
|
background: #edebe9;
|
|
2128
2150
|
border-color: #605e5c;
|
|
2129
2151
|
border-style: solid;
|
|
2130
|
-
border-width:
|
|
2152
|
+
border-width: 1px;
|
|
2131
2153
|
border-radius: 0;
|
|
2132
2154
|
color: #201f1e;
|
|
2133
2155
|
}
|
|
@@ -2147,7 +2169,7 @@
|
|
|
2147
2169
|
background: #e1dfdd;
|
|
2148
2170
|
border-color: #e1dfdd;
|
|
2149
2171
|
border-style: solid;
|
|
2150
|
-
border-width:
|
|
2172
|
+
border-width: 1px;
|
|
2151
2173
|
border-radius: 0;
|
|
2152
2174
|
box-shadow: none;
|
|
2153
2175
|
color: #201f1e;
|
|
@@ -2283,7 +2305,7 @@
|
|
|
2283
2305
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
2284
2306
|
background: #e1dfdd;
|
|
2285
2307
|
box-shadow: none;
|
|
2286
|
-
border-color:
|
|
2308
|
+
border-color: transparent;
|
|
2287
2309
|
border-style: solid;
|
|
2288
2310
|
border-width: 0;
|
|
2289
2311
|
}
|
|
@@ -2301,9 +2323,9 @@
|
|
|
2301
2323
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
2302
2324
|
background: none;
|
|
2303
2325
|
border-radius: 0;
|
|
2304
|
-
border-color:
|
|
2326
|
+
border-color: transparent;
|
|
2305
2327
|
border-style: solid;
|
|
2306
|
-
border-width:
|
|
2328
|
+
border-width: 1px;
|
|
2307
2329
|
box-shadow: inset 0 0 0 1px;
|
|
2308
2330
|
}
|
|
2309
2331
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
@@ -2311,7 +2333,7 @@
|
|
|
2311
2333
|
border-radius: 0;
|
|
2312
2334
|
border-color: #605e5c;
|
|
2313
2335
|
border-style: solid;
|
|
2314
|
-
border-width:
|
|
2336
|
+
border-width: 1px;
|
|
2315
2337
|
}
|
|
2316
2338
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
2317
2339
|
background: #e1dfdd;
|
|
@@ -2319,7 +2341,7 @@
|
|
|
2319
2341
|
box-shadow: none;
|
|
2320
2342
|
border-color: #e1dfdd;
|
|
2321
2343
|
border-style: solid;
|
|
2322
|
-
border-width:
|
|
2344
|
+
border-width: 1px;
|
|
2323
2345
|
}
|
|
2324
2346
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
2325
2347
|
border: solid #c8c6c4;
|
|
@@ -1518,6 +1518,19 @@
|
|
|
1518
1518
|
white-space: nowrap;
|
|
1519
1519
|
overflow: hidden;
|
|
1520
1520
|
}
|
|
1521
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1522
|
+
display: -ms-flexbox;
|
|
1523
|
+
display: flex;
|
|
1524
|
+
-ms-flex-wrap: nowrap;
|
|
1525
|
+
flex-wrap: nowrap;
|
|
1526
|
+
width: 100%;
|
|
1527
|
+
}
|
|
1528
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1529
|
+
position: absolute;
|
|
1530
|
+
}
|
|
1531
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1532
|
+
width: calc(100% - 40px);
|
|
1533
|
+
}
|
|
1521
1534
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1522
1535
|
position: absolute;
|
|
1523
1536
|
top: -9999px;
|
|
@@ -1622,6 +1635,12 @@
|
|
|
1622
1635
|
min-height: 39px;
|
|
1623
1636
|
vertical-align: middle;
|
|
1624
1637
|
width: auto;
|
|
1638
|
+
-ms-flex: 0 0 auto;
|
|
1639
|
+
flex: 0 0 auto;
|
|
1640
|
+
}
|
|
1641
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1642
|
+
-ms-flex-positive: 1;
|
|
1643
|
+
flex-grow: 1;
|
|
1625
1644
|
}
|
|
1626
1645
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1627
1646
|
display: -ms-flexbox;
|
|
@@ -1965,6 +1984,9 @@
|
|
|
1965
1984
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1966
1985
|
display: table;
|
|
1967
1986
|
}
|
|
1987
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1988
|
+
margin-right: 3px;
|
|
1989
|
+
}
|
|
1968
1990
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1969
1991
|
padding: 0 12px 0 0;
|
|
1970
1992
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -1520,6 +1520,19 @@
|
|
|
1520
1520
|
white-space: nowrap;
|
|
1521
1521
|
overflow: hidden;
|
|
1522
1522
|
}
|
|
1523
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1524
|
+
display: -ms-flexbox;
|
|
1525
|
+
display: flex;
|
|
1526
|
+
-ms-flex-wrap: nowrap;
|
|
1527
|
+
flex-wrap: nowrap;
|
|
1528
|
+
width: 100%;
|
|
1529
|
+
}
|
|
1530
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1531
|
+
position: absolute;
|
|
1532
|
+
}
|
|
1533
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1534
|
+
width: calc(100% - 40px);
|
|
1535
|
+
}
|
|
1523
1536
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1524
1537
|
position: absolute;
|
|
1525
1538
|
top: -9999px;
|
|
@@ -1624,6 +1637,12 @@
|
|
|
1624
1637
|
min-height: 39px;
|
|
1625
1638
|
vertical-align: middle;
|
|
1626
1639
|
width: auto;
|
|
1640
|
+
-ms-flex: 0 0 auto;
|
|
1641
|
+
flex: 0 0 auto;
|
|
1642
|
+
}
|
|
1643
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1644
|
+
-ms-flex-positive: 1;
|
|
1645
|
+
flex-grow: 1;
|
|
1627
1646
|
}
|
|
1628
1647
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1629
1648
|
display: -ms-flexbox;
|
|
@@ -1967,6 +1986,9 @@
|
|
|
1967
1986
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1968
1987
|
display: table;
|
|
1969
1988
|
}
|
|
1989
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1990
|
+
margin-right: 3px;
|
|
1991
|
+
}
|
|
1970
1992
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1971
1993
|
padding: 0 12px 0 0;
|
|
1972
1994
|
}
|
package/styles/material-dark.css
CHANGED
|
@@ -1585,6 +1585,19 @@
|
|
|
1585
1585
|
white-space: nowrap;
|
|
1586
1586
|
overflow: hidden;
|
|
1587
1587
|
}
|
|
1588
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1589
|
+
display: -ms-flexbox;
|
|
1590
|
+
display: flex;
|
|
1591
|
+
-ms-flex-wrap: nowrap;
|
|
1592
|
+
flex-wrap: nowrap;
|
|
1593
|
+
width: 100%;
|
|
1594
|
+
}
|
|
1595
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1596
|
+
position: absolute;
|
|
1597
|
+
}
|
|
1598
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1599
|
+
width: calc(100% - 32px);
|
|
1600
|
+
}
|
|
1588
1601
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1589
1602
|
position: absolute;
|
|
1590
1603
|
top: -9999px;
|
|
@@ -1689,6 +1702,12 @@
|
|
|
1689
1702
|
min-height: 42px;
|
|
1690
1703
|
vertical-align: middle;
|
|
1691
1704
|
width: auto;
|
|
1705
|
+
-ms-flex: 0 0 auto;
|
|
1706
|
+
flex: 0 0 auto;
|
|
1707
|
+
}
|
|
1708
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1709
|
+
-ms-flex-positive: 1;
|
|
1710
|
+
flex-grow: 1;
|
|
1692
1711
|
}
|
|
1693
1712
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1694
1713
|
display: -ms-flexbox;
|
|
@@ -2032,6 +2051,9 @@
|
|
|
2032
2051
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2033
2052
|
display: table;
|
|
2034
2053
|
}
|
|
2054
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2055
|
+
margin-right: 3px;
|
|
2056
|
+
}
|
|
2035
2057
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2036
2058
|
padding: 0;
|
|
2037
2059
|
}
|
package/styles/material.css
CHANGED
|
@@ -1590,6 +1590,19 @@
|
|
|
1590
1590
|
white-space: nowrap;
|
|
1591
1591
|
overflow: hidden;
|
|
1592
1592
|
}
|
|
1593
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1594
|
+
display: -ms-flexbox;
|
|
1595
|
+
display: flex;
|
|
1596
|
+
-ms-flex-wrap: nowrap;
|
|
1597
|
+
flex-wrap: nowrap;
|
|
1598
|
+
width: 100%;
|
|
1599
|
+
}
|
|
1600
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1601
|
+
position: absolute;
|
|
1602
|
+
}
|
|
1603
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1604
|
+
width: calc(100% - 32px);
|
|
1605
|
+
}
|
|
1593
1606
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1594
1607
|
position: absolute;
|
|
1595
1608
|
top: -9999px;
|
|
@@ -1694,6 +1707,12 @@
|
|
|
1694
1707
|
min-height: 42px;
|
|
1695
1708
|
vertical-align: middle;
|
|
1696
1709
|
width: auto;
|
|
1710
|
+
-ms-flex: 0 0 auto;
|
|
1711
|
+
flex: 0 0 auto;
|
|
1712
|
+
}
|
|
1713
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1714
|
+
-ms-flex-positive: 1;
|
|
1715
|
+
flex-grow: 1;
|
|
1697
1716
|
}
|
|
1698
1717
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1699
1718
|
display: -ms-flexbox;
|
|
@@ -2037,6 +2056,9 @@
|
|
|
2037
2056
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2038
2057
|
display: table;
|
|
2039
2058
|
}
|
|
2059
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2060
|
+
margin-right: 3px;
|
|
2061
|
+
}
|
|
2040
2062
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2041
2063
|
padding: 0;
|
|
2042
2064
|
}
|
|
@@ -1656,6 +1656,19 @@
|
|
|
1656
1656
|
white-space: nowrap;
|
|
1657
1657
|
overflow: hidden;
|
|
1658
1658
|
}
|
|
1659
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1660
|
+
display: -ms-flexbox;
|
|
1661
|
+
display: flex;
|
|
1662
|
+
-ms-flex-wrap: nowrap;
|
|
1663
|
+
flex-wrap: nowrap;
|
|
1664
|
+
width: 100%;
|
|
1665
|
+
}
|
|
1666
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1667
|
+
position: absolute;
|
|
1668
|
+
}
|
|
1669
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1670
|
+
width: calc(100% - 40px);
|
|
1671
|
+
}
|
|
1659
1672
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1660
1673
|
position: absolute;
|
|
1661
1674
|
top: -9999px;
|
|
@@ -1760,6 +1773,12 @@
|
|
|
1760
1773
|
min-height: 32px;
|
|
1761
1774
|
vertical-align: middle;
|
|
1762
1775
|
width: auto;
|
|
1776
|
+
-ms-flex: 0 0 auto;
|
|
1777
|
+
flex: 0 0 auto;
|
|
1778
|
+
}
|
|
1779
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1780
|
+
-ms-flex-positive: 1;
|
|
1781
|
+
flex-grow: 1;
|
|
1763
1782
|
}
|
|
1764
1783
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1765
1784
|
display: -ms-flexbox;
|
|
@@ -2103,6 +2122,9 @@
|
|
|
2103
2122
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2104
2123
|
display: table;
|
|
2105
2124
|
}
|
|
2125
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2126
|
+
margin-right: 8px;
|
|
2127
|
+
}
|
|
2106
2128
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2107
2129
|
padding: 4px;
|
|
2108
2130
|
}
|
package/styles/material3.css
CHANGED
|
@@ -1712,6 +1712,19 @@
|
|
|
1712
1712
|
white-space: nowrap;
|
|
1713
1713
|
overflow: hidden;
|
|
1714
1714
|
}
|
|
1715
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1716
|
+
display: -ms-flexbox;
|
|
1717
|
+
display: flex;
|
|
1718
|
+
-ms-flex-wrap: nowrap;
|
|
1719
|
+
flex-wrap: nowrap;
|
|
1720
|
+
width: 100%;
|
|
1721
|
+
}
|
|
1722
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1723
|
+
position: absolute;
|
|
1724
|
+
}
|
|
1725
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1726
|
+
width: calc(100% - 40px);
|
|
1727
|
+
}
|
|
1715
1728
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1716
1729
|
position: absolute;
|
|
1717
1730
|
top: -9999px;
|
|
@@ -1816,6 +1829,12 @@
|
|
|
1816
1829
|
min-height: 32px;
|
|
1817
1830
|
vertical-align: middle;
|
|
1818
1831
|
width: auto;
|
|
1832
|
+
-ms-flex: 0 0 auto;
|
|
1833
|
+
flex: 0 0 auto;
|
|
1834
|
+
}
|
|
1835
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1836
|
+
-ms-flex-positive: 1;
|
|
1837
|
+
flex-grow: 1;
|
|
1819
1838
|
}
|
|
1820
1839
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1821
1840
|
display: -ms-flexbox;
|
|
@@ -2159,6 +2178,9 @@
|
|
|
2159
2178
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2160
2179
|
display: table;
|
|
2161
2180
|
}
|
|
2181
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2182
|
+
margin-right: 8px;
|
|
2183
|
+
}
|
|
2162
2184
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2163
2185
|
padding: 4px;
|
|
2164
2186
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1677,6 +1677,19 @@
|
|
|
1677
1677
|
white-space: nowrap;
|
|
1678
1678
|
overflow: hidden;
|
|
1679
1679
|
}
|
|
1680
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1681
|
+
display: -ms-flexbox;
|
|
1682
|
+
display: flex;
|
|
1683
|
+
-ms-flex-wrap: nowrap;
|
|
1684
|
+
flex-wrap: nowrap;
|
|
1685
|
+
width: 100%;
|
|
1686
|
+
}
|
|
1687
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1688
|
+
position: absolute;
|
|
1689
|
+
}
|
|
1690
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1691
|
+
width: calc(100% - 28px);
|
|
1692
|
+
}
|
|
1680
1693
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1681
1694
|
position: absolute;
|
|
1682
1695
|
top: -9999px;
|
|
@@ -1781,6 +1794,12 @@
|
|
|
1781
1794
|
min-height: 38px;
|
|
1782
1795
|
vertical-align: middle;
|
|
1783
1796
|
width: auto;
|
|
1797
|
+
-ms-flex: 0 0 auto;
|
|
1798
|
+
flex: 0 0 auto;
|
|
1799
|
+
}
|
|
1800
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1801
|
+
-ms-flex-positive: 1;
|
|
1802
|
+
flex-grow: 1;
|
|
1784
1803
|
}
|
|
1785
1804
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1786
1805
|
display: -ms-flexbox;
|
|
@@ -2124,6 +2143,9 @@
|
|
|
2124
2143
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2125
2144
|
display: table;
|
|
2126
2145
|
}
|
|
2146
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2147
|
+
margin-right: 8px;
|
|
2148
|
+
}
|
|
2127
2149
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2128
2150
|
padding: 4px;
|
|
2129
2151
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -1677,6 +1677,19 @@
|
|
|
1677
1677
|
white-space: nowrap;
|
|
1678
1678
|
overflow: hidden;
|
|
1679
1679
|
}
|
|
1680
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
1681
|
+
display: -ms-flexbox;
|
|
1682
|
+
display: flex;
|
|
1683
|
+
-ms-flex-wrap: nowrap;
|
|
1684
|
+
flex-wrap: nowrap;
|
|
1685
|
+
width: 100%;
|
|
1686
|
+
}
|
|
1687
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
1688
|
+
position: absolute;
|
|
1689
|
+
}
|
|
1690
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
1691
|
+
width: calc(100% - 28px);
|
|
1692
|
+
}
|
|
1680
1693
|
.e-toolbar .e-blazor-toolbar-items {
|
|
1681
1694
|
position: absolute;
|
|
1682
1695
|
top: -9999px;
|
|
@@ -1781,6 +1794,12 @@
|
|
|
1781
1794
|
min-height: 38px;
|
|
1782
1795
|
vertical-align: middle;
|
|
1783
1796
|
width: auto;
|
|
1797
|
+
-ms-flex: 0 0 auto;
|
|
1798
|
+
flex: 0 0 auto;
|
|
1799
|
+
}
|
|
1800
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
1801
|
+
-ms-flex-positive: 1;
|
|
1802
|
+
flex-grow: 1;
|
|
1784
1803
|
}
|
|
1785
1804
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1786
1805
|
display: -ms-flexbox;
|
|
@@ -2124,6 +2143,9 @@
|
|
|
2124
2143
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
2125
2144
|
display: table;
|
|
2126
2145
|
}
|
|
2146
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2147
|
+
margin-right: 8px;
|
|
2148
|
+
}
|
|
2127
2149
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
2128
2150
|
padding: 4px;
|
|
2129
2151
|
}
|
|
@@ -59,7 +59,7 @@ $tbar-nav-press-border: 0 !default;
|
|
|
59
59
|
$tbar-nav-hover-border: 1px solid $grey-99 !default;
|
|
60
60
|
$tbar-nav-focus-border: 0 !default;
|
|
61
61
|
$tbar-pressed-border: transparent !default;
|
|
62
|
-
$tbar-btn-border:
|
|
62
|
+
$tbar-btn-border: 1px solid transparent !default;
|
|
63
63
|
|
|
64
64
|
$tbar-nav-pressed-box-shadow: inset 0 4px 5px rgba($grey-base, .35) !default;
|
|
65
65
|
$tbar-pop-box-shadow: 0 6px 12px rgba(0, 0, 0, .175) !default;
|
|
@@ -120,7 +120,7 @@ $tbar-separator-bgr-height: calc(100% - 12px) !default;
|
|
|
120
120
|
$tbar-separator-bgr-mrgn: 6px 6px !default;
|
|
121
121
|
$tbar-separator-nrml-mrgn: 5.5px 6px !default;
|
|
122
122
|
$tbar-btn-bgr-padding: 1px 7px !default;
|
|
123
|
-
$tbar-btn-bgr-focus-padding: 0
|
|
123
|
+
$tbar-btn-bgr-focus-padding: 0 7px !default;
|
|
124
124
|
$tbar-btn-nrml-padding: 1px 2.5px !default;
|
|
125
125
|
$tbar-icons-bgr-font-size: 14px !default;
|
|
126
126
|
$tbar-multirow-items-mrgn-bigger: 15px !default;
|
|
@@ -133,7 +133,7 @@ $tbar-bgr-btn-icon-font-size: 16px !default;
|
|
|
133
133
|
$tbar-bgr-btn-focus-padding: 0 6px !default;
|
|
134
134
|
|
|
135
135
|
$tbar-nrml-btn-border-radius: 4px !default;
|
|
136
|
-
$tbar-nrml-btn-focus-padding: 0
|
|
136
|
+
$tbar-nrml-btn-focus-padding: 0 2.5px !default;
|
|
137
137
|
$tbar-nrml-btn-focus-outline: 0 !default;
|
|
138
138
|
|
|
139
139
|
$tbar-btn-icons-focus-color: $grey-dark-font !default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$border-type: solid !default;
|
|
2
2
|
$border-size: 1px !default;
|
|
3
|
-
$tbar-btn-border:
|
|
3
|
+
$tbar-btn-border: 1px solid transparent !default;
|
|
4
4
|
$tbar-skin: 'bootstrap4' !default;
|
|
5
5
|
$tbar-zero-value: 0 !default;
|
|
6
6
|
$tbar-separator-bgr-minheight: 36px !default;
|
|
@@ -125,7 +125,7 @@ $tbar-separator-nrml-mrgn: 5.5px 6px !default;
|
|
|
125
125
|
$tbar-separator-vertical-bgr-mrgn: 6px !default;
|
|
126
126
|
$tbar-separator-vertical-nrml-mrgn: 6px 5.5px !default;
|
|
127
127
|
$tbar-btn-bgr-padding: 1.5px 5.5px !default;
|
|
128
|
-
$tbar-btn-bgr-focus-padding:
|
|
128
|
+
$tbar-btn-bgr-focus-padding: 1.5px 5.5px !default;
|
|
129
129
|
$tbar-btn-nrml-padding: 0 3px !default;
|
|
130
130
|
$tbar-icons-bgr-font-size: 16px !default;
|
|
131
131
|
$tbar-multirow-items-mrgn-bigger: 15px !default;
|
|
@@ -138,7 +138,7 @@ $tbar-bgr-btn-icon-font-size: 16px !default;
|
|
|
138
138
|
$tbar-bgr-btn-focus-padding: 0 5.5px !default;
|
|
139
139
|
|
|
140
140
|
$tbar-nrml-btn-border-radius: 4px !default;
|
|
141
|
-
$tbar-nrml-btn-focus-padding: 0
|
|
141
|
+
$tbar-nrml-btn-focus-padding: 0 3px !default;
|
|
142
142
|
$tbar-nrml-btn-focus-outline: 0 !default;
|
|
143
143
|
|
|
144
144
|
$tbar-btn-icons-focus-color: inherit !default;
|
|
@@ -45,7 +45,7 @@ $tbar-default-font-overlay: $content-text-color !default;
|
|
|
45
45
|
$tbar-active-font-color: $tbar-press-font !default;
|
|
46
46
|
$tbar-border-nav-type: $border-light !default;
|
|
47
47
|
$tbar-border-nav-active-type: $border-light !default;
|
|
48
|
-
$tbar-btn-border:
|
|
48
|
+
$tbar-btn-border: 1px solid $transparent !default;
|
|
49
49
|
|
|
50
50
|
$tbar-box-shadow: $shadow-sm !default;
|
|
51
51
|
$tbar-border-type: $border-type !default;
|
|
@@ -142,8 +142,8 @@ $tbar-nrml-btn-focus-outline: none !default;
|
|
|
142
142
|
|
|
143
143
|
$tbar-btn-icons-focus-color: $icon-color !default;
|
|
144
144
|
$tbar-btn-text-focus-color: $content-text-color !default;
|
|
145
|
-
$tbar-btn-focus-border-color: $
|
|
146
|
-
$tbar-btn-hover-border-size:
|
|
145
|
+
$tbar-btn-focus-border-color: $transparent !default;
|
|
146
|
+
$tbar-btn-hover-border-size: 1px !default;
|
|
147
147
|
$tbar-btn-hover-active-icons-color: $icon-color !default;
|
|
148
148
|
$tbar-btn-hover-active-text-color: $content-text-color !default;
|
|
149
149
|
$tbar-btn-overlay-opacity: .5 !default;
|
|
@@ -323,6 +323,26 @@
|
|
|
323
323
|
white-space: nowrap;
|
|
324
324
|
overflow: hidden;
|
|
325
325
|
|
|
326
|
+
&.e-spacer-toolbar {
|
|
327
|
+
|
|
328
|
+
.e-toolbar-items {
|
|
329
|
+
display: flex;
|
|
330
|
+
flex-wrap: nowrap;
|
|
331
|
+
width: 100%;
|
|
332
|
+
|
|
333
|
+
&:not(.e-toolbar-multirow) {
|
|
334
|
+
position: absolute;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
&.e-pop-mode {
|
|
339
|
+
|
|
340
|
+
.e-toolbar-items {
|
|
341
|
+
width: calc(100% - $tbar-nav-nrml-width);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
326
346
|
.e-blazor-toolbar-items {
|
|
327
347
|
position: absolute;
|
|
328
348
|
top: -9999px;
|
|
@@ -460,6 +480,11 @@
|
|
|
460
480
|
min-height: $tbar-nrml-item-size;
|
|
461
481
|
vertical-align: middle;
|
|
462
482
|
width: auto;
|
|
483
|
+
flex: 0 0 auto;
|
|
484
|
+
|
|
485
|
+
&.e-spacer {
|
|
486
|
+
flex-grow: 1;
|
|
487
|
+
}
|
|
463
488
|
|
|
464
489
|
.e-tbar-btn {
|
|
465
490
|
display: flex;
|
|
@@ -890,6 +915,16 @@
|
|
|
890
915
|
|
|
891
916
|
&.e-rtl {
|
|
892
917
|
|
|
918
|
+
&:not(.e-spacer-toolbar) {
|
|
919
|
+
|
|
920
|
+
.e-toolbar-items:not(.e-tbar-pos) {
|
|
921
|
+
|
|
922
|
+
.e-toolbar-item:first-child {
|
|
923
|
+
margin-right: $tbar-item-nrml-mrgn;
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
893
928
|
.e-toolbar-item {
|
|
894
929
|
|
|
895
930
|
.e-tbar-btn {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
55
55
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
56
56
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
57
|
-
padding: 0
|
|
57
|
+
padding: 0 7px;
|
|
58
58
|
}
|
|
59
59
|
.e-bigger .e-toolbar .e-toolbar-item,
|
|
60
60
|
.e-toolbar.e-bigger .e-toolbar-item {
|
|
@@ -286,6 +286,19 @@
|
|
|
286
286
|
white-space: nowrap;
|
|
287
287
|
overflow: hidden;
|
|
288
288
|
}
|
|
289
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items {
|
|
290
|
+
display: -ms-flexbox;
|
|
291
|
+
display: flex;
|
|
292
|
+
-ms-flex-wrap: nowrap;
|
|
293
|
+
flex-wrap: nowrap;
|
|
294
|
+
width: 100%;
|
|
295
|
+
}
|
|
296
|
+
.e-toolbar.e-spacer-toolbar .e-toolbar-items:not(.e-toolbar-multirow) {
|
|
297
|
+
position: absolute;
|
|
298
|
+
}
|
|
299
|
+
.e-toolbar.e-spacer-toolbar.e-pop-mode .e-toolbar-items {
|
|
300
|
+
width: calc(100% - 38px);
|
|
301
|
+
}
|
|
289
302
|
.e-toolbar .e-blazor-toolbar-items {
|
|
290
303
|
position: absolute;
|
|
291
304
|
top: -9999px;
|
|
@@ -390,6 +403,12 @@
|
|
|
390
403
|
min-height: 0;
|
|
391
404
|
vertical-align: middle;
|
|
392
405
|
width: auto;
|
|
406
|
+
-ms-flex: 0 0 auto;
|
|
407
|
+
flex: 0 0 auto;
|
|
408
|
+
}
|
|
409
|
+
.e-toolbar .e-toolbar-item.e-spacer {
|
|
410
|
+
-ms-flex-positive: 1;
|
|
411
|
+
flex-grow: 1;
|
|
393
412
|
}
|
|
394
413
|
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
395
414
|
display: -ms-flexbox;
|
|
@@ -405,7 +424,7 @@
|
|
|
405
424
|
padding: 1px 2.5px;
|
|
406
425
|
border-radius: 4px;
|
|
407
426
|
line-height: 27px;
|
|
408
|
-
border:
|
|
427
|
+
border: 1px solid transparent;
|
|
409
428
|
cursor: pointer;
|
|
410
429
|
font-size: 16px;
|
|
411
430
|
font-weight: 400;
|
|
@@ -428,7 +447,7 @@
|
|
|
428
447
|
line-height: 25px;
|
|
429
448
|
}
|
|
430
449
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
431
|
-
padding: 0
|
|
450
|
+
padding: 0 2.5px;
|
|
432
451
|
}
|
|
433
452
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
434
453
|
outline: 0;
|
|
@@ -733,6 +752,9 @@
|
|
|
733
752
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
734
753
|
display: table;
|
|
735
754
|
}
|
|
755
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
756
|
+
margin-right: 15px;
|
|
757
|
+
}
|
|
736
758
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
737
759
|
padding: 0 12px 0 0;
|
|
738
760
|
}
|
|
@@ -823,7 +845,7 @@
|
|
|
823
845
|
background: #131313;
|
|
824
846
|
box-shadow: none;
|
|
825
847
|
color: #f0f0f0;
|
|
826
|
-
border:
|
|
848
|
+
border: 1px solid transparent;
|
|
827
849
|
}
|
|
828
850
|
.e-toolbar .e-toolbar-item .e-tbar-btn .e-icons {
|
|
829
851
|
color: #f0f0f0;
|