@progress/kendo-theme-default 5.1.2-dev.6 → 5.1.2-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +409 -180
- package/dist/all.scss +229 -127
- package/package.json +2 -2
- package/scss/_variables.scss +5 -4
- package/scss/badge/_variables.scss +3 -3
- package/scss/bottom-navigation/_variables.scss +1 -1
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_layout.scss +1 -0
- package/scss/calendar/_layout.scss +3 -0
- package/scss/calendar/_variables.scss +1 -1
- package/scss/card/_variables.scss +1 -1
- package/scss/chip/_layout.scss +2 -0
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/common/_base.scss +2 -2
- package/scss/dataviz/_layout.scss +3 -3
- package/scss/editor/_layout.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/forms/_layout.scss +0 -5
- package/scss/gantt/_layout.scss +39 -7
- package/scss/gantt/_theme.scss +16 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/grid/_layout.scss +1 -1
- package/scss/list/_layout.scss +8 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_variables.scss +2 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/popup/_layout.scss +1 -1
- package/scss/popup/_theme.scss +1 -1
- package/scss/progressbar/_layout.scss +1 -1
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_theme.scss +1 -1
- package/scss/spreadsheet/_layout.scss +1 -1
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/stepper/_layout.scss +1 -1
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +2 -2
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_layout.scss +3 -3
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
- package/scss/utils/_flex.scss +98 -59
package/dist/all.css
CHANGED
|
@@ -139,7 +139,7 @@ kendo-sortable {
|
|
|
139
139
|
|
|
140
140
|
.k-block,
|
|
141
141
|
.k-panel {
|
|
142
|
-
border-radius:
|
|
142
|
+
border-radius: 4px;
|
|
143
143
|
border-color: rgba(0, 0, 0, 0.08);
|
|
144
144
|
color: #424242;
|
|
145
145
|
background-color: #ffffff;
|
|
@@ -151,8 +151,8 @@ kendo-sortable {
|
|
|
151
151
|
|
|
152
152
|
.k-block > .k-header,
|
|
153
153
|
.k-panel > .k-header {
|
|
154
|
-
border-top-left-radius:
|
|
155
|
-
border-top-right-radius:
|
|
154
|
+
border-top-left-radius: 4px;
|
|
155
|
+
border-top-right-radius: 4px;
|
|
156
156
|
border-color: rgba(0, 0, 0, 0.08);
|
|
157
157
|
color: #424242;
|
|
158
158
|
background-color: #fafafa;
|
|
@@ -902,7 +902,7 @@ kendo-sortable {
|
|
|
902
902
|
}
|
|
903
903
|
|
|
904
904
|
.k-drag-clue {
|
|
905
|
-
border-radius:
|
|
905
|
+
border-radius: 4px;
|
|
906
906
|
padding: 4px 8px;
|
|
907
907
|
border-width: 1px;
|
|
908
908
|
border-style: solid;
|
|
@@ -1546,27 +1546,27 @@ kendo-sortable {
|
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
1548
|
.k-rounded-sm {
|
|
1549
|
-
border-radius:
|
|
1549
|
+
border-radius: 2px;
|
|
1550
1550
|
}
|
|
1551
1551
|
|
|
1552
1552
|
.\!k-rounded-sm {
|
|
1553
|
-
border-radius:
|
|
1553
|
+
border-radius: 2px !important;
|
|
1554
1554
|
}
|
|
1555
1555
|
|
|
1556
1556
|
.k-rounded-md {
|
|
1557
|
-
border-radius:
|
|
1557
|
+
border-radius: 4px;
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
1560
1560
|
.\!k-rounded-md {
|
|
1561
|
-
border-radius:
|
|
1561
|
+
border-radius: 4px !important;
|
|
1562
1562
|
}
|
|
1563
1563
|
|
|
1564
1564
|
.k-rounded-lg {
|
|
1565
|
-
border-radius:
|
|
1565
|
+
border-radius: 6px;
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
1568
|
.\!k-rounded-lg {
|
|
1569
|
-
border-radius:
|
|
1569
|
+
border-radius: 6px !important;
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
1572
1572
|
.k-rounded-full {
|
|
@@ -1598,33 +1598,33 @@ kendo-sortable {
|
|
|
1598
1598
|
}
|
|
1599
1599
|
|
|
1600
1600
|
.k-rounded-top-sm {
|
|
1601
|
-
border-top-left-radius:
|
|
1602
|
-
border-top-right-radius:
|
|
1601
|
+
border-top-left-radius: 2px;
|
|
1602
|
+
border-top-right-radius: 2px;
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
1605
|
.\!k-rounded-top-sm {
|
|
1606
|
-
border-top-left-radius:
|
|
1607
|
-
border-top-right-radius:
|
|
1606
|
+
border-top-left-radius: 2px !important;
|
|
1607
|
+
border-top-right-radius: 2px !important;
|
|
1608
1608
|
}
|
|
1609
1609
|
|
|
1610
1610
|
.k-rounded-top-md {
|
|
1611
|
-
border-top-left-radius:
|
|
1612
|
-
border-top-right-radius:
|
|
1611
|
+
border-top-left-radius: 4px;
|
|
1612
|
+
border-top-right-radius: 4px;
|
|
1613
1613
|
}
|
|
1614
1614
|
|
|
1615
1615
|
.\!k-rounded-top-md {
|
|
1616
|
-
border-top-left-radius:
|
|
1617
|
-
border-top-right-radius:
|
|
1616
|
+
border-top-left-radius: 4px !important;
|
|
1617
|
+
border-top-right-radius: 4px !important;
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
1620
1620
|
.k-rounded-top-lg {
|
|
1621
|
-
border-top-left-radius:
|
|
1622
|
-
border-top-right-radius:
|
|
1621
|
+
border-top-left-radius: 6px;
|
|
1622
|
+
border-top-right-radius: 6px;
|
|
1623
1623
|
}
|
|
1624
1624
|
|
|
1625
1625
|
.\!k-rounded-top-lg {
|
|
1626
|
-
border-top-left-radius:
|
|
1627
|
-
border-top-right-radius:
|
|
1626
|
+
border-top-left-radius: 6px !important;
|
|
1627
|
+
border-top-right-radius: 6px !important;
|
|
1628
1628
|
}
|
|
1629
1629
|
|
|
1630
1630
|
.k-rounded-top-full {
|
|
@@ -1658,33 +1658,33 @@ kendo-sortable {
|
|
|
1658
1658
|
}
|
|
1659
1659
|
|
|
1660
1660
|
.k-rounded-right-sm {
|
|
1661
|
-
border-top-right-radius:
|
|
1662
|
-
border-bottom-right-radius:
|
|
1661
|
+
border-top-right-radius: 2px;
|
|
1662
|
+
border-bottom-right-radius: 2px;
|
|
1663
1663
|
}
|
|
1664
1664
|
|
|
1665
1665
|
.\!k-rounded-right-sm {
|
|
1666
|
-
border-top-right-radius:
|
|
1667
|
-
border-bottom-right-radius:
|
|
1666
|
+
border-top-right-radius: 2px !important;
|
|
1667
|
+
border-bottom-right-radius: 2px !important;
|
|
1668
1668
|
}
|
|
1669
1669
|
|
|
1670
1670
|
.k-rounded-right-md {
|
|
1671
|
-
border-top-right-radius:
|
|
1672
|
-
border-bottom-right-radius:
|
|
1671
|
+
border-top-right-radius: 4px;
|
|
1672
|
+
border-bottom-right-radius: 4px;
|
|
1673
1673
|
}
|
|
1674
1674
|
|
|
1675
1675
|
.\!k-rounded-right-md {
|
|
1676
|
-
border-top-right-radius:
|
|
1677
|
-
border-bottom-right-radius:
|
|
1676
|
+
border-top-right-radius: 4px !important;
|
|
1677
|
+
border-bottom-right-radius: 4px !important;
|
|
1678
1678
|
}
|
|
1679
1679
|
|
|
1680
1680
|
.k-rounded-right-lg {
|
|
1681
|
-
border-top-right-radius:
|
|
1682
|
-
border-bottom-right-radius:
|
|
1681
|
+
border-top-right-radius: 6px;
|
|
1682
|
+
border-bottom-right-radius: 6px;
|
|
1683
1683
|
}
|
|
1684
1684
|
|
|
1685
1685
|
.\!k-rounded-right-lg {
|
|
1686
|
-
border-top-right-radius:
|
|
1687
|
-
border-bottom-right-radius:
|
|
1686
|
+
border-top-right-radius: 6px !important;
|
|
1687
|
+
border-bottom-right-radius: 6px !important;
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
1690
|
.k-rounded-right-full {
|
|
@@ -1718,33 +1718,33 @@ kendo-sortable {
|
|
|
1718
1718
|
}
|
|
1719
1719
|
|
|
1720
1720
|
.k-rounded-bottom-sm {
|
|
1721
|
-
border-bottom-left-radius:
|
|
1722
|
-
border-bottom-right-radius:
|
|
1721
|
+
border-bottom-left-radius: 2px;
|
|
1722
|
+
border-bottom-right-radius: 2px;
|
|
1723
1723
|
}
|
|
1724
1724
|
|
|
1725
1725
|
.\!k-rounded-bottom-sm {
|
|
1726
|
-
border-bottom-left-radius:
|
|
1727
|
-
border-bottom-right-radius:
|
|
1726
|
+
border-bottom-left-radius: 2px !important;
|
|
1727
|
+
border-bottom-right-radius: 2px !important;
|
|
1728
1728
|
}
|
|
1729
1729
|
|
|
1730
1730
|
.k-rounded-bottom-md {
|
|
1731
|
-
border-bottom-left-radius:
|
|
1732
|
-
border-bottom-right-radius:
|
|
1731
|
+
border-bottom-left-radius: 4px;
|
|
1732
|
+
border-bottom-right-radius: 4px;
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
1735
|
.\!k-rounded-bottom-md {
|
|
1736
|
-
border-bottom-left-radius:
|
|
1737
|
-
border-bottom-right-radius:
|
|
1736
|
+
border-bottom-left-radius: 4px !important;
|
|
1737
|
+
border-bottom-right-radius: 4px !important;
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
1740
|
.k-rounded-bottom-lg {
|
|
1741
|
-
border-bottom-left-radius:
|
|
1742
|
-
border-bottom-right-radius:
|
|
1741
|
+
border-bottom-left-radius: 6px;
|
|
1742
|
+
border-bottom-right-radius: 6px;
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
1745
|
.\!k-rounded-bottom-lg {
|
|
1746
|
-
border-bottom-left-radius:
|
|
1747
|
-
border-bottom-right-radius:
|
|
1746
|
+
border-bottom-left-radius: 6px !important;
|
|
1747
|
+
border-bottom-right-radius: 6px !important;
|
|
1748
1748
|
}
|
|
1749
1749
|
|
|
1750
1750
|
.k-rounded-bottom-full {
|
|
@@ -1778,33 +1778,33 @@ kendo-sortable {
|
|
|
1778
1778
|
}
|
|
1779
1779
|
|
|
1780
1780
|
.k-rounded-left-sm {
|
|
1781
|
-
border-bottom-left-radius:
|
|
1782
|
-
border-top-left-radius:
|
|
1781
|
+
border-bottom-left-radius: 2px;
|
|
1782
|
+
border-top-left-radius: 2px;
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
1785
|
.\!k-rounded-left-sm {
|
|
1786
|
-
border-bottom-left-radius:
|
|
1787
|
-
border-top-left-radius:
|
|
1786
|
+
border-bottom-left-radius: 2px !important;
|
|
1787
|
+
border-top-left-radius: 2px !important;
|
|
1788
1788
|
}
|
|
1789
1789
|
|
|
1790
1790
|
.k-rounded-left-md {
|
|
1791
|
-
border-bottom-left-radius:
|
|
1792
|
-
border-top-left-radius:
|
|
1791
|
+
border-bottom-left-radius: 4px;
|
|
1792
|
+
border-top-left-radius: 4px;
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
1795
|
.\!k-rounded-left-md {
|
|
1796
|
-
border-bottom-left-radius:
|
|
1797
|
-
border-top-left-radius:
|
|
1796
|
+
border-bottom-left-radius: 4px !important;
|
|
1797
|
+
border-top-left-radius: 4px !important;
|
|
1798
1798
|
}
|
|
1799
1799
|
|
|
1800
1800
|
.k-rounded-left-lg {
|
|
1801
|
-
border-bottom-left-radius:
|
|
1802
|
-
border-top-left-radius:
|
|
1801
|
+
border-bottom-left-radius: 6px;
|
|
1802
|
+
border-top-left-radius: 6px;
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
1805
1805
|
.\!k-rounded-left-lg {
|
|
1806
|
-
border-bottom-left-radius:
|
|
1807
|
-
border-top-left-radius:
|
|
1806
|
+
border-bottom-left-radius: 6px !important;
|
|
1807
|
+
border-top-left-radius: 6px !important;
|
|
1808
1808
|
}
|
|
1809
1809
|
|
|
1810
1810
|
.k-rounded-left-full {
|
|
@@ -1834,27 +1834,27 @@ kendo-sortable {
|
|
|
1834
1834
|
}
|
|
1835
1835
|
|
|
1836
1836
|
.k-rounded-top-left-sm {
|
|
1837
|
-
border-top-left-radius:
|
|
1837
|
+
border-top-left-radius: 2px;
|
|
1838
1838
|
}
|
|
1839
1839
|
|
|
1840
1840
|
.\!k-rounded-top-left-sm {
|
|
1841
|
-
border-top-left-radius:
|
|
1841
|
+
border-top-left-radius: 2px !important;
|
|
1842
1842
|
}
|
|
1843
1843
|
|
|
1844
1844
|
.k-rounded-top-left-md {
|
|
1845
|
-
border-top-left-radius:
|
|
1845
|
+
border-top-left-radius: 4px;
|
|
1846
1846
|
}
|
|
1847
1847
|
|
|
1848
1848
|
.\!k-rounded-top-left-md {
|
|
1849
|
-
border-top-left-radius:
|
|
1849
|
+
border-top-left-radius: 4px !important;
|
|
1850
1850
|
}
|
|
1851
1851
|
|
|
1852
1852
|
.k-rounded-top-left-lg {
|
|
1853
|
-
border-top-left-radius:
|
|
1853
|
+
border-top-left-radius: 6px;
|
|
1854
1854
|
}
|
|
1855
1855
|
|
|
1856
1856
|
.\!k-rounded-top-left-lg {
|
|
1857
|
-
border-top-left-radius:
|
|
1857
|
+
border-top-left-radius: 6px !important;
|
|
1858
1858
|
}
|
|
1859
1859
|
|
|
1860
1860
|
.k-rounded-top-left-full {
|
|
@@ -1882,27 +1882,27 @@ kendo-sortable {
|
|
|
1882
1882
|
}
|
|
1883
1883
|
|
|
1884
1884
|
.k-rounded-top-right-sm {
|
|
1885
|
-
border-top-right-radius:
|
|
1885
|
+
border-top-right-radius: 2px;
|
|
1886
1886
|
}
|
|
1887
1887
|
|
|
1888
1888
|
.\!k-rounded-top-right-sm {
|
|
1889
|
-
border-top-right-radius:
|
|
1889
|
+
border-top-right-radius: 2px !important;
|
|
1890
1890
|
}
|
|
1891
1891
|
|
|
1892
1892
|
.k-rounded-top-right-md {
|
|
1893
|
-
border-top-right-radius:
|
|
1893
|
+
border-top-right-radius: 4px;
|
|
1894
1894
|
}
|
|
1895
1895
|
|
|
1896
1896
|
.\!k-rounded-top-right-md {
|
|
1897
|
-
border-top-right-radius:
|
|
1897
|
+
border-top-right-radius: 4px !important;
|
|
1898
1898
|
}
|
|
1899
1899
|
|
|
1900
1900
|
.k-rounded-top-right-lg {
|
|
1901
|
-
border-top-right-radius:
|
|
1901
|
+
border-top-right-radius: 6px;
|
|
1902
1902
|
}
|
|
1903
1903
|
|
|
1904
1904
|
.\!k-rounded-top-right-lg {
|
|
1905
|
-
border-top-right-radius:
|
|
1905
|
+
border-top-right-radius: 6px !important;
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
1908
|
.k-rounded-top-right-full {
|
|
@@ -1930,27 +1930,27 @@ kendo-sortable {
|
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
1932
|
.k-rounded-bottom-left-sm {
|
|
1933
|
-
border-bottom-left-radius:
|
|
1933
|
+
border-bottom-left-radius: 2px;
|
|
1934
1934
|
}
|
|
1935
1935
|
|
|
1936
1936
|
.\!k-rounded-bottom-left-sm {
|
|
1937
|
-
border-bottom-left-radius:
|
|
1937
|
+
border-bottom-left-radius: 2px !important;
|
|
1938
1938
|
}
|
|
1939
1939
|
|
|
1940
1940
|
.k-rounded-bottom-left-md {
|
|
1941
|
-
border-bottom-left-radius:
|
|
1941
|
+
border-bottom-left-radius: 4px;
|
|
1942
1942
|
}
|
|
1943
1943
|
|
|
1944
1944
|
.\!k-rounded-bottom-left-md {
|
|
1945
|
-
border-bottom-left-radius:
|
|
1945
|
+
border-bottom-left-radius: 4px !important;
|
|
1946
1946
|
}
|
|
1947
1947
|
|
|
1948
1948
|
.k-rounded-bottom-left-lg {
|
|
1949
|
-
border-bottom-left-radius:
|
|
1949
|
+
border-bottom-left-radius: 6px;
|
|
1950
1950
|
}
|
|
1951
1951
|
|
|
1952
1952
|
.\!k-rounded-bottom-left-lg {
|
|
1953
|
-
border-bottom-left-radius:
|
|
1953
|
+
border-bottom-left-radius: 6px !important;
|
|
1954
1954
|
}
|
|
1955
1955
|
|
|
1956
1956
|
.k-rounded-bottom-left-full {
|
|
@@ -1978,27 +1978,27 @@ kendo-sortable {
|
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
1980
|
.k-rounded-bottom-right-sm {
|
|
1981
|
-
border-bottom-right-radius:
|
|
1981
|
+
border-bottom-right-radius: 2px;
|
|
1982
1982
|
}
|
|
1983
1983
|
|
|
1984
1984
|
.\!k-rounded-bottom-right-sm {
|
|
1985
|
-
border-bottom-right-radius:
|
|
1985
|
+
border-bottom-right-radius: 2px !important;
|
|
1986
1986
|
}
|
|
1987
1987
|
|
|
1988
1988
|
.k-rounded-bottom-right-md {
|
|
1989
|
-
border-bottom-right-radius:
|
|
1989
|
+
border-bottom-right-radius: 4px;
|
|
1990
1990
|
}
|
|
1991
1991
|
|
|
1992
1992
|
.\!k-rounded-bottom-right-md {
|
|
1993
|
-
border-bottom-right-radius:
|
|
1993
|
+
border-bottom-right-radius: 4px !important;
|
|
1994
1994
|
}
|
|
1995
1995
|
|
|
1996
1996
|
.k-rounded-bottom-right-lg {
|
|
1997
|
-
border-bottom-right-radius:
|
|
1997
|
+
border-bottom-right-radius: 6px;
|
|
1998
1998
|
}
|
|
1999
1999
|
|
|
2000
2000
|
.\!k-rounded-bottom-right-lg {
|
|
2001
|
-
border-bottom-right-radius:
|
|
2001
|
+
border-bottom-right-radius: 6px !important;
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
2004
|
.k-rounded-bottom-right-full {
|
|
@@ -2086,165 +2086,321 @@ kendo-sortable {
|
|
|
2086
2086
|
}
|
|
2087
2087
|
|
|
2088
2088
|
.\!k-flex-col-reverse {
|
|
2089
|
-
flex-direction: column-reverse;
|
|
2089
|
+
flex-direction: column-reverse !important;
|
|
2090
2090
|
}
|
|
2091
2091
|
|
|
2092
2092
|
.k-flex-wrap {
|
|
2093
2093
|
flex-wrap: wrap;
|
|
2094
2094
|
}
|
|
2095
2095
|
|
|
2096
|
+
.\!k-flex-wrap {
|
|
2097
|
+
flex-wrap: wrap !important;
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2096
2100
|
.k-flex-nowrap {
|
|
2097
2101
|
flex-wrap: nowrap;
|
|
2098
2102
|
}
|
|
2099
2103
|
|
|
2104
|
+
.\!k-flex-nowrap {
|
|
2105
|
+
flex-wrap: nowrap !important;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2100
2108
|
.k-flex-wrap-reverse {
|
|
2101
2109
|
flex-wrap: wrap-reverse;
|
|
2102
2110
|
}
|
|
2103
2111
|
|
|
2112
|
+
.\!k-flex-wrap-reverse {
|
|
2113
|
+
flex-wrap: wrap-reverse !important;
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2104
2116
|
.k-flex-initial {
|
|
2105
2117
|
flex: 0 1 auto;
|
|
2106
2118
|
}
|
|
2107
2119
|
|
|
2120
|
+
.\!k-flex-initial {
|
|
2121
|
+
flex: 0 1 auto !important;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2108
2124
|
.k-flex-1 {
|
|
2109
2125
|
flex: 1 1 0%;
|
|
2110
2126
|
}
|
|
2111
2127
|
|
|
2128
|
+
.\!k-flex-1 {
|
|
2129
|
+
flex: 1 1 0% !important;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2112
2132
|
.k-flex-auto {
|
|
2113
2133
|
flex: 1 1 auto;
|
|
2114
2134
|
}
|
|
2115
2135
|
|
|
2136
|
+
.\!k-flex-auto {
|
|
2137
|
+
flex: 1 1 auto !important;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2116
2140
|
.k-flex-none {
|
|
2117
2141
|
flex: none;
|
|
2118
2142
|
}
|
|
2119
2143
|
|
|
2144
|
+
.\!k-flex-none {
|
|
2145
|
+
flex: none !important;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2120
2148
|
.k-flex-grow {
|
|
2121
2149
|
flex-grow: 1;
|
|
2122
2150
|
}
|
|
2123
2151
|
|
|
2152
|
+
.\!k-flex-grow {
|
|
2153
|
+
flex-grow: 1 !important;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2124
2156
|
.k-flex-grow-0 {
|
|
2125
2157
|
flex-grow: 0;
|
|
2126
2158
|
}
|
|
2127
2159
|
|
|
2160
|
+
.\!k-flex-grow-0 {
|
|
2161
|
+
flex-grow: 0 !important;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2128
2164
|
.k-flex-shrink {
|
|
2129
2165
|
flex-shrink: 1;
|
|
2130
2166
|
}
|
|
2131
2167
|
|
|
2168
|
+
.\!k-flex-shrink {
|
|
2169
|
+
flex-shrink: 1 !important;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2132
2172
|
.k-flex-shrink-0 {
|
|
2133
2173
|
flex-shrink: 0;
|
|
2134
2174
|
}
|
|
2135
2175
|
|
|
2176
|
+
.\!k-flex-shrink-0 {
|
|
2177
|
+
flex-shrink: 0 !important;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2136
2180
|
.k-flex-basis-auto {
|
|
2137
2181
|
flex-basis: auto;
|
|
2138
2182
|
}
|
|
2139
2183
|
|
|
2184
|
+
.\!k-flex-basis-auto {
|
|
2185
|
+
flex-basis: auto !important;
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2140
2188
|
.k-flex-basis-0 {
|
|
2141
2189
|
flex-basis: 0%;
|
|
2142
2190
|
}
|
|
2143
2191
|
|
|
2192
|
+
.\!k-flex-basis-0 {
|
|
2193
|
+
flex-basis: 0% !important;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2144
2196
|
.k-align-items-start {
|
|
2145
2197
|
align-items: flex-start;
|
|
2146
2198
|
}
|
|
2147
2199
|
|
|
2200
|
+
.\!k-align-items-start {
|
|
2201
|
+
align-items: flex-start !important;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2148
2204
|
.k-align-items-end {
|
|
2149
2205
|
align-items: flex-end;
|
|
2150
2206
|
}
|
|
2151
2207
|
|
|
2208
|
+
.\!k-align-items-end {
|
|
2209
|
+
align-items: flex-end !important;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2152
2212
|
.k-align-items-center {
|
|
2153
2213
|
align-items: center;
|
|
2154
2214
|
}
|
|
2155
2215
|
|
|
2216
|
+
.\!k-align-items-center {
|
|
2217
|
+
align-items: center !important;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2156
2220
|
.k-align-items-stretch {
|
|
2157
2221
|
align-items: stretch;
|
|
2158
2222
|
}
|
|
2159
2223
|
|
|
2224
|
+
.\!k-align-items-stretch {
|
|
2225
|
+
align-items: stretch !important;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2160
2228
|
.k-align-items-baseline {
|
|
2161
2229
|
align-items: baseline;
|
|
2162
2230
|
}
|
|
2163
2231
|
|
|
2232
|
+
.\!k-align-items-baseline {
|
|
2233
|
+
align-items: baseline !important;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2164
2236
|
.k-align-content-start {
|
|
2165
2237
|
align-content: flex-start;
|
|
2166
2238
|
}
|
|
2167
2239
|
|
|
2240
|
+
.\!k-align-content-start {
|
|
2241
|
+
align-content: flex-start !important;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2168
2244
|
.k-align-content-end {
|
|
2169
2245
|
align-content: flex-end;
|
|
2170
2246
|
}
|
|
2171
2247
|
|
|
2248
|
+
.\!k-align-content-end {
|
|
2249
|
+
align-content: flex-end !important;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2172
2252
|
.k-align-content-center {
|
|
2173
2253
|
align-content: center;
|
|
2174
2254
|
}
|
|
2175
2255
|
|
|
2256
|
+
.\!k-align-content-center {
|
|
2257
|
+
align-content: center !important;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2176
2260
|
.k-align-content-stretch {
|
|
2177
2261
|
align-content: stretch;
|
|
2178
2262
|
}
|
|
2179
2263
|
|
|
2264
|
+
.\!k-align-content-stretch {
|
|
2265
|
+
align-content: stretch !important;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2180
2268
|
.k-align-content-baseline {
|
|
2181
2269
|
align-content: baseline;
|
|
2182
2270
|
}
|
|
2183
2271
|
|
|
2272
|
+
.\!k-align-content-baseline {
|
|
2273
|
+
align-content: baseline !important;
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2184
2276
|
.k-align-self-start {
|
|
2185
2277
|
align-self: flex-start;
|
|
2186
2278
|
}
|
|
2187
2279
|
|
|
2280
|
+
.\!k-align-self-start {
|
|
2281
|
+
align-self: flex-start !important;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2188
2284
|
.k-align-self-end {
|
|
2189
2285
|
align-self: flex-end;
|
|
2190
2286
|
}
|
|
2191
2287
|
|
|
2288
|
+
.\!k-align-self-end {
|
|
2289
|
+
align-self: flex-end !important;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2192
2292
|
.k-align-self-center {
|
|
2193
2293
|
align-self: center;
|
|
2194
2294
|
}
|
|
2195
2295
|
|
|
2296
|
+
.\!k-align-self-center {
|
|
2297
|
+
align-self: center !important;
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2196
2300
|
.k-align-self-stretch {
|
|
2197
2301
|
align-self: stretch;
|
|
2198
2302
|
}
|
|
2199
2303
|
|
|
2304
|
+
.\!k-align-self-stretch {
|
|
2305
|
+
align-self: stretch !important;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2200
2308
|
.k-align-self-baseline {
|
|
2201
2309
|
align-self: baseline;
|
|
2202
2310
|
}
|
|
2203
2311
|
|
|
2312
|
+
.\!k-align-self-baseline {
|
|
2313
|
+
align-self: baseline !important;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2204
2316
|
.k-justify-content-start {
|
|
2205
2317
|
justify-content: flex-start;
|
|
2206
2318
|
}
|
|
2207
2319
|
|
|
2320
|
+
.\!k-justify-content-start {
|
|
2321
|
+
justify-content: flex-start !important;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2208
2324
|
.k-justify-content-end {
|
|
2209
2325
|
justify-content: flex-end;
|
|
2210
2326
|
}
|
|
2211
2327
|
|
|
2328
|
+
.\!k-justify-content-end {
|
|
2329
|
+
justify-content: flex-end !important;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2212
2332
|
.k-justify-content-center {
|
|
2213
2333
|
justify-content: center;
|
|
2214
2334
|
}
|
|
2215
2335
|
|
|
2336
|
+
.\!k-justify-content-center {
|
|
2337
|
+
justify-content: center !important;
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2216
2340
|
.k-justify-content-between {
|
|
2217
2341
|
justify-content: space-between;
|
|
2218
2342
|
}
|
|
2219
2343
|
|
|
2344
|
+
.\!k-justify-content-between {
|
|
2345
|
+
justify-content: space-between !important;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2220
2348
|
.k-justify-content-around {
|
|
2221
2349
|
justify-content: space-around;
|
|
2222
2350
|
}
|
|
2223
2351
|
|
|
2352
|
+
.\!k-justify-content-around {
|
|
2353
|
+
justify-content: space-around !important;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2224
2356
|
.k-justify-content-evenly {
|
|
2225
2357
|
justify-content: space-evenly;
|
|
2226
2358
|
}
|
|
2227
2359
|
|
|
2360
|
+
.\!k-justify-content-evenly {
|
|
2361
|
+
justify-content: space-evenly !important;
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2228
2364
|
.k-justify-content-stretch > * {
|
|
2229
2365
|
flex: 1 0 0%;
|
|
2230
2366
|
}
|
|
2231
2367
|
|
|
2368
|
+
.\!k-justify-content-stretch > * {
|
|
2369
|
+
flex: 1 0 0% !important;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2232
2372
|
.k-justify-items-start {
|
|
2233
2373
|
justify-items: flex-start;
|
|
2234
2374
|
}
|
|
2235
2375
|
|
|
2376
|
+
.\!k-justify-items-start {
|
|
2377
|
+
justify-items: flex-start !important;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2236
2380
|
.k-justify-items-end {
|
|
2237
2381
|
justify-items: flex-end;
|
|
2238
2382
|
}
|
|
2239
2383
|
|
|
2384
|
+
.\!k-justify-items-end {
|
|
2385
|
+
justify-items: flex-end !important;
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2240
2388
|
.k-justify-items-center {
|
|
2241
2389
|
justify-items: center;
|
|
2242
2390
|
}
|
|
2243
2391
|
|
|
2392
|
+
.\!k-justify-items-center {
|
|
2393
|
+
justify-items: center !important;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2244
2396
|
.k-justify-items-stretch {
|
|
2245
2397
|
justify-items: stretch;
|
|
2246
2398
|
}
|
|
2247
2399
|
|
|
2400
|
+
.\!k-justify-items-stretch {
|
|
2401
|
+
justify-items: stretch !important;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2248
2404
|
.k-float-left {
|
|
2249
2405
|
float: left !important;
|
|
2250
2406
|
}
|
|
@@ -10977,6 +11133,13 @@ kendo-sortable {
|
|
|
10977
11133
|
right: 0;
|
|
10978
11134
|
}
|
|
10979
11135
|
|
|
11136
|
+
.k-list-item-text::before,
|
|
11137
|
+
.k-list-optionlabel::before {
|
|
11138
|
+
content: "\200b";
|
|
11139
|
+
width: 0px;
|
|
11140
|
+
overflow: hidden;
|
|
11141
|
+
}
|
|
11142
|
+
|
|
10980
11143
|
.k-list-group-item {
|
|
10981
11144
|
border-width: 0;
|
|
10982
11145
|
border-width: 1px 0 0;
|
|
@@ -11143,7 +11306,7 @@ kendo-sortable {
|
|
|
11143
11306
|
}
|
|
11144
11307
|
|
|
11145
11308
|
.k-listgroup {
|
|
11146
|
-
border-radius:
|
|
11309
|
+
border-radius: 4px;
|
|
11147
11310
|
margin: 0;
|
|
11148
11311
|
padding: 0;
|
|
11149
11312
|
border-width: 1px;
|
|
@@ -11389,7 +11552,7 @@ kendo-sortable {
|
|
|
11389
11552
|
}
|
|
11390
11553
|
|
|
11391
11554
|
.k-animation-container {
|
|
11392
|
-
border-radius: 0 0
|
|
11555
|
+
border-radius: 0 0 4px 4px;
|
|
11393
11556
|
}
|
|
11394
11557
|
|
|
11395
11558
|
.k-animation-container-shown {
|
|
@@ -11426,7 +11589,7 @@ kendo-sortable {
|
|
|
11426
11589
|
}
|
|
11427
11590
|
|
|
11428
11591
|
.k-animation-container {
|
|
11429
|
-
border-radius: 0 0
|
|
11592
|
+
border-radius: 0 0 4px 4px;
|
|
11430
11593
|
}
|
|
11431
11594
|
|
|
11432
11595
|
.k-ripple-target {
|
|
@@ -11560,15 +11723,15 @@ a.k-badge:hover,
|
|
|
11560
11723
|
}
|
|
11561
11724
|
|
|
11562
11725
|
.k-badge-rounded.k-badge-sm {
|
|
11563
|
-
border-radius:
|
|
11726
|
+
border-radius: 2px;
|
|
11564
11727
|
}
|
|
11565
11728
|
|
|
11566
11729
|
.k-badge-rounded.k-badge-md {
|
|
11567
|
-
border-radius:
|
|
11730
|
+
border-radius: 4px;
|
|
11568
11731
|
}
|
|
11569
11732
|
|
|
11570
11733
|
.k-badge-rounded.k-badge-lg {
|
|
11571
|
-
border-radius:
|
|
11734
|
+
border-radius: 6px;
|
|
11572
11735
|
}
|
|
11573
11736
|
|
|
11574
11737
|
.k-badge-pill {
|
|
@@ -14380,6 +14543,8 @@ textarea.k-input-inner {
|
|
|
14380
14543
|
}
|
|
14381
14544
|
|
|
14382
14545
|
.k-chip-content {
|
|
14546
|
+
padding: .5em 0;
|
|
14547
|
+
margin: -.5em 0;
|
|
14383
14548
|
min-width: 0;
|
|
14384
14549
|
display: flex;
|
|
14385
14550
|
flex-flow: row nowrap;
|
|
@@ -14722,7 +14887,7 @@ textarea.k-input-inner {
|
|
|
14722
14887
|
width: 100%;
|
|
14723
14888
|
height: 100%;
|
|
14724
14889
|
border-width: 1px;
|
|
14725
|
-
border-radius:
|
|
14890
|
+
border-radius: 4px;
|
|
14726
14891
|
box-sizing: border-box;
|
|
14727
14892
|
border-style: solid;
|
|
14728
14893
|
display: inline-flex;
|
|
@@ -15128,7 +15293,7 @@ textarea.k-input-inner {
|
|
|
15128
15293
|
.k-loader-container-panel {
|
|
15129
15294
|
border-width: 1px;
|
|
15130
15295
|
border-style: solid;
|
|
15131
|
-
border-radius:
|
|
15296
|
+
border-radius: 4px;
|
|
15132
15297
|
}
|
|
15133
15298
|
|
|
15134
15299
|
.k-loader-container-sm .k-loader-container-inner {
|
|
@@ -15221,7 +15386,7 @@ textarea.k-input-inner {
|
|
|
15221
15386
|
}
|
|
15222
15387
|
|
|
15223
15388
|
.k-skeleton-text {
|
|
15224
|
-
border-radius:
|
|
15389
|
+
border-radius: 4px;
|
|
15225
15390
|
transform: scale(1, 0.6);
|
|
15226
15391
|
}
|
|
15227
15392
|
|
|
@@ -16126,12 +16291,6 @@ kendo-label > .k-label {
|
|
|
16126
16291
|
width: 100%;
|
|
16127
16292
|
}
|
|
16128
16293
|
|
|
16129
|
-
.k-form .k-daterangepicker {
|
|
16130
|
-
width: 100%;
|
|
16131
|
-
flex-flow: column nowrap;
|
|
16132
|
-
gap: 0;
|
|
16133
|
-
}
|
|
16134
|
-
|
|
16135
16294
|
.k-form-buttons {
|
|
16136
16295
|
margin-top: 2em;
|
|
16137
16296
|
padding: 0;
|
|
@@ -16380,7 +16539,7 @@ kendo-label > .k-label {
|
|
|
16380
16539
|
}
|
|
16381
16540
|
|
|
16382
16541
|
.k-tooltip {
|
|
16383
|
-
border-radius:
|
|
16542
|
+
border-radius: 4px;
|
|
16384
16543
|
margin: 0;
|
|
16385
16544
|
padding: 4px 8px;
|
|
16386
16545
|
border-width: 0px;
|
|
@@ -16675,7 +16834,7 @@ kendo-label > .k-label {
|
|
|
16675
16834
|
}
|
|
16676
16835
|
|
|
16677
16836
|
.k-progressbar {
|
|
16678
|
-
border-radius:
|
|
16837
|
+
border-radius: 4px;
|
|
16679
16838
|
--kendo-progressbar-progress: 0;
|
|
16680
16839
|
border-width: 0px;
|
|
16681
16840
|
border-style: solid;
|
|
@@ -17678,7 +17837,7 @@ kendo-label > .k-label {
|
|
|
17678
17837
|
|
|
17679
17838
|
.k-slider .k-slider-track,
|
|
17680
17839
|
.k-slider .k-slider-selection {
|
|
17681
|
-
border-radius:
|
|
17840
|
+
border-radius: 4px;
|
|
17682
17841
|
}
|
|
17683
17842
|
|
|
17684
17843
|
.k-slider .k-slider-track {
|
|
@@ -17799,7 +17958,7 @@ kendo-label > .k-label {
|
|
|
17799
17958
|
}
|
|
17800
17959
|
|
|
17801
17960
|
.k-calendar-td {
|
|
17802
|
-
border-radius:
|
|
17961
|
+
border-radius: 4px;
|
|
17803
17962
|
border-color: transparent;
|
|
17804
17963
|
}
|
|
17805
17964
|
|
|
@@ -17864,7 +18023,7 @@ kendo-label > .k-label {
|
|
|
17864
18023
|
}
|
|
17865
18024
|
|
|
17866
18025
|
.k-calendar-view .k-link {
|
|
17867
|
-
border-radius:
|
|
18026
|
+
border-radius: 4px;
|
|
17868
18027
|
padding: 0.5em 0.5em;
|
|
17869
18028
|
box-sizing: border-box;
|
|
17870
18029
|
display: flex;
|
|
@@ -18049,6 +18208,9 @@ kendo-label > .k-label {
|
|
|
18049
18208
|
line-height: 2em;
|
|
18050
18209
|
cursor: pointer;
|
|
18051
18210
|
padding: 0 1em;
|
|
18211
|
+
overflow: hidden;
|
|
18212
|
+
white-space: nowrap;
|
|
18213
|
+
text-overflow: clip;
|
|
18052
18214
|
}
|
|
18053
18215
|
|
|
18054
18216
|
.k-calendar-navigation .k-calendar-navigation-marker {
|
|
@@ -18660,7 +18822,7 @@ kendo-label > .k-label {
|
|
|
18660
18822
|
}
|
|
18661
18823
|
|
|
18662
18824
|
.k-colorgradient {
|
|
18663
|
-
border-radius:
|
|
18825
|
+
border-radius: 4px;
|
|
18664
18826
|
width: 272px;
|
|
18665
18827
|
padding: 12px 12px;
|
|
18666
18828
|
border-style: solid;
|
|
@@ -18689,7 +18851,7 @@ kendo-label > .k-label {
|
|
|
18689
18851
|
}
|
|
18690
18852
|
|
|
18691
18853
|
.k-colorgradient-canvas .k-hsv-rectangle {
|
|
18692
|
-
border-radius:
|
|
18854
|
+
border-radius: 4px;
|
|
18693
18855
|
position: relative;
|
|
18694
18856
|
flex: 1 1 auto;
|
|
18695
18857
|
-webkit-user-select: none;
|
|
@@ -18699,7 +18861,7 @@ kendo-label > .k-label {
|
|
|
18699
18861
|
}
|
|
18700
18862
|
|
|
18701
18863
|
.k-colorgradient-canvas .k-hsv-gradient {
|
|
18702
|
-
border-radius:
|
|
18864
|
+
border-radius: 4px;
|
|
18703
18865
|
height: 180px;
|
|
18704
18866
|
}
|
|
18705
18867
|
|
|
@@ -18889,7 +19051,7 @@ kendo-label > .k-label {
|
|
|
18889
19051
|
}
|
|
18890
19052
|
|
|
18891
19053
|
.k-coloreditor {
|
|
18892
|
-
border-radius:
|
|
19054
|
+
border-radius: 4px;
|
|
18893
19055
|
min-width: 272px;
|
|
18894
19056
|
border-width: 1px;
|
|
18895
19057
|
border-style: solid;
|
|
@@ -19426,7 +19588,7 @@ kendo-label > .k-label {
|
|
|
19426
19588
|
}
|
|
19427
19589
|
|
|
19428
19590
|
.k-treeview-leaf {
|
|
19429
|
-
border-radius:
|
|
19591
|
+
border-radius: 4px;
|
|
19430
19592
|
padding: 4px 8px;
|
|
19431
19593
|
border: 0px solid transparent;
|
|
19432
19594
|
text-decoration: none;
|
|
@@ -21941,7 +22103,7 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
21941
22103
|
}
|
|
21942
22104
|
|
|
21943
22105
|
.k-notification {
|
|
21944
|
-
border-radius:
|
|
22106
|
+
border-radius: 4px;
|
|
21945
22107
|
padding: 4px 8px;
|
|
21946
22108
|
border-width: 1px;
|
|
21947
22109
|
border-style: solid;
|
|
@@ -22079,7 +22241,7 @@ kendo-card-footer {
|
|
|
22079
22241
|
}
|
|
22080
22242
|
|
|
22081
22243
|
.k-card {
|
|
22082
|
-
border-radius:
|
|
22244
|
+
border-radius: 6px;
|
|
22083
22245
|
border-width: 1px;
|
|
22084
22246
|
border-style: solid;
|
|
22085
22247
|
box-sizing: border-box;
|
|
@@ -22102,7 +22264,7 @@ kendo-card-footer {
|
|
|
22102
22264
|
}
|
|
22103
22265
|
|
|
22104
22266
|
.k-card > .k-card-inner {
|
|
22105
|
-
border-radius:
|
|
22267
|
+
border-radius: 5px;
|
|
22106
22268
|
display: flex;
|
|
22107
22269
|
flex-direction: inherit;
|
|
22108
22270
|
overflow: hidden;
|
|
@@ -22348,17 +22510,17 @@ kendo-card-footer {
|
|
|
22348
22510
|
}
|
|
22349
22511
|
|
|
22350
22512
|
.k-card-group .k-card.k-first {
|
|
22351
|
-
border-top-left-radius:
|
|
22352
|
-
border-bottom-left-radius:
|
|
22513
|
+
border-top-left-radius: 6px;
|
|
22514
|
+
border-bottom-left-radius: 6px;
|
|
22353
22515
|
}
|
|
22354
22516
|
|
|
22355
22517
|
.k-card-group .k-card.k-last {
|
|
22356
|
-
border-top-right-radius:
|
|
22357
|
-
border-bottom-right-radius:
|
|
22518
|
+
border-top-right-radius: 6px;
|
|
22519
|
+
border-bottom-right-radius: 6px;
|
|
22358
22520
|
}
|
|
22359
22521
|
|
|
22360
22522
|
.k-card-group .k-card.k-only {
|
|
22361
|
-
border-radius:
|
|
22523
|
+
border-radius: 6px;
|
|
22362
22524
|
}
|
|
22363
22525
|
|
|
22364
22526
|
.k-card-with-callout {
|
|
@@ -22576,7 +22738,7 @@ kendo-card-footer {
|
|
|
22576
22738
|
}
|
|
22577
22739
|
|
|
22578
22740
|
.k-popover {
|
|
22579
|
-
border-radius:
|
|
22741
|
+
border-radius: 6px;
|
|
22580
22742
|
padding: 0;
|
|
22581
22743
|
border-width: 1px;
|
|
22582
22744
|
border-style: solid;
|
|
@@ -22599,8 +22761,8 @@ kendo-card-footer {
|
|
|
22599
22761
|
}
|
|
22600
22762
|
|
|
22601
22763
|
.k-popover-header {
|
|
22602
|
-
border-top-left-radius:
|
|
22603
|
-
border-top-right-radius:
|
|
22764
|
+
border-top-left-radius: 6px;
|
|
22765
|
+
border-top-right-radius: 6px;
|
|
22604
22766
|
padding: 12px 16px;
|
|
22605
22767
|
border-width: 0 0 1px;
|
|
22606
22768
|
border-style: solid;
|
|
@@ -22760,7 +22922,7 @@ kendo-card-footer {
|
|
|
22760
22922
|
min-width: 72px;
|
|
22761
22923
|
min-height: 48px;
|
|
22762
22924
|
border-width: 0;
|
|
22763
|
-
border-radius:
|
|
22925
|
+
border-radius: 4px;
|
|
22764
22926
|
box-sizing: border-box;
|
|
22765
22927
|
font: inherit;
|
|
22766
22928
|
display: inline-flex;
|
|
@@ -23084,7 +23246,7 @@ kendo-card-footer {
|
|
|
23084
23246
|
|
|
23085
23247
|
.k-breadcrumb-link,
|
|
23086
23248
|
.k-breadcrumb-root-link {
|
|
23087
|
-
border-radius:
|
|
23249
|
+
border-radius: 4px;
|
|
23088
23250
|
padding: 6px 8px;
|
|
23089
23251
|
color: inherit;
|
|
23090
23252
|
text-decoration: none;
|
|
@@ -23540,7 +23702,7 @@ kendo-card-footer {
|
|
|
23540
23702
|
}
|
|
23541
23703
|
|
|
23542
23704
|
.k-stepper .k-step-label {
|
|
23543
|
-
max-width: 10em;
|
|
23705
|
+
max-width: calc(min(100%, 10em));
|
|
23544
23706
|
display: inline-flex;
|
|
23545
23707
|
flex-wrap: wrap;
|
|
23546
23708
|
align-items: center;
|
|
@@ -23948,8 +24110,8 @@ kendo-card-footer {
|
|
|
23948
24110
|
}
|
|
23949
24111
|
|
|
23950
24112
|
.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
|
|
23951
|
-
border-top-left-radius:
|
|
23952
|
-
border-top-right-radius:
|
|
24113
|
+
border-top-left-radius: 4px;
|
|
24114
|
+
border-top-right-radius: 4px;
|
|
23953
24115
|
margin-bottom: -1px;
|
|
23954
24116
|
}
|
|
23955
24117
|
|
|
@@ -23963,8 +24125,8 @@ kendo-card-footer {
|
|
|
23963
24125
|
|
|
23964
24126
|
.k-tabstrip-top > .k-content,
|
|
23965
24127
|
.k-tabstrip-top > .k-tabstrip-content {
|
|
23966
|
-
border-bottom-right-radius:
|
|
23967
|
-
border-bottom-left-radius:
|
|
24128
|
+
border-bottom-right-radius: 4px;
|
|
24129
|
+
border-bottom-left-radius: 4px;
|
|
23968
24130
|
border-top-color: transparent !important;
|
|
23969
24131
|
}
|
|
23970
24132
|
|
|
@@ -23978,8 +24140,8 @@ kendo-card-footer {
|
|
|
23978
24140
|
}
|
|
23979
24141
|
|
|
23980
24142
|
.k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item {
|
|
23981
|
-
border-bottom-right-radius:
|
|
23982
|
-
border-bottom-left-radius:
|
|
24143
|
+
border-bottom-right-radius: 4px;
|
|
24144
|
+
border-bottom-left-radius: 4px;
|
|
23983
24145
|
margin-top: -1px;
|
|
23984
24146
|
}
|
|
23985
24147
|
|
|
@@ -23993,8 +24155,8 @@ kendo-card-footer {
|
|
|
23993
24155
|
|
|
23994
24156
|
.k-tabstrip-bottom > .k-content,
|
|
23995
24157
|
.k-tabstrip-bottom > .k-tabstrip-content {
|
|
23996
|
-
border-top-left-radius:
|
|
23997
|
-
border-top-right-radius:
|
|
24158
|
+
border-top-left-radius: 4px;
|
|
24159
|
+
border-top-right-radius: 4px;
|
|
23998
24160
|
border-bottom-color: transparent !important;
|
|
23999
24161
|
}
|
|
24000
24162
|
|
|
@@ -24014,8 +24176,8 @@ kendo-card-footer {
|
|
|
24014
24176
|
}
|
|
24015
24177
|
|
|
24016
24178
|
.k-tabstrip-left > .k-tabstrip-items-wrapper .k-item {
|
|
24017
|
-
border-top-left-radius:
|
|
24018
|
-
border-bottom-left-radius:
|
|
24179
|
+
border-top-left-radius: 4px;
|
|
24180
|
+
border-bottom-left-radius: 4px;
|
|
24019
24181
|
margin-right: -1px;
|
|
24020
24182
|
}
|
|
24021
24183
|
|
|
@@ -24029,8 +24191,8 @@ kendo-card-footer {
|
|
|
24029
24191
|
|
|
24030
24192
|
.k-tabstrip-left > .k-content,
|
|
24031
24193
|
.k-tabstrip-left > .k-tabstrip-content {
|
|
24032
|
-
border-top-right-radius:
|
|
24033
|
-
border-bottom-right-radius:
|
|
24194
|
+
border-top-right-radius: 4px;
|
|
24195
|
+
border-bottom-right-radius: 4px;
|
|
24034
24196
|
margin: 0 !important;
|
|
24035
24197
|
border-left-color: transparent !important;
|
|
24036
24198
|
}
|
|
@@ -24051,8 +24213,8 @@ kendo-card-footer {
|
|
|
24051
24213
|
}
|
|
24052
24214
|
|
|
24053
24215
|
.k-tabstrip-right > .k-tabstrip-items-wrapper .k-item {
|
|
24054
|
-
border-top-right-radius:
|
|
24055
|
-
border-bottom-right-radius:
|
|
24216
|
+
border-top-right-radius: 4px;
|
|
24217
|
+
border-bottom-right-radius: 4px;
|
|
24056
24218
|
margin-left: -1px;
|
|
24057
24219
|
}
|
|
24058
24220
|
|
|
@@ -24066,8 +24228,8 @@ kendo-card-footer {
|
|
|
24066
24228
|
|
|
24067
24229
|
.k-tabstrip-right > .k-content,
|
|
24068
24230
|
.k-tabstrip-right > .k-tabstrip-content {
|
|
24069
|
-
border-top-left-radius:
|
|
24070
|
-
border-bottom-left-radius:
|
|
24231
|
+
border-top-left-radius: 4px;
|
|
24232
|
+
border-bottom-left-radius: 4px;
|
|
24071
24233
|
margin: 0 !important;
|
|
24072
24234
|
border-right-color: transparent !important;
|
|
24073
24235
|
}
|
|
@@ -24877,7 +25039,7 @@ kendo-card-footer {
|
|
|
24877
25039
|
}
|
|
24878
25040
|
|
|
24879
25041
|
.k-layout-item-hint {
|
|
24880
|
-
border-radius:
|
|
25042
|
+
border-radius: 6px;
|
|
24881
25043
|
border-width: 1px;
|
|
24882
25044
|
border-style: solid;
|
|
24883
25045
|
position: relative;
|
|
@@ -25902,7 +26064,7 @@ kendo-card-footer {
|
|
|
25902
26064
|
}
|
|
25903
26065
|
|
|
25904
26066
|
.k-group-indicator {
|
|
25905
|
-
border-radius:
|
|
26067
|
+
border-radius: 4px;
|
|
25906
26068
|
margin: 0;
|
|
25907
26069
|
padding: 4px 8px;
|
|
25908
26070
|
border-width: 1px;
|
|
@@ -27948,7 +28110,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27948
28110
|
}
|
|
27949
28111
|
|
|
27950
28112
|
.k-spreadsheet-filter {
|
|
27951
|
-
border-radius:
|
|
28113
|
+
border-radius: 4px;
|
|
27952
28114
|
line-height: 1;
|
|
27953
28115
|
position: absolute;
|
|
27954
28116
|
cursor: pointer;
|
|
@@ -28157,7 +28319,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28157
28319
|
}
|
|
28158
28320
|
|
|
28159
28321
|
.k-spreadsheet-insert-image-dialog {
|
|
28160
|
-
border-radius:
|
|
28322
|
+
border-radius: 4px;
|
|
28161
28323
|
border-style: dashed;
|
|
28162
28324
|
border-width: 2px;
|
|
28163
28325
|
}
|
|
@@ -28229,7 +28391,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28229
28391
|
height: 6px;
|
|
28230
28392
|
border-style: solid;
|
|
28231
28393
|
border-width: 1px;
|
|
28232
|
-
border-radius:
|
|
28394
|
+
border-radius: 6px;
|
|
28233
28395
|
position: absolute;
|
|
28234
28396
|
transform: translate(-50%, -50%);
|
|
28235
28397
|
}
|
|
@@ -28283,7 +28445,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28283
28445
|
}
|
|
28284
28446
|
|
|
28285
28447
|
.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 {
|
|
28286
|
-
border-radius:
|
|
28448
|
+
border-radius: 4px;
|
|
28287
28449
|
}
|
|
28288
28450
|
|
|
28289
28451
|
.k-rtl .k-spreadsheet .k-dirty,
|
|
@@ -28768,7 +28930,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28768
28930
|
.k-calculated-field {
|
|
28769
28931
|
padding: 16px 16px;
|
|
28770
28932
|
border-width: 1px;
|
|
28771
|
-
border-radius:
|
|
28933
|
+
border-radius: 4px;
|
|
28772
28934
|
border-style: solid;
|
|
28773
28935
|
box-sizing: border-box;
|
|
28774
28936
|
display: flex;
|
|
@@ -29783,7 +29945,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29783
29945
|
.k-taskboard-column {
|
|
29784
29946
|
width: 320px;
|
|
29785
29947
|
border-width: 1px;
|
|
29786
|
-
border-radius:
|
|
29948
|
+
border-radius: 4px;
|
|
29787
29949
|
border-style: solid;
|
|
29788
29950
|
outline: none;
|
|
29789
29951
|
display: flex;
|
|
@@ -29881,7 +30043,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29881
30043
|
}
|
|
29882
30044
|
|
|
29883
30045
|
.k-taskboard-card {
|
|
29884
|
-
border-radius:
|
|
30046
|
+
border-radius: 4px;
|
|
29885
30047
|
border-width: 1px;
|
|
29886
30048
|
}
|
|
29887
30049
|
|
|
@@ -29914,7 +30076,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29914
30076
|
}
|
|
29915
30077
|
|
|
29916
30078
|
.k-taskboard-drag-placeholder {
|
|
29917
|
-
border-radius:
|
|
30079
|
+
border-radius: 4px;
|
|
29918
30080
|
border-width: 1px;
|
|
29919
30081
|
border-style: solid;
|
|
29920
30082
|
position: relative;
|
|
@@ -30067,7 +30229,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30067
30229
|
}
|
|
30068
30230
|
|
|
30069
30231
|
.k-editor-inline {
|
|
30070
|
-
border-radius:
|
|
30232
|
+
border-radius: 4px;
|
|
30071
30233
|
padding: 2px 4px;
|
|
30072
30234
|
border: 1px solid transparent;
|
|
30073
30235
|
word-wrap: break-word;
|
|
@@ -30467,7 +30629,7 @@ td.k-editor-content {
|
|
|
30467
30629
|
white-space: nowrap;
|
|
30468
30630
|
overflow: hidden;
|
|
30469
30631
|
cursor: pointer;
|
|
30470
|
-
border-radius:
|
|
30632
|
+
border-radius: 4px;
|
|
30471
30633
|
}
|
|
30472
30634
|
|
|
30473
30635
|
.k-filebrowser .k-tile .k-i-file,
|
|
@@ -31403,7 +31565,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31403
31565
|
}
|
|
31404
31566
|
|
|
31405
31567
|
.k-task-single {
|
|
31406
|
-
border-radius:
|
|
31568
|
+
border-radius: 4px;
|
|
31407
31569
|
border-width: 0px;
|
|
31408
31570
|
border-style: solid;
|
|
31409
31571
|
box-sizing: border-box;
|
|
@@ -31446,7 +31608,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31446
31608
|
}
|
|
31447
31609
|
|
|
31448
31610
|
.k-task-complete {
|
|
31449
|
-
border-radius:
|
|
31611
|
+
border-radius: 4px;
|
|
31450
31612
|
width: 20%;
|
|
31451
31613
|
position: absolute;
|
|
31452
31614
|
z-index: 1;
|
|
@@ -31612,6 +31774,37 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31612
31774
|
visibility: visible;
|
|
31613
31775
|
}
|
|
31614
31776
|
|
|
31777
|
+
.k-gantt-tooltip-validation {
|
|
31778
|
+
max-width: 200px;
|
|
31779
|
+
display: block;
|
|
31780
|
+
}
|
|
31781
|
+
|
|
31782
|
+
.k-gantt-tooltip-validation::before {
|
|
31783
|
+
content: '';
|
|
31784
|
+
width: 4px;
|
|
31785
|
+
height: 100%;
|
|
31786
|
+
position: absolute;
|
|
31787
|
+
top: 0;
|
|
31788
|
+
left: 0;
|
|
31789
|
+
}
|
|
31790
|
+
|
|
31791
|
+
.k-gantt-tooltip-validation-row {
|
|
31792
|
+
display: flex;
|
|
31793
|
+
flex-direction: row;
|
|
31794
|
+
justify-content: space-between;
|
|
31795
|
+
}
|
|
31796
|
+
|
|
31797
|
+
.k-gantt-tooltip-validation-label {
|
|
31798
|
+
display: inline-flex;
|
|
31799
|
+
white-space: nowrap;
|
|
31800
|
+
overflow: hidden;
|
|
31801
|
+
text-overflow: ellipsis;
|
|
31802
|
+
}
|
|
31803
|
+
|
|
31804
|
+
.k-gantt-tooltip-validation-value {
|
|
31805
|
+
font-weight: 700;
|
|
31806
|
+
}
|
|
31807
|
+
|
|
31615
31808
|
.k-pdf-export-shadow .k-gantt {
|
|
31616
31809
|
float: left;
|
|
31617
31810
|
}
|
|
@@ -31637,80 +31830,104 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31637
31830
|
}
|
|
31638
31831
|
|
|
31639
31832
|
.k-rtl .k-gantt-rows,
|
|
31640
|
-
.k-rtl .k-gantt-columns
|
|
31833
|
+
.k-rtl .k-gantt-columns,
|
|
31834
|
+
[dir="rtl"] .k-gantt-rows,
|
|
31835
|
+
[dir="rtl"] .k-gantt-columns {
|
|
31641
31836
|
left: auto;
|
|
31642
31837
|
right: 0;
|
|
31643
31838
|
}
|
|
31644
31839
|
|
|
31645
|
-
.k-rtl .k-task-wrap:not(.k-milestone-wrap)
|
|
31840
|
+
.k-rtl .k-task-wrap:not(.k-milestone-wrap),
|
|
31841
|
+
[dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
|
|
31646
31842
|
margin: 0 -26px;
|
|
31647
31843
|
}
|
|
31648
31844
|
|
|
31649
|
-
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody
|
|
31845
|
+
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody,
|
|
31846
|
+
[dir="rtl"] .k-gantt-timeline .k-gantt-tasks tbody {
|
|
31650
31847
|
text-align: left;
|
|
31651
31848
|
}
|
|
31652
31849
|
|
|
31653
|
-
.k-rtl .k-gantt-timeline .k-header
|
|
31850
|
+
.k-rtl .k-gantt-timeline .k-header,
|
|
31851
|
+
[dir="rtl"] .k-gantt-timeline .k-header {
|
|
31654
31852
|
border-width: 0 1px 1px 0;
|
|
31655
31853
|
}
|
|
31656
31854
|
|
|
31657
|
-
.k-rtl .k-gantt-timeline .k-header:first-child
|
|
31855
|
+
.k-rtl .k-gantt-timeline .k-header:first-child,
|
|
31856
|
+
[dir="rtl"] .k-gantt-timeline .k-header:first-child {
|
|
31658
31857
|
border-right-width: 0;
|
|
31659
31858
|
}
|
|
31660
31859
|
|
|
31661
|
-
.k-rtl .k-gantt-timeline .k-task-start
|
|
31860
|
+
.k-rtl .k-gantt-timeline .k-task-start,
|
|
31861
|
+
[dir="rtl"] .k-gantt-timeline .k-task-start {
|
|
31662
31862
|
left: auto;
|
|
31663
31863
|
right: 0;
|
|
31664
31864
|
}
|
|
31665
31865
|
|
|
31666
|
-
.k-rtl .k-gantt-timeline .k-task-end
|
|
31866
|
+
.k-rtl .k-gantt-timeline .k-task-end,
|
|
31867
|
+
[dir="rtl"] .k-gantt-timeline .k-task-end {
|
|
31667
31868
|
right: auto;
|
|
31668
31869
|
left: 0;
|
|
31669
31870
|
}
|
|
31670
31871
|
|
|
31671
|
-
.k-rtl .k-task-content
|
|
31872
|
+
.k-rtl .k-task-content,
|
|
31873
|
+
[dir="rtl"] .k-task-content {
|
|
31672
31874
|
text-align: right;
|
|
31673
31875
|
}
|
|
31674
31876
|
|
|
31675
|
-
.k-rtl .k-task-complete
|
|
31877
|
+
.k-rtl .k-task-complete,
|
|
31878
|
+
[dir="rtl"] .k-task-complete {
|
|
31676
31879
|
left: auto;
|
|
31677
31880
|
right: 0;
|
|
31678
31881
|
}
|
|
31679
31882
|
|
|
31680
|
-
.k-rtl .k-task-draghandle
|
|
31883
|
+
.k-rtl .k-task-draghandle,
|
|
31884
|
+
[dir="rtl"] .k-task-draghandle {
|
|
31681
31885
|
margin-left: 0;
|
|
31682
31886
|
margin-right: 16px;
|
|
31683
31887
|
}
|
|
31684
31888
|
|
|
31685
|
-
.k-rtl .k-gantt-dependencies
|
|
31889
|
+
.k-rtl .k-gantt-dependencies,
|
|
31890
|
+
[dir="rtl"] .k-gantt-dependencies {
|
|
31686
31891
|
left: auto;
|
|
31687
31892
|
right: 0;
|
|
31688
31893
|
}
|
|
31689
31894
|
|
|
31690
|
-
.k-rtl .k-gantt-delete
|
|
31895
|
+
.k-rtl .k-gantt-delete,
|
|
31896
|
+
[dir="rtl"] .k-gantt-delete {
|
|
31691
31897
|
float: right;
|
|
31692
31898
|
}
|
|
31693
31899
|
|
|
31694
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e
|
|
31900
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e,
|
|
31901
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
|
|
31695
31902
|
display: block;
|
|
31696
31903
|
}
|
|
31697
31904
|
|
|
31698
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w
|
|
31905
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w,
|
|
31906
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
|
|
31699
31907
|
display: none;
|
|
31700
31908
|
}
|
|
31701
31909
|
|
|
31702
|
-
.k-rtl .k-milestone-wrap
|
|
31910
|
+
.k-rtl .k-milestone-wrap,
|
|
31911
|
+
[dir="rtl"] .k-milestone-wrap {
|
|
31703
31912
|
margin-left: -2.4em;
|
|
31704
31913
|
}
|
|
31705
31914
|
|
|
31706
|
-
.k-rtl .k-milestone-wrap .k-task-moment
|
|
31915
|
+
.k-rtl .k-milestone-wrap .k-task-moment,
|
|
31916
|
+
[dir="rtl"] .k-milestone-wrap .k-task-moment {
|
|
31707
31917
|
margin-right: 0.2em;
|
|
31708
31918
|
}
|
|
31709
31919
|
|
|
31710
|
-
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start
|
|
31920
|
+
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start,
|
|
31921
|
+
[dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
31711
31922
|
right: -0.1em;
|
|
31712
31923
|
}
|
|
31713
31924
|
|
|
31925
|
+
.k-rtl .k-gantt-tooltip-validation::before,
|
|
31926
|
+
[dir="rtl"] .k-gantt-tooltip-validation::before {
|
|
31927
|
+
left: auto;
|
|
31928
|
+
right: 0;
|
|
31929
|
+
}
|
|
31930
|
+
|
|
31714
31931
|
.k-gantt {
|
|
31715
31932
|
border-color: rgba(0, 0, 0, 0.08);
|
|
31716
31933
|
color: #424242;
|
|
@@ -31893,6 +32110,18 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31893
32110
|
background-color: #ff6358;
|
|
31894
32111
|
}
|
|
31895
32112
|
|
|
32113
|
+
.k-gantt-tooltip-validation::before {
|
|
32114
|
+
background-color: #656565;
|
|
32115
|
+
}
|
|
32116
|
+
|
|
32117
|
+
.k-gantt-tooltip-valid::before {
|
|
32118
|
+
background-color: #37b400;
|
|
32119
|
+
}
|
|
32120
|
+
|
|
32121
|
+
.k-gantt-tooltip-invalid::before {
|
|
32122
|
+
background-color: #f31700;
|
|
32123
|
+
}
|
|
32124
|
+
|
|
31896
32125
|
.k-scheduler {
|
|
31897
32126
|
border-width: 1px;
|
|
31898
32127
|
border-style: solid;
|
|
@@ -32272,12 +32501,12 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
|
|
|
32272
32501
|
|
|
32273
32502
|
kendo-scheduler .k-event,
|
|
32274
32503
|
.k-event {
|
|
32275
|
-
border-radius:
|
|
32504
|
+
border-radius: 4px;
|
|
32276
32505
|
min-height: 25px;
|
|
32277
32506
|
box-sizing: border-box;
|
|
32278
32507
|
border-width: 0;
|
|
32279
32508
|
border-style: solid;
|
|
32280
|
-
border-radius:
|
|
32509
|
+
border-radius: 4px;
|
|
32281
32510
|
text-align: left;
|
|
32282
32511
|
outline: 0;
|
|
32283
32512
|
cursor: default;
|
|
@@ -32743,7 +32972,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
32743
32972
|
|
|
32744
32973
|
.k-scheduler-tooltip .k-tooltip-event {
|
|
32745
32974
|
padding: 4px 8px;
|
|
32746
|
-
border-radius:
|
|
32975
|
+
border-radius: 4px;
|
|
32747
32976
|
box-sizing: border-box;
|
|
32748
32977
|
display: flex;
|
|
32749
32978
|
flex-direction: row;
|
|
@@ -33781,7 +34010,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33781
34010
|
display: inline-block;
|
|
33782
34011
|
text-align: center;
|
|
33783
34012
|
padding: 4px 8px;
|
|
33784
|
-
border-radius:
|
|
34013
|
+
border-radius: 4px;
|
|
33785
34014
|
line-height: 1.4285714286;
|
|
33786
34015
|
min-width: 80px;
|
|
33787
34016
|
max-width: 160px;
|
|
@@ -33838,7 +34067,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33838
34067
|
}
|
|
33839
34068
|
|
|
33840
34069
|
.k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
|
|
33841
|
-
border-radius:
|
|
34070
|
+
border-radius: 4px;
|
|
33842
34071
|
}
|
|
33843
34072
|
|
|
33844
34073
|
.k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
|
|
@@ -33875,7 +34104,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33875
34104
|
height: 100%;
|
|
33876
34105
|
width: 6px;
|
|
33877
34106
|
transform: translateX(-50%);
|
|
33878
|
-
border-radius:
|
|
34107
|
+
border-radius: 6px;
|
|
33879
34108
|
}
|
|
33880
34109
|
|
|
33881
34110
|
.k-timeline-vertical .k-timeline-flag-wrap {
|
|
@@ -33917,7 +34146,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33917
34146
|
}
|
|
33918
34147
|
|
|
33919
34148
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-header {
|
|
33920
|
-
border-radius:
|
|
34149
|
+
border-radius: 6px;
|
|
33921
34150
|
}
|
|
33922
34151
|
|
|
33923
34152
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-title {
|
|
@@ -34814,7 +35043,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
34814
35043
|
}
|
|
34815
35044
|
|
|
34816
35045
|
.k-chart-tooltip {
|
|
34817
|
-
border-radius:
|
|
35046
|
+
border-radius: 4px;
|
|
34818
35047
|
font-size: 13.006px;
|
|
34819
35048
|
line-height: 1.4285714286;
|
|
34820
35049
|
padding: 4px 8px;
|
|
@@ -34920,7 +35149,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
34920
35149
|
}
|
|
34921
35150
|
|
|
34922
35151
|
.k-navigator-hint .k-scroll {
|
|
34923
|
-
border-radius:
|
|
35152
|
+
border-radius: 4px;
|
|
34924
35153
|
position: absolute;
|
|
34925
35154
|
height: 4px;
|
|
34926
35155
|
}
|
|
@@ -35127,7 +35356,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35127
35356
|
}
|
|
35128
35357
|
|
|
35129
35358
|
.k-var--border-radius {
|
|
35130
|
-
margin-top:
|
|
35359
|
+
margin-top: 4px;
|
|
35131
35360
|
}
|
|
35132
35361
|
|
|
35133
35362
|
.k-var--normal-background {
|
|
@@ -35634,7 +35863,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35634
35863
|
}
|
|
35635
35864
|
|
|
35636
35865
|
.k-orgchart-node-group-container {
|
|
35637
|
-
border-radius:
|
|
35866
|
+
border-radius: 4px;
|
|
35638
35867
|
padding: 24px 24px;
|
|
35639
35868
|
border-width: 1px;
|
|
35640
35869
|
border-style: solid;
|