@progress/kendo-theme-material 4.42.0-dev.0 → 4.42.1-dev.2

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 (35) hide show
  1. package/dist/all.css +480 -253
  2. package/dist/all.scss +184 -262
  3. package/modules/@progress/kendo-theme-default/package.json +2 -2
  4. package/modules/@progress/kendo-theme-default/scss/action-buttons/_layout.scss +1 -0
  5. package/modules/@progress/kendo-theme-default/scss/autocomplete/_layout.scss +0 -20
  6. package/modules/@progress/kendo-theme-default/scss/card/_layout.scss +4 -68
  7. package/modules/@progress/kendo-theme-default/scss/card/_theme.scss +2 -1
  8. package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +24 -20
  9. package/modules/@progress/kendo-theme-default/scss/chat/_variables.scss +5 -5
  10. package/modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss +1 -1
  11. package/modules/@progress/kendo-theme-default/scss/chip/_layout.scss +2 -0
  12. package/modules/@progress/kendo-theme-default/scss/chip/_theme.scss +1 -0
  13. package/modules/@progress/kendo-theme-default/scss/combobox/_layout.scss +0 -22
  14. package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +0 -45
  15. package/modules/@progress/kendo-theme-default/scss/dropdownlist/_layout.scss +0 -12
  16. package/modules/@progress/kendo-theme-default/scss/editor/_layout.scss +84 -0
  17. package/modules/@progress/kendo-theme-default/scss/editor/_theme.scss +9 -0
  18. package/modules/@progress/kendo-theme-default/scss/editor/_variables.scss +8 -0
  19. package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +2 -1
  20. package/modules/@progress/kendo-theme-default/scss/input/_layout.scss +3 -16
  21. package/modules/@progress/kendo-theme-default/scss/menu/_layout.scss +0 -1
  22. package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +0 -19
  23. package/modules/@progress/kendo-theme-default/scss/numerictextbox/_layout.scss +0 -11
  24. package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +21 -0
  25. package/modules/@progress/kendo-theme-default/scss/popup/_layout.scss +0 -4
  26. package/modules/@progress/kendo-theme-default/scss/searchbox/_layout.scss +1 -0
  27. package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +0 -4
  28. package/modules/@progress/kendo-theme-default/scss/utils/_border.scss +5 -0
  29. package/modules/@progress/kendo-theme-default/scss/window/_layout.scss +1 -0
  30. package/package.json +3 -3
  31. package/scss/chat/_variables.scss +5 -5
  32. package/scss/editor/_theme.scss +9 -0
  33. package/scss/editor/_variables.scss +8 -0
  34. package/scss/spreadsheet/_layout.scss +0 -12
  35. package/scss/utils/_border.scss +10 -0
package/dist/all.css CHANGED
@@ -1692,282 +1692,562 @@ hr.k-separator {
1692
1692
  }
1693
1693
 
1694
1694
  .k-rounded {
1695
+ border-radius: 4px;
1696
+ }
1697
+
1698
+ .\!k-rounded {
1695
1699
  border-radius: 4px !important;
1696
1700
  }
1697
1701
 
1698
1702
  .k-rounded-0 {
1703
+ border-radius: 0;
1704
+ }
1705
+
1706
+ .\!k-rounded-0 {
1699
1707
  border-radius: 0 !important;
1700
1708
  }
1701
1709
 
1702
1710
  .k-rounded-sm {
1703
- border-radius: 1px !important;
1711
+ border-radius: 0.125rem;
1712
+ }
1713
+
1714
+ .\!k-rounded-sm {
1715
+ border-radius: 0.125rem !important;
1704
1716
  }
1705
1717
 
1706
1718
  .k-rounded-md {
1707
- border-radius: 2px !important;
1719
+ border-radius: 0.25rem;
1720
+ }
1721
+
1722
+ .\!k-rounded-md {
1723
+ border-radius: 0.25rem !important;
1708
1724
  }
1709
1725
 
1710
1726
  .k-rounded-lg {
1711
- border-radius: 4px !important;
1727
+ border-radius: 0.375rem;
1728
+ }
1729
+
1730
+ .\!k-rounded-lg {
1731
+ border-radius: 0.375rem !important;
1712
1732
  }
1713
1733
 
1714
1734
  .k-rounded-circle {
1735
+ border-radius: 50%;
1736
+ }
1737
+
1738
+ .\!k-rounded-circle {
1715
1739
  border-radius: 50% !important;
1716
1740
  }
1717
1741
 
1718
1742
  .k-rounded-pill {
1743
+ border-radius: 9999px;
1744
+ }
1745
+
1746
+ .\!k-rounded-pill {
1719
1747
  border-radius: 9999px !important;
1720
1748
  }
1721
1749
 
1722
1750
  .k-rounded-top {
1751
+ border-top-left-radius: 4px;
1752
+ border-top-right-radius: 4px;
1753
+ }
1754
+
1755
+ .\!k-rounded-top {
1723
1756
  border-top-left-radius: 4px !important;
1724
1757
  border-top-right-radius: 4px !important;
1725
1758
  }
1726
1759
 
1727
1760
  .k-rounded-top-0 {
1761
+ border-top-left-radius: 0;
1762
+ border-top-right-radius: 0;
1763
+ }
1764
+
1765
+ .\!k-rounded-top-0 {
1728
1766
  border-top-left-radius: 0 !important;
1729
1767
  border-top-right-radius: 0 !important;
1730
1768
  }
1731
1769
 
1732
1770
  .k-rounded-top-sm {
1733
- border-top-left-radius: 1px !important;
1734
- border-top-right-radius: 1px !important;
1771
+ border-top-left-radius: 0.125rem;
1772
+ border-top-right-radius: 0.125rem;
1773
+ }
1774
+
1775
+ .\!k-rounded-top-sm {
1776
+ border-top-left-radius: 0.125rem !important;
1777
+ border-top-right-radius: 0.125rem !important;
1735
1778
  }
1736
1779
 
1737
1780
  .k-rounded-top-md {
1738
- border-top-left-radius: 2px !important;
1739
- border-top-right-radius: 2px !important;
1781
+ border-top-left-radius: 0.25rem;
1782
+ border-top-right-radius: 0.25rem;
1783
+ }
1784
+
1785
+ .\!k-rounded-top-md {
1786
+ border-top-left-radius: 0.25rem !important;
1787
+ border-top-right-radius: 0.25rem !important;
1740
1788
  }
1741
1789
 
1742
1790
  .k-rounded-top-lg {
1743
- border-top-left-radius: 4px !important;
1744
- border-top-right-radius: 4px !important;
1791
+ border-top-left-radius: 0.375rem;
1792
+ border-top-right-radius: 0.375rem;
1793
+ }
1794
+
1795
+ .\!k-rounded-top-lg {
1796
+ border-top-left-radius: 0.375rem !important;
1797
+ border-top-right-radius: 0.375rem !important;
1745
1798
  }
1746
1799
 
1747
1800
  .k-rounded-top-circle {
1801
+ border-top-left-radius: 50%;
1802
+ border-top-right-radius: 50%;
1803
+ }
1804
+
1805
+ .\!k-rounded-top-circle {
1748
1806
  border-top-left-radius: 50% !important;
1749
1807
  border-top-right-radius: 50% !important;
1750
1808
  }
1751
1809
 
1752
1810
  .k-rounded-top-pill {
1811
+ border-top-left-radius: 9999px;
1812
+ border-top-right-radius: 9999px;
1813
+ }
1814
+
1815
+ .\!k-rounded-top-pill {
1753
1816
  border-top-left-radius: 9999px !important;
1754
1817
  border-top-right-radius: 9999px !important;
1755
1818
  }
1756
1819
 
1757
1820
  .k-rounded-right {
1821
+ border-top-right-radius: 4px;
1822
+ border-bottom-right-radius: 4px;
1823
+ }
1824
+
1825
+ .\!k-rounded-right {
1758
1826
  border-top-right-radius: 4px !important;
1759
1827
  border-bottom-right-radius: 4px !important;
1760
1828
  }
1761
1829
 
1762
1830
  .k-rounded-right-0 {
1831
+ border-top-right-radius: 0;
1832
+ border-bottom-right-radius: 0;
1833
+ }
1834
+
1835
+ .\!k-rounded-right-0 {
1763
1836
  border-top-right-radius: 0 !important;
1764
1837
  border-bottom-right-radius: 0 !important;
1765
1838
  }
1766
1839
 
1767
1840
  .k-rounded-right-sm {
1768
- border-top-right-radius: 1px !important;
1769
- border-bottom-right-radius: 1px !important;
1841
+ border-top-right-radius: 0.125rem;
1842
+ border-bottom-right-radius: 0.125rem;
1843
+ }
1844
+
1845
+ .\!k-rounded-right-sm {
1846
+ border-top-right-radius: 0.125rem !important;
1847
+ border-bottom-right-radius: 0.125rem !important;
1770
1848
  }
1771
1849
 
1772
1850
  .k-rounded-right-md {
1773
- border-top-right-radius: 2px !important;
1774
- border-bottom-right-radius: 2px !important;
1851
+ border-top-right-radius: 0.25rem;
1852
+ border-bottom-right-radius: 0.25rem;
1853
+ }
1854
+
1855
+ .\!k-rounded-right-md {
1856
+ border-top-right-radius: 0.25rem !important;
1857
+ border-bottom-right-radius: 0.25rem !important;
1775
1858
  }
1776
1859
 
1777
1860
  .k-rounded-right-lg {
1778
- border-top-right-radius: 4px !important;
1779
- border-bottom-right-radius: 4px !important;
1861
+ border-top-right-radius: 0.375rem;
1862
+ border-bottom-right-radius: 0.375rem;
1863
+ }
1864
+
1865
+ .\!k-rounded-right-lg {
1866
+ border-top-right-radius: 0.375rem !important;
1867
+ border-bottom-right-radius: 0.375rem !important;
1780
1868
  }
1781
1869
 
1782
1870
  .k-rounded-right-circle {
1871
+ border-top-right-radius: 50%;
1872
+ border-bottom-right-radius: 50%;
1873
+ }
1874
+
1875
+ .\!k-rounded-right-circle {
1783
1876
  border-top-right-radius: 50% !important;
1784
1877
  border-bottom-right-radius: 50% !important;
1785
1878
  }
1786
1879
 
1787
1880
  .k-rounded-right-pill {
1881
+ border-top-right-radius: 9999px;
1882
+ border-bottom-right-radius: 9999px;
1883
+ }
1884
+
1885
+ .\!k-rounded-right-pill {
1788
1886
  border-top-right-radius: 9999px !important;
1789
1887
  border-bottom-right-radius: 9999px !important;
1790
1888
  }
1791
1889
 
1792
1890
  .k-rounded-bottom {
1891
+ border-bottom-left-radius: 4px;
1892
+ border-bottom-right-radius: 4px;
1893
+ }
1894
+
1895
+ .\!k-rounded-bottom {
1793
1896
  border-bottom-left-radius: 4px !important;
1794
1897
  border-bottom-right-radius: 4px !important;
1795
1898
  }
1796
1899
 
1797
1900
  .k-rounded-bottom-0 {
1901
+ border-bottom-left-radius: 0;
1902
+ border-bottom-right-radius: 0;
1903
+ }
1904
+
1905
+ .\!k-rounded-bottom-0 {
1798
1906
  border-bottom-left-radius: 0 !important;
1799
1907
  border-bottom-right-radius: 0 !important;
1800
1908
  }
1801
1909
 
1802
1910
  .k-rounded-bottom-sm {
1803
- border-bottom-left-radius: 1px !important;
1804
- border-bottom-right-radius: 1px !important;
1911
+ border-bottom-left-radius: 0.125rem;
1912
+ border-bottom-right-radius: 0.125rem;
1913
+ }
1914
+
1915
+ .\!k-rounded-bottom-sm {
1916
+ border-bottom-left-radius: 0.125rem !important;
1917
+ border-bottom-right-radius: 0.125rem !important;
1805
1918
  }
1806
1919
 
1807
1920
  .k-rounded-bottom-md {
1808
- border-bottom-left-radius: 2px !important;
1809
- border-bottom-right-radius: 2px !important;
1921
+ border-bottom-left-radius: 0.25rem;
1922
+ border-bottom-right-radius: 0.25rem;
1923
+ }
1924
+
1925
+ .\!k-rounded-bottom-md {
1926
+ border-bottom-left-radius: 0.25rem !important;
1927
+ border-bottom-right-radius: 0.25rem !important;
1810
1928
  }
1811
1929
 
1812
1930
  .k-rounded-bottom-lg {
1813
- border-bottom-left-radius: 4px !important;
1814
- border-bottom-right-radius: 4px !important;
1931
+ border-bottom-left-radius: 0.375rem;
1932
+ border-bottom-right-radius: 0.375rem;
1933
+ }
1934
+
1935
+ .\!k-rounded-bottom-lg {
1936
+ border-bottom-left-radius: 0.375rem !important;
1937
+ border-bottom-right-radius: 0.375rem !important;
1815
1938
  }
1816
1939
 
1817
1940
  .k-rounded-bottom-circle {
1941
+ border-bottom-left-radius: 50%;
1942
+ border-bottom-right-radius: 50%;
1943
+ }
1944
+
1945
+ .\!k-rounded-bottom-circle {
1818
1946
  border-bottom-left-radius: 50% !important;
1819
1947
  border-bottom-right-radius: 50% !important;
1820
1948
  }
1821
1949
 
1822
1950
  .k-rounded-bottom-pill {
1951
+ border-bottom-left-radius: 9999px;
1952
+ border-bottom-right-radius: 9999px;
1953
+ }
1954
+
1955
+ .\!k-rounded-bottom-pill {
1823
1956
  border-bottom-left-radius: 9999px !important;
1824
1957
  border-bottom-right-radius: 9999px !important;
1825
1958
  }
1826
1959
 
1827
1960
  .k-rounded-left {
1961
+ border-bottom-left-radius: 4px;
1962
+ border-top-left-radius: 4px;
1963
+ }
1964
+
1965
+ .\!k-rounded-left {
1828
1966
  border-bottom-left-radius: 4px !important;
1829
1967
  border-top-left-radius: 4px !important;
1830
1968
  }
1831
1969
 
1832
1970
  .k-rounded-left-0 {
1971
+ border-bottom-left-radius: 0;
1972
+ border-top-left-radius: 0;
1973
+ }
1974
+
1975
+ .\!k-rounded-left-0 {
1833
1976
  border-bottom-left-radius: 0 !important;
1834
1977
  border-top-left-radius: 0 !important;
1835
1978
  }
1836
1979
 
1837
1980
  .k-rounded-left-sm {
1838
- border-bottom-left-radius: 1px !important;
1839
- border-top-left-radius: 1px !important;
1981
+ border-bottom-left-radius: 0.125rem;
1982
+ border-top-left-radius: 0.125rem;
1983
+ }
1984
+
1985
+ .\!k-rounded-left-sm {
1986
+ border-bottom-left-radius: 0.125rem !important;
1987
+ border-top-left-radius: 0.125rem !important;
1840
1988
  }
1841
1989
 
1842
1990
  .k-rounded-left-md {
1843
- border-bottom-left-radius: 2px !important;
1844
- border-top-left-radius: 2px !important;
1991
+ border-bottom-left-radius: 0.25rem;
1992
+ border-top-left-radius: 0.25rem;
1993
+ }
1994
+
1995
+ .\!k-rounded-left-md {
1996
+ border-bottom-left-radius: 0.25rem !important;
1997
+ border-top-left-radius: 0.25rem !important;
1845
1998
  }
1846
1999
 
1847
2000
  .k-rounded-left-lg {
1848
- border-bottom-left-radius: 4px !important;
1849
- border-top-left-radius: 4px !important;
2001
+ border-bottom-left-radius: 0.375rem;
2002
+ border-top-left-radius: 0.375rem;
2003
+ }
2004
+
2005
+ .\!k-rounded-left-lg {
2006
+ border-bottom-left-radius: 0.375rem !important;
2007
+ border-top-left-radius: 0.375rem !important;
1850
2008
  }
1851
2009
 
1852
2010
  .k-rounded-left-circle {
2011
+ border-bottom-left-radius: 50%;
2012
+ border-top-left-radius: 50%;
2013
+ }
2014
+
2015
+ .\!k-rounded-left-circle {
1853
2016
  border-bottom-left-radius: 50% !important;
1854
2017
  border-top-left-radius: 50% !important;
1855
2018
  }
1856
2019
 
1857
2020
  .k-rounded-left-pill {
2021
+ border-bottom-left-radius: 9999px;
2022
+ border-top-left-radius: 9999px;
2023
+ }
2024
+
2025
+ .\!k-rounded-left-pill {
1858
2026
  border-bottom-left-radius: 9999px !important;
1859
2027
  border-top-left-radius: 9999px !important;
1860
2028
  }
1861
2029
 
1862
2030
  .k-rounded-top-left {
2031
+ border-top-left-radius: 4px;
2032
+ }
2033
+
2034
+ .\!k-rounded-top-left {
1863
2035
  border-top-left-radius: 4px !important;
1864
2036
  }
1865
2037
 
1866
2038
  .k-rounded-top-left-0 {
2039
+ border-top-left-radius: 0;
2040
+ }
2041
+
2042
+ .\!k-rounded-top-left-0 {
1867
2043
  border-top-left-radius: 0 !important;
1868
2044
  }
1869
2045
 
1870
2046
  .k-rounded-top-left-sm {
1871
- border-top-left-radius: 1px !important;
2047
+ border-top-left-radius: 0.125rem;
2048
+ }
2049
+
2050
+ .\!k-rounded-top-left-sm {
2051
+ border-top-left-radius: 0.125rem !important;
1872
2052
  }
1873
2053
 
1874
2054
  .k-rounded-top-left-md {
1875
- border-top-left-radius: 2px !important;
2055
+ border-top-left-radius: 0.25rem;
2056
+ }
2057
+
2058
+ .\!k-rounded-top-left-md {
2059
+ border-top-left-radius: 0.25rem !important;
1876
2060
  }
1877
2061
 
1878
2062
  .k-rounded-top-left-lg {
1879
- border-top-left-radius: 4px !important;
2063
+ border-top-left-radius: 0.375rem;
2064
+ }
2065
+
2066
+ .\!k-rounded-top-left-lg {
2067
+ border-top-left-radius: 0.375rem !important;
1880
2068
  }
1881
2069
 
1882
2070
  .k-rounded-top-left-circle {
2071
+ border-top-left-radius: 50%;
2072
+ }
2073
+
2074
+ .\!k-rounded-top-left-circle {
1883
2075
  border-top-left-radius: 50% !important;
1884
2076
  }
1885
2077
 
1886
2078
  .k-rounded-top-left-pill {
2079
+ border-top-left-radius: 9999px;
2080
+ }
2081
+
2082
+ .\!k-rounded-top-left-pill {
1887
2083
  border-top-left-radius: 9999px !important;
1888
2084
  }
1889
2085
 
1890
2086
  .k-rounded-top-right {
2087
+ border-top-right-radius: 4px;
2088
+ }
2089
+
2090
+ .\!k-rounded-top-right {
1891
2091
  border-top-right-radius: 4px !important;
1892
2092
  }
1893
2093
 
1894
2094
  .k-rounded-top-right-0 {
2095
+ border-top-right-radius: 0;
2096
+ }
2097
+
2098
+ .\!k-rounded-top-right-0 {
1895
2099
  border-top-right-radius: 0 !important;
1896
2100
  }
1897
2101
 
1898
2102
  .k-rounded-top-right-sm {
1899
- border-top-right-radius: 1px !important;
2103
+ border-top-right-radius: 0.125rem;
2104
+ }
2105
+
2106
+ .\!k-rounded-top-right-sm {
2107
+ border-top-right-radius: 0.125rem !important;
1900
2108
  }
1901
2109
 
1902
2110
  .k-rounded-top-right-md {
1903
- border-top-right-radius: 2px !important;
2111
+ border-top-right-radius: 0.25rem;
2112
+ }
2113
+
2114
+ .\!k-rounded-top-right-md {
2115
+ border-top-right-radius: 0.25rem !important;
1904
2116
  }
1905
2117
 
1906
2118
  .k-rounded-top-right-lg {
1907
- border-top-right-radius: 4px !important;
2119
+ border-top-right-radius: 0.375rem;
2120
+ }
2121
+
2122
+ .\!k-rounded-top-right-lg {
2123
+ border-top-right-radius: 0.375rem !important;
1908
2124
  }
1909
2125
 
1910
2126
  .k-rounded-top-right-circle {
2127
+ border-top-right-radius: 50%;
2128
+ }
2129
+
2130
+ .\!k-rounded-top-right-circle {
1911
2131
  border-top-right-radius: 50% !important;
1912
2132
  }
1913
2133
 
1914
2134
  .k-rounded-top-right-pill {
2135
+ border-top-right-radius: 9999px;
2136
+ }
2137
+
2138
+ .\!k-rounded-top-right-pill {
1915
2139
  border-top-right-radius: 9999px !important;
1916
2140
  }
1917
2141
 
1918
2142
  .k-rounded-bottom-left {
2143
+ border-bottom-left-radius: 4px;
2144
+ }
2145
+
2146
+ .\!k-rounded-bottom-left {
1919
2147
  border-bottom-left-radius: 4px !important;
1920
2148
  }
1921
2149
 
1922
2150
  .k-rounded-bottom-left-0 {
2151
+ border-bottom-left-radius: 0;
2152
+ }
2153
+
2154
+ .\!k-rounded-bottom-left-0 {
1923
2155
  border-bottom-left-radius: 0 !important;
1924
2156
  }
1925
2157
 
1926
2158
  .k-rounded-bottom-left-sm {
1927
- border-bottom-left-radius: 1px !important;
2159
+ border-bottom-left-radius: 0.125rem;
2160
+ }
2161
+
2162
+ .\!k-rounded-bottom-left-sm {
2163
+ border-bottom-left-radius: 0.125rem !important;
1928
2164
  }
1929
2165
 
1930
2166
  .k-rounded-bottom-left-md {
1931
- border-bottom-left-radius: 2px !important;
2167
+ border-bottom-left-radius: 0.25rem;
2168
+ }
2169
+
2170
+ .\!k-rounded-bottom-left-md {
2171
+ border-bottom-left-radius: 0.25rem !important;
1932
2172
  }
1933
2173
 
1934
2174
  .k-rounded-bottom-left-lg {
1935
- border-bottom-left-radius: 4px !important;
2175
+ border-bottom-left-radius: 0.375rem;
2176
+ }
2177
+
2178
+ .\!k-rounded-bottom-left-lg {
2179
+ border-bottom-left-radius: 0.375rem !important;
1936
2180
  }
1937
2181
 
1938
2182
  .k-rounded-bottom-left-circle {
2183
+ border-bottom-left-radius: 50%;
2184
+ }
2185
+
2186
+ .\!k-rounded-bottom-left-circle {
1939
2187
  border-bottom-left-radius: 50% !important;
1940
2188
  }
1941
2189
 
1942
2190
  .k-rounded-bottom-left-pill {
2191
+ border-bottom-left-radius: 9999px;
2192
+ }
2193
+
2194
+ .\!k-rounded-bottom-left-pill {
1943
2195
  border-bottom-left-radius: 9999px !important;
1944
2196
  }
1945
2197
 
1946
2198
  .k-rounded-bottom-right {
2199
+ border-bottom-right-radius: 4px;
2200
+ }
2201
+
2202
+ .\!k-rounded-bottom-right {
1947
2203
  border-bottom-right-radius: 4px !important;
1948
2204
  }
1949
2205
 
1950
2206
  .k-rounded-bottom-right-0 {
2207
+ border-bottom-right-radius: 0;
2208
+ }
2209
+
2210
+ .\!k-rounded-bottom-right-0 {
1951
2211
  border-bottom-right-radius: 0 !important;
1952
2212
  }
1953
2213
 
1954
2214
  .k-rounded-bottom-right-sm {
1955
- border-bottom-right-radius: 1px !important;
2215
+ border-bottom-right-radius: 0.125rem;
2216
+ }
2217
+
2218
+ .\!k-rounded-bottom-right-sm {
2219
+ border-bottom-right-radius: 0.125rem !important;
1956
2220
  }
1957
2221
 
1958
2222
  .k-rounded-bottom-right-md {
1959
- border-bottom-right-radius: 2px !important;
2223
+ border-bottom-right-radius: 0.25rem;
2224
+ }
2225
+
2226
+ .\!k-rounded-bottom-right-md {
2227
+ border-bottom-right-radius: 0.25rem !important;
1960
2228
  }
1961
2229
 
1962
2230
  .k-rounded-bottom-right-lg {
1963
- border-bottom-right-radius: 4px !important;
2231
+ border-bottom-right-radius: 0.375rem;
2232
+ }
2233
+
2234
+ .\!k-rounded-bottom-right-lg {
2235
+ border-bottom-right-radius: 0.375rem !important;
1964
2236
  }
1965
2237
 
1966
2238
  .k-rounded-bottom-right-circle {
2239
+ border-bottom-right-radius: 50%;
2240
+ }
2241
+
2242
+ .\!k-rounded-bottom-right-circle {
1967
2243
  border-bottom-right-radius: 50% !important;
1968
2244
  }
1969
2245
 
1970
2246
  .k-rounded-bottom-right-pill {
2247
+ border-bottom-right-radius: 9999px;
2248
+ }
2249
+
2250
+ .\!k-rounded-bottom-right-pill {
1971
2251
  border-bottom-right-radius: 9999px !important;
1972
2252
  }
1973
2253
 
@@ -11326,6 +11606,7 @@ kendo-badge-container {
11326
11606
  font-size: 14px;
11327
11607
  }
11328
11608
 
11609
+ .k-selection-multiple .k-chip.k-state-selected .k-selected-icon-wrapper,
11329
11610
  .k-selection-multiple .k-chip.k-selected .k-selected-icon-wrapper {
11330
11611
  width: 24px;
11331
11612
  visibility: visible;
@@ -11342,6 +11623,7 @@ kendo-badge-container {
11342
11623
  transition: width .2s, opacity .2s;
11343
11624
  }
11344
11625
 
11626
+ .k-selection-multiple :not(.k-chip-has-icon).k-state-selected .k-selected-icon-wrapper,
11345
11627
  .k-selection-multiple :not(.k-chip-has-icon).k-selected .k-selected-icon-wrapper {
11346
11628
  opacity: 1;
11347
11629
  }
@@ -11448,6 +11730,7 @@ kendo-badge-container {
11448
11730
  right: 0px;
11449
11731
  }
11450
11732
 
11733
+ .k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
11451
11734
  .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
11452
11735
  color: #ffffff;
11453
11736
  background-color: rgba(0, 0, 0, 0.36);
@@ -12631,7 +12914,9 @@ kendo-scheduler .k-scheduler-footer li .k-primary.k-state-disabled.k-link {
12631
12914
  border-style: solid;
12632
12915
  }
12633
12916
 
12634
- .k-input-icon {
12917
+ .k-input-icon,
12918
+ .k-input-validation-icon,
12919
+ .k-input-loading-icon {
12635
12920
  width: 32px;
12636
12921
  height: 34px;
12637
12922
  display: -ms-inline-flexbox;
@@ -12646,19 +12931,6 @@ kendo-scheduler .k-scheduler-footer li .k-primary.k-state-disabled.k-link {
12646
12931
  flex-shrink: 0;
12647
12932
  }
12648
12933
 
12649
- .k-ie9 .k-input-icon {
12650
- position: absolute;
12651
- height: 100%;
12652
- right: 0;
12653
- top: 0;
12654
- }
12655
-
12656
- .k-ie9 .k-rtl .k-input-icon, .k-ie9
12657
- [dir="rtl"] .k-input-icon {
12658
- left: 0;
12659
- right: auto;
12660
- }
12661
-
12662
12934
  .k-clear-value {
12663
12935
  width: 32px;
12664
12936
  height: 34px;
@@ -13066,10 +13338,6 @@ kendo-scheduler .k-scheduler-footer li .k-primary.k-state-disabled.k-link {
13066
13338
  border-width: 1px;
13067
13339
  }
13068
13340
 
13069
- .k-list-container .k-separator {
13070
- height: 0;
13071
- }
13072
-
13073
13341
  .k-virtual-content {
13074
13342
  overflow-y: scroll;
13075
13343
  -webkit-overflow-scrolling: touch;
@@ -13665,8 +13933,8 @@ kendo-label > .k-label {
13665
13933
  .k-form .k-maskedtextbox,
13666
13934
  .k-form .k-textbox-container,
13667
13935
  .k-form .k-floating-label-container {
13668
- display: -ms-flexbox;
13669
- display: flex;
13936
+ display: -ms-inline-flexbox;
13937
+ display: inline-flex;
13670
13938
  width: 100%;
13671
13939
  }
13672
13940
 
@@ -13728,6 +13996,7 @@ kendo-label > .k-label {
13728
13996
  margin-right: 10px;
13729
13997
  padding-top: 5px;
13730
13998
  width: 25%;
13999
+ text-align: end;
13731
14000
  -ms-flex-direction: column;
13732
14001
  flex-direction: column;
13733
14002
  -ms-flex-align: end;
@@ -14497,7 +14766,8 @@ kendo-label.k-checkbox-label > .k-label {
14497
14766
  color: transparent;
14498
14767
  }
14499
14768
 
14500
- .k-checkbox:hover .k-checkbox.k-state-hover {
14769
+ .k-checkbox:hover,
14770
+ .k-checkbox.k-state-hover {
14501
14771
  border-color: rgba(0, 0, 0, 0.87);
14502
14772
  }
14503
14773
 
@@ -16233,6 +16503,7 @@ kendo-label.k-radio-label > .k-label {
16233
16503
  }
16234
16504
 
16235
16505
  .k-actions-horizontal {
16506
+ width: 100%;
16236
16507
  -ms-flex-flow: row nowrap;
16237
16508
  flex-flow: row nowrap;
16238
16509
  }
@@ -18393,18 +18664,6 @@ textarea.k-textarea {
18393
18664
  height: 34px;
18394
18665
  }
18395
18666
 
18396
- .k-autocomplete .k-clear-value {
18397
- visibility: hidden;
18398
- }
18399
-
18400
- .k-autocomplete:hover .k-clear-value, .k-autocomplete.k-state-hover .k-clear-value, .k-autocomplete.k-state-focused .k-clear-value, .k-autocomplete.k-state-focus .k-clear-value {
18401
- visibility: visible;
18402
- }
18403
-
18404
- .k-autocomplete:focus-within .k-clear-value {
18405
- visibility: visible;
18406
- }
18407
-
18408
18667
  .k-autocomplete {
18409
18668
  border-width: 1px 0;
18410
18669
  border-top-color: transparent !important;
@@ -18636,23 +18895,10 @@ textarea.k-textarea {
18636
18895
  top: -2px;
18637
18896
  }
18638
18897
 
18639
- .k-numerictextbox .k-i-warning {
18640
- -ms-flex-item-align: center;
18641
- align-self: center;
18642
- margin-right: 0.5em;
18643
- }
18644
-
18645
18898
  .k-rtl .k-numerictextbox, .k-numerictextbox[dir="rtl"] {
18646
18899
  text-align: right;
18647
18900
  }
18648
18901
 
18649
- .k-rtl .k-numerictextbox .k-numeric-wrap .k-i-warning, .k-numerictextbox[dir="rtl"] .k-numeric-wrap .k-i-warning {
18650
- -ms-flex-item-align: center;
18651
- align-self: center;
18652
- margin-right: 0;
18653
- margin-left: 0.5em;
18654
- }
18655
-
18656
18902
  .k-rtl .k-numerictextbox .k-select, .k-numerictextbox[dir="rtl"] .k-select {
18657
18903
  border-radius: 0 0;
18658
18904
  border-width: 0 0px 0 0;
@@ -19260,20 +19506,6 @@ textarea.k-textarea {
19260
19506
  cursor: initial;
19261
19507
  }
19262
19508
 
19263
- .k-combobox .k-clear-value {
19264
- visibility: hidden;
19265
- }
19266
-
19267
- .k-combobox:hover .k-clear-value, .k-combobox.k-state-hover .k-clear-value, .k-combobox.k-state-focused .k-clear-value, .k-combobox.k-state-focus .k-clear-value,
19268
- .k-combobox .k-dropdown-wrap.k-state-hover .k-clear-value,
19269
- .k-combobox .k-dropdown-wrap.k-state-focused .k-clear-value {
19270
- visibility: visible;
19271
- }
19272
-
19273
- .k-combobox:focus-within .k-clear-value {
19274
- visibility: visible;
19275
- }
19276
-
19277
19509
  .k-combobox .k-select {
19278
19510
  border-radius: 0 0;
19279
19511
  padding: 8px 4px;
@@ -20071,24 +20303,10 @@ textarea.k-textarea {
20071
20303
  top: -2px;
20072
20304
  }
20073
20305
 
20074
- .k-dateinput .k-i-warning {
20075
- position: absolute;
20076
- right: 16px;
20077
- top: 50%;
20078
- -ms-transform: translateY(-50%);
20079
- transform: translateY(-50%);
20080
- overflow: visible;
20081
- }
20082
-
20083
20306
  .k-rtl .k-dateinput, .k-dateinput[dir="rtl"] {
20084
20307
  text-align: right;
20085
20308
  }
20086
20309
 
20087
- .k-rtl .k-dateinput .k-dateinput-wrap .k-i-warning, .k-dateinput[dir="rtl"] .k-dateinput-wrap .k-i-warning {
20088
- left: 16px;
20089
- right: auto;
20090
- }
20091
-
20092
20310
  .k-rtl .k-dateinput .k-select, .k-dateinput[dir="rtl"] .k-select {
20093
20311
  border-radius: 0 0;
20094
20312
  border-width: 0 0px 0 0;
@@ -20168,16 +20386,6 @@ textarea.k-textarea {
20168
20386
  cursor: pointer;
20169
20387
  }
20170
20388
 
20171
- .k-datepicker .k-i-warning,
20172
- .k-timepicker .k-i-warning {
20173
- position: absolute;
20174
- top: 50%;
20175
- right: calc(1.4285714286em + 16px);
20176
- -ms-transform: translateY(-50%);
20177
- transform: translateY(-50%);
20178
- overflow: visible;
20179
- }
20180
-
20181
20389
  .k-rtl .k-datepicker, .k-datepicker[dir="rtl"], .k-rtl
20182
20390
  .k-timepicker,
20183
20391
  .k-timepicker[dir="rtl"] {
@@ -20191,13 +20399,6 @@ textarea.k-textarea {
20191
20399
  border-width: 0 0px 0 0;
20192
20400
  }
20193
20401
 
20194
- .k-rtl .k-datepicker .k-i-warning, .k-datepicker[dir="rtl"] .k-i-warning, .k-rtl
20195
- .k-timepicker .k-i-warning,
20196
- .k-timepicker[dir="rtl"] .k-i-warning {
20197
- right: auto;
20198
- left: calc(1.4285714286em + 16px);
20199
- }
20200
-
20201
20402
  .k-datetimepicker {
20202
20403
  width: 200px;
20203
20404
  border-width: 0;
@@ -20266,15 +20467,6 @@ textarea.k-textarea {
20266
20467
  box-sizing: border-box;
20267
20468
  }
20268
20469
 
20269
- .k-datetimepicker .k-i-warning {
20270
- position: absolute;
20271
- top: 50%;
20272
- right: calc(2.8571428572em + 32px);
20273
- -ms-transform: translateY(-50%);
20274
- transform: translateY(-50%);
20275
- overflow: visible;
20276
- }
20277
-
20278
20470
  .k-rtl .k-datetimepicker, .k-datetimepicker[dir="rtl"] {
20279
20471
  text-align: right;
20280
20472
  }
@@ -20284,11 +20476,6 @@ textarea.k-textarea {
20284
20476
  border-width: 0 0px 0 0;
20285
20477
  }
20286
20478
 
20287
- .k-rtl .k-datetimepicker .k-i-warning, .k-datetimepicker[dir="rtl"] .k-i-warning {
20288
- right: auto;
20289
- left: calc(2.8571428572em + 32px);
20290
- }
20291
-
20292
20479
  .k-datetime-container .k-datetime-wrap {
20293
20480
  width: 320px;
20294
20481
  overflow: hidden;
@@ -21100,14 +21287,6 @@ textarea.k-textarea {
21100
21287
  cursor: pointer;
21101
21288
  }
21102
21289
 
21103
- .k-dropdown .k-dropdown-wrap .k-clear-value, .k-dropdowntree .k-dropdown-wrap .k-clear-value {
21104
- visibility: hidden;
21105
- }
21106
-
21107
- .k-dropdown .k-dropdown-wrap.k-state-focused .k-clear-value, .k-dropdowntree .k-dropdown-wrap.k-state-focused .k-clear-value, .k-dropdown .k-dropdown-wrap.k-state-hover .k-clear-value, .k-dropdowntree .k-dropdown-wrap.k-state-hover .k-clear-value, .k-dropdown .k-dropdown-wrap:hover .k-clear-value, .k-dropdowntree .k-dropdown-wrap:hover .k-clear-value {
21108
- visibility: visible;
21109
- }
21110
-
21111
21290
  .k-dropdown.k-rtl, .k-rtl.k-dropdowntree,
21112
21291
  .k-dropdown[dir="rtl"],
21113
21292
  .k-dropdowntree[dir="rtl"],
@@ -21319,16 +21498,11 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
21319
21498
  }
21320
21499
 
21321
21500
  .k-multiselect .k-multiselect-wrap .k-clear-value, .k-dropdowntree .k-multiselect-wrap .k-clear-value {
21322
- visibility: hidden;
21323
21501
  position: absolute;
21324
21502
  top: 0;
21325
21503
  right: 0;
21326
21504
  }
21327
21505
 
21328
- .k-multiselect .k-multiselect-wrap:hover .k-clear-value, .k-dropdowntree .k-multiselect-wrap:hover .k-clear-value, .k-multiselect .k-multiselect-wrap.k-state-hover .k-clear-value, .k-dropdowntree .k-multiselect-wrap.k-state-hover .k-clear-value, .k-multiselect .k-multiselect-wrap.k-state-focused .k-clear-value, .k-dropdowntree .k-multiselect-wrap.k-state-focused .k-clear-value {
21329
- visibility: visible;
21330
- }
21331
-
21332
21506
  .k-multiselect .k-multiselect-wrap > .k-select, .k-dropdowntree .k-multiselect-wrap > .k-select {
21333
21507
  position: absolute;
21334
21508
  top: 0;
@@ -21351,10 +21525,6 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
21351
21525
  right: 24px;
21352
21526
  }
21353
21527
 
21354
- .k-multiselect.k-state-hover > .k-multiselect-wrap .k-clear-value, .k-state-hover.k-dropdowntree > .k-multiselect-wrap .k-clear-value, .k-multiselect.k-state-focused > .k-multiselect-wrap .k-clear-value, .k-state-focused.k-dropdowntree > .k-multiselect-wrap .k-clear-value, .k-multiselect.k-state-focus > .k-multiselect-wrap .k-clear-value, .k-state-focus.k-dropdowntree > .k-multiselect-wrap .k-clear-value {
21355
- visibility: visible;
21356
- }
21357
-
21358
21528
  .k-multiselect[dir="rtl"], .k-dropdowntree[dir="rtl"],
21359
21529
  .k-rtl .k-multiselect,
21360
21530
  .k-rtl .k-dropdowntree {
@@ -21837,6 +22007,7 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
21837
22007
  .k-searchbox {
21838
22008
  border-width: 1px;
21839
22009
  border-style: solid;
22010
+ box-sizing: border-box;
21840
22011
  font-family: Roboto, "Helvetica Neue", sans-serif;
21841
22012
  font-size: 16px;
21842
22013
  line-height: 1.125;
@@ -23051,8 +23222,6 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
23051
23222
  height: auto;
23052
23223
  border-width: 0 0 0 1px;
23053
23224
  border-style: solid;
23054
- -ms-flex-negative: 0;
23055
- flex-shrink: 0;
23056
23225
  }
23057
23226
 
23058
23227
  .k-menu-vertical {
@@ -23480,6 +23649,7 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
23480
23649
  height: 100%;
23481
23650
  }
23482
23651
 
23652
+ .k-window-buttons,
23483
23653
  .k-window-buttongroup {
23484
23654
  border-bottom-right-radius: 4px;
23485
23655
  border-bottom-left-radius: 4px;
@@ -24468,13 +24638,6 @@ kendo-card-footer {
24468
24638
  gap: 8px;
24469
24639
  }
24470
24640
 
24471
- .k-card-actions > .k-button {
24472
- padding-left: 8px;
24473
- padding-right: 8px;
24474
- max-width: 100%;
24475
- white-space: normal;
24476
- }
24477
-
24478
24641
  .k-card-actions-start {
24479
24642
  -ms-flex-pack: start;
24480
24643
  justify-content: flex-start;
@@ -24500,44 +24663,11 @@ kendo-card-footer {
24500
24663
  flex-flow: column nowrap;
24501
24664
  }
24502
24665
 
24503
- .k-card-actions-stretched {
24504
- padding: 0;
24505
- gap: 0;
24506
- }
24507
-
24508
- .k-card-actions-stretched > .k-button,
24509
- .k-card-actions-stretched > .k-card-action {
24666
+ .k-card-actions-stretched > * {
24510
24667
  -ms-flex: 1 1 auto;
24511
24668
  flex: 1 1 auto;
24512
24669
  }
24513
24670
 
24514
- .k-card-actions-stretched .k-button {
24515
- border-radius: 0;
24516
- padding-top: 16px;
24517
- padding-bottom: 16px;
24518
- }
24519
-
24520
- .k-card .k-card-actions-stretched {
24521
- border-top-width: 1px;
24522
- }
24523
-
24524
- .k-card-horizontal > .k-card-actions-stretched {
24525
- border-top-width: 0;
24526
- border-inline-start-width: 1px;
24527
- }
24528
-
24529
- .k-card-vertical > .k-card-actions-stretched {
24530
- border-top-width: 1px;
24531
- }
24532
-
24533
- .k-card-actions-stretched.k-card-actions-horizontal > .k-card-action + .k-card-action {
24534
- border-inline-start-width: 1px;
24535
- }
24536
-
24537
- .k-card-actions-stretched.k-card-actions-vertical > .k-card-action + .k-card-action {
24538
- border-top-width: 1px;
24539
- }
24540
-
24541
24671
  .k-card-action {
24542
24672
  border-width: 0;
24543
24673
  border-style: solid;
@@ -24667,6 +24797,7 @@ kendo-card-footer {
24667
24797
  height: 20px;
24668
24798
  border-width: 0px 0px 0 0;
24669
24799
  border-style: solid;
24800
+ box-sizing: border-box;
24670
24801
  position: absolute;
24671
24802
  }
24672
24803
 
@@ -24706,20 +24837,6 @@ kendo-card-footer {
24706
24837
  box-shadow: none;
24707
24838
  }
24708
24839
 
24709
- .k-rtl .k-card-actions-stretched .k-card-action + .k-card-action,
24710
- [dir="rtl"] .k-card-actions-stretched .k-card-action + .k-card-action {
24711
- border-right-width: 1px;
24712
- border-left-width: 0;
24713
- }
24714
-
24715
- .k-rtl .k-card-horizontal > .k-card-actions-stretched,
24716
- .k-rtl .k-card-horizontal .k-card-actions-vertical,
24717
- [dir="rtl"] .k-card-horizontal > .k-card-actions-stretched,
24718
- [dir="rtl"] .k-card-horizontal .k-card-actions-vertical {
24719
- border-right-width: 1px;
24720
- border-left-width: 0;
24721
- }
24722
-
24723
24840
  .k-ie11 .k-card-body {
24724
24841
  -ms-flex: 1 1 auto;
24725
24842
  flex: 1 1 auto;
@@ -24748,7 +24865,8 @@ kendo-card-footer {
24748
24865
  border-color: rgba(0, 0, 0, 0.12);
24749
24866
  }
24750
24867
 
24751
- .k-card-separator {
24868
+ .k-card-separator,
24869
+ .k-card .k-separator {
24752
24870
  border-color: rgba(0, 0, 0, 0.12);
24753
24871
  }
24754
24872
 
@@ -30677,10 +30795,6 @@ thead.k-grid-header > tr:not(:only-child) > th {
30677
30795
  padding: 0;
30678
30796
  }
30679
30797
 
30680
- .k-spreadsheet-popup .k-separator {
30681
- display: block;
30682
- }
30683
-
30684
30798
  .k-spreadsheet-popup .k-button {
30685
30799
  border-radius: 0;
30686
30800
  border-width: 0;
@@ -30999,10 +31113,6 @@ thead.k-grid-header > tr:not(:only-child) > th {
30999
31113
  margin: 1em -24px -8px;
31000
31114
  }
31001
31115
 
31002
- .k-spreadsheet-popup .k-separator {
31003
- margin: 0;
31004
- }
31005
-
31006
31116
  .k-spreadsheet {
31007
31117
  border-color: rgba(0, 0, 0, 0.12);
31008
31118
  color: rgba(0, 0, 0, 0.87);
@@ -31661,6 +31771,19 @@ thead.k-grid-header > tr:not(:only-child) > th {
31661
31771
  border-bottom-width: 0;
31662
31772
  }
31663
31773
 
31774
+ .k-pdf-export-shadow .k-pivotgrid {
31775
+ height: auto !important;
31776
+ }
31777
+
31778
+ .k-pdf-export-shadow .k-pivotgrid-values {
31779
+ height: auto;
31780
+ overflow: visible;
31781
+ }
31782
+
31783
+ .k-pdf-export-shadow .k-pivotgrid-column-headers .k-pivotgrid-table {
31784
+ padding-inline-end: 0;
31785
+ }
31786
+
31664
31787
  .k-pivot {
31665
31788
  border-width: 1px;
31666
31789
  border-style: solid;
@@ -33198,6 +33321,99 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
33198
33321
  overflow: auto;
33199
33322
  }
33200
33323
 
33324
+ .k-editor-resize-handles-wrapper {
33325
+ position: absolute;
33326
+ visibility: hidden;
33327
+ }
33328
+
33329
+ .k-editor-resize-handle {
33330
+ width: 5px;
33331
+ height: 5px;
33332
+ border-width: 1px;
33333
+ border-style: solid;
33334
+ position: absolute;
33335
+ visibility: visible;
33336
+ z-index: 100;
33337
+ }
33338
+
33339
+ .k-editor-resize-handle.northwest {
33340
+ top: 0;
33341
+ left: 0;
33342
+ -ms-transform: translate(-50%, -50%);
33343
+ transform: translate(-50%, -50%);
33344
+ cursor: nw-resize;
33345
+ }
33346
+
33347
+ .k-editor-resize-handle.north {
33348
+ top: 0;
33349
+ left: 50%;
33350
+ -ms-transform: translate(-50%, -50%);
33351
+ transform: translate(-50%, -50%);
33352
+ cursor: n-resize;
33353
+ }
33354
+
33355
+ .k-editor-resize-handle.northeast {
33356
+ top: 0;
33357
+ right: 0;
33358
+ -ms-transform: translate(50%, -50%);
33359
+ transform: translate(50%, -50%);
33360
+ cursor: ne-resize;
33361
+ }
33362
+
33363
+ .k-editor-resize-handle.southwest {
33364
+ left: 0;
33365
+ bottom: 0;
33366
+ -ms-transform: translate(-50%, 50%);
33367
+ transform: translate(-50%, 50%);
33368
+ cursor: sw-resize;
33369
+ }
33370
+
33371
+ .k-editor-resize-handle.south {
33372
+ bottom: 0;
33373
+ left: 50%;
33374
+ -ms-transform: translate(-50%, 50%);
33375
+ transform: translate(-50%, 50%);
33376
+ cursor: s-resize;
33377
+ }
33378
+
33379
+ .k-editor-resize-handle.southeast {
33380
+ right: 0;
33381
+ bottom: 0;
33382
+ -ms-transform: translate(50%, 50%);
33383
+ transform: translate(50%, 50%);
33384
+ cursor: se-resize;
33385
+ }
33386
+
33387
+ .k-editor-resize-handle.west {
33388
+ top: 50%;
33389
+ left: 0;
33390
+ -ms-transform: translate(-50%, -50%);
33391
+ transform: translate(-50%, -50%);
33392
+ cursor: w-resize;
33393
+ }
33394
+
33395
+ .k-editor-resize-handle.east {
33396
+ top: 50%;
33397
+ right: 0;
33398
+ -ms-transform: translate(50%, -50%);
33399
+ transform: translate(50%, -50%);
33400
+ cursor: e-resize;
33401
+ }
33402
+
33403
+ .ProseMirror-selectednode {
33404
+ outline-width: 2px;
33405
+ outline-style: solid;
33406
+ }
33407
+
33408
+ .ProseMirror-hideselection {
33409
+ caret-color: transparent;
33410
+ }
33411
+
33412
+ .ProseMirror-hideselection *::selection,
33413
+ .ProseMirror-hideselection *::-moz-selection {
33414
+ background: transparent;
33415
+ }
33416
+
33201
33417
  .k-editor > .k-toolbar {
33202
33418
  border-width: 0 0 0 0;
33203
33419
  -ms-flex-negative: 0;
@@ -33264,6 +33480,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
33264
33480
  padding: 16px;
33265
33481
  width: 100%;
33266
33482
  height: 100%;
33483
+ position: relative;
33267
33484
  box-sizing: border-box;
33268
33485
  outline: none;
33269
33486
  white-space: pre-wrap;
@@ -33886,6 +34103,15 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
33886
34103
  border-color: rgba(0, 0, 0, 0.12);
33887
34104
  }
33888
34105
 
34106
+ .k-editor-resize-handle {
34107
+ background-color: #ffffff;
34108
+ border-color: #000000;
34109
+ }
34110
+
34111
+ .ProseMirror-selectednode {
34112
+ outline-color: #8cf;
34113
+ }
34114
+
33889
34115
  .k-ct-popup .k-state-selected {
33890
34116
  border-color: rgba(0, 0, 0, 0.1);
33891
34117
  color: white;
@@ -37169,11 +37395,14 @@ ul.k-scheduler-views li {
37169
37395
  }
37170
37396
 
37171
37397
  .k-message-box {
37172
- padding: 10px 16px;
37398
+ width: 100%;
37399
+ height: auto;
37400
+ padding: 8px 0px;
37401
+ box-sizing: border-box;
37173
37402
  border-width: 1px 0 0;
37174
37403
  border-style: solid;
37175
- -ms-flex: 0 0 auto;
37176
- flex: 0 0 auto;
37404
+ -ms-flex: none;
37405
+ flex: none;
37177
37406
  display: -ms-flexbox;
37178
37407
  display: flex;
37179
37408
  -ms-flex-flow: row nowrap;
@@ -37182,6 +37411,11 @@ ul.k-scheduler-views li {
37182
37411
  align-items: center;
37183
37412
  }
37184
37413
 
37414
+ .k-message-box:focus, .k-message-box.k-state-focus, .k-message-box:focus-within {
37415
+ outline: 0;
37416
+ box-shadow: none;
37417
+ }
37418
+
37185
37419
  .k-message-box .k-input {
37186
37420
  padding: 0;
37187
37421
  }
@@ -37304,12 +37538,19 @@ ul.k-scheduler-views li {
37304
37538
 
37305
37539
  .k-chat-toolbar,
37306
37540
  .k-chat .k-toolbar-box {
37541
+ padding: 8px 8px;
37307
37542
  width: 100%;
37543
+ border-width: 1px 0 0;
37308
37544
  box-sizing: border-box;
37545
+ -ms-flex: none;
37546
+ flex: none;
37309
37547
  overflow: hidden;
37310
37548
  position: relative;
37311
- -ms-flex: 0 0 auto;
37312
- flex: 0 0 auto;
37549
+ }
37550
+
37551
+ .k-chat-toolbar::before,
37552
+ .k-chat .k-toolbar-box::before {
37553
+ display: none;
37313
37554
  }
37314
37555
 
37315
37556
  .k-chat-toolbar .k-button-list,
@@ -37320,20 +37561,15 @@ ul.k-scheduler-views li {
37320
37561
  flex-flow: row nowrap;
37321
37562
  overflow: hidden;
37322
37563
  scroll-behavior: smooth;
37323
- padding: 10px 16px;
37324
- }
37325
-
37326
- .k-chat-toolbar .k-button-list::after,
37327
- .k-chat .k-toolbar-box .k-button-list::after {
37328
- content: "";
37329
- padding-right: 16px;
37330
37564
  }
37331
37565
 
37332
- .k-chat-toolbar .k-button-list .k-button + .k-button,
37333
- .k-chat .k-toolbar-box .k-button-list .k-button + .k-button {
37334
- margin-left: 20px;
37335
- -ms-flex-negative: 0;
37336
- flex-shrink: 0;
37566
+ .k-chat-toolbar .k-button,
37567
+ .k-chat .k-toolbar-box .k-button {
37568
+ border-color: transparent;
37569
+ color: inherit;
37570
+ background: none;
37571
+ -ms-flex: none;
37572
+ flex: none;
37337
37573
  }
37338
37574
 
37339
37575
  .k-chat-toolbar .k-scroll-button,
@@ -37355,15 +37591,6 @@ ul.k-scheduler-views li {
37355
37591
  right: 0;
37356
37592
  }
37357
37593
 
37358
- .k-chat-toolbar .k-button,
37359
- .k-chat .k-toolbar-box .k-button {
37360
- border-width: 0;
37361
- color: inherit;
37362
- background: none;
37363
- -ms-flex-negative: 0;
37364
- flex-shrink: 0;
37365
- }
37366
-
37367
37594
  .k-rtl .k-message-group:not(.k-alt),
37368
37595
  [dir="rtl"] .k-message-group:not(.k-alt) {
37369
37596
  text-align: right;