@progress/kendo-theme-bootstrap 4.42.0 → 4.42.1-dev.3

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 (49) hide show
  1. package/dist/all.css +481 -254
  2. package/dist/all.scss +229 -285
  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/modules/bootstrap/package.json +31 -29
  31. package/modules/bootstrap/scss/_functions.scss +8 -2
  32. package/modules/bootstrap/scss/_reboot.scss +1 -1
  33. package/modules/bootstrap/scss/_root.scss +2 -1
  34. package/modules/bootstrap/scss/_tables.scss +8 -4
  35. package/modules/bootstrap/scss/_variables.scss +25 -13
  36. package/modules/bootstrap/scss/bootstrap-grid.scss +3 -1
  37. package/modules/bootstrap/scss/bootstrap-reboot.scss +2 -4
  38. package/modules/bootstrap/scss/bootstrap-utilities.scss +1 -1
  39. package/modules/bootstrap/scss/bootstrap.scss +1 -1
  40. package/modules/bootstrap/scss/forms/_form-select.scss +2 -0
  41. package/modules/bootstrap/scss/mixins/_grid.scss +4 -3
  42. package/modules/bootstrap/scss/mixins/_visually-hidden.scss +1 -1
  43. package/package.json +3 -3
  44. package/scss/chat/_variables.scss +5 -5
  45. package/scss/editor/_variables.scss +8 -0
  46. package/scss/slider/_theme.scss +0 -13
  47. package/scss/switch/_layout.scss +11 -0
  48. package/scss/switch/_theme.scss +1 -7
  49. package/scss/utils/_border.scss +10 -0
package/dist/all.css CHANGED
@@ -1709,282 +1709,562 @@ hr.k-separator {
1709
1709
  }
1710
1710
 
1711
1711
  .k-rounded {
1712
+ border-radius: 0.25rem;
1713
+ }
1714
+
1715
+ .\!k-rounded {
1712
1716
  border-radius: 0.25rem !important;
1713
1717
  }
1714
1718
 
1715
1719
  .k-rounded-0 {
1720
+ border-radius: 0;
1721
+ }
1722
+
1723
+ .\!k-rounded-0 {
1716
1724
  border-radius: 0 !important;
1717
1725
  }
1718
1726
 
1719
1727
  .k-rounded-sm {
1720
- border-radius: 0.0625rem !important;
1728
+ border-radius: 0.2rem;
1729
+ }
1730
+
1731
+ .\!k-rounded-sm {
1732
+ border-radius: 0.2rem !important;
1721
1733
  }
1722
1734
 
1723
1735
  .k-rounded-md {
1724
- border-radius: 0.125rem !important;
1736
+ border-radius: 0.25rem;
1725
1737
  }
1726
1738
 
1727
- .k-rounded-lg {
1739
+ .\!k-rounded-md {
1728
1740
  border-radius: 0.25rem !important;
1729
1741
  }
1730
1742
 
1743
+ .k-rounded-lg {
1744
+ border-radius: 0.3rem;
1745
+ }
1746
+
1747
+ .\!k-rounded-lg {
1748
+ border-radius: 0.3rem !important;
1749
+ }
1750
+
1731
1751
  .k-rounded-circle {
1752
+ border-radius: 50%;
1753
+ }
1754
+
1755
+ .\!k-rounded-circle {
1732
1756
  border-radius: 50% !important;
1733
1757
  }
1734
1758
 
1735
1759
  .k-rounded-pill {
1760
+ border-radius: 9999px;
1761
+ }
1762
+
1763
+ .\!k-rounded-pill {
1736
1764
  border-radius: 9999px !important;
1737
1765
  }
1738
1766
 
1739
1767
  .k-rounded-top {
1768
+ border-top-left-radius: 0.25rem;
1769
+ border-top-right-radius: 0.25rem;
1770
+ }
1771
+
1772
+ .\!k-rounded-top {
1740
1773
  border-top-left-radius: 0.25rem !important;
1741
1774
  border-top-right-radius: 0.25rem !important;
1742
1775
  }
1743
1776
 
1744
1777
  .k-rounded-top-0 {
1778
+ border-top-left-radius: 0;
1779
+ border-top-right-radius: 0;
1780
+ }
1781
+
1782
+ .\!k-rounded-top-0 {
1745
1783
  border-top-left-radius: 0 !important;
1746
1784
  border-top-right-radius: 0 !important;
1747
1785
  }
1748
1786
 
1749
1787
  .k-rounded-top-sm {
1750
- border-top-left-radius: 0.0625rem !important;
1751
- border-top-right-radius: 0.0625rem !important;
1788
+ border-top-left-radius: 0.2rem;
1789
+ border-top-right-radius: 0.2rem;
1790
+ }
1791
+
1792
+ .\!k-rounded-top-sm {
1793
+ border-top-left-radius: 0.2rem !important;
1794
+ border-top-right-radius: 0.2rem !important;
1752
1795
  }
1753
1796
 
1754
1797
  .k-rounded-top-md {
1755
- border-top-left-radius: 0.125rem !important;
1756
- border-top-right-radius: 0.125rem !important;
1798
+ border-top-left-radius: 0.25rem;
1799
+ border-top-right-radius: 0.25rem;
1757
1800
  }
1758
1801
 
1759
- .k-rounded-top-lg {
1802
+ .\!k-rounded-top-md {
1760
1803
  border-top-left-radius: 0.25rem !important;
1761
1804
  border-top-right-radius: 0.25rem !important;
1762
1805
  }
1763
1806
 
1807
+ .k-rounded-top-lg {
1808
+ border-top-left-radius: 0.3rem;
1809
+ border-top-right-radius: 0.3rem;
1810
+ }
1811
+
1812
+ .\!k-rounded-top-lg {
1813
+ border-top-left-radius: 0.3rem !important;
1814
+ border-top-right-radius: 0.3rem !important;
1815
+ }
1816
+
1764
1817
  .k-rounded-top-circle {
1818
+ border-top-left-radius: 50%;
1819
+ border-top-right-radius: 50%;
1820
+ }
1821
+
1822
+ .\!k-rounded-top-circle {
1765
1823
  border-top-left-radius: 50% !important;
1766
1824
  border-top-right-radius: 50% !important;
1767
1825
  }
1768
1826
 
1769
1827
  .k-rounded-top-pill {
1828
+ border-top-left-radius: 9999px;
1829
+ border-top-right-radius: 9999px;
1830
+ }
1831
+
1832
+ .\!k-rounded-top-pill {
1770
1833
  border-top-left-radius: 9999px !important;
1771
1834
  border-top-right-radius: 9999px !important;
1772
1835
  }
1773
1836
 
1774
1837
  .k-rounded-right {
1838
+ border-top-right-radius: 0.25rem;
1839
+ border-bottom-right-radius: 0.25rem;
1840
+ }
1841
+
1842
+ .\!k-rounded-right {
1775
1843
  border-top-right-radius: 0.25rem !important;
1776
1844
  border-bottom-right-radius: 0.25rem !important;
1777
1845
  }
1778
1846
 
1779
1847
  .k-rounded-right-0 {
1848
+ border-top-right-radius: 0;
1849
+ border-bottom-right-radius: 0;
1850
+ }
1851
+
1852
+ .\!k-rounded-right-0 {
1780
1853
  border-top-right-radius: 0 !important;
1781
1854
  border-bottom-right-radius: 0 !important;
1782
1855
  }
1783
1856
 
1784
1857
  .k-rounded-right-sm {
1785
- border-top-right-radius: 0.0625rem !important;
1786
- border-bottom-right-radius: 0.0625rem !important;
1858
+ border-top-right-radius: 0.2rem;
1859
+ border-bottom-right-radius: 0.2rem;
1860
+ }
1861
+
1862
+ .\!k-rounded-right-sm {
1863
+ border-top-right-radius: 0.2rem !important;
1864
+ border-bottom-right-radius: 0.2rem !important;
1787
1865
  }
1788
1866
 
1789
1867
  .k-rounded-right-md {
1790
- border-top-right-radius: 0.125rem !important;
1791
- border-bottom-right-radius: 0.125rem !important;
1868
+ border-top-right-radius: 0.25rem;
1869
+ border-bottom-right-radius: 0.25rem;
1792
1870
  }
1793
1871
 
1794
- .k-rounded-right-lg {
1872
+ .\!k-rounded-right-md {
1795
1873
  border-top-right-radius: 0.25rem !important;
1796
1874
  border-bottom-right-radius: 0.25rem !important;
1797
1875
  }
1798
1876
 
1877
+ .k-rounded-right-lg {
1878
+ border-top-right-radius: 0.3rem;
1879
+ border-bottom-right-radius: 0.3rem;
1880
+ }
1881
+
1882
+ .\!k-rounded-right-lg {
1883
+ border-top-right-radius: 0.3rem !important;
1884
+ border-bottom-right-radius: 0.3rem !important;
1885
+ }
1886
+
1799
1887
  .k-rounded-right-circle {
1888
+ border-top-right-radius: 50%;
1889
+ border-bottom-right-radius: 50%;
1890
+ }
1891
+
1892
+ .\!k-rounded-right-circle {
1800
1893
  border-top-right-radius: 50% !important;
1801
1894
  border-bottom-right-radius: 50% !important;
1802
1895
  }
1803
1896
 
1804
1897
  .k-rounded-right-pill {
1898
+ border-top-right-radius: 9999px;
1899
+ border-bottom-right-radius: 9999px;
1900
+ }
1901
+
1902
+ .\!k-rounded-right-pill {
1805
1903
  border-top-right-radius: 9999px !important;
1806
1904
  border-bottom-right-radius: 9999px !important;
1807
1905
  }
1808
1906
 
1809
1907
  .k-rounded-bottom {
1908
+ border-bottom-left-radius: 0.25rem;
1909
+ border-bottom-right-radius: 0.25rem;
1910
+ }
1911
+
1912
+ .\!k-rounded-bottom {
1810
1913
  border-bottom-left-radius: 0.25rem !important;
1811
1914
  border-bottom-right-radius: 0.25rem !important;
1812
1915
  }
1813
1916
 
1814
1917
  .k-rounded-bottom-0 {
1918
+ border-bottom-left-radius: 0;
1919
+ border-bottom-right-radius: 0;
1920
+ }
1921
+
1922
+ .\!k-rounded-bottom-0 {
1815
1923
  border-bottom-left-radius: 0 !important;
1816
1924
  border-bottom-right-radius: 0 !important;
1817
1925
  }
1818
1926
 
1819
1927
  .k-rounded-bottom-sm {
1820
- border-bottom-left-radius: 0.0625rem !important;
1821
- border-bottom-right-radius: 0.0625rem !important;
1928
+ border-bottom-left-radius: 0.2rem;
1929
+ border-bottom-right-radius: 0.2rem;
1930
+ }
1931
+
1932
+ .\!k-rounded-bottom-sm {
1933
+ border-bottom-left-radius: 0.2rem !important;
1934
+ border-bottom-right-radius: 0.2rem !important;
1822
1935
  }
1823
1936
 
1824
1937
  .k-rounded-bottom-md {
1825
- border-bottom-left-radius: 0.125rem !important;
1826
- border-bottom-right-radius: 0.125rem !important;
1938
+ border-bottom-left-radius: 0.25rem;
1939
+ border-bottom-right-radius: 0.25rem;
1827
1940
  }
1828
1941
 
1829
- .k-rounded-bottom-lg {
1942
+ .\!k-rounded-bottom-md {
1830
1943
  border-bottom-left-radius: 0.25rem !important;
1831
1944
  border-bottom-right-radius: 0.25rem !important;
1832
1945
  }
1833
1946
 
1947
+ .k-rounded-bottom-lg {
1948
+ border-bottom-left-radius: 0.3rem;
1949
+ border-bottom-right-radius: 0.3rem;
1950
+ }
1951
+
1952
+ .\!k-rounded-bottom-lg {
1953
+ border-bottom-left-radius: 0.3rem !important;
1954
+ border-bottom-right-radius: 0.3rem !important;
1955
+ }
1956
+
1834
1957
  .k-rounded-bottom-circle {
1958
+ border-bottom-left-radius: 50%;
1959
+ border-bottom-right-radius: 50%;
1960
+ }
1961
+
1962
+ .\!k-rounded-bottom-circle {
1835
1963
  border-bottom-left-radius: 50% !important;
1836
1964
  border-bottom-right-radius: 50% !important;
1837
1965
  }
1838
1966
 
1839
1967
  .k-rounded-bottom-pill {
1968
+ border-bottom-left-radius: 9999px;
1969
+ border-bottom-right-radius: 9999px;
1970
+ }
1971
+
1972
+ .\!k-rounded-bottom-pill {
1840
1973
  border-bottom-left-radius: 9999px !important;
1841
1974
  border-bottom-right-radius: 9999px !important;
1842
1975
  }
1843
1976
 
1844
1977
  .k-rounded-left {
1978
+ border-bottom-left-radius: 0.25rem;
1979
+ border-top-left-radius: 0.25rem;
1980
+ }
1981
+
1982
+ .\!k-rounded-left {
1845
1983
  border-bottom-left-radius: 0.25rem !important;
1846
1984
  border-top-left-radius: 0.25rem !important;
1847
1985
  }
1848
1986
 
1849
1987
  .k-rounded-left-0 {
1988
+ border-bottom-left-radius: 0;
1989
+ border-top-left-radius: 0;
1990
+ }
1991
+
1992
+ .\!k-rounded-left-0 {
1850
1993
  border-bottom-left-radius: 0 !important;
1851
1994
  border-top-left-radius: 0 !important;
1852
1995
  }
1853
1996
 
1854
1997
  .k-rounded-left-sm {
1855
- border-bottom-left-radius: 0.0625rem !important;
1856
- border-top-left-radius: 0.0625rem !important;
1998
+ border-bottom-left-radius: 0.2rem;
1999
+ border-top-left-radius: 0.2rem;
2000
+ }
2001
+
2002
+ .\!k-rounded-left-sm {
2003
+ border-bottom-left-radius: 0.2rem !important;
2004
+ border-top-left-radius: 0.2rem !important;
1857
2005
  }
1858
2006
 
1859
2007
  .k-rounded-left-md {
1860
- border-bottom-left-radius: 0.125rem !important;
1861
- border-top-left-radius: 0.125rem !important;
2008
+ border-bottom-left-radius: 0.25rem;
2009
+ border-top-left-radius: 0.25rem;
1862
2010
  }
1863
2011
 
1864
- .k-rounded-left-lg {
2012
+ .\!k-rounded-left-md {
1865
2013
  border-bottom-left-radius: 0.25rem !important;
1866
2014
  border-top-left-radius: 0.25rem !important;
1867
2015
  }
1868
2016
 
2017
+ .k-rounded-left-lg {
2018
+ border-bottom-left-radius: 0.3rem;
2019
+ border-top-left-radius: 0.3rem;
2020
+ }
2021
+
2022
+ .\!k-rounded-left-lg {
2023
+ border-bottom-left-radius: 0.3rem !important;
2024
+ border-top-left-radius: 0.3rem !important;
2025
+ }
2026
+
1869
2027
  .k-rounded-left-circle {
2028
+ border-bottom-left-radius: 50%;
2029
+ border-top-left-radius: 50%;
2030
+ }
2031
+
2032
+ .\!k-rounded-left-circle {
1870
2033
  border-bottom-left-radius: 50% !important;
1871
2034
  border-top-left-radius: 50% !important;
1872
2035
  }
1873
2036
 
1874
2037
  .k-rounded-left-pill {
2038
+ border-bottom-left-radius: 9999px;
2039
+ border-top-left-radius: 9999px;
2040
+ }
2041
+
2042
+ .\!k-rounded-left-pill {
1875
2043
  border-bottom-left-radius: 9999px !important;
1876
2044
  border-top-left-radius: 9999px !important;
1877
2045
  }
1878
2046
 
1879
2047
  .k-rounded-top-left {
2048
+ border-top-left-radius: 0.25rem;
2049
+ }
2050
+
2051
+ .\!k-rounded-top-left {
1880
2052
  border-top-left-radius: 0.25rem !important;
1881
2053
  }
1882
2054
 
1883
2055
  .k-rounded-top-left-0 {
2056
+ border-top-left-radius: 0;
2057
+ }
2058
+
2059
+ .\!k-rounded-top-left-0 {
1884
2060
  border-top-left-radius: 0 !important;
1885
2061
  }
1886
2062
 
1887
2063
  .k-rounded-top-left-sm {
1888
- border-top-left-radius: 0.0625rem !important;
2064
+ border-top-left-radius: 0.2rem;
2065
+ }
2066
+
2067
+ .\!k-rounded-top-left-sm {
2068
+ border-top-left-radius: 0.2rem !important;
1889
2069
  }
1890
2070
 
1891
2071
  .k-rounded-top-left-md {
1892
- border-top-left-radius: 0.125rem !important;
2072
+ border-top-left-radius: 0.25rem;
1893
2073
  }
1894
2074
 
1895
- .k-rounded-top-left-lg {
2075
+ .\!k-rounded-top-left-md {
1896
2076
  border-top-left-radius: 0.25rem !important;
1897
2077
  }
1898
2078
 
2079
+ .k-rounded-top-left-lg {
2080
+ border-top-left-radius: 0.3rem;
2081
+ }
2082
+
2083
+ .\!k-rounded-top-left-lg {
2084
+ border-top-left-radius: 0.3rem !important;
2085
+ }
2086
+
1899
2087
  .k-rounded-top-left-circle {
2088
+ border-top-left-radius: 50%;
2089
+ }
2090
+
2091
+ .\!k-rounded-top-left-circle {
1900
2092
  border-top-left-radius: 50% !important;
1901
2093
  }
1902
2094
 
1903
2095
  .k-rounded-top-left-pill {
2096
+ border-top-left-radius: 9999px;
2097
+ }
2098
+
2099
+ .\!k-rounded-top-left-pill {
1904
2100
  border-top-left-radius: 9999px !important;
1905
2101
  }
1906
2102
 
1907
2103
  .k-rounded-top-right {
2104
+ border-top-right-radius: 0.25rem;
2105
+ }
2106
+
2107
+ .\!k-rounded-top-right {
1908
2108
  border-top-right-radius: 0.25rem !important;
1909
2109
  }
1910
2110
 
1911
2111
  .k-rounded-top-right-0 {
2112
+ border-top-right-radius: 0;
2113
+ }
2114
+
2115
+ .\!k-rounded-top-right-0 {
1912
2116
  border-top-right-radius: 0 !important;
1913
2117
  }
1914
2118
 
1915
2119
  .k-rounded-top-right-sm {
1916
- border-top-right-radius: 0.0625rem !important;
2120
+ border-top-right-radius: 0.2rem;
2121
+ }
2122
+
2123
+ .\!k-rounded-top-right-sm {
2124
+ border-top-right-radius: 0.2rem !important;
1917
2125
  }
1918
2126
 
1919
2127
  .k-rounded-top-right-md {
1920
- border-top-right-radius: 0.125rem !important;
2128
+ border-top-right-radius: 0.25rem;
1921
2129
  }
1922
2130
 
1923
- .k-rounded-top-right-lg {
2131
+ .\!k-rounded-top-right-md {
1924
2132
  border-top-right-radius: 0.25rem !important;
1925
2133
  }
1926
2134
 
2135
+ .k-rounded-top-right-lg {
2136
+ border-top-right-radius: 0.3rem;
2137
+ }
2138
+
2139
+ .\!k-rounded-top-right-lg {
2140
+ border-top-right-radius: 0.3rem !important;
2141
+ }
2142
+
1927
2143
  .k-rounded-top-right-circle {
2144
+ border-top-right-radius: 50%;
2145
+ }
2146
+
2147
+ .\!k-rounded-top-right-circle {
1928
2148
  border-top-right-radius: 50% !important;
1929
2149
  }
1930
2150
 
1931
2151
  .k-rounded-top-right-pill {
2152
+ border-top-right-radius: 9999px;
2153
+ }
2154
+
2155
+ .\!k-rounded-top-right-pill {
1932
2156
  border-top-right-radius: 9999px !important;
1933
2157
  }
1934
2158
 
1935
2159
  .k-rounded-bottom-left {
2160
+ border-bottom-left-radius: 0.25rem;
2161
+ }
2162
+
2163
+ .\!k-rounded-bottom-left {
1936
2164
  border-bottom-left-radius: 0.25rem !important;
1937
2165
  }
1938
2166
 
1939
2167
  .k-rounded-bottom-left-0 {
2168
+ border-bottom-left-radius: 0;
2169
+ }
2170
+
2171
+ .\!k-rounded-bottom-left-0 {
1940
2172
  border-bottom-left-radius: 0 !important;
1941
2173
  }
1942
2174
 
1943
2175
  .k-rounded-bottom-left-sm {
1944
- border-bottom-left-radius: 0.0625rem !important;
2176
+ border-bottom-left-radius: 0.2rem;
2177
+ }
2178
+
2179
+ .\!k-rounded-bottom-left-sm {
2180
+ border-bottom-left-radius: 0.2rem !important;
1945
2181
  }
1946
2182
 
1947
2183
  .k-rounded-bottom-left-md {
1948
- border-bottom-left-radius: 0.125rem !important;
2184
+ border-bottom-left-radius: 0.25rem;
1949
2185
  }
1950
2186
 
1951
- .k-rounded-bottom-left-lg {
2187
+ .\!k-rounded-bottom-left-md {
1952
2188
  border-bottom-left-radius: 0.25rem !important;
1953
2189
  }
1954
2190
 
2191
+ .k-rounded-bottom-left-lg {
2192
+ border-bottom-left-radius: 0.3rem;
2193
+ }
2194
+
2195
+ .\!k-rounded-bottom-left-lg {
2196
+ border-bottom-left-radius: 0.3rem !important;
2197
+ }
2198
+
1955
2199
  .k-rounded-bottom-left-circle {
2200
+ border-bottom-left-radius: 50%;
2201
+ }
2202
+
2203
+ .\!k-rounded-bottom-left-circle {
1956
2204
  border-bottom-left-radius: 50% !important;
1957
2205
  }
1958
2206
 
1959
2207
  .k-rounded-bottom-left-pill {
2208
+ border-bottom-left-radius: 9999px;
2209
+ }
2210
+
2211
+ .\!k-rounded-bottom-left-pill {
1960
2212
  border-bottom-left-radius: 9999px !important;
1961
2213
  }
1962
2214
 
1963
2215
  .k-rounded-bottom-right {
2216
+ border-bottom-right-radius: 0.25rem;
2217
+ }
2218
+
2219
+ .\!k-rounded-bottom-right {
1964
2220
  border-bottom-right-radius: 0.25rem !important;
1965
2221
  }
1966
2222
 
1967
2223
  .k-rounded-bottom-right-0 {
2224
+ border-bottom-right-radius: 0;
2225
+ }
2226
+
2227
+ .\!k-rounded-bottom-right-0 {
1968
2228
  border-bottom-right-radius: 0 !important;
1969
2229
  }
1970
2230
 
1971
2231
  .k-rounded-bottom-right-sm {
1972
- border-bottom-right-radius: 0.0625rem !important;
2232
+ border-bottom-right-radius: 0.2rem;
2233
+ }
2234
+
2235
+ .\!k-rounded-bottom-right-sm {
2236
+ border-bottom-right-radius: 0.2rem !important;
1973
2237
  }
1974
2238
 
1975
2239
  .k-rounded-bottom-right-md {
1976
- border-bottom-right-radius: 0.125rem !important;
2240
+ border-bottom-right-radius: 0.25rem;
1977
2241
  }
1978
2242
 
1979
- .k-rounded-bottom-right-lg {
2243
+ .\!k-rounded-bottom-right-md {
1980
2244
  border-bottom-right-radius: 0.25rem !important;
1981
2245
  }
1982
2246
 
2247
+ .k-rounded-bottom-right-lg {
2248
+ border-bottom-right-radius: 0.3rem;
2249
+ }
2250
+
2251
+ .\!k-rounded-bottom-right-lg {
2252
+ border-bottom-right-radius: 0.3rem !important;
2253
+ }
2254
+
1983
2255
  .k-rounded-bottom-right-circle {
2256
+ border-bottom-right-radius: 50%;
2257
+ }
2258
+
2259
+ .\!k-rounded-bottom-right-circle {
1984
2260
  border-bottom-right-radius: 50% !important;
1985
2261
  }
1986
2262
 
1987
2263
  .k-rounded-bottom-right-pill {
2264
+ border-bottom-right-radius: 9999px;
2265
+ }
2266
+
2267
+ .\!k-rounded-bottom-right-pill {
1988
2268
  border-bottom-right-radius: 9999px !important;
1989
2269
  }
1990
2270
 
@@ -11326,6 +11606,7 @@ kendo-badge-container {
11326
11606
  font-size: 16px;
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);
@@ -12458,7 +12741,9 @@ kendo-badge-container {
12458
12741
  border-style: solid;
12459
12742
  }
12460
12743
 
12461
- .k-input-icon {
12744
+ .k-input-icon,
12745
+ .k-input-validation-icon,
12746
+ .k-input-loading-icon {
12462
12747
  width: calc(16px + 0.75rem);
12463
12748
  height: 2.25rem;
12464
12749
  display: -ms-inline-flexbox;
@@ -12473,19 +12758,6 @@ kendo-badge-container {
12473
12758
  flex-shrink: 0;
12474
12759
  }
12475
12760
 
12476
- .k-ie9 .k-input-icon {
12477
- position: absolute;
12478
- height: 100%;
12479
- right: 0;
12480
- top: 0;
12481
- }
12482
-
12483
- .k-ie9 .k-rtl .k-input-icon, .k-ie9
12484
- [dir="rtl"] .k-input-icon {
12485
- left: 0;
12486
- right: auto;
12487
- }
12488
-
12489
12761
  .k-clear-value {
12490
12762
  width: calc(16px + 0.75rem);
12491
12763
  height: 2.25rem;
@@ -12865,10 +13137,6 @@ kendo-badge-container {
12865
13137
  border-width: 1px;
12866
13138
  }
12867
13139
 
12868
- .k-list-container .k-separator {
12869
- height: 0;
12870
- }
12871
-
12872
13140
  .k-virtual-content {
12873
13141
  overflow-y: scroll;
12874
13142
  -webkit-overflow-scrolling: touch;
@@ -13470,8 +13738,8 @@ kendo-label > .k-label {
13470
13738
  .k-form .k-maskedtextbox,
13471
13739
  .k-form .k-textbox-container,
13472
13740
  .k-form .k-floating-label-container {
13473
- display: -ms-flexbox;
13474
- display: flex;
13741
+ display: -ms-inline-flexbox;
13742
+ display: inline-flex;
13475
13743
  width: 100%;
13476
13744
  }
13477
13745
 
@@ -13533,6 +13801,7 @@ kendo-label > .k-label {
13533
13801
  margin-right: 10px;
13534
13802
  padding-top: 5px;
13535
13803
  width: 25%;
13804
+ text-align: end;
13536
13805
  -ms-flex-direction: column;
13537
13806
  flex-direction: column;
13538
13807
  -ms-flex-align: end;
@@ -14641,6 +14910,12 @@ kendo-label.k-radio-label > .k-label {
14641
14910
  display: block;
14642
14911
  }
14643
14912
 
14913
+ .k-switch.k-disabled,
14914
+ .k-switch.k-state-disabled {
14915
+ opacity: 1;
14916
+ filter: none;
14917
+ }
14918
+
14644
14919
  .k-switch:focus .k-switch-container, .k-switch.k-state-focused .k-switch-container {
14645
14920
  outline: none;
14646
14921
  }
@@ -14683,13 +14958,8 @@ kendo-label.k-radio-label > .k-label {
14683
14958
  color: transparent;
14684
14959
  }
14685
14960
 
14686
- .k-switch.k-state-disabled {
14687
- opacity: 1;
14688
- filter: none;
14689
- }
14690
-
14691
14961
  .k-switch-on.k-state-disabled .k-switch-container {
14692
- background-color: rgba(13, 110, 253, 0.5);
14962
+ background-color: #86b7fe;
14693
14963
  }
14694
14964
 
14695
14965
  .k-switch-on.k-state-disabled .k-switch-handle {
@@ -15776,6 +16046,7 @@ kendo-label.k-radio-label > .k-label {
15776
16046
  }
15777
16047
 
15778
16048
  .k-actions-horizontal {
16049
+ width: 100%;
15779
16050
  -ms-flex-flow: row nowrap;
15780
16051
  flex-flow: row nowrap;
15781
16052
  }
@@ -17670,10 +17941,6 @@ textarea.k-textarea {
17670
17941
  background-image: url(data:image/gif;base64,R0lGODlhtAABAIABALi4uAAAACH5BAEAAAEALAAAAAC0AAEAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7);
17671
17942
  }
17672
17943
 
17673
- .k-slider .k-button:active, .k-slider .k-button.k-state-active {
17674
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
17675
- }
17676
-
17677
17944
  .k-captcha {
17678
17945
  width: 335px;
17679
17946
  box-sizing: border-box;
@@ -17764,18 +18031,6 @@ textarea.k-textarea {
17764
18031
  height: 2.25rem;
17765
18032
  }
17766
18033
 
17767
- .k-autocomplete .k-clear-value {
17768
- visibility: hidden;
17769
- }
17770
-
17771
- .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 {
17772
- visibility: visible;
17773
- }
17774
-
17775
- .k-autocomplete:focus-within .k-clear-value {
17776
- visibility: visible;
17777
- }
17778
-
17779
18034
  .k-autocomplete.k-header,
17780
18035
  .k-autocomplete {
17781
18036
  border-color: #ced4da;
@@ -18021,23 +18276,10 @@ textarea.k-textarea {
18021
18276
  top: -1px;
18022
18277
  }
18023
18278
 
18024
- .k-numerictextbox .k-i-warning {
18025
- -ms-flex-item-align: center;
18026
- align-self: center;
18027
- margin-right: 0.5rem;
18028
- }
18029
-
18030
18279
  .k-rtl .k-numerictextbox, .k-numerictextbox[dir="rtl"] {
18031
18280
  text-align: right;
18032
18281
  }
18033
18282
 
18034
- .k-rtl .k-numerictextbox .k-numeric-wrap .k-i-warning, .k-numerictextbox[dir="rtl"] .k-numeric-wrap .k-i-warning {
18035
- -ms-flex-item-align: center;
18036
- align-self: center;
18037
- margin-right: 0;
18038
- margin-left: 0.5rem;
18039
- }
18040
-
18041
18283
  .k-rtl .k-numerictextbox .k-select, .k-numerictextbox[dir="rtl"] .k-select {
18042
18284
  border-radius: 0.25rem 0 0 0.25rem;
18043
18285
  border-width: 0 1px 0 0;
@@ -18619,20 +18861,6 @@ textarea.k-textarea {
18619
18861
  cursor: initial;
18620
18862
  }
18621
18863
 
18622
- .k-combobox .k-clear-value {
18623
- visibility: hidden;
18624
- }
18625
-
18626
- .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,
18627
- .k-combobox .k-dropdown-wrap.k-state-hover .k-clear-value,
18628
- .k-combobox .k-dropdown-wrap.k-state-focused .k-clear-value {
18629
- visibility: visible;
18630
- }
18631
-
18632
- .k-combobox:focus-within .k-clear-value {
18633
- visibility: visible;
18634
- }
18635
-
18636
18864
  .k-combobox .k-select {
18637
18865
  border-radius: 0 0.25rem 0.25rem 0;
18638
18866
  padding: 0.375rem 0.375rem;
@@ -19432,24 +19660,10 @@ textarea.k-textarea {
19432
19660
  top: -1px;
19433
19661
  }
19434
19662
 
19435
- .k-dateinput .k-i-warning {
19436
- position: absolute;
19437
- right: 1rem;
19438
- top: 50%;
19439
- -ms-transform: translateY(-50%);
19440
- transform: translateY(-50%);
19441
- overflow: visible;
19442
- }
19443
-
19444
19663
  .k-rtl .k-dateinput, .k-dateinput[dir="rtl"] {
19445
19664
  text-align: right;
19446
19665
  }
19447
19666
 
19448
- .k-rtl .k-dateinput .k-dateinput-wrap .k-i-warning, .k-dateinput[dir="rtl"] .k-dateinput-wrap .k-i-warning {
19449
- left: 1rem;
19450
- right: auto;
19451
- }
19452
-
19453
19667
  .k-rtl .k-dateinput .k-select, .k-dateinput[dir="rtl"] .k-select {
19454
19668
  border-radius: 0.25rem 0 0 0.25rem;
19455
19669
  border-width: 0 1px 0 0;
@@ -19530,16 +19744,6 @@ textarea.k-textarea {
19530
19744
  cursor: pointer;
19531
19745
  }
19532
19746
 
19533
- .k-datepicker .k-i-warning,
19534
- .k-timepicker .k-i-warning {
19535
- position: absolute;
19536
- top: 50%;
19537
- right: calc(1.5em + 1.25rem);
19538
- -ms-transform: translateY(-50%);
19539
- transform: translateY(-50%);
19540
- overflow: visible;
19541
- }
19542
-
19543
19747
  .k-rtl .k-datepicker, .k-datepicker[dir="rtl"], .k-rtl
19544
19748
  .k-timepicker,
19545
19749
  .k-timepicker[dir="rtl"] {
@@ -19553,13 +19757,6 @@ textarea.k-textarea {
19553
19757
  border-width: 0 1px 0 0;
19554
19758
  }
19555
19759
 
19556
- .k-rtl .k-datepicker .k-i-warning, .k-datepicker[dir="rtl"] .k-i-warning, .k-rtl
19557
- .k-timepicker .k-i-warning,
19558
- .k-timepicker[dir="rtl"] .k-i-warning {
19559
- right: auto;
19560
- left: calc(1.5em + 1.25rem);
19561
- }
19562
-
19563
19760
  .k-datetimepicker {
19564
19761
  width: 12.4em;
19565
19762
  border-width: 0;
@@ -19629,15 +19826,6 @@ textarea.k-textarea {
19629
19826
  box-sizing: border-box;
19630
19827
  }
19631
19828
 
19632
- .k-datetimepicker .k-i-warning {
19633
- position: absolute;
19634
- top: 50%;
19635
- right: calc(3em + 2rem);
19636
- -ms-transform: translateY(-50%);
19637
- transform: translateY(-50%);
19638
- overflow: visible;
19639
- }
19640
-
19641
19829
  .k-rtl .k-datetimepicker, .k-datetimepicker[dir="rtl"] {
19642
19830
  text-align: right;
19643
19831
  }
@@ -19647,11 +19835,6 @@ textarea.k-textarea {
19647
19835
  border-width: 0 1px 0 0;
19648
19836
  }
19649
19837
 
19650
- .k-rtl .k-datetimepicker .k-i-warning, .k-datetimepicker[dir="rtl"] .k-i-warning {
19651
- right: auto;
19652
- left: calc(3em + 2rem);
19653
- }
19654
-
19655
19838
  .k-datetime-container .k-datetime-wrap {
19656
19839
  width: calc(304px + 2rem);
19657
19840
  overflow: hidden;
@@ -20448,14 +20631,6 @@ textarea.k-textarea {
20448
20631
  cursor: pointer;
20449
20632
  }
20450
20633
 
20451
- .k-dropdown .k-dropdown-wrap .k-clear-value, .k-dropdowntree .k-dropdown-wrap .k-clear-value {
20452
- visibility: hidden;
20453
- }
20454
-
20455
- .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 {
20456
- visibility: visible;
20457
- }
20458
-
20459
20634
  .k-dropdown.k-rtl, .k-rtl.k-dropdowntree,
20460
20635
  .k-dropdown[dir="rtl"],
20461
20636
  .k-dropdowntree[dir="rtl"],
@@ -20662,16 +20837,11 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
20662
20837
  }
20663
20838
 
20664
20839
  .k-multiselect .k-multiselect-wrap .k-clear-value, .k-dropdowntree .k-multiselect-wrap .k-clear-value {
20665
- visibility: hidden;
20666
20840
  position: absolute;
20667
20841
  top: 0;
20668
20842
  right: 0;
20669
20843
  }
20670
20844
 
20671
- .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 {
20672
- visibility: visible;
20673
- }
20674
-
20675
20845
  .k-multiselect .k-multiselect-wrap > .k-select, .k-dropdowntree .k-multiselect-wrap > .k-select {
20676
20846
  position: absolute;
20677
20847
  top: 0;
@@ -20694,10 +20864,6 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
20694
20864
  right: calc(16px + 0.375rem);
20695
20865
  }
20696
20866
 
20697
- .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 {
20698
- visibility: visible;
20699
- }
20700
-
20701
20867
  .k-multiselect[dir="rtl"], .k-dropdowntree[dir="rtl"],
20702
20868
  .k-rtl .k-multiselect,
20703
20869
  .k-rtl .k-dropdowntree {
@@ -21175,6 +21341,7 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
21175
21341
  border-radius: 0.25rem;
21176
21342
  border-width: 1px;
21177
21343
  border-style: solid;
21344
+ box-sizing: border-box;
21178
21345
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
21179
21346
  font-size: 1rem;
21180
21347
  line-height: 1.5;
@@ -22378,8 +22545,6 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
22378
22545
  height: auto;
22379
22546
  border-width: 0 0 0 1px;
22380
22547
  border-style: solid;
22381
- -ms-flex-negative: 0;
22382
- flex-shrink: 0;
22383
22548
  }
22384
22549
 
22385
22550
  .k-menu-vertical {
@@ -22811,6 +22976,7 @@ select.k-dropdown:focus, select.k-dropdowntree:focus {
22811
22976
  height: 100%;
22812
22977
  }
22813
22978
 
22979
+ .k-window-buttons,
22814
22980
  .k-window-buttongroup {
22815
22981
  border-bottom-right-radius: 0.25rem;
22816
22982
  border-bottom-left-radius: 0.25rem;
@@ -23784,13 +23950,6 @@ kendo-card-footer {
23784
23950
  gap: 0.5rem;
23785
23951
  }
23786
23952
 
23787
- .k-card-actions > .k-button {
23788
- padding-left: calc(0.5rem - 1px);
23789
- padding-right: calc(0.5rem - 1px);
23790
- max-width: 100%;
23791
- white-space: normal;
23792
- }
23793
-
23794
23953
  .k-card-actions-start {
23795
23954
  -ms-flex-pack: start;
23796
23955
  justify-content: flex-start;
@@ -23816,44 +23975,11 @@ kendo-card-footer {
23816
23975
  flex-flow: column nowrap;
23817
23976
  }
23818
23977
 
23819
- .k-card-actions-stretched {
23820
- padding: 0;
23821
- gap: 0;
23822
- }
23823
-
23824
- .k-card-actions-stretched > .k-button,
23825
- .k-card-actions-stretched > .k-card-action {
23978
+ .k-card-actions-stretched > * {
23826
23979
  -ms-flex: 1 1 auto;
23827
23980
  flex: 1 1 auto;
23828
23981
  }
23829
23982
 
23830
- .k-card-actions-stretched .k-button {
23831
- border-radius: 0;
23832
- padding-top: 0.875rem;
23833
- padding-bottom: 0.875rem;
23834
- }
23835
-
23836
- .k-card .k-card-actions-stretched {
23837
- border-top-width: 1px;
23838
- }
23839
-
23840
- .k-card-horizontal > .k-card-actions-stretched {
23841
- border-top-width: 0;
23842
- border-inline-start-width: 1px;
23843
- }
23844
-
23845
- .k-card-vertical > .k-card-actions-stretched {
23846
- border-top-width: 1px;
23847
- }
23848
-
23849
- .k-card-actions-stretched.k-card-actions-horizontal > .k-card-action + .k-card-action {
23850
- border-inline-start-width: 1px;
23851
- }
23852
-
23853
- .k-card-actions-stretched.k-card-actions-vertical > .k-card-action + .k-card-action {
23854
- border-top-width: 1px;
23855
- }
23856
-
23857
23983
  .k-card-action {
23858
23984
  border-width: 0;
23859
23985
  border-style: solid;
@@ -23983,6 +24109,7 @@ kendo-card-footer {
23983
24109
  height: 1.3em;
23984
24110
  border-width: 1px 1px 0 0;
23985
24111
  border-style: solid;
24112
+ box-sizing: border-box;
23986
24113
  position: absolute;
23987
24114
  }
23988
24115
 
@@ -24018,20 +24145,6 @@ kendo-card-footer {
24018
24145
  box-shadow: none;
24019
24146
  }
24020
24147
 
24021
- .k-rtl .k-card-actions-stretched .k-card-action + .k-card-action,
24022
- [dir="rtl"] .k-card-actions-stretched .k-card-action + .k-card-action {
24023
- border-right-width: 1px;
24024
- border-left-width: 0;
24025
- }
24026
-
24027
- .k-rtl .k-card-horizontal > .k-card-actions-stretched,
24028
- .k-rtl .k-card-horizontal .k-card-actions-vertical,
24029
- [dir="rtl"] .k-card-horizontal > .k-card-actions-stretched,
24030
- [dir="rtl"] .k-card-horizontal .k-card-actions-vertical {
24031
- border-right-width: 1px;
24032
- border-left-width: 0;
24033
- }
24034
-
24035
24148
  .k-ie11 .k-card-body {
24036
24149
  -ms-flex: 1 1 auto;
24037
24150
  flex: 1 1 auto;
@@ -24063,7 +24176,8 @@ kendo-card-footer {
24063
24176
  background-color: #f8f9fa;
24064
24177
  }
24065
24178
 
24066
- .k-card-separator {
24179
+ .k-card-separator,
24180
+ .k-card .k-separator {
24067
24181
  border-color: #dee2e6;
24068
24182
  }
24069
24183
 
@@ -29583,10 +29697,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
29583
29697
  padding: 0;
29584
29698
  }
29585
29699
 
29586
- .k-spreadsheet-popup .k-separator {
29587
- display: block;
29588
- }
29589
-
29590
29700
  .k-spreadsheet-popup .k-button {
29591
29701
  border-radius: 0;
29592
29702
  border-width: 0;
@@ -30507,6 +30617,19 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
30507
30617
  border-bottom-width: 0;
30508
30618
  }
30509
30619
 
30620
+ .k-pdf-export-shadow .k-pivotgrid {
30621
+ height: auto !important;
30622
+ }
30623
+
30624
+ .k-pdf-export-shadow .k-pivotgrid-values {
30625
+ height: auto;
30626
+ overflow: visible;
30627
+ }
30628
+
30629
+ .k-pdf-export-shadow .k-pivotgrid-column-headers .k-pivotgrid-table {
30630
+ padding-inline-end: 0;
30631
+ }
30632
+
30510
30633
  .k-pivot {
30511
30634
  border-width: 1px;
30512
30635
  border-style: solid;
@@ -31944,6 +32067,99 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
31944
32067
  overflow: auto;
31945
32068
  }
31946
32069
 
32070
+ .k-editor-resize-handles-wrapper {
32071
+ position: absolute;
32072
+ visibility: hidden;
32073
+ }
32074
+
32075
+ .k-editor-resize-handle {
32076
+ width: 5px;
32077
+ height: 5px;
32078
+ border-width: 1px;
32079
+ border-style: solid;
32080
+ position: absolute;
32081
+ visibility: visible;
32082
+ z-index: 100;
32083
+ }
32084
+
32085
+ .k-editor-resize-handle.northwest {
32086
+ top: 0;
32087
+ left: 0;
32088
+ -ms-transform: translate(-50%, -50%);
32089
+ transform: translate(-50%, -50%);
32090
+ cursor: nw-resize;
32091
+ }
32092
+
32093
+ .k-editor-resize-handle.north {
32094
+ top: 0;
32095
+ left: 50%;
32096
+ -ms-transform: translate(-50%, -50%);
32097
+ transform: translate(-50%, -50%);
32098
+ cursor: n-resize;
32099
+ }
32100
+
32101
+ .k-editor-resize-handle.northeast {
32102
+ top: 0;
32103
+ right: 0;
32104
+ -ms-transform: translate(50%, -50%);
32105
+ transform: translate(50%, -50%);
32106
+ cursor: ne-resize;
32107
+ }
32108
+
32109
+ .k-editor-resize-handle.southwest {
32110
+ left: 0;
32111
+ bottom: 0;
32112
+ -ms-transform: translate(-50%, 50%);
32113
+ transform: translate(-50%, 50%);
32114
+ cursor: sw-resize;
32115
+ }
32116
+
32117
+ .k-editor-resize-handle.south {
32118
+ bottom: 0;
32119
+ left: 50%;
32120
+ -ms-transform: translate(-50%, 50%);
32121
+ transform: translate(-50%, 50%);
32122
+ cursor: s-resize;
32123
+ }
32124
+
32125
+ .k-editor-resize-handle.southeast {
32126
+ right: 0;
32127
+ bottom: 0;
32128
+ -ms-transform: translate(50%, 50%);
32129
+ transform: translate(50%, 50%);
32130
+ cursor: se-resize;
32131
+ }
32132
+
32133
+ .k-editor-resize-handle.west {
32134
+ top: 50%;
32135
+ left: 0;
32136
+ -ms-transform: translate(-50%, -50%);
32137
+ transform: translate(-50%, -50%);
32138
+ cursor: w-resize;
32139
+ }
32140
+
32141
+ .k-editor-resize-handle.east {
32142
+ top: 50%;
32143
+ right: 0;
32144
+ -ms-transform: translate(50%, -50%);
32145
+ transform: translate(50%, -50%);
32146
+ cursor: e-resize;
32147
+ }
32148
+
32149
+ .ProseMirror-selectednode {
32150
+ outline-width: 2px;
32151
+ outline-style: solid;
32152
+ }
32153
+
32154
+ .ProseMirror-hideselection {
32155
+ caret-color: transparent;
32156
+ }
32157
+
32158
+ .ProseMirror-hideselection *::selection,
32159
+ .ProseMirror-hideselection *::-moz-selection {
32160
+ background: transparent;
32161
+ }
32162
+
31947
32163
  .k-editor > .k-toolbar {
31948
32164
  border-width: 0 0 1px 0;
31949
32165
  -ms-flex-negative: 0;
@@ -32010,6 +32226,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
32010
32226
  padding: 1rem;
32011
32227
  width: 100%;
32012
32228
  height: 100%;
32229
+ position: relative;
32013
32230
  box-sizing: border-box;
32014
32231
  outline: none;
32015
32232
  white-space: pre-wrap;
@@ -32574,6 +32791,15 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
32574
32791
  border-color: #dee2e6;
32575
32792
  }
32576
32793
 
32794
+ .k-editor-resize-handle {
32795
+ background-color: #ffffff;
32796
+ border-color: #000000;
32797
+ }
32798
+
32799
+ .ProseMirror-selectednode {
32800
+ outline-color: #8cf;
32801
+ }
32802
+
32577
32803
  .k-ct-popup .k-state-selected {
32578
32804
  border-color: #0c65e9;
32579
32805
  color: #ffffff;
@@ -35656,11 +35882,14 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
35656
35882
  }
35657
35883
 
35658
35884
  .k-message-box {
35659
- padding: 10px 16px;
35885
+ width: 100%;
35886
+ height: auto;
35887
+ padding: 0.375rem 0.75rem;
35888
+ box-sizing: border-box;
35660
35889
  border-width: 1px 0 0;
35661
35890
  border-style: solid;
35662
- -ms-flex: 0 0 auto;
35663
- flex: 0 0 auto;
35891
+ -ms-flex: none;
35892
+ flex: none;
35664
35893
  display: -ms-flexbox;
35665
35894
  display: flex;
35666
35895
  -ms-flex-flow: row nowrap;
@@ -35669,6 +35898,11 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
35669
35898
  align-items: center;
35670
35899
  }
35671
35900
 
35901
+ .k-message-box:focus, .k-message-box.k-state-focus, .k-message-box:focus-within {
35902
+ outline: 0;
35903
+ box-shadow: none;
35904
+ }
35905
+
35672
35906
  .k-message-box .k-input {
35673
35907
  padding: 0;
35674
35908
  }
@@ -35791,12 +36025,19 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
35791
36025
 
35792
36026
  .k-chat-toolbar,
35793
36027
  .k-chat .k-toolbar-box {
36028
+ padding: 0.5rem 0.5rem;
35794
36029
  width: 100%;
36030
+ border-width: 1px 0 0;
35795
36031
  box-sizing: border-box;
36032
+ -ms-flex: none;
36033
+ flex: none;
35796
36034
  overflow: hidden;
35797
36035
  position: relative;
35798
- -ms-flex: 0 0 auto;
35799
- flex: 0 0 auto;
36036
+ }
36037
+
36038
+ .k-chat-toolbar::before,
36039
+ .k-chat .k-toolbar-box::before {
36040
+ display: none;
35800
36041
  }
35801
36042
 
35802
36043
  .k-chat-toolbar .k-button-list,
@@ -35807,20 +36048,15 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
35807
36048
  flex-flow: row nowrap;
35808
36049
  overflow: hidden;
35809
36050
  scroll-behavior: smooth;
35810
- padding: 10px 16px;
35811
36051
  }
35812
36052
 
35813
- .k-chat-toolbar .k-button-list::after,
35814
- .k-chat .k-toolbar-box .k-button-list::after {
35815
- content: "";
35816
- padding-right: 16px;
35817
- }
35818
-
35819
- .k-chat-toolbar .k-button-list .k-button + .k-button,
35820
- .k-chat .k-toolbar-box .k-button-list .k-button + .k-button {
35821
- margin-left: 20px;
35822
- -ms-flex-negative: 0;
35823
- flex-shrink: 0;
36053
+ .k-chat-toolbar .k-button,
36054
+ .k-chat .k-toolbar-box .k-button {
36055
+ border-color: transparent;
36056
+ color: inherit;
36057
+ background: none;
36058
+ -ms-flex: none;
36059
+ flex: none;
35824
36060
  }
35825
36061
 
35826
36062
  .k-chat-toolbar .k-scroll-button,
@@ -35842,15 +36078,6 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
35842
36078
  right: 0;
35843
36079
  }
35844
36080
 
35845
- .k-chat-toolbar .k-button,
35846
- .k-chat .k-toolbar-box .k-button {
35847
- border-width: 0;
35848
- color: inherit;
35849
- background: none;
35850
- -ms-flex-negative: 0;
35851
- flex-shrink: 0;
35852
- }
35853
-
35854
36081
  .k-rtl .k-message-group:not(.k-alt),
35855
36082
  [dir="rtl"] .k-message-group:not(.k-alt) {
35856
36083
  text-align: right;