@progress/kendo-theme-material 5.1.2-dev.6 → 5.2.1-dev.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.
Files changed (40) hide show
  1. package/dist/all.css +415 -164
  2. package/dist/all.scss +266 -130
  3. package/lib/swatches/material-aqua-dark.json +202 -41
  4. package/lib/swatches/material-arctic.json +202 -41
  5. package/lib/swatches/material-burnt-teal.json +202 -41
  6. package/lib/swatches/material-dataviz-v4.json +2 -1
  7. package/lib/swatches/material-eggplant.json +202 -41
  8. package/lib/swatches/material-lime-dark.json +202 -41
  9. package/lib/swatches/material-lime.json +202 -41
  10. package/lib/swatches/material-main-dark.json +202 -41
  11. package/lib/swatches/material-main.json +202 -41
  12. package/lib/swatches/material-nova.json +202 -41
  13. package/lib/swatches/material-pacific-dark.json +202 -41
  14. package/lib/swatches/material-pacific.json +202 -41
  15. package/lib/swatches/material-sky-dark.json +202 -41
  16. package/lib/swatches/material-sky.json +202 -41
  17. package/lib/swatches/material-smoke.json +202 -41
  18. package/package.json +4 -4
  19. package/scss/_variables.scss +4 -3
  20. package/scss/badge/_variables.scss +3 -3
  21. package/scss/breadcrumb/_variables.scss +1 -1
  22. package/scss/button/_variables.scss +11 -0
  23. package/scss/card/_variables.scss +1 -1
  24. package/scss/color-preview/_variables.scss +1 -1
  25. package/scss/coloreditor/_variables.scss +1 -1
  26. package/scss/colorgradient/_variables.scss +2 -2
  27. package/scss/fab/_variables.scss +1 -1
  28. package/scss/gantt/_variables.scss +5 -0
  29. package/scss/listgroup/_variables.scss +1 -1
  30. package/scss/loader/_variables.scss +1 -1
  31. package/scss/notification/_variables.scss +1 -0
  32. package/scss/orgchart/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +1 -1
  34. package/scss/scheduler/_variables.scss +2 -2
  35. package/scss/skeleton/_variables.scss +1 -1
  36. package/scss/spreadsheet/_variables.scss +3 -3
  37. package/scss/taskboard/_variables.scss +1 -1
  38. package/scss/tilelayout/_variables.scss +1 -1
  39. package/scss/tooltip/_variables.scss +1 -1
  40. 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: 2px;
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: 2px;
155
- border-top-right-radius: 2px;
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: 0.125rem;
1554
+ border-radius: 2px;
1555
1555
  }
1556
1556
 
1557
1557
  .\!k-rounded-sm {
1558
- border-radius: 0.125rem !important;
1558
+ border-radius: 2px !important;
1559
1559
  }
1560
1560
 
1561
1561
  .k-rounded-md {
1562
- border-radius: 0.25rem;
1562
+ border-radius: 4px;
1563
1563
  }
1564
1564
 
1565
1565
  .\!k-rounded-md {
1566
- border-radius: 0.25rem !important;
1566
+ border-radius: 4px !important;
1567
1567
  }
1568
1568
 
1569
1569
  .k-rounded-lg {
1570
- border-radius: 0.375rem;
1570
+ border-radius: 6px;
1571
1571
  }
1572
1572
 
1573
1573
  .\!k-rounded-lg {
1574
- border-radius: 0.375rem !important;
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: 0.125rem;
1607
- border-top-right-radius: 0.125rem;
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: 0.125rem !important;
1612
- border-top-right-radius: 0.125rem !important;
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: 0.25rem;
1617
- border-top-right-radius: 0.25rem;
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: 0.25rem !important;
1622
- border-top-right-radius: 0.25rem !important;
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: 0.375rem;
1627
- border-top-right-radius: 0.375rem;
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: 0.375rem !important;
1632
- border-top-right-radius: 0.375rem !important;
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: 0.125rem;
1667
- border-bottom-right-radius: 0.125rem;
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: 0.125rem !important;
1672
- border-bottom-right-radius: 0.125rem !important;
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: 0.25rem;
1677
- border-bottom-right-radius: 0.25rem;
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: 0.25rem !important;
1682
- border-bottom-right-radius: 0.25rem !important;
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: 0.375rem;
1687
- border-bottom-right-radius: 0.375rem;
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: 0.375rem !important;
1692
- border-bottom-right-radius: 0.375rem !important;
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: 0.125rem;
1727
- border-bottom-right-radius: 0.125rem;
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: 0.125rem !important;
1732
- border-bottom-right-radius: 0.125rem !important;
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: 0.25rem;
1737
- border-bottom-right-radius: 0.25rem;
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: 0.25rem !important;
1742
- border-bottom-right-radius: 0.25rem !important;
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: 0.375rem;
1747
- border-bottom-right-radius: 0.375rem;
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: 0.375rem !important;
1752
- border-bottom-right-radius: 0.375rem !important;
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: 0.125rem;
1787
- border-top-left-radius: 0.125rem;
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: 0.125rem !important;
1792
- border-top-left-radius: 0.125rem !important;
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: 0.25rem;
1797
- border-top-left-radius: 0.25rem;
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: 0.25rem !important;
1802
- border-top-left-radius: 0.25rem !important;
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: 0.375rem;
1807
- border-top-left-radius: 0.375rem;
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: 0.375rem !important;
1812
- border-top-left-radius: 0.375rem !important;
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: 0.125rem;
1842
+ border-top-left-radius: 2px;
1843
1843
  }
1844
1844
 
1845
1845
  .\!k-rounded-top-left-sm {
1846
- border-top-left-radius: 0.125rem !important;
1846
+ border-top-left-radius: 2px !important;
1847
1847
  }
1848
1848
 
1849
1849
  .k-rounded-top-left-md {
1850
- border-top-left-radius: 0.25rem;
1850
+ border-top-left-radius: 4px;
1851
1851
  }
1852
1852
 
1853
1853
  .\!k-rounded-top-left-md {
1854
- border-top-left-radius: 0.25rem !important;
1854
+ border-top-left-radius: 4px !important;
1855
1855
  }
1856
1856
 
1857
1857
  .k-rounded-top-left-lg {
1858
- border-top-left-radius: 0.375rem;
1858
+ border-top-left-radius: 6px;
1859
1859
  }
1860
1860
 
1861
1861
  .\!k-rounded-top-left-lg {
1862
- border-top-left-radius: 0.375rem !important;
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: 0.125rem;
1890
+ border-top-right-radius: 2px;
1891
1891
  }
1892
1892
 
1893
1893
  .\!k-rounded-top-right-sm {
1894
- border-top-right-radius: 0.125rem !important;
1894
+ border-top-right-radius: 2px !important;
1895
1895
  }
1896
1896
 
1897
1897
  .k-rounded-top-right-md {
1898
- border-top-right-radius: 0.25rem;
1898
+ border-top-right-radius: 4px;
1899
1899
  }
1900
1900
 
1901
1901
  .\!k-rounded-top-right-md {
1902
- border-top-right-radius: 0.25rem !important;
1902
+ border-top-right-radius: 4px !important;
1903
1903
  }
1904
1904
 
1905
1905
  .k-rounded-top-right-lg {
1906
- border-top-right-radius: 0.375rem;
1906
+ border-top-right-radius: 6px;
1907
1907
  }
1908
1908
 
1909
1909
  .\!k-rounded-top-right-lg {
1910
- border-top-right-radius: 0.375rem !important;
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: 0.125rem;
1938
+ border-bottom-left-radius: 2px;
1939
1939
  }
1940
1940
 
1941
1941
  .\!k-rounded-bottom-left-sm {
1942
- border-bottom-left-radius: 0.125rem !important;
1942
+ border-bottom-left-radius: 2px !important;
1943
1943
  }
1944
1944
 
1945
1945
  .k-rounded-bottom-left-md {
1946
- border-bottom-left-radius: 0.25rem;
1946
+ border-bottom-left-radius: 4px;
1947
1947
  }
1948
1948
 
1949
1949
  .\!k-rounded-bottom-left-md {
1950
- border-bottom-left-radius: 0.25rem !important;
1950
+ border-bottom-left-radius: 4px !important;
1951
1951
  }
1952
1952
 
1953
1953
  .k-rounded-bottom-left-lg {
1954
- border-bottom-left-radius: 0.375rem;
1954
+ border-bottom-left-radius: 6px;
1955
1955
  }
1956
1956
 
1957
1957
  .\!k-rounded-bottom-left-lg {
1958
- border-bottom-left-radius: 0.375rem !important;
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: 0.125rem;
1986
+ border-bottom-right-radius: 2px;
1987
1987
  }
1988
1988
 
1989
1989
  .\!k-rounded-bottom-right-sm {
1990
- border-bottom-right-radius: 0.125rem !important;
1990
+ border-bottom-right-radius: 2px !important;
1991
1991
  }
1992
1992
 
1993
1993
  .k-rounded-bottom-right-md {
1994
- border-bottom-right-radius: 0.25rem;
1994
+ border-bottom-right-radius: 4px;
1995
1995
  }
1996
1996
 
1997
1997
  .\!k-rounded-bottom-right-md {
1998
- border-bottom-right-radius: 0.25rem !important;
1998
+ border-bottom-right-radius: 4px !important;
1999
1999
  }
2000
2000
 
2001
2001
  .k-rounded-bottom-right-lg {
2002
- border-bottom-right-radius: 0.375rem;
2002
+ border-bottom-right-radius: 6px;
2003
2003
  }
2004
2004
 
2005
2005
  .\!k-rounded-bottom-right-lg {
2006
- border-bottom-right-radius: 0.375rem !important;
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: 2px;
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 2px 2px;
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 2px 2px;
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: 1px;
11742
+ border-radius: 2px;
11580
11743
  }
11581
11744
 
11582
11745
  .k-badge-rounded.k-badge-md {
11583
- border-radius: 2px;
11746
+ border-radius: 4px;
11584
11747
  }
11585
11748
 
11586
11749
  .k-badge-rounded.k-badge-lg {
11587
- border-radius: 4px;
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: clip;
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: clip;
13801
+ text-overflow: ellipsis;
13627
13802
  }
13628
13803
 
13629
13804
  .k-input-value-text::before {
@@ -14850,6 +15025,8 @@ textarea.k-input-inner {
14850
15025
  }
14851
15026
 
14852
15027
  .k-chip-content {
15028
+ padding: .5em 0;
15029
+ margin: -.5em 0;
14853
15030
  min-width: 0;
14854
15031
  display: flex;
14855
15032
  flex-flow: row nowrap;
@@ -15291,7 +15468,7 @@ textarea.k-input-inner {
15291
15468
  width: 100%;
15292
15469
  height: 100%;
15293
15470
  border-width: 1px;
15294
- border-radius: 2px;
15471
+ border-radius: 4px;
15295
15472
  box-sizing: border-box;
15296
15473
  border-style: solid;
15297
15474
  display: inline-flex;
@@ -15697,7 +15874,7 @@ textarea.k-input-inner {
15697
15874
  .k-loader-container-panel {
15698
15875
  border-width: 1px;
15699
15876
  border-style: solid;
15700
- border-radius: 2px;
15877
+ border-radius: 4px;
15701
15878
  }
15702
15879
 
15703
15880
  .k-loader-container-sm .k-loader-container-inner {
@@ -15790,7 +15967,7 @@ textarea.k-input-inner {
15790
15967
  }
15791
15968
 
15792
15969
  .k-skeleton-text {
15793
- border-radius: 2px;
15970
+ border-radius: 4px;
15794
15971
  transform: scale(1, 0.6);
15795
15972
  }
15796
15973
 
@@ -16772,12 +16949,6 @@ kendo-label > .k-label {
16772
16949
  width: 100%;
16773
16950
  }
16774
16951
 
16775
- .k-form .k-daterangepicker {
16776
- width: 100%;
16777
- flex-flow: column nowrap;
16778
- gap: 0;
16779
- }
16780
-
16781
16952
  .k-form-buttons {
16782
16953
  margin-top: 2em;
16783
16954
  padding: 0;
@@ -17059,7 +17230,7 @@ kendo-label > .k-label {
17059
17230
  }
17060
17231
 
17061
17232
  .k-tooltip {
17062
- border-radius: 2px;
17233
+ border-radius: 4px;
17063
17234
  margin: 0;
17064
17235
  padding: 3px 8px;
17065
17236
  border-width: 0px;
@@ -17358,7 +17529,7 @@ kendo-label > .k-label {
17358
17529
  }
17359
17530
 
17360
17531
  .k-progressbar {
17361
- border-radius: 2px;
17532
+ border-radius: 4px;
17362
17533
  --kendo-progressbar-progress: 0;
17363
17534
  border-width: 0px;
17364
17535
  border-style: solid;
@@ -18525,7 +18696,7 @@ kendo-label > .k-label {
18525
18696
 
18526
18697
  .k-slider .k-slider-track,
18527
18698
  .k-slider .k-slider-selection {
18528
- border-radius: 2px;
18699
+ border-radius: 4px;
18529
18700
  }
18530
18701
 
18531
18702
  .k-slider .k-slider-track {
@@ -18917,6 +19088,9 @@ kendo-label > .k-label {
18917
19088
  line-height: 2em;
18918
19089
  cursor: pointer;
18919
19090
  padding: 0 1em;
19091
+ overflow: hidden;
19092
+ white-space: nowrap;
19093
+ text-overflow: clip;
18920
19094
  }
18921
19095
 
18922
19096
  .k-calendar-navigation .k-calendar-navigation-marker {
@@ -19550,7 +19724,7 @@ kendo-label > .k-label {
19550
19724
  }
19551
19725
 
19552
19726
  .k-colorgradient {
19553
- border-radius: 2px;
19727
+ border-radius: 4px;
19554
19728
  width: 294px;
19555
19729
  padding: 12px 12px;
19556
19730
  border-style: solid;
@@ -19579,7 +19753,7 @@ kendo-label > .k-label {
19579
19753
  }
19580
19754
 
19581
19755
  .k-colorgradient-canvas .k-hsv-rectangle {
19582
- border-radius: 2px;
19756
+ border-radius: 4px;
19583
19757
  position: relative;
19584
19758
  flex: 1 1 auto;
19585
19759
  -webkit-user-select: none;
@@ -19589,7 +19763,7 @@ kendo-label > .k-label {
19589
19763
  }
19590
19764
 
19591
19765
  .k-colorgradient-canvas .k-hsv-gradient {
19592
- border-radius: 2px;
19766
+ border-radius: 4px;
19593
19767
  height: 180px;
19594
19768
  }
19595
19769
 
@@ -19681,6 +19855,10 @@ kendo-label > .k-label {
19681
19855
  width: 50px;
19682
19856
  }
19683
19857
 
19858
+ .k-colorgradient-inputs .k-input-inner {
19859
+ text-overflow: clip;
19860
+ }
19861
+
19684
19862
  .k-colorgradient-color-contrast > div {
19685
19863
  display: flex;
19686
19864
  flex-flow: row nowrap;
@@ -19780,7 +19958,7 @@ kendo-label > .k-label {
19780
19958
  }
19781
19959
 
19782
19960
  .k-coloreditor {
19783
- border-radius: 2px;
19961
+ border-radius: 4px;
19784
19962
  min-width: 294px;
19785
19963
  border-width: 1px;
19786
19964
  border-style: solid;
@@ -23006,7 +23184,7 @@ kendo-card-footer {
23006
23184
  }
23007
23185
 
23008
23186
  .k-card {
23009
- border-radius: 2px;
23187
+ border-radius: 4px;
23010
23188
  border-width: 0px;
23011
23189
  border-style: solid;
23012
23190
  box-sizing: border-box;
@@ -23029,7 +23207,7 @@ kendo-card-footer {
23029
23207
  }
23030
23208
 
23031
23209
  .k-card > .k-card-inner {
23032
- border-radius: 2px;
23210
+ border-radius: 4px;
23033
23211
  display: flex;
23034
23212
  flex-direction: inherit;
23035
23213
  overflow: hidden;
@@ -23277,17 +23455,17 @@ kendo-card-footer {
23277
23455
  }
23278
23456
 
23279
23457
  .k-card-group .k-card.k-first {
23280
- border-top-left-radius: 2px;
23281
- border-bottom-left-radius: 2px;
23458
+ border-top-left-radius: 4px;
23459
+ border-bottom-left-radius: 4px;
23282
23460
  }
23283
23461
 
23284
23462
  .k-card-group .k-card.k-last {
23285
- border-top-right-radius: 2px;
23286
- border-bottom-right-radius: 2px;
23463
+ border-top-right-radius: 4px;
23464
+ border-bottom-right-radius: 4px;
23287
23465
  }
23288
23466
 
23289
23467
  .k-card-group .k-card.k-only {
23290
- border-radius: 2px;
23468
+ border-radius: 4px;
23291
23469
  }
23292
23470
 
23293
23471
  .k-card-with-callout {
@@ -23498,7 +23676,7 @@ kendo-card-footer {
23498
23676
  }
23499
23677
 
23500
23678
  .k-popover {
23501
- border-radius: 2px;
23679
+ border-radius: 4px;
23502
23680
  padding: 0;
23503
23681
  border-width: 1px;
23504
23682
  border-style: solid;
@@ -23521,8 +23699,8 @@ kendo-card-footer {
23521
23699
  }
23522
23700
 
23523
23701
  .k-popover-header {
23524
- border-top-left-radius: 2px;
23525
- border-top-right-radius: 2px;
23702
+ border-top-left-radius: 4px;
23703
+ border-top-right-radius: 4px;
23526
23704
  padding: 12px 16px;
23527
23705
  border-width: 0 0 1px;
23528
23706
  border-style: solid;
@@ -24008,7 +24186,7 @@ kendo-card-footer {
24008
24186
 
24009
24187
  .k-breadcrumb-link,
24010
24188
  .k-breadcrumb-root-link {
24011
- border-radius: 2px;
24189
+ border-radius: 4px;
24012
24190
  padding: 4px 10px;
24013
24191
  color: inherit;
24014
24192
  text-decoration: none;
@@ -24261,6 +24439,11 @@ kendo-card-footer {
24261
24439
  width: 5em;
24262
24440
  }
24263
24441
 
24442
+ .k-pager-sizes .k-input-inner,
24443
+ .k-pager-sizes .k-input-value-text {
24444
+ text-overflow: clip;
24445
+ }
24446
+
24264
24447
  .k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
24265
24448
  .k-rtl .k-pager-sizes .k-dropdownlist,
24266
24449
  .k-rtl .k-pager-sizes > select,
@@ -24464,6 +24647,7 @@ kendo-card-footer {
24464
24647
  display: flex;
24465
24648
  align-items: center;
24466
24649
  justify-content: center;
24650
+ flex: none;
24467
24651
  position: relative;
24468
24652
  z-index: 1;
24469
24653
  overflow: visible;
@@ -24494,7 +24678,7 @@ kendo-card-footer {
24494
24678
  }
24495
24679
 
24496
24680
  .k-stepper .k-step-label {
24497
- max-width: 10em;
24681
+ max-width: clamp(100%, 10em, 100%);
24498
24682
  display: inline-flex;
24499
24683
  flex-wrap: wrap;
24500
24684
  align-items: center;
@@ -25953,7 +26137,7 @@ kendo-card-footer {
25953
26137
  }
25954
26138
 
25955
26139
  .k-layout-item-hint {
25956
- border-radius: 2px;
26140
+ border-radius: 4px;
25957
26141
  border-width: 1px;
25958
26142
  border-style: solid;
25959
26143
  position: relative;
@@ -28882,11 +29066,6 @@ thead.k-grid-header > tr:not(:only-child) > th {
28882
29066
  min-width: 2em;
28883
29067
  }
28884
29068
 
28885
- .k-spreadsheet-toolbar .k-input,
28886
- .k-spreadsheet-toolbar .k-picker {
28887
- width: 5em;
28888
- }
28889
-
28890
29069
  .k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
28891
29070
  width: min-content;
28892
29071
  }
@@ -29350,7 +29529,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
29350
29529
  }
29351
29530
 
29352
29531
  .k-spreadsheet-filter {
29353
- border-radius: 2px;
29532
+ border-radius: 4px;
29354
29533
  line-height: 1;
29355
29534
  position: absolute;
29356
29535
  cursor: pointer;
@@ -29559,7 +29738,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
29559
29738
  }
29560
29739
 
29561
29740
  .k-spreadsheet-insert-image-dialog {
29562
- border-radius: 2px;
29741
+ border-radius: 4px;
29563
29742
  border-style: dashed;
29564
29743
  border-width: 2px;
29565
29744
  }
@@ -29631,7 +29810,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
29631
29810
  height: 6px;
29632
29811
  border-style: solid;
29633
29812
  border-width: 1px;
29634
- border-radius: 4px;
29813
+ border-radius: 6px;
29635
29814
  position: absolute;
29636
29815
  transform: translate(-50%, -50%);
29637
29816
  }
@@ -29685,7 +29864,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
29685
29864
  }
29686
29865
 
29687
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 {
29688
- border-radius: 2px;
29867
+ border-radius: 4px;
29689
29868
  }
29690
29869
 
29691
29870
  .k-rtl .k-spreadsheet .k-dirty,
@@ -30234,7 +30413,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
30234
30413
  .k-calculated-field {
30235
30414
  padding: 16px 16px;
30236
30415
  border-width: 1px;
30237
- border-radius: 2px;
30416
+ border-radius: 4px;
30238
30417
  border-style: solid;
30239
30418
  box-sizing: border-box;
30240
30419
  display: flex;
@@ -31288,7 +31467,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
31288
31467
  .k-taskboard-column {
31289
31468
  width: 320px;
31290
31469
  border-width: 1px;
31291
- border-radius: 2px;
31470
+ border-radius: 4px;
31292
31471
  border-style: solid;
31293
31472
  outline: none;
31294
31473
  display: flex;
@@ -31386,7 +31565,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
31386
31565
  }
31387
31566
 
31388
31567
  .k-taskboard-card {
31389
- border-radius: 2px;
31568
+ border-radius: 4px;
31390
31569
  border-width: 1px;
31391
31570
  }
31392
31571
 
@@ -31419,7 +31598,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
31419
31598
  }
31420
31599
 
31421
31600
  .k-taskboard-drag-placeholder {
31422
- border-radius: 2px;
31601
+ border-radius: 4px;
31423
31602
  border-width: 1px;
31424
31603
  border-style: solid;
31425
31604
  position: relative;
@@ -31573,7 +31752,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
31573
31752
  }
31574
31753
 
31575
31754
  .k-editor-inline {
31576
- border-radius: 2px;
31755
+ border-radius: 4px;
31577
31756
  padding: 2px 8px;
31578
31757
  border: 1px solid transparent;
31579
31758
  word-wrap: break-word;
@@ -31973,7 +32152,7 @@ td.k-editor-content {
31973
32152
  white-space: nowrap;
31974
32153
  overflow: hidden;
31975
32154
  cursor: pointer;
31976
- border-radius: 2px;
32155
+ border-radius: 4px;
31977
32156
  }
31978
32157
 
31979
32158
  .k-filebrowser .k-tile .k-i-file,
@@ -32342,6 +32521,11 @@ td.k-editor-content {
32342
32521
  overflow-y: auto;
32343
32522
  }
32344
32523
 
32524
+ .k-imageeditor-action-pane .k-input-inner,
32525
+ .k-imageeditor-action-pane .k-input-value-text {
32526
+ text-overflow: clip;
32527
+ }
32528
+
32345
32529
  .k-imageeditor-crop-overlay {
32346
32530
  width: 100%;
32347
32531
  height: 100%;
@@ -32951,7 +33135,7 @@ td.k-editor-content {
32951
33135
  }
32952
33136
 
32953
33137
  .k-task-single {
32954
- border-radius: 2px;
33138
+ border-radius: 4px;
32955
33139
  border-width: 0px;
32956
33140
  border-style: solid;
32957
33141
  box-sizing: border-box;
@@ -32994,7 +33178,7 @@ td.k-editor-content {
32994
33178
  }
32995
33179
 
32996
33180
  .k-task-complete {
32997
- border-radius: 2px;
33181
+ border-radius: 4px;
32998
33182
  width: 20%;
32999
33183
  position: absolute;
33000
33184
  z-index: 1;
@@ -33160,6 +33344,37 @@ td.k-editor-content {
33160
33344
  visibility: visible;
33161
33345
  }
33162
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
+
33163
33378
  .k-pdf-export-shadow .k-gantt {
33164
33379
  float: left;
33165
33380
  }
@@ -33185,80 +33400,104 @@ td.k-editor-content {
33185
33400
  }
33186
33401
 
33187
33402
  .k-rtl .k-gantt-rows,
33188
- .k-rtl .k-gantt-columns {
33403
+ .k-rtl .k-gantt-columns,
33404
+ [dir="rtl"] .k-gantt-rows,
33405
+ [dir="rtl"] .k-gantt-columns {
33189
33406
  left: auto;
33190
33407
  right: 0;
33191
33408
  }
33192
33409
 
33193
- .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) {
33194
33412
  margin: 0 -26px;
33195
33413
  }
33196
33414
 
33197
- .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 {
33198
33417
  text-align: left;
33199
33418
  }
33200
33419
 
33201
- .k-rtl .k-gantt-timeline .k-header {
33420
+ .k-rtl .k-gantt-timeline .k-header,
33421
+ [dir="rtl"] .k-gantt-timeline .k-header {
33202
33422
  border-width: 0 1px 1px 0;
33203
33423
  }
33204
33424
 
33205
- .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 {
33206
33427
  border-right-width: 0;
33207
33428
  }
33208
33429
 
33209
- .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 {
33210
33432
  left: auto;
33211
33433
  right: 0;
33212
33434
  }
33213
33435
 
33214
- .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 {
33215
33438
  right: auto;
33216
33439
  left: 0;
33217
33440
  }
33218
33441
 
33219
- .k-rtl .k-task-content {
33442
+ .k-rtl .k-task-content,
33443
+ [dir="rtl"] .k-task-content {
33220
33444
  text-align: right;
33221
33445
  }
33222
33446
 
33223
- .k-rtl .k-task-complete {
33447
+ .k-rtl .k-task-complete,
33448
+ [dir="rtl"] .k-task-complete {
33224
33449
  left: auto;
33225
33450
  right: 0;
33226
33451
  }
33227
33452
 
33228
- .k-rtl .k-task-draghandle {
33453
+ .k-rtl .k-task-draghandle,
33454
+ [dir="rtl"] .k-task-draghandle {
33229
33455
  margin-left: 0;
33230
33456
  margin-right: 16px;
33231
33457
  }
33232
33458
 
33233
- .k-rtl .k-gantt-dependencies {
33459
+ .k-rtl .k-gantt-dependencies,
33460
+ [dir="rtl"] .k-gantt-dependencies {
33234
33461
  left: auto;
33235
33462
  right: 0;
33236
33463
  }
33237
33464
 
33238
- .k-rtl .k-gantt-delete {
33465
+ .k-rtl .k-gantt-delete,
33466
+ [dir="rtl"] .k-gantt-delete {
33239
33467
  float: right;
33240
33468
  }
33241
33469
 
33242
- .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 {
33243
33472
  display: block;
33244
33473
  }
33245
33474
 
33246
- .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 {
33247
33477
  display: none;
33248
33478
  }
33249
33479
 
33250
- .k-rtl .k-milestone-wrap {
33480
+ .k-rtl .k-milestone-wrap,
33481
+ [dir="rtl"] .k-milestone-wrap {
33251
33482
  margin-left: -2.4em;
33252
33483
  }
33253
33484
 
33254
- .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 {
33255
33487
  margin-right: 0.2em;
33256
33488
  }
33257
33489
 
33258
- .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 {
33259
33492
  right: -0.1em;
33260
33493
  }
33261
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
+
33262
33501
  .k-rtl .k-gantt-timeline .k-header {
33263
33502
  border-width: 0 1px 1px 0;
33264
33503
  }
@@ -33445,6 +33684,18 @@ td.k-editor-content {
33445
33684
  background-color: #3f51b5;
33446
33685
  }
33447
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
+
33448
33699
  .k-gantt-timeline tbody > tr:not(:only-child) > .k-header {
33449
33700
  border-left-color: rgba(0, 0, 0, 0.12);
33450
33701
  }
@@ -33832,12 +34083,12 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
33832
34083
 
33833
34084
  kendo-scheduler .k-event,
33834
34085
  .k-event {
33835
- border-radius: 2px;
34086
+ border-radius: 4px;
33836
34087
  min-height: 25px;
33837
34088
  box-sizing: border-box;
33838
34089
  border-width: 0;
33839
34090
  border-style: solid;
33840
- border-radius: 2px;
34091
+ border-radius: 4px;
33841
34092
  text-align: left;
33842
34093
  outline: 0;
33843
34094
  cursor: default;
@@ -34303,7 +34554,7 @@ kendo-scheduler .k-recurrence-editor {
34303
34554
 
34304
34555
  .k-scheduler-tooltip .k-tooltip-event {
34305
34556
  padding: 8px 8px;
34306
- border-radius: 2px;
34557
+ border-radius: 4px;
34307
34558
  box-sizing: border-box;
34308
34559
  display: flex;
34309
34560
  flex-direction: row;
@@ -35472,7 +35723,7 @@ kendo-scheduler .k-event .k-event-actions,
35472
35723
  display: inline-block;
35473
35724
  text-align: center;
35474
35725
  padding: 8px 16px;
35475
- border-radius: 2px;
35726
+ border-radius: 4px;
35476
35727
  line-height: 1.4285714286;
35477
35728
  min-width: 80px;
35478
35729
  max-width: 160px;
@@ -35529,7 +35780,7 @@ kendo-scheduler .k-event .k-event-actions,
35529
35780
  }
35530
35781
 
35531
35782
  .k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
35532
- border-radius: 2px;
35783
+ border-radius: 4px;
35533
35784
  }
35534
35785
 
35535
35786
  .k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
@@ -35566,7 +35817,7 @@ kendo-scheduler .k-event .k-event-actions,
35566
35817
  height: 100%;
35567
35818
  width: 6px;
35568
35819
  transform: translateX(-50%);
35569
- border-radius: 4px;
35820
+ border-radius: 6px;
35570
35821
  }
35571
35822
 
35572
35823
  .k-timeline-vertical .k-timeline-flag-wrap {
@@ -35608,7 +35859,7 @@ kendo-scheduler .k-event .k-event-actions,
35608
35859
  }
35609
35860
 
35610
35861
  .k-timeline-vertical .k-timeline-card .k-card .k-card-header {
35611
- border-radius: 2px;
35862
+ border-radius: 4px;
35612
35863
  }
35613
35864
 
35614
35865
  .k-timeline-vertical .k-timeline-card .k-card .k-card-title {
@@ -36526,7 +36777,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
36526
36777
  }
36527
36778
 
36528
36779
  .k-chart-tooltip {
36529
- border-radius: 2px;
36780
+ border-radius: 4px;
36530
36781
  font-size: 13.006px;
36531
36782
  line-height: 2;
36532
36783
  padding: 3px 8px;
@@ -36632,7 +36883,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
36632
36883
  }
36633
36884
 
36634
36885
  .k-navigator-hint .k-scroll {
36635
- border-radius: 2px;
36886
+ border-radius: 4px;
36636
36887
  position: absolute;
36637
36888
  height: 4px;
36638
36889
  }
@@ -36839,7 +37090,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
36839
37090
  }
36840
37091
 
36841
37092
  .k-var--border-radius {
36842
- margin-top: 2px;
37093
+ margin-top: 4px;
36843
37094
  }
36844
37095
 
36845
37096
  .k-var--normal-background {
@@ -37341,7 +37592,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
37341
37592
  }
37342
37593
 
37343
37594
  .k-orgchart-node-group-container {
37344
- border-radius: 2px;
37595
+ border-radius: 4px;
37345
37596
  padding: 24px 24px;
37346
37597
  border-width: 1px;
37347
37598
  border-style: solid;