@progress/kendo-theme-material 5.1.2-dev.4 → 5.2.0
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/dist/all.css +469 -204
- package/dist/all.scss +298 -152
- package/lib/swatches/material-aqua-dark.json +202 -41
- package/lib/swatches/material-arctic.json +202 -41
- package/lib/swatches/material-burnt-teal.json +202 -41
- package/lib/swatches/material-dataviz-v4.json +2 -1
- package/lib/swatches/material-eggplant.json +202 -41
- package/lib/swatches/material-lime-dark.json +202 -41
- package/lib/swatches/material-lime.json +202 -41
- package/lib/swatches/material-main-dark.json +202 -41
- package/lib/swatches/material-main.json +202 -41
- package/lib/swatches/material-nova.json +202 -41
- package/lib/swatches/material-pacific-dark.json +202 -41
- package/lib/swatches/material-pacific.json +202 -41
- package/lib/swatches/material-sky-dark.json +202 -41
- package/lib/swatches/material-sky.json +202 -41
- package/lib/swatches/material-smoke.json +202 -41
- package/package.json +4 -4
- package/scss/_variables.scss +4 -3
- package/scss/badge/_variables.scss +3 -3
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +11 -0
- package/scss/card/_variables.scss +1 -1
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_variables.scss +15 -13
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +2 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +1 -1
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
package/dist/all.css
CHANGED
|
@@ -139,7 +139,7 @@ kendo-sortable {
|
|
|
139
139
|
|
|
140
140
|
.k-block,
|
|
141
141
|
.k-panel {
|
|
142
|
-
border-radius:
|
|
142
|
+
border-radius: 4px;
|
|
143
143
|
border-color: rgba(0, 0, 0, 0.12);
|
|
144
144
|
color: rgba(0, 0, 0, 0.87);
|
|
145
145
|
background-color: white;
|
|
@@ -151,8 +151,8 @@ kendo-sortable {
|
|
|
151
151
|
|
|
152
152
|
.k-block > .k-header,
|
|
153
153
|
.k-panel > .k-header {
|
|
154
|
-
border-top-left-radius:
|
|
155
|
-
border-top-right-radius:
|
|
154
|
+
border-top-left-radius: 4px;
|
|
155
|
+
border-top-right-radius: 4px;
|
|
156
156
|
border-color: rgba(0, 0, 0, 0.08);
|
|
157
157
|
color: rgba(0, 0, 0, 0.87);
|
|
158
158
|
background-color: white;
|
|
@@ -1551,27 +1551,27 @@ kendo-sortable {
|
|
|
1551
1551
|
}
|
|
1552
1552
|
|
|
1553
1553
|
.k-rounded-sm {
|
|
1554
|
-
border-radius:
|
|
1554
|
+
border-radius: 2px;
|
|
1555
1555
|
}
|
|
1556
1556
|
|
|
1557
1557
|
.\!k-rounded-sm {
|
|
1558
|
-
border-radius:
|
|
1558
|
+
border-radius: 2px !important;
|
|
1559
1559
|
}
|
|
1560
1560
|
|
|
1561
1561
|
.k-rounded-md {
|
|
1562
|
-
border-radius:
|
|
1562
|
+
border-radius: 4px;
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
1565
|
.\!k-rounded-md {
|
|
1566
|
-
border-radius:
|
|
1566
|
+
border-radius: 4px !important;
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
1569
|
.k-rounded-lg {
|
|
1570
|
-
border-radius:
|
|
1570
|
+
border-radius: 6px;
|
|
1571
1571
|
}
|
|
1572
1572
|
|
|
1573
1573
|
.\!k-rounded-lg {
|
|
1574
|
-
border-radius:
|
|
1574
|
+
border-radius: 6px !important;
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
1577
|
.k-rounded-full {
|
|
@@ -1603,33 +1603,33 @@ kendo-sortable {
|
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
1605
|
.k-rounded-top-sm {
|
|
1606
|
-
border-top-left-radius:
|
|
1607
|
-
border-top-right-radius:
|
|
1606
|
+
border-top-left-radius: 2px;
|
|
1607
|
+
border-top-right-radius: 2px;
|
|
1608
1608
|
}
|
|
1609
1609
|
|
|
1610
1610
|
.\!k-rounded-top-sm {
|
|
1611
|
-
border-top-left-radius:
|
|
1612
|
-
border-top-right-radius:
|
|
1611
|
+
border-top-left-radius: 2px !important;
|
|
1612
|
+
border-top-right-radius: 2px !important;
|
|
1613
1613
|
}
|
|
1614
1614
|
|
|
1615
1615
|
.k-rounded-top-md {
|
|
1616
|
-
border-top-left-radius:
|
|
1617
|
-
border-top-right-radius:
|
|
1616
|
+
border-top-left-radius: 4px;
|
|
1617
|
+
border-top-right-radius: 4px;
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
1620
1620
|
.\!k-rounded-top-md {
|
|
1621
|
-
border-top-left-radius:
|
|
1622
|
-
border-top-right-radius:
|
|
1621
|
+
border-top-left-radius: 4px !important;
|
|
1622
|
+
border-top-right-radius: 4px !important;
|
|
1623
1623
|
}
|
|
1624
1624
|
|
|
1625
1625
|
.k-rounded-top-lg {
|
|
1626
|
-
border-top-left-radius:
|
|
1627
|
-
border-top-right-radius:
|
|
1626
|
+
border-top-left-radius: 6px;
|
|
1627
|
+
border-top-right-radius: 6px;
|
|
1628
1628
|
}
|
|
1629
1629
|
|
|
1630
1630
|
.\!k-rounded-top-lg {
|
|
1631
|
-
border-top-left-radius:
|
|
1632
|
-
border-top-right-radius:
|
|
1631
|
+
border-top-left-radius: 6px !important;
|
|
1632
|
+
border-top-right-radius: 6px !important;
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
1635
|
.k-rounded-top-full {
|
|
@@ -1663,33 +1663,33 @@ kendo-sortable {
|
|
|
1663
1663
|
}
|
|
1664
1664
|
|
|
1665
1665
|
.k-rounded-right-sm {
|
|
1666
|
-
border-top-right-radius:
|
|
1667
|
-
border-bottom-right-radius:
|
|
1666
|
+
border-top-right-radius: 2px;
|
|
1667
|
+
border-bottom-right-radius: 2px;
|
|
1668
1668
|
}
|
|
1669
1669
|
|
|
1670
1670
|
.\!k-rounded-right-sm {
|
|
1671
|
-
border-top-right-radius:
|
|
1672
|
-
border-bottom-right-radius:
|
|
1671
|
+
border-top-right-radius: 2px !important;
|
|
1672
|
+
border-bottom-right-radius: 2px !important;
|
|
1673
1673
|
}
|
|
1674
1674
|
|
|
1675
1675
|
.k-rounded-right-md {
|
|
1676
|
-
border-top-right-radius:
|
|
1677
|
-
border-bottom-right-radius:
|
|
1676
|
+
border-top-right-radius: 4px;
|
|
1677
|
+
border-bottom-right-radius: 4px;
|
|
1678
1678
|
}
|
|
1679
1679
|
|
|
1680
1680
|
.\!k-rounded-right-md {
|
|
1681
|
-
border-top-right-radius:
|
|
1682
|
-
border-bottom-right-radius:
|
|
1681
|
+
border-top-right-radius: 4px !important;
|
|
1682
|
+
border-bottom-right-radius: 4px !important;
|
|
1683
1683
|
}
|
|
1684
1684
|
|
|
1685
1685
|
.k-rounded-right-lg {
|
|
1686
|
-
border-top-right-radius:
|
|
1687
|
-
border-bottom-right-radius:
|
|
1686
|
+
border-top-right-radius: 6px;
|
|
1687
|
+
border-bottom-right-radius: 6px;
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
1690
|
.\!k-rounded-right-lg {
|
|
1691
|
-
border-top-right-radius:
|
|
1692
|
-
border-bottom-right-radius:
|
|
1691
|
+
border-top-right-radius: 6px !important;
|
|
1692
|
+
border-bottom-right-radius: 6px !important;
|
|
1693
1693
|
}
|
|
1694
1694
|
|
|
1695
1695
|
.k-rounded-right-full {
|
|
@@ -1723,33 +1723,33 @@ kendo-sortable {
|
|
|
1723
1723
|
}
|
|
1724
1724
|
|
|
1725
1725
|
.k-rounded-bottom-sm {
|
|
1726
|
-
border-bottom-left-radius:
|
|
1727
|
-
border-bottom-right-radius:
|
|
1726
|
+
border-bottom-left-radius: 2px;
|
|
1727
|
+
border-bottom-right-radius: 2px;
|
|
1728
1728
|
}
|
|
1729
1729
|
|
|
1730
1730
|
.\!k-rounded-bottom-sm {
|
|
1731
|
-
border-bottom-left-radius:
|
|
1732
|
-
border-bottom-right-radius:
|
|
1731
|
+
border-bottom-left-radius: 2px !important;
|
|
1732
|
+
border-bottom-right-radius: 2px !important;
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
1735
|
.k-rounded-bottom-md {
|
|
1736
|
-
border-bottom-left-radius:
|
|
1737
|
-
border-bottom-right-radius:
|
|
1736
|
+
border-bottom-left-radius: 4px;
|
|
1737
|
+
border-bottom-right-radius: 4px;
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
1740
|
.\!k-rounded-bottom-md {
|
|
1741
|
-
border-bottom-left-radius:
|
|
1742
|
-
border-bottom-right-radius:
|
|
1741
|
+
border-bottom-left-radius: 4px !important;
|
|
1742
|
+
border-bottom-right-radius: 4px !important;
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
1745
|
.k-rounded-bottom-lg {
|
|
1746
|
-
border-bottom-left-radius:
|
|
1747
|
-
border-bottom-right-radius:
|
|
1746
|
+
border-bottom-left-radius: 6px;
|
|
1747
|
+
border-bottom-right-radius: 6px;
|
|
1748
1748
|
}
|
|
1749
1749
|
|
|
1750
1750
|
.\!k-rounded-bottom-lg {
|
|
1751
|
-
border-bottom-left-radius:
|
|
1752
|
-
border-bottom-right-radius:
|
|
1751
|
+
border-bottom-left-radius: 6px !important;
|
|
1752
|
+
border-bottom-right-radius: 6px !important;
|
|
1753
1753
|
}
|
|
1754
1754
|
|
|
1755
1755
|
.k-rounded-bottom-full {
|
|
@@ -1783,33 +1783,33 @@ kendo-sortable {
|
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
1785
|
.k-rounded-left-sm {
|
|
1786
|
-
border-bottom-left-radius:
|
|
1787
|
-
border-top-left-radius:
|
|
1786
|
+
border-bottom-left-radius: 2px;
|
|
1787
|
+
border-top-left-radius: 2px;
|
|
1788
1788
|
}
|
|
1789
1789
|
|
|
1790
1790
|
.\!k-rounded-left-sm {
|
|
1791
|
-
border-bottom-left-radius:
|
|
1792
|
-
border-top-left-radius:
|
|
1791
|
+
border-bottom-left-radius: 2px !important;
|
|
1792
|
+
border-top-left-radius: 2px !important;
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
1795
|
.k-rounded-left-md {
|
|
1796
|
-
border-bottom-left-radius:
|
|
1797
|
-
border-top-left-radius:
|
|
1796
|
+
border-bottom-left-radius: 4px;
|
|
1797
|
+
border-top-left-radius: 4px;
|
|
1798
1798
|
}
|
|
1799
1799
|
|
|
1800
1800
|
.\!k-rounded-left-md {
|
|
1801
|
-
border-bottom-left-radius:
|
|
1802
|
-
border-top-left-radius:
|
|
1801
|
+
border-bottom-left-radius: 4px !important;
|
|
1802
|
+
border-top-left-radius: 4px !important;
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
1805
1805
|
.k-rounded-left-lg {
|
|
1806
|
-
border-bottom-left-radius:
|
|
1807
|
-
border-top-left-radius:
|
|
1806
|
+
border-bottom-left-radius: 6px;
|
|
1807
|
+
border-top-left-radius: 6px;
|
|
1808
1808
|
}
|
|
1809
1809
|
|
|
1810
1810
|
.\!k-rounded-left-lg {
|
|
1811
|
-
border-bottom-left-radius:
|
|
1812
|
-
border-top-left-radius:
|
|
1811
|
+
border-bottom-left-radius: 6px !important;
|
|
1812
|
+
border-top-left-radius: 6px !important;
|
|
1813
1813
|
}
|
|
1814
1814
|
|
|
1815
1815
|
.k-rounded-left-full {
|
|
@@ -1839,27 +1839,27 @@ kendo-sortable {
|
|
|
1839
1839
|
}
|
|
1840
1840
|
|
|
1841
1841
|
.k-rounded-top-left-sm {
|
|
1842
|
-
border-top-left-radius:
|
|
1842
|
+
border-top-left-radius: 2px;
|
|
1843
1843
|
}
|
|
1844
1844
|
|
|
1845
1845
|
.\!k-rounded-top-left-sm {
|
|
1846
|
-
border-top-left-radius:
|
|
1846
|
+
border-top-left-radius: 2px !important;
|
|
1847
1847
|
}
|
|
1848
1848
|
|
|
1849
1849
|
.k-rounded-top-left-md {
|
|
1850
|
-
border-top-left-radius:
|
|
1850
|
+
border-top-left-radius: 4px;
|
|
1851
1851
|
}
|
|
1852
1852
|
|
|
1853
1853
|
.\!k-rounded-top-left-md {
|
|
1854
|
-
border-top-left-radius:
|
|
1854
|
+
border-top-left-radius: 4px !important;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
1857
|
.k-rounded-top-left-lg {
|
|
1858
|
-
border-top-left-radius:
|
|
1858
|
+
border-top-left-radius: 6px;
|
|
1859
1859
|
}
|
|
1860
1860
|
|
|
1861
1861
|
.\!k-rounded-top-left-lg {
|
|
1862
|
-
border-top-left-radius:
|
|
1862
|
+
border-top-left-radius: 6px !important;
|
|
1863
1863
|
}
|
|
1864
1864
|
|
|
1865
1865
|
.k-rounded-top-left-full {
|
|
@@ -1887,27 +1887,27 @@ kendo-sortable {
|
|
|
1887
1887
|
}
|
|
1888
1888
|
|
|
1889
1889
|
.k-rounded-top-right-sm {
|
|
1890
|
-
border-top-right-radius:
|
|
1890
|
+
border-top-right-radius: 2px;
|
|
1891
1891
|
}
|
|
1892
1892
|
|
|
1893
1893
|
.\!k-rounded-top-right-sm {
|
|
1894
|
-
border-top-right-radius:
|
|
1894
|
+
border-top-right-radius: 2px !important;
|
|
1895
1895
|
}
|
|
1896
1896
|
|
|
1897
1897
|
.k-rounded-top-right-md {
|
|
1898
|
-
border-top-right-radius:
|
|
1898
|
+
border-top-right-radius: 4px;
|
|
1899
1899
|
}
|
|
1900
1900
|
|
|
1901
1901
|
.\!k-rounded-top-right-md {
|
|
1902
|
-
border-top-right-radius:
|
|
1902
|
+
border-top-right-radius: 4px !important;
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
1905
1905
|
.k-rounded-top-right-lg {
|
|
1906
|
-
border-top-right-radius:
|
|
1906
|
+
border-top-right-radius: 6px;
|
|
1907
1907
|
}
|
|
1908
1908
|
|
|
1909
1909
|
.\!k-rounded-top-right-lg {
|
|
1910
|
-
border-top-right-radius:
|
|
1910
|
+
border-top-right-radius: 6px !important;
|
|
1911
1911
|
}
|
|
1912
1912
|
|
|
1913
1913
|
.k-rounded-top-right-full {
|
|
@@ -1935,27 +1935,27 @@ kendo-sortable {
|
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
1937
|
.k-rounded-bottom-left-sm {
|
|
1938
|
-
border-bottom-left-radius:
|
|
1938
|
+
border-bottom-left-radius: 2px;
|
|
1939
1939
|
}
|
|
1940
1940
|
|
|
1941
1941
|
.\!k-rounded-bottom-left-sm {
|
|
1942
|
-
border-bottom-left-radius:
|
|
1942
|
+
border-bottom-left-radius: 2px !important;
|
|
1943
1943
|
}
|
|
1944
1944
|
|
|
1945
1945
|
.k-rounded-bottom-left-md {
|
|
1946
|
-
border-bottom-left-radius:
|
|
1946
|
+
border-bottom-left-radius: 4px;
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
1949
|
.\!k-rounded-bottom-left-md {
|
|
1950
|
-
border-bottom-left-radius:
|
|
1950
|
+
border-bottom-left-radius: 4px !important;
|
|
1951
1951
|
}
|
|
1952
1952
|
|
|
1953
1953
|
.k-rounded-bottom-left-lg {
|
|
1954
|
-
border-bottom-left-radius:
|
|
1954
|
+
border-bottom-left-radius: 6px;
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
1957
|
.\!k-rounded-bottom-left-lg {
|
|
1958
|
-
border-bottom-left-radius:
|
|
1958
|
+
border-bottom-left-radius: 6px !important;
|
|
1959
1959
|
}
|
|
1960
1960
|
|
|
1961
1961
|
.k-rounded-bottom-left-full {
|
|
@@ -1983,27 +1983,27 @@ kendo-sortable {
|
|
|
1983
1983
|
}
|
|
1984
1984
|
|
|
1985
1985
|
.k-rounded-bottom-right-sm {
|
|
1986
|
-
border-bottom-right-radius:
|
|
1986
|
+
border-bottom-right-radius: 2px;
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
1989
1989
|
.\!k-rounded-bottom-right-sm {
|
|
1990
|
-
border-bottom-right-radius:
|
|
1990
|
+
border-bottom-right-radius: 2px !important;
|
|
1991
1991
|
}
|
|
1992
1992
|
|
|
1993
1993
|
.k-rounded-bottom-right-md {
|
|
1994
|
-
border-bottom-right-radius:
|
|
1994
|
+
border-bottom-right-radius: 4px;
|
|
1995
1995
|
}
|
|
1996
1996
|
|
|
1997
1997
|
.\!k-rounded-bottom-right-md {
|
|
1998
|
-
border-bottom-right-radius:
|
|
1998
|
+
border-bottom-right-radius: 4px !important;
|
|
1999
1999
|
}
|
|
2000
2000
|
|
|
2001
2001
|
.k-rounded-bottom-right-lg {
|
|
2002
|
-
border-bottom-right-radius:
|
|
2002
|
+
border-bottom-right-radius: 6px;
|
|
2003
2003
|
}
|
|
2004
2004
|
|
|
2005
2005
|
.\!k-rounded-bottom-right-lg {
|
|
2006
|
-
border-bottom-right-radius:
|
|
2006
|
+
border-bottom-right-radius: 6px !important;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
2009
|
.k-rounded-bottom-right-full {
|
|
@@ -2091,165 +2091,321 @@ kendo-sortable {
|
|
|
2091
2091
|
}
|
|
2092
2092
|
|
|
2093
2093
|
.\!k-flex-col-reverse {
|
|
2094
|
-
flex-direction: column-reverse;
|
|
2094
|
+
flex-direction: column-reverse !important;
|
|
2095
2095
|
}
|
|
2096
2096
|
|
|
2097
2097
|
.k-flex-wrap {
|
|
2098
2098
|
flex-wrap: wrap;
|
|
2099
2099
|
}
|
|
2100
2100
|
|
|
2101
|
+
.\!k-flex-wrap {
|
|
2102
|
+
flex-wrap: wrap !important;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2101
2105
|
.k-flex-nowrap {
|
|
2102
2106
|
flex-wrap: nowrap;
|
|
2103
2107
|
}
|
|
2104
2108
|
|
|
2109
|
+
.\!k-flex-nowrap {
|
|
2110
|
+
flex-wrap: nowrap !important;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2105
2113
|
.k-flex-wrap-reverse {
|
|
2106
2114
|
flex-wrap: wrap-reverse;
|
|
2107
2115
|
}
|
|
2108
2116
|
|
|
2117
|
+
.\!k-flex-wrap-reverse {
|
|
2118
|
+
flex-wrap: wrap-reverse !important;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2109
2121
|
.k-flex-initial {
|
|
2110
2122
|
flex: 0 1 auto;
|
|
2111
2123
|
}
|
|
2112
2124
|
|
|
2125
|
+
.\!k-flex-initial {
|
|
2126
|
+
flex: 0 1 auto !important;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2113
2129
|
.k-flex-1 {
|
|
2114
2130
|
flex: 1 1 0%;
|
|
2115
2131
|
}
|
|
2116
2132
|
|
|
2133
|
+
.\!k-flex-1 {
|
|
2134
|
+
flex: 1 1 0% !important;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2117
2137
|
.k-flex-auto {
|
|
2118
2138
|
flex: 1 1 auto;
|
|
2119
2139
|
}
|
|
2120
2140
|
|
|
2141
|
+
.\!k-flex-auto {
|
|
2142
|
+
flex: 1 1 auto !important;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2121
2145
|
.k-flex-none {
|
|
2122
2146
|
flex: none;
|
|
2123
2147
|
}
|
|
2124
2148
|
|
|
2149
|
+
.\!k-flex-none {
|
|
2150
|
+
flex: none !important;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2125
2153
|
.k-flex-grow {
|
|
2126
2154
|
flex-grow: 1;
|
|
2127
2155
|
}
|
|
2128
2156
|
|
|
2157
|
+
.\!k-flex-grow {
|
|
2158
|
+
flex-grow: 1 !important;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2129
2161
|
.k-flex-grow-0 {
|
|
2130
2162
|
flex-grow: 0;
|
|
2131
2163
|
}
|
|
2132
2164
|
|
|
2165
|
+
.\!k-flex-grow-0 {
|
|
2166
|
+
flex-grow: 0 !important;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2133
2169
|
.k-flex-shrink {
|
|
2134
2170
|
flex-shrink: 1;
|
|
2135
2171
|
}
|
|
2136
2172
|
|
|
2173
|
+
.\!k-flex-shrink {
|
|
2174
|
+
flex-shrink: 1 !important;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2137
2177
|
.k-flex-shrink-0 {
|
|
2138
2178
|
flex-shrink: 0;
|
|
2139
2179
|
}
|
|
2140
2180
|
|
|
2181
|
+
.\!k-flex-shrink-0 {
|
|
2182
|
+
flex-shrink: 0 !important;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2141
2185
|
.k-flex-basis-auto {
|
|
2142
2186
|
flex-basis: auto;
|
|
2143
2187
|
}
|
|
2144
2188
|
|
|
2189
|
+
.\!k-flex-basis-auto {
|
|
2190
|
+
flex-basis: auto !important;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2145
2193
|
.k-flex-basis-0 {
|
|
2146
2194
|
flex-basis: 0%;
|
|
2147
2195
|
}
|
|
2148
2196
|
|
|
2197
|
+
.\!k-flex-basis-0 {
|
|
2198
|
+
flex-basis: 0% !important;
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2149
2201
|
.k-align-items-start {
|
|
2150
2202
|
align-items: flex-start;
|
|
2151
2203
|
}
|
|
2152
2204
|
|
|
2205
|
+
.\!k-align-items-start {
|
|
2206
|
+
align-items: flex-start !important;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2153
2209
|
.k-align-items-end {
|
|
2154
2210
|
align-items: flex-end;
|
|
2155
2211
|
}
|
|
2156
2212
|
|
|
2213
|
+
.\!k-align-items-end {
|
|
2214
|
+
align-items: flex-end !important;
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2157
2217
|
.k-align-items-center {
|
|
2158
2218
|
align-items: center;
|
|
2159
2219
|
}
|
|
2160
2220
|
|
|
2221
|
+
.\!k-align-items-center {
|
|
2222
|
+
align-items: center !important;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2161
2225
|
.k-align-items-stretch {
|
|
2162
2226
|
align-items: stretch;
|
|
2163
2227
|
}
|
|
2164
2228
|
|
|
2229
|
+
.\!k-align-items-stretch {
|
|
2230
|
+
align-items: stretch !important;
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2165
2233
|
.k-align-items-baseline {
|
|
2166
2234
|
align-items: baseline;
|
|
2167
2235
|
}
|
|
2168
2236
|
|
|
2237
|
+
.\!k-align-items-baseline {
|
|
2238
|
+
align-items: baseline !important;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2169
2241
|
.k-align-content-start {
|
|
2170
2242
|
align-content: flex-start;
|
|
2171
2243
|
}
|
|
2172
2244
|
|
|
2245
|
+
.\!k-align-content-start {
|
|
2246
|
+
align-content: flex-start !important;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2173
2249
|
.k-align-content-end {
|
|
2174
2250
|
align-content: flex-end;
|
|
2175
2251
|
}
|
|
2176
2252
|
|
|
2253
|
+
.\!k-align-content-end {
|
|
2254
|
+
align-content: flex-end !important;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2177
2257
|
.k-align-content-center {
|
|
2178
2258
|
align-content: center;
|
|
2179
2259
|
}
|
|
2180
2260
|
|
|
2261
|
+
.\!k-align-content-center {
|
|
2262
|
+
align-content: center !important;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2181
2265
|
.k-align-content-stretch {
|
|
2182
2266
|
align-content: stretch;
|
|
2183
2267
|
}
|
|
2184
2268
|
|
|
2269
|
+
.\!k-align-content-stretch {
|
|
2270
|
+
align-content: stretch !important;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2185
2273
|
.k-align-content-baseline {
|
|
2186
2274
|
align-content: baseline;
|
|
2187
2275
|
}
|
|
2188
2276
|
|
|
2277
|
+
.\!k-align-content-baseline {
|
|
2278
|
+
align-content: baseline !important;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2189
2281
|
.k-align-self-start {
|
|
2190
2282
|
align-self: flex-start;
|
|
2191
2283
|
}
|
|
2192
2284
|
|
|
2285
|
+
.\!k-align-self-start {
|
|
2286
|
+
align-self: flex-start !important;
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2193
2289
|
.k-align-self-end {
|
|
2194
2290
|
align-self: flex-end;
|
|
2195
2291
|
}
|
|
2196
2292
|
|
|
2293
|
+
.\!k-align-self-end {
|
|
2294
|
+
align-self: flex-end !important;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2197
2297
|
.k-align-self-center {
|
|
2198
2298
|
align-self: center;
|
|
2199
2299
|
}
|
|
2200
2300
|
|
|
2301
|
+
.\!k-align-self-center {
|
|
2302
|
+
align-self: center !important;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2201
2305
|
.k-align-self-stretch {
|
|
2202
2306
|
align-self: stretch;
|
|
2203
2307
|
}
|
|
2204
2308
|
|
|
2309
|
+
.\!k-align-self-stretch {
|
|
2310
|
+
align-self: stretch !important;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2205
2313
|
.k-align-self-baseline {
|
|
2206
2314
|
align-self: baseline;
|
|
2207
2315
|
}
|
|
2208
2316
|
|
|
2317
|
+
.\!k-align-self-baseline {
|
|
2318
|
+
align-self: baseline !important;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2209
2321
|
.k-justify-content-start {
|
|
2210
2322
|
justify-content: flex-start;
|
|
2211
2323
|
}
|
|
2212
2324
|
|
|
2325
|
+
.\!k-justify-content-start {
|
|
2326
|
+
justify-content: flex-start !important;
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2213
2329
|
.k-justify-content-end {
|
|
2214
2330
|
justify-content: flex-end;
|
|
2215
2331
|
}
|
|
2216
2332
|
|
|
2333
|
+
.\!k-justify-content-end {
|
|
2334
|
+
justify-content: flex-end !important;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2217
2337
|
.k-justify-content-center {
|
|
2218
2338
|
justify-content: center;
|
|
2219
2339
|
}
|
|
2220
2340
|
|
|
2341
|
+
.\!k-justify-content-center {
|
|
2342
|
+
justify-content: center !important;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2221
2345
|
.k-justify-content-between {
|
|
2222
2346
|
justify-content: space-between;
|
|
2223
2347
|
}
|
|
2224
2348
|
|
|
2349
|
+
.\!k-justify-content-between {
|
|
2350
|
+
justify-content: space-between !important;
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2225
2353
|
.k-justify-content-around {
|
|
2226
2354
|
justify-content: space-around;
|
|
2227
2355
|
}
|
|
2228
2356
|
|
|
2357
|
+
.\!k-justify-content-around {
|
|
2358
|
+
justify-content: space-around !important;
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2229
2361
|
.k-justify-content-evenly {
|
|
2230
2362
|
justify-content: space-evenly;
|
|
2231
2363
|
}
|
|
2232
2364
|
|
|
2365
|
+
.\!k-justify-content-evenly {
|
|
2366
|
+
justify-content: space-evenly !important;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2233
2369
|
.k-justify-content-stretch > * {
|
|
2234
2370
|
flex: 1 0 0%;
|
|
2235
2371
|
}
|
|
2236
2372
|
|
|
2373
|
+
.\!k-justify-content-stretch > * {
|
|
2374
|
+
flex: 1 0 0% !important;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2237
2377
|
.k-justify-items-start {
|
|
2238
2378
|
justify-items: flex-start;
|
|
2239
2379
|
}
|
|
2240
2380
|
|
|
2381
|
+
.\!k-justify-items-start {
|
|
2382
|
+
justify-items: flex-start !important;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2241
2385
|
.k-justify-items-end {
|
|
2242
2386
|
justify-items: flex-end;
|
|
2243
2387
|
}
|
|
2244
2388
|
|
|
2389
|
+
.\!k-justify-items-end {
|
|
2390
|
+
justify-items: flex-end !important;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2245
2393
|
.k-justify-items-center {
|
|
2246
2394
|
justify-items: center;
|
|
2247
2395
|
}
|
|
2248
2396
|
|
|
2397
|
+
.\!k-justify-items-center {
|
|
2398
|
+
justify-items: center !important;
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2249
2401
|
.k-justify-items-stretch {
|
|
2250
2402
|
justify-items: stretch;
|
|
2251
2403
|
}
|
|
2252
2404
|
|
|
2405
|
+
.\!k-justify-items-stretch {
|
|
2406
|
+
justify-items: stretch !important;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2253
2409
|
.k-float-left {
|
|
2254
2410
|
float: left !important;
|
|
2255
2411
|
}
|
|
@@ -10991,6 +11147,13 @@ kendo-sortable {
|
|
|
10991
11147
|
right: 0;
|
|
10992
11148
|
}
|
|
10993
11149
|
|
|
11150
|
+
.k-list-item-text::before,
|
|
11151
|
+
.k-list-optionlabel::before {
|
|
11152
|
+
content: "\200b";
|
|
11153
|
+
width: 0px;
|
|
11154
|
+
overflow: hidden;
|
|
11155
|
+
}
|
|
11156
|
+
|
|
10994
11157
|
.k-list-group-item {
|
|
10995
11158
|
border-width: 0;
|
|
10996
11159
|
border-width: 1px 0 0;
|
|
@@ -11159,7 +11322,7 @@ kendo-sortable {
|
|
|
11159
11322
|
}
|
|
11160
11323
|
|
|
11161
11324
|
.k-listgroup {
|
|
11162
|
-
border-radius:
|
|
11325
|
+
border-radius: 4px;
|
|
11163
11326
|
margin: 0;
|
|
11164
11327
|
padding: 0;
|
|
11165
11328
|
border-width: 1px;
|
|
@@ -11405,7 +11568,7 @@ kendo-sortable {
|
|
|
11405
11568
|
}
|
|
11406
11569
|
|
|
11407
11570
|
.k-animation-container {
|
|
11408
|
-
border-radius: 0 0
|
|
11571
|
+
border-radius: 0 0 4px 4px;
|
|
11409
11572
|
}
|
|
11410
11573
|
|
|
11411
11574
|
.k-animation-container-shown {
|
|
@@ -11442,7 +11605,7 @@ kendo-sortable {
|
|
|
11442
11605
|
}
|
|
11443
11606
|
|
|
11444
11607
|
.k-animation-container {
|
|
11445
|
-
border-radius: 0 0
|
|
11608
|
+
border-radius: 0 0 4px 4px;
|
|
11446
11609
|
}
|
|
11447
11610
|
|
|
11448
11611
|
.k-ripple-target {
|
|
@@ -11576,15 +11739,15 @@ a.k-badge:hover,
|
|
|
11576
11739
|
}
|
|
11577
11740
|
|
|
11578
11741
|
.k-badge-rounded.k-badge-sm {
|
|
11579
|
-
border-radius:
|
|
11742
|
+
border-radius: 2px;
|
|
11580
11743
|
}
|
|
11581
11744
|
|
|
11582
11745
|
.k-badge-rounded.k-badge-md {
|
|
11583
|
-
border-radius:
|
|
11746
|
+
border-radius: 4px;
|
|
11584
11747
|
}
|
|
11585
11748
|
|
|
11586
11749
|
.k-badge-rounded.k-badge-lg {
|
|
11587
|
-
border-radius:
|
|
11750
|
+
border-radius: 6px;
|
|
11588
11751
|
}
|
|
11589
11752
|
|
|
11590
11753
|
.k-badge-pill {
|
|
@@ -12055,6 +12218,18 @@ kendo-badge-container {
|
|
|
12055
12218
|
flex: none;
|
|
12056
12219
|
}
|
|
12057
12220
|
|
|
12221
|
+
.k-split-button .k-split-button-arrow.k-button-sm {
|
|
12222
|
+
padding: 6px 4px;
|
|
12223
|
+
}
|
|
12224
|
+
|
|
12225
|
+
.k-split-button .k-split-button-arrow.k-button-md {
|
|
12226
|
+
padding: 8px 4px;
|
|
12227
|
+
}
|
|
12228
|
+
|
|
12229
|
+
.k-split-button .k-split-button-arrow.k-button-lg {
|
|
12230
|
+
padding: 10px 4px;
|
|
12231
|
+
}
|
|
12232
|
+
|
|
12058
12233
|
.k-split-button .k-split-button-arrow .k-button-icon {
|
|
12059
12234
|
min-width: 0;
|
|
12060
12235
|
}
|
|
@@ -13574,7 +13749,7 @@ select.k-picker {
|
|
|
13574
13749
|
position: relative;
|
|
13575
13750
|
z-index: 1;
|
|
13576
13751
|
overflow: hidden;
|
|
13577
|
-
text-overflow:
|
|
13752
|
+
text-overflow: ellipsis;
|
|
13578
13753
|
-webkit-appearance: none;
|
|
13579
13754
|
}
|
|
13580
13755
|
|
|
@@ -13623,7 +13798,7 @@ textarea.k-input-inner {
|
|
|
13623
13798
|
.k-input-value-text {
|
|
13624
13799
|
flex: 1;
|
|
13625
13800
|
overflow: hidden;
|
|
13626
|
-
text-overflow:
|
|
13801
|
+
text-overflow: ellipsis;
|
|
13627
13802
|
}
|
|
13628
13803
|
|
|
13629
13804
|
.k-input-value-text::before {
|
|
@@ -13677,7 +13852,9 @@ textarea.k-input-inner {
|
|
|
13677
13852
|
|
|
13678
13853
|
.k-input-icon,
|
|
13679
13854
|
.k-input-validation-icon,
|
|
13680
|
-
.k-input-loading-icon
|
|
13855
|
+
.k-input-loading-icon,
|
|
13856
|
+
.k-input-prefix > .k-icon,
|
|
13857
|
+
.k-input-suffix > .k-icon {
|
|
13681
13858
|
flex: none;
|
|
13682
13859
|
align-self: center;
|
|
13683
13860
|
display: inline-flex;
|
|
@@ -13842,10 +14019,14 @@ textarea.k-input-inner {
|
|
|
13842
14019
|
.k-input-sm .k-input-validation-icon,
|
|
13843
14020
|
.k-input-sm .k-input-loading-icon,
|
|
13844
14021
|
.k-input-sm .k-clear-value,
|
|
14022
|
+
.k-input-sm .k-input-prefix > .k-icon,
|
|
14023
|
+
.k-input-sm .k-input-suffix > .k-icon,
|
|
13845
14024
|
.k-picker-sm .k-input-icon,
|
|
13846
14025
|
.k-picker-sm .k-input-validation-icon,
|
|
13847
14026
|
.k-picker-sm .k-input-loading-icon,
|
|
13848
|
-
.k-picker-sm .k-clear-value
|
|
14027
|
+
.k-picker-sm .k-clear-value,
|
|
14028
|
+
.k-picker-sm .k-input-prefix > .k-icon,
|
|
14029
|
+
.k-picker-sm .k-input-suffix > .k-icon {
|
|
13849
14030
|
width: 28px;
|
|
13850
14031
|
height: 28px;
|
|
13851
14032
|
}
|
|
@@ -13901,10 +14082,14 @@ textarea.k-input-inner {
|
|
|
13901
14082
|
.k-input-md .k-input-validation-icon,
|
|
13902
14083
|
.k-input-md .k-input-loading-icon,
|
|
13903
14084
|
.k-input-md .k-clear-value,
|
|
14085
|
+
.k-input-md .k-input-prefix > .k-icon,
|
|
14086
|
+
.k-input-md .k-input-suffix > .k-icon,
|
|
13904
14087
|
.k-picker-md .k-input-icon,
|
|
13905
14088
|
.k-picker-md .k-input-validation-icon,
|
|
13906
14089
|
.k-picker-md .k-input-loading-icon,
|
|
13907
|
-
.k-picker-md .k-clear-value
|
|
14090
|
+
.k-picker-md .k-clear-value,
|
|
14091
|
+
.k-picker-md .k-input-prefix > .k-icon,
|
|
14092
|
+
.k-picker-md .k-input-suffix > .k-icon {
|
|
13908
14093
|
width: 32px;
|
|
13909
14094
|
height: 32px;
|
|
13910
14095
|
}
|
|
@@ -13960,10 +14145,14 @@ textarea.k-input-inner {
|
|
|
13960
14145
|
.k-input-lg .k-input-validation-icon,
|
|
13961
14146
|
.k-input-lg .k-input-loading-icon,
|
|
13962
14147
|
.k-input-lg .k-clear-value,
|
|
14148
|
+
.k-input-lg .k-input-prefix > .k-icon,
|
|
14149
|
+
.k-input-lg .k-input-suffix > .k-icon,
|
|
13963
14150
|
.k-picker-lg .k-input-icon,
|
|
13964
14151
|
.k-picker-lg .k-input-validation-icon,
|
|
13965
14152
|
.k-picker-lg .k-input-loading-icon,
|
|
13966
|
-
.k-picker-lg .k-clear-value
|
|
14153
|
+
.k-picker-lg .k-clear-value,
|
|
14154
|
+
.k-picker-lg .k-input-prefix > .k-icon,
|
|
14155
|
+
.k-picker-lg .k-input-suffix > .k-icon {
|
|
13967
14156
|
width: 36px;
|
|
13968
14157
|
height: 36px;
|
|
13969
14158
|
}
|
|
@@ -14836,6 +15025,8 @@ textarea.k-input-inner {
|
|
|
14836
15025
|
}
|
|
14837
15026
|
|
|
14838
15027
|
.k-chip-content {
|
|
15028
|
+
padding: .5em 0;
|
|
15029
|
+
margin: -.5em 0;
|
|
14839
15030
|
min-width: 0;
|
|
14840
15031
|
display: flex;
|
|
14841
15032
|
flex-flow: row nowrap;
|
|
@@ -15277,7 +15468,7 @@ textarea.k-input-inner {
|
|
|
15277
15468
|
width: 100%;
|
|
15278
15469
|
height: 100%;
|
|
15279
15470
|
border-width: 1px;
|
|
15280
|
-
border-radius:
|
|
15471
|
+
border-radius: 4px;
|
|
15281
15472
|
box-sizing: border-box;
|
|
15282
15473
|
border-style: solid;
|
|
15283
15474
|
display: inline-flex;
|
|
@@ -15683,7 +15874,7 @@ textarea.k-input-inner {
|
|
|
15683
15874
|
.k-loader-container-panel {
|
|
15684
15875
|
border-width: 1px;
|
|
15685
15876
|
border-style: solid;
|
|
15686
|
-
border-radius:
|
|
15877
|
+
border-radius: 4px;
|
|
15687
15878
|
}
|
|
15688
15879
|
|
|
15689
15880
|
.k-loader-container-sm .k-loader-container-inner {
|
|
@@ -15776,7 +15967,7 @@ textarea.k-input-inner {
|
|
|
15776
15967
|
}
|
|
15777
15968
|
|
|
15778
15969
|
.k-skeleton-text {
|
|
15779
|
-
border-radius:
|
|
15970
|
+
border-radius: 4px;
|
|
15780
15971
|
transform: scale(1, 0.6);
|
|
15781
15972
|
}
|
|
15782
15973
|
|
|
@@ -16758,12 +16949,6 @@ kendo-label > .k-label {
|
|
|
16758
16949
|
width: 100%;
|
|
16759
16950
|
}
|
|
16760
16951
|
|
|
16761
|
-
.k-form .k-daterangepicker {
|
|
16762
|
-
width: 100%;
|
|
16763
|
-
flex-flow: column nowrap;
|
|
16764
|
-
gap: 0;
|
|
16765
|
-
}
|
|
16766
|
-
|
|
16767
16952
|
.k-form-buttons {
|
|
16768
16953
|
margin-top: 2em;
|
|
16769
16954
|
padding: 0;
|
|
@@ -17045,7 +17230,7 @@ kendo-label > .k-label {
|
|
|
17045
17230
|
}
|
|
17046
17231
|
|
|
17047
17232
|
.k-tooltip {
|
|
17048
|
-
border-radius:
|
|
17233
|
+
border-radius: 4px;
|
|
17049
17234
|
margin: 0;
|
|
17050
17235
|
padding: 3px 8px;
|
|
17051
17236
|
border-width: 0px;
|
|
@@ -17218,10 +17403,6 @@ kendo-label > .k-label {
|
|
|
17218
17403
|
max-width: 300px;
|
|
17219
17404
|
}
|
|
17220
17405
|
|
|
17221
|
-
.k-textarea {
|
|
17222
|
-
display: flex;
|
|
17223
|
-
}
|
|
17224
|
-
|
|
17225
17406
|
.k-listbox {
|
|
17226
17407
|
width: 10em;
|
|
17227
17408
|
height: 200px;
|
|
@@ -17348,7 +17529,7 @@ kendo-label > .k-label {
|
|
|
17348
17529
|
}
|
|
17349
17530
|
|
|
17350
17531
|
.k-progressbar {
|
|
17351
|
-
border-radius:
|
|
17532
|
+
border-radius: 4px;
|
|
17352
17533
|
--kendo-progressbar-progress: 0;
|
|
17353
17534
|
border-width: 0px;
|
|
17354
17535
|
border-style: solid;
|
|
@@ -18515,7 +18696,7 @@ kendo-label > .k-label {
|
|
|
18515
18696
|
|
|
18516
18697
|
.k-slider .k-slider-track,
|
|
18517
18698
|
.k-slider .k-slider-selection {
|
|
18518
|
-
border-radius:
|
|
18699
|
+
border-radius: 4px;
|
|
18519
18700
|
}
|
|
18520
18701
|
|
|
18521
18702
|
.k-slider .k-slider-track {
|
|
@@ -18907,6 +19088,9 @@ kendo-label > .k-label {
|
|
|
18907
19088
|
line-height: 2em;
|
|
18908
19089
|
cursor: pointer;
|
|
18909
19090
|
padding: 0 1em;
|
|
19091
|
+
overflow: hidden;
|
|
19092
|
+
white-space: nowrap;
|
|
19093
|
+
text-overflow: clip;
|
|
18910
19094
|
}
|
|
18911
19095
|
|
|
18912
19096
|
.k-calendar-navigation .k-calendar-navigation-marker {
|
|
@@ -19540,7 +19724,7 @@ kendo-label > .k-label {
|
|
|
19540
19724
|
}
|
|
19541
19725
|
|
|
19542
19726
|
.k-colorgradient {
|
|
19543
|
-
border-radius:
|
|
19727
|
+
border-radius: 4px;
|
|
19544
19728
|
width: 294px;
|
|
19545
19729
|
padding: 12px 12px;
|
|
19546
19730
|
border-style: solid;
|
|
@@ -19569,7 +19753,7 @@ kendo-label > .k-label {
|
|
|
19569
19753
|
}
|
|
19570
19754
|
|
|
19571
19755
|
.k-colorgradient-canvas .k-hsv-rectangle {
|
|
19572
|
-
border-radius:
|
|
19756
|
+
border-radius: 4px;
|
|
19573
19757
|
position: relative;
|
|
19574
19758
|
flex: 1 1 auto;
|
|
19575
19759
|
-webkit-user-select: none;
|
|
@@ -19579,7 +19763,7 @@ kendo-label > .k-label {
|
|
|
19579
19763
|
}
|
|
19580
19764
|
|
|
19581
19765
|
.k-colorgradient-canvas .k-hsv-gradient {
|
|
19582
|
-
border-radius:
|
|
19766
|
+
border-radius: 4px;
|
|
19583
19767
|
height: 180px;
|
|
19584
19768
|
}
|
|
19585
19769
|
|
|
@@ -19671,6 +19855,10 @@ kendo-label > .k-label {
|
|
|
19671
19855
|
width: 50px;
|
|
19672
19856
|
}
|
|
19673
19857
|
|
|
19858
|
+
.k-colorgradient-inputs .k-input-inner {
|
|
19859
|
+
text-overflow: clip;
|
|
19860
|
+
}
|
|
19861
|
+
|
|
19674
19862
|
.k-colorgradient-color-contrast > div {
|
|
19675
19863
|
display: flex;
|
|
19676
19864
|
flex-flow: row nowrap;
|
|
@@ -19770,7 +19958,7 @@ kendo-label > .k-label {
|
|
|
19770
19958
|
}
|
|
19771
19959
|
|
|
19772
19960
|
.k-coloreditor {
|
|
19773
|
-
border-radius:
|
|
19961
|
+
border-radius: 4px;
|
|
19774
19962
|
min-width: 294px;
|
|
19775
19963
|
border-width: 1px;
|
|
19776
19964
|
border-style: solid;
|
|
@@ -22927,34 +23115,28 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22927
23115
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
22928
23116
|
}
|
|
22929
23117
|
|
|
22930
|
-
.k-notification-
|
|
22931
|
-
border-color: #
|
|
22932
|
-
color: white;
|
|
22933
|
-
background-color: #3f51b5;
|
|
22934
|
-
}
|
|
22935
|
-
|
|
22936
|
-
.k-notification-secondary {
|
|
22937
|
-
border-color: #e51a5f;
|
|
23118
|
+
.k-notification-inverse {
|
|
23119
|
+
border-color: #424242;
|
|
22938
23120
|
color: white;
|
|
22939
|
-
background-color: #
|
|
23121
|
+
background-color: #424242;
|
|
22940
23122
|
}
|
|
22941
23123
|
|
|
22942
|
-
.k-notification-
|
|
22943
|
-
border-color: #
|
|
22944
|
-
color:
|
|
22945
|
-
background-color: #
|
|
23124
|
+
.k-notification-light {
|
|
23125
|
+
border-color: #f5f5f5;
|
|
23126
|
+
color: black;
|
|
23127
|
+
background-color: #f5f5f5;
|
|
22946
23128
|
}
|
|
22947
23129
|
|
|
22948
|
-
.k-notification-
|
|
22949
|
-
border-color: #
|
|
23130
|
+
.k-notification-dark {
|
|
23131
|
+
border-color: #424242;
|
|
22950
23132
|
color: white;
|
|
22951
|
-
background-color: #
|
|
23133
|
+
background-color: #424242;
|
|
22952
23134
|
}
|
|
22953
23135
|
|
|
22954
|
-
.k-notification-
|
|
22955
|
-
border-color: #
|
|
23136
|
+
.k-notification-error {
|
|
23137
|
+
border-color: #f31700;
|
|
22956
23138
|
color: white;
|
|
22957
|
-
background-color: #
|
|
23139
|
+
background-color: #f31700;
|
|
22958
23140
|
}
|
|
22959
23141
|
|
|
22960
23142
|
.k-notification-warning {
|
|
@@ -22963,28 +23145,34 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
22963
23145
|
background-color: #ffc000;
|
|
22964
23146
|
}
|
|
22965
23147
|
|
|
22966
|
-
.k-notification-
|
|
22967
|
-
border-color: #
|
|
23148
|
+
.k-notification-success {
|
|
23149
|
+
border-color: #37b400;
|
|
22968
23150
|
color: white;
|
|
22969
|
-
background-color: #
|
|
23151
|
+
background-color: #37b400;
|
|
22970
23152
|
}
|
|
22971
23153
|
|
|
22972
|
-
.k-notification-
|
|
22973
|
-
border-color: #
|
|
23154
|
+
.k-notification-info {
|
|
23155
|
+
border-color: #0058e9;
|
|
22974
23156
|
color: white;
|
|
22975
|
-
background-color: #
|
|
23157
|
+
background-color: #0058e9;
|
|
22976
23158
|
}
|
|
22977
23159
|
|
|
22978
|
-
.k-notification-
|
|
22979
|
-
border-color: #
|
|
22980
|
-
color:
|
|
22981
|
-
background-color: #
|
|
23160
|
+
.k-notification-tertiary {
|
|
23161
|
+
border-color: #00695c;
|
|
23162
|
+
color: white;
|
|
23163
|
+
background-color: #00695c;
|
|
22982
23164
|
}
|
|
22983
23165
|
|
|
22984
|
-
.k-notification-
|
|
22985
|
-
border-color: #
|
|
23166
|
+
.k-notification-secondary {
|
|
23167
|
+
border-color: #e51a5f;
|
|
22986
23168
|
color: white;
|
|
22987
|
-
background-color: #
|
|
23169
|
+
background-color: #e51a5f;
|
|
23170
|
+
}
|
|
23171
|
+
|
|
23172
|
+
.k-notification-primary {
|
|
23173
|
+
border-color: #3f51b5;
|
|
23174
|
+
color: white;
|
|
23175
|
+
background-color: #3f51b5;
|
|
22988
23176
|
}
|
|
22989
23177
|
|
|
22990
23178
|
kendo-card,
|
|
@@ -22996,7 +23184,7 @@ kendo-card-footer {
|
|
|
22996
23184
|
}
|
|
22997
23185
|
|
|
22998
23186
|
.k-card {
|
|
22999
|
-
border-radius:
|
|
23187
|
+
border-radius: 4px;
|
|
23000
23188
|
border-width: 0px;
|
|
23001
23189
|
border-style: solid;
|
|
23002
23190
|
box-sizing: border-box;
|
|
@@ -23019,7 +23207,7 @@ kendo-card-footer {
|
|
|
23019
23207
|
}
|
|
23020
23208
|
|
|
23021
23209
|
.k-card > .k-card-inner {
|
|
23022
|
-
border-radius:
|
|
23210
|
+
border-radius: 4px;
|
|
23023
23211
|
display: flex;
|
|
23024
23212
|
flex-direction: inherit;
|
|
23025
23213
|
overflow: hidden;
|
|
@@ -23267,17 +23455,17 @@ kendo-card-footer {
|
|
|
23267
23455
|
}
|
|
23268
23456
|
|
|
23269
23457
|
.k-card-group .k-card.k-first {
|
|
23270
|
-
border-top-left-radius:
|
|
23271
|
-
border-bottom-left-radius:
|
|
23458
|
+
border-top-left-radius: 4px;
|
|
23459
|
+
border-bottom-left-radius: 4px;
|
|
23272
23460
|
}
|
|
23273
23461
|
|
|
23274
23462
|
.k-card-group .k-card.k-last {
|
|
23275
|
-
border-top-right-radius:
|
|
23276
|
-
border-bottom-right-radius:
|
|
23463
|
+
border-top-right-radius: 4px;
|
|
23464
|
+
border-bottom-right-radius: 4px;
|
|
23277
23465
|
}
|
|
23278
23466
|
|
|
23279
23467
|
.k-card-group .k-card.k-only {
|
|
23280
|
-
border-radius:
|
|
23468
|
+
border-radius: 4px;
|
|
23281
23469
|
}
|
|
23282
23470
|
|
|
23283
23471
|
.k-card-with-callout {
|
|
@@ -23488,7 +23676,7 @@ kendo-card-footer {
|
|
|
23488
23676
|
}
|
|
23489
23677
|
|
|
23490
23678
|
.k-popover {
|
|
23491
|
-
border-radius:
|
|
23679
|
+
border-radius: 4px;
|
|
23492
23680
|
padding: 0;
|
|
23493
23681
|
border-width: 1px;
|
|
23494
23682
|
border-style: solid;
|
|
@@ -23511,8 +23699,8 @@ kendo-card-footer {
|
|
|
23511
23699
|
}
|
|
23512
23700
|
|
|
23513
23701
|
.k-popover-header {
|
|
23514
|
-
border-top-left-radius:
|
|
23515
|
-
border-top-right-radius:
|
|
23702
|
+
border-top-left-radius: 4px;
|
|
23703
|
+
border-top-right-radius: 4px;
|
|
23516
23704
|
padding: 12px 16px;
|
|
23517
23705
|
border-width: 0 0 1px;
|
|
23518
23706
|
border-style: solid;
|
|
@@ -23998,7 +24186,7 @@ kendo-card-footer {
|
|
|
23998
24186
|
|
|
23999
24187
|
.k-breadcrumb-link,
|
|
24000
24188
|
.k-breadcrumb-root-link {
|
|
24001
|
-
border-radius:
|
|
24189
|
+
border-radius: 4px;
|
|
24002
24190
|
padding: 4px 10px;
|
|
24003
24191
|
color: inherit;
|
|
24004
24192
|
text-decoration: none;
|
|
@@ -24251,6 +24439,11 @@ kendo-card-footer {
|
|
|
24251
24439
|
width: 5em;
|
|
24252
24440
|
}
|
|
24253
24441
|
|
|
24442
|
+
.k-pager-sizes .k-input-inner,
|
|
24443
|
+
.k-pager-sizes .k-input-value-text {
|
|
24444
|
+
text-overflow: clip;
|
|
24445
|
+
}
|
|
24446
|
+
|
|
24254
24447
|
.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
|
|
24255
24448
|
.k-rtl .k-pager-sizes .k-dropdownlist,
|
|
24256
24449
|
.k-rtl .k-pager-sizes > select,
|
|
@@ -24454,6 +24647,7 @@ kendo-card-footer {
|
|
|
24454
24647
|
display: flex;
|
|
24455
24648
|
align-items: center;
|
|
24456
24649
|
justify-content: center;
|
|
24650
|
+
flex: none;
|
|
24457
24651
|
position: relative;
|
|
24458
24652
|
z-index: 1;
|
|
24459
24653
|
overflow: visible;
|
|
@@ -24484,7 +24678,7 @@ kendo-card-footer {
|
|
|
24484
24678
|
}
|
|
24485
24679
|
|
|
24486
24680
|
.k-stepper .k-step-label {
|
|
24487
|
-
max-width: 10em;
|
|
24681
|
+
max-width: clamp(100%, 10em, 100%);
|
|
24488
24682
|
display: inline-flex;
|
|
24489
24683
|
flex-wrap: wrap;
|
|
24490
24684
|
align-items: center;
|
|
@@ -25943,7 +26137,7 @@ kendo-card-footer {
|
|
|
25943
26137
|
}
|
|
25944
26138
|
|
|
25945
26139
|
.k-layout-item-hint {
|
|
25946
|
-
border-radius:
|
|
26140
|
+
border-radius: 4px;
|
|
25947
26141
|
border-width: 1px;
|
|
25948
26142
|
border-style: solid;
|
|
25949
26143
|
position: relative;
|
|
@@ -28872,11 +29066,6 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
28872
29066
|
min-width: 2em;
|
|
28873
29067
|
}
|
|
28874
29068
|
|
|
28875
|
-
.k-spreadsheet-toolbar .k-input,
|
|
28876
|
-
.k-spreadsheet-toolbar .k-picker {
|
|
28877
|
-
width: 5em;
|
|
28878
|
-
}
|
|
28879
|
-
|
|
28880
29069
|
.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
|
|
28881
29070
|
width: min-content;
|
|
28882
29071
|
}
|
|
@@ -29340,7 +29529,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29340
29529
|
}
|
|
29341
29530
|
|
|
29342
29531
|
.k-spreadsheet-filter {
|
|
29343
|
-
border-radius:
|
|
29532
|
+
border-radius: 4px;
|
|
29344
29533
|
line-height: 1;
|
|
29345
29534
|
position: absolute;
|
|
29346
29535
|
cursor: pointer;
|
|
@@ -29549,7 +29738,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29549
29738
|
}
|
|
29550
29739
|
|
|
29551
29740
|
.k-spreadsheet-insert-image-dialog {
|
|
29552
|
-
border-radius:
|
|
29741
|
+
border-radius: 4px;
|
|
29553
29742
|
border-style: dashed;
|
|
29554
29743
|
border-width: 2px;
|
|
29555
29744
|
}
|
|
@@ -29621,7 +29810,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29621
29810
|
height: 6px;
|
|
29622
29811
|
border-style: solid;
|
|
29623
29812
|
border-width: 1px;
|
|
29624
|
-
border-radius:
|
|
29813
|
+
border-radius: 6px;
|
|
29625
29814
|
position: absolute;
|
|
29626
29815
|
transform: translate(-50%, -50%);
|
|
29627
29816
|
}
|
|
@@ -29675,7 +29864,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29675
29864
|
}
|
|
29676
29865
|
|
|
29677
29866
|
.k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-state-hovered {
|
|
29678
|
-
border-radius:
|
|
29867
|
+
border-radius: 4px;
|
|
29679
29868
|
}
|
|
29680
29869
|
|
|
29681
29870
|
.k-rtl .k-spreadsheet .k-dirty,
|
|
@@ -30063,6 +30252,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30063
30252
|
|
|
30064
30253
|
.k-pivotgrid-cell .k-icon {
|
|
30065
30254
|
cursor: pointer;
|
|
30255
|
+
padding-inline-end: 8px;
|
|
30066
30256
|
}
|
|
30067
30257
|
|
|
30068
30258
|
.k-pivotgrid-total {
|
|
@@ -30223,7 +30413,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30223
30413
|
.k-calculated-field {
|
|
30224
30414
|
padding: 16px 16px;
|
|
30225
30415
|
border-width: 1px;
|
|
30226
|
-
border-radius:
|
|
30416
|
+
border-radius: 4px;
|
|
30227
30417
|
border-style: solid;
|
|
30228
30418
|
box-sizing: border-box;
|
|
30229
30419
|
display: flex;
|
|
@@ -31186,6 +31376,9 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
31186
31376
|
flex-shrink: 0;
|
|
31187
31377
|
display: inline-flex;
|
|
31188
31378
|
position: relative;
|
|
31379
|
+
border-width: 0 1px;
|
|
31380
|
+
border-style: solid;
|
|
31381
|
+
border-color: inherit;
|
|
31189
31382
|
}
|
|
31190
31383
|
|
|
31191
31384
|
.k-filemanager-upload-dialog .k-upload-files {
|
|
@@ -31274,7 +31467,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
31274
31467
|
.k-taskboard-column {
|
|
31275
31468
|
width: 320px;
|
|
31276
31469
|
border-width: 1px;
|
|
31277
|
-
border-radius:
|
|
31470
|
+
border-radius: 4px;
|
|
31278
31471
|
border-style: solid;
|
|
31279
31472
|
outline: none;
|
|
31280
31473
|
display: flex;
|
|
@@ -31372,7 +31565,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
31372
31565
|
}
|
|
31373
31566
|
|
|
31374
31567
|
.k-taskboard-card {
|
|
31375
|
-
border-radius:
|
|
31568
|
+
border-radius: 4px;
|
|
31376
31569
|
border-width: 1px;
|
|
31377
31570
|
}
|
|
31378
31571
|
|
|
@@ -31405,7 +31598,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
31405
31598
|
}
|
|
31406
31599
|
|
|
31407
31600
|
.k-taskboard-drag-placeholder {
|
|
31408
|
-
border-radius:
|
|
31601
|
+
border-radius: 4px;
|
|
31409
31602
|
border-width: 1px;
|
|
31410
31603
|
border-style: solid;
|
|
31411
31604
|
position: relative;
|
|
@@ -31559,7 +31752,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31559
31752
|
}
|
|
31560
31753
|
|
|
31561
31754
|
.k-editor-inline {
|
|
31562
|
-
border-radius:
|
|
31755
|
+
border-radius: 4px;
|
|
31563
31756
|
padding: 2px 8px;
|
|
31564
31757
|
border: 1px solid transparent;
|
|
31565
31758
|
word-wrap: break-word;
|
|
@@ -31959,7 +32152,7 @@ td.k-editor-content {
|
|
|
31959
32152
|
white-space: nowrap;
|
|
31960
32153
|
overflow: hidden;
|
|
31961
32154
|
cursor: pointer;
|
|
31962
|
-
border-radius:
|
|
32155
|
+
border-radius: 4px;
|
|
31963
32156
|
}
|
|
31964
32157
|
|
|
31965
32158
|
.k-filebrowser .k-tile .k-i-file,
|
|
@@ -32328,6 +32521,11 @@ td.k-editor-content {
|
|
|
32328
32521
|
overflow-y: auto;
|
|
32329
32522
|
}
|
|
32330
32523
|
|
|
32524
|
+
.k-imageeditor-action-pane .k-input-inner,
|
|
32525
|
+
.k-imageeditor-action-pane .k-input-value-text {
|
|
32526
|
+
text-overflow: clip;
|
|
32527
|
+
}
|
|
32528
|
+
|
|
32331
32529
|
.k-imageeditor-crop-overlay {
|
|
32332
32530
|
width: 100%;
|
|
32333
32531
|
height: 100%;
|
|
@@ -32937,7 +33135,7 @@ td.k-editor-content {
|
|
|
32937
33135
|
}
|
|
32938
33136
|
|
|
32939
33137
|
.k-task-single {
|
|
32940
|
-
border-radius:
|
|
33138
|
+
border-radius: 4px;
|
|
32941
33139
|
border-width: 0px;
|
|
32942
33140
|
border-style: solid;
|
|
32943
33141
|
box-sizing: border-box;
|
|
@@ -32980,7 +33178,7 @@ td.k-editor-content {
|
|
|
32980
33178
|
}
|
|
32981
33179
|
|
|
32982
33180
|
.k-task-complete {
|
|
32983
|
-
border-radius:
|
|
33181
|
+
border-radius: 4px;
|
|
32984
33182
|
width: 20%;
|
|
32985
33183
|
position: absolute;
|
|
32986
33184
|
z-index: 1;
|
|
@@ -33146,6 +33344,37 @@ td.k-editor-content {
|
|
|
33146
33344
|
visibility: visible;
|
|
33147
33345
|
}
|
|
33148
33346
|
|
|
33347
|
+
.k-gantt-tooltip-validation {
|
|
33348
|
+
max-width: 200px;
|
|
33349
|
+
display: block;
|
|
33350
|
+
}
|
|
33351
|
+
|
|
33352
|
+
.k-gantt-tooltip-validation::before {
|
|
33353
|
+
content: "";
|
|
33354
|
+
width: 4px;
|
|
33355
|
+
height: 100%;
|
|
33356
|
+
position: absolute;
|
|
33357
|
+
top: 0;
|
|
33358
|
+
left: 0;
|
|
33359
|
+
}
|
|
33360
|
+
|
|
33361
|
+
.k-gantt-tooltip-validation-row {
|
|
33362
|
+
display: flex;
|
|
33363
|
+
flex-direction: row;
|
|
33364
|
+
justify-content: space-between;
|
|
33365
|
+
}
|
|
33366
|
+
|
|
33367
|
+
.k-gantt-tooltip-validation-label {
|
|
33368
|
+
display: inline-flex;
|
|
33369
|
+
white-space: nowrap;
|
|
33370
|
+
overflow: hidden;
|
|
33371
|
+
text-overflow: ellipsis;
|
|
33372
|
+
}
|
|
33373
|
+
|
|
33374
|
+
.k-gantt-tooltip-validation-value {
|
|
33375
|
+
font-weight: 500;
|
|
33376
|
+
}
|
|
33377
|
+
|
|
33149
33378
|
.k-pdf-export-shadow .k-gantt {
|
|
33150
33379
|
float: left;
|
|
33151
33380
|
}
|
|
@@ -33171,80 +33400,104 @@ td.k-editor-content {
|
|
|
33171
33400
|
}
|
|
33172
33401
|
|
|
33173
33402
|
.k-rtl .k-gantt-rows,
|
|
33174
|
-
.k-rtl .k-gantt-columns
|
|
33403
|
+
.k-rtl .k-gantt-columns,
|
|
33404
|
+
[dir="rtl"] .k-gantt-rows,
|
|
33405
|
+
[dir="rtl"] .k-gantt-columns {
|
|
33175
33406
|
left: auto;
|
|
33176
33407
|
right: 0;
|
|
33177
33408
|
}
|
|
33178
33409
|
|
|
33179
|
-
.k-rtl .k-task-wrap:not(.k-milestone-wrap)
|
|
33410
|
+
.k-rtl .k-task-wrap:not(.k-milestone-wrap),
|
|
33411
|
+
[dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
|
|
33180
33412
|
margin: 0 -26px;
|
|
33181
33413
|
}
|
|
33182
33414
|
|
|
33183
|
-
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody
|
|
33415
|
+
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody,
|
|
33416
|
+
[dir="rtl"] .k-gantt-timeline .k-gantt-tasks tbody {
|
|
33184
33417
|
text-align: left;
|
|
33185
33418
|
}
|
|
33186
33419
|
|
|
33187
|
-
.k-rtl .k-gantt-timeline .k-header
|
|
33420
|
+
.k-rtl .k-gantt-timeline .k-header,
|
|
33421
|
+
[dir="rtl"] .k-gantt-timeline .k-header {
|
|
33188
33422
|
border-width: 0 1px 1px 0;
|
|
33189
33423
|
}
|
|
33190
33424
|
|
|
33191
|
-
.k-rtl .k-gantt-timeline .k-header:first-child
|
|
33425
|
+
.k-rtl .k-gantt-timeline .k-header:first-child,
|
|
33426
|
+
[dir="rtl"] .k-gantt-timeline .k-header:first-child {
|
|
33192
33427
|
border-right-width: 0;
|
|
33193
33428
|
}
|
|
33194
33429
|
|
|
33195
|
-
.k-rtl .k-gantt-timeline .k-task-start
|
|
33430
|
+
.k-rtl .k-gantt-timeline .k-task-start,
|
|
33431
|
+
[dir="rtl"] .k-gantt-timeline .k-task-start {
|
|
33196
33432
|
left: auto;
|
|
33197
33433
|
right: 0;
|
|
33198
33434
|
}
|
|
33199
33435
|
|
|
33200
|
-
.k-rtl .k-gantt-timeline .k-task-end
|
|
33436
|
+
.k-rtl .k-gantt-timeline .k-task-end,
|
|
33437
|
+
[dir="rtl"] .k-gantt-timeline .k-task-end {
|
|
33201
33438
|
right: auto;
|
|
33202
33439
|
left: 0;
|
|
33203
33440
|
}
|
|
33204
33441
|
|
|
33205
|
-
.k-rtl .k-task-content
|
|
33442
|
+
.k-rtl .k-task-content,
|
|
33443
|
+
[dir="rtl"] .k-task-content {
|
|
33206
33444
|
text-align: right;
|
|
33207
33445
|
}
|
|
33208
33446
|
|
|
33209
|
-
.k-rtl .k-task-complete
|
|
33447
|
+
.k-rtl .k-task-complete,
|
|
33448
|
+
[dir="rtl"] .k-task-complete {
|
|
33210
33449
|
left: auto;
|
|
33211
33450
|
right: 0;
|
|
33212
33451
|
}
|
|
33213
33452
|
|
|
33214
|
-
.k-rtl .k-task-draghandle
|
|
33453
|
+
.k-rtl .k-task-draghandle,
|
|
33454
|
+
[dir="rtl"] .k-task-draghandle {
|
|
33215
33455
|
margin-left: 0;
|
|
33216
33456
|
margin-right: 16px;
|
|
33217
33457
|
}
|
|
33218
33458
|
|
|
33219
|
-
.k-rtl .k-gantt-dependencies
|
|
33459
|
+
.k-rtl .k-gantt-dependencies,
|
|
33460
|
+
[dir="rtl"] .k-gantt-dependencies {
|
|
33220
33461
|
left: auto;
|
|
33221
33462
|
right: 0;
|
|
33222
33463
|
}
|
|
33223
33464
|
|
|
33224
|
-
.k-rtl .k-gantt-delete
|
|
33465
|
+
.k-rtl .k-gantt-delete,
|
|
33466
|
+
[dir="rtl"] .k-gantt-delete {
|
|
33225
33467
|
float: right;
|
|
33226
33468
|
}
|
|
33227
33469
|
|
|
33228
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e
|
|
33470
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e,
|
|
33471
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
|
|
33229
33472
|
display: block;
|
|
33230
33473
|
}
|
|
33231
33474
|
|
|
33232
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w
|
|
33475
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w,
|
|
33476
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
|
|
33233
33477
|
display: none;
|
|
33234
33478
|
}
|
|
33235
33479
|
|
|
33236
|
-
.k-rtl .k-milestone-wrap
|
|
33480
|
+
.k-rtl .k-milestone-wrap,
|
|
33481
|
+
[dir="rtl"] .k-milestone-wrap {
|
|
33237
33482
|
margin-left: -2.4em;
|
|
33238
33483
|
}
|
|
33239
33484
|
|
|
33240
|
-
.k-rtl .k-milestone-wrap .k-task-moment
|
|
33485
|
+
.k-rtl .k-milestone-wrap .k-task-moment,
|
|
33486
|
+
[dir="rtl"] .k-milestone-wrap .k-task-moment {
|
|
33241
33487
|
margin-right: 0.2em;
|
|
33242
33488
|
}
|
|
33243
33489
|
|
|
33244
|
-
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start
|
|
33490
|
+
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start,
|
|
33491
|
+
[dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
33245
33492
|
right: -0.1em;
|
|
33246
33493
|
}
|
|
33247
33494
|
|
|
33495
|
+
.k-rtl .k-gantt-tooltip-validation::before,
|
|
33496
|
+
[dir="rtl"] .k-gantt-tooltip-validation::before {
|
|
33497
|
+
left: auto;
|
|
33498
|
+
right: 0;
|
|
33499
|
+
}
|
|
33500
|
+
|
|
33248
33501
|
.k-rtl .k-gantt-timeline .k-header {
|
|
33249
33502
|
border-width: 0 1px 1px 0;
|
|
33250
33503
|
}
|
|
@@ -33431,6 +33684,18 @@ td.k-editor-content {
|
|
|
33431
33684
|
background-color: #3f51b5;
|
|
33432
33685
|
}
|
|
33433
33686
|
|
|
33687
|
+
.k-gantt-tooltip-validation::before {
|
|
33688
|
+
background-color: #656565;
|
|
33689
|
+
}
|
|
33690
|
+
|
|
33691
|
+
.k-gantt-tooltip-valid::before {
|
|
33692
|
+
background-color: #37b400;
|
|
33693
|
+
}
|
|
33694
|
+
|
|
33695
|
+
.k-gantt-tooltip-invalid::before {
|
|
33696
|
+
background-color: #f31700;
|
|
33697
|
+
}
|
|
33698
|
+
|
|
33434
33699
|
.k-gantt-timeline tbody > tr:not(:only-child) > .k-header {
|
|
33435
33700
|
border-left-color: rgba(0, 0, 0, 0.12);
|
|
33436
33701
|
}
|
|
@@ -33818,12 +34083,12 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
|
|
|
33818
34083
|
|
|
33819
34084
|
kendo-scheduler .k-event,
|
|
33820
34085
|
.k-event {
|
|
33821
|
-
border-radius:
|
|
34086
|
+
border-radius: 4px;
|
|
33822
34087
|
min-height: 25px;
|
|
33823
34088
|
box-sizing: border-box;
|
|
33824
34089
|
border-width: 0;
|
|
33825
34090
|
border-style: solid;
|
|
33826
|
-
border-radius:
|
|
34091
|
+
border-radius: 4px;
|
|
33827
34092
|
text-align: left;
|
|
33828
34093
|
outline: 0;
|
|
33829
34094
|
cursor: default;
|
|
@@ -34289,7 +34554,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
34289
34554
|
|
|
34290
34555
|
.k-scheduler-tooltip .k-tooltip-event {
|
|
34291
34556
|
padding: 8px 8px;
|
|
34292
|
-
border-radius:
|
|
34557
|
+
border-radius: 4px;
|
|
34293
34558
|
box-sizing: border-box;
|
|
34294
34559
|
display: flex;
|
|
34295
34560
|
flex-direction: row;
|
|
@@ -35458,7 +35723,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
35458
35723
|
display: inline-block;
|
|
35459
35724
|
text-align: center;
|
|
35460
35725
|
padding: 8px 16px;
|
|
35461
|
-
border-radius:
|
|
35726
|
+
border-radius: 4px;
|
|
35462
35727
|
line-height: 1.4285714286;
|
|
35463
35728
|
min-width: 80px;
|
|
35464
35729
|
max-width: 160px;
|
|
@@ -35515,7 +35780,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
35515
35780
|
}
|
|
35516
35781
|
|
|
35517
35782
|
.k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
|
|
35518
|
-
border-radius:
|
|
35783
|
+
border-radius: 4px;
|
|
35519
35784
|
}
|
|
35520
35785
|
|
|
35521
35786
|
.k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
|
|
@@ -35552,7 +35817,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
35552
35817
|
height: 100%;
|
|
35553
35818
|
width: 6px;
|
|
35554
35819
|
transform: translateX(-50%);
|
|
35555
|
-
border-radius:
|
|
35820
|
+
border-radius: 6px;
|
|
35556
35821
|
}
|
|
35557
35822
|
|
|
35558
35823
|
.k-timeline-vertical .k-timeline-flag-wrap {
|
|
@@ -35594,7 +35859,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
35594
35859
|
}
|
|
35595
35860
|
|
|
35596
35861
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-header {
|
|
35597
|
-
border-radius:
|
|
35862
|
+
border-radius: 4px;
|
|
35598
35863
|
}
|
|
35599
35864
|
|
|
35600
35865
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-title {
|
|
@@ -36512,7 +36777,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36512
36777
|
}
|
|
36513
36778
|
|
|
36514
36779
|
.k-chart-tooltip {
|
|
36515
|
-
border-radius:
|
|
36780
|
+
border-radius: 4px;
|
|
36516
36781
|
font-size: 13.006px;
|
|
36517
36782
|
line-height: 2;
|
|
36518
36783
|
padding: 3px 8px;
|
|
@@ -36618,7 +36883,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36618
36883
|
}
|
|
36619
36884
|
|
|
36620
36885
|
.k-navigator-hint .k-scroll {
|
|
36621
|
-
border-radius:
|
|
36886
|
+
border-radius: 4px;
|
|
36622
36887
|
position: absolute;
|
|
36623
36888
|
height: 4px;
|
|
36624
36889
|
}
|
|
@@ -36825,7 +37090,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
36825
37090
|
}
|
|
36826
37091
|
|
|
36827
37092
|
.k-var--border-radius {
|
|
36828
|
-
margin-top:
|
|
37093
|
+
margin-top: 4px;
|
|
36829
37094
|
}
|
|
36830
37095
|
|
|
36831
37096
|
.k-var--normal-background {
|
|
@@ -37327,7 +37592,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
37327
37592
|
}
|
|
37328
37593
|
|
|
37329
37594
|
.k-orgchart-node-group-container {
|
|
37330
|
-
border-radius:
|
|
37595
|
+
border-radius: 4px;
|
|
37331
37596
|
padding: 24px 24px;
|
|
37332
37597
|
border-width: 1px;
|
|
37333
37598
|
border-style: solid;
|