@progress/kendo-theme-default 5.1.2-dev.6 → 5.2.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +438 -187
- package/dist/all.scss +269 -133
- package/lib/swatches/default-blue.json +2 -1
- package/lib/swatches/default-dataviz-v4.json +2 -1
- package/lib/swatches/default-green.json +2 -1
- package/lib/swatches/default-main-dark.json +2 -1
- package/lib/swatches/default-main.json +2 -1
- package/lib/swatches/default-nordic.json +2 -1
- package/lib/swatches/default-orange.json +2 -1
- package/lib/swatches/default-purple.json +2 -1
- package/lib/swatches/default-turquoise.json +2 -1
- package/lib/swatches/default-urban.json +2 -1
- package/package.json +3 -3
- 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 +13 -0
- package/scss/button/_variables.scss +11 -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/_layout.scss +4 -0
- 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/imageeditor/_layout.scss +5 -0
- package/scss/input/_layout.scss +2 -2
- 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/pager/_layout.scss +5 -0
- 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 -5
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/stepper/_layout.scss +2 -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 {
|
|
@@ -12039,6 +12202,18 @@ kendo-badge-container {
|
|
|
12039
12202
|
flex: none;
|
|
12040
12203
|
}
|
|
12041
12204
|
|
|
12205
|
+
.k-split-button .k-split-button-arrow.k-button-sm {
|
|
12206
|
+
padding: 2px 2px;
|
|
12207
|
+
}
|
|
12208
|
+
|
|
12209
|
+
.k-split-button .k-split-button-arrow.k-button-md {
|
|
12210
|
+
padding: 4px 4px;
|
|
12211
|
+
}
|
|
12212
|
+
|
|
12213
|
+
.k-split-button .k-split-button-arrow.k-button-lg {
|
|
12214
|
+
padding: 6px 6px;
|
|
12215
|
+
}
|
|
12216
|
+
|
|
12042
12217
|
.k-split-button .k-split-button-arrow .k-button-icon {
|
|
12043
12218
|
min-width: 0;
|
|
12044
12219
|
}
|
|
@@ -13200,7 +13375,7 @@ select.k-picker {
|
|
|
13200
13375
|
position: relative;
|
|
13201
13376
|
z-index: 1;
|
|
13202
13377
|
overflow: hidden;
|
|
13203
|
-
text-overflow:
|
|
13378
|
+
text-overflow: ellipsis;
|
|
13204
13379
|
-webkit-appearance: none;
|
|
13205
13380
|
}
|
|
13206
13381
|
|
|
@@ -13249,7 +13424,7 @@ textarea.k-input-inner {
|
|
|
13249
13424
|
.k-input-value-text {
|
|
13250
13425
|
flex: 1;
|
|
13251
13426
|
overflow: hidden;
|
|
13252
|
-
text-overflow:
|
|
13427
|
+
text-overflow: ellipsis;
|
|
13253
13428
|
}
|
|
13254
13429
|
|
|
13255
13430
|
.k-input-value-text::before {
|
|
@@ -14380,6 +14555,8 @@ textarea.k-input-inner {
|
|
|
14380
14555
|
}
|
|
14381
14556
|
|
|
14382
14557
|
.k-chip-content {
|
|
14558
|
+
padding: .5em 0;
|
|
14559
|
+
margin: -.5em 0;
|
|
14383
14560
|
min-width: 0;
|
|
14384
14561
|
display: flex;
|
|
14385
14562
|
flex-flow: row nowrap;
|
|
@@ -14722,7 +14899,7 @@ textarea.k-input-inner {
|
|
|
14722
14899
|
width: 100%;
|
|
14723
14900
|
height: 100%;
|
|
14724
14901
|
border-width: 1px;
|
|
14725
|
-
border-radius:
|
|
14902
|
+
border-radius: 4px;
|
|
14726
14903
|
box-sizing: border-box;
|
|
14727
14904
|
border-style: solid;
|
|
14728
14905
|
display: inline-flex;
|
|
@@ -15128,7 +15305,7 @@ textarea.k-input-inner {
|
|
|
15128
15305
|
.k-loader-container-panel {
|
|
15129
15306
|
border-width: 1px;
|
|
15130
15307
|
border-style: solid;
|
|
15131
|
-
border-radius:
|
|
15308
|
+
border-radius: 4px;
|
|
15132
15309
|
}
|
|
15133
15310
|
|
|
15134
15311
|
.k-loader-container-sm .k-loader-container-inner {
|
|
@@ -15221,7 +15398,7 @@ textarea.k-input-inner {
|
|
|
15221
15398
|
}
|
|
15222
15399
|
|
|
15223
15400
|
.k-skeleton-text {
|
|
15224
|
-
border-radius:
|
|
15401
|
+
border-radius: 4px;
|
|
15225
15402
|
transform: scale(1, 0.6);
|
|
15226
15403
|
}
|
|
15227
15404
|
|
|
@@ -16126,12 +16303,6 @@ kendo-label > .k-label {
|
|
|
16126
16303
|
width: 100%;
|
|
16127
16304
|
}
|
|
16128
16305
|
|
|
16129
|
-
.k-form .k-daterangepicker {
|
|
16130
|
-
width: 100%;
|
|
16131
|
-
flex-flow: column nowrap;
|
|
16132
|
-
gap: 0;
|
|
16133
|
-
}
|
|
16134
|
-
|
|
16135
16306
|
.k-form-buttons {
|
|
16136
16307
|
margin-top: 2em;
|
|
16137
16308
|
padding: 0;
|
|
@@ -16380,7 +16551,7 @@ kendo-label > .k-label {
|
|
|
16380
16551
|
}
|
|
16381
16552
|
|
|
16382
16553
|
.k-tooltip {
|
|
16383
|
-
border-radius:
|
|
16554
|
+
border-radius: 4px;
|
|
16384
16555
|
margin: 0;
|
|
16385
16556
|
padding: 4px 8px;
|
|
16386
16557
|
border-width: 0px;
|
|
@@ -16675,7 +16846,7 @@ kendo-label > .k-label {
|
|
|
16675
16846
|
}
|
|
16676
16847
|
|
|
16677
16848
|
.k-progressbar {
|
|
16678
|
-
border-radius:
|
|
16849
|
+
border-radius: 4px;
|
|
16679
16850
|
--kendo-progressbar-progress: 0;
|
|
16680
16851
|
border-width: 0px;
|
|
16681
16852
|
border-style: solid;
|
|
@@ -17678,7 +17849,7 @@ kendo-label > .k-label {
|
|
|
17678
17849
|
|
|
17679
17850
|
.k-slider .k-slider-track,
|
|
17680
17851
|
.k-slider .k-slider-selection {
|
|
17681
|
-
border-radius:
|
|
17852
|
+
border-radius: 4px;
|
|
17682
17853
|
}
|
|
17683
17854
|
|
|
17684
17855
|
.k-slider .k-slider-track {
|
|
@@ -17799,7 +17970,7 @@ kendo-label > .k-label {
|
|
|
17799
17970
|
}
|
|
17800
17971
|
|
|
17801
17972
|
.k-calendar-td {
|
|
17802
|
-
border-radius:
|
|
17973
|
+
border-radius: 4px;
|
|
17803
17974
|
border-color: transparent;
|
|
17804
17975
|
}
|
|
17805
17976
|
|
|
@@ -17864,7 +18035,7 @@ kendo-label > .k-label {
|
|
|
17864
18035
|
}
|
|
17865
18036
|
|
|
17866
18037
|
.k-calendar-view .k-link {
|
|
17867
|
-
border-radius:
|
|
18038
|
+
border-radius: 4px;
|
|
17868
18039
|
padding: 0.5em 0.5em;
|
|
17869
18040
|
box-sizing: border-box;
|
|
17870
18041
|
display: flex;
|
|
@@ -18049,6 +18220,9 @@ kendo-label > .k-label {
|
|
|
18049
18220
|
line-height: 2em;
|
|
18050
18221
|
cursor: pointer;
|
|
18051
18222
|
padding: 0 1em;
|
|
18223
|
+
overflow: hidden;
|
|
18224
|
+
white-space: nowrap;
|
|
18225
|
+
text-overflow: clip;
|
|
18052
18226
|
}
|
|
18053
18227
|
|
|
18054
18228
|
.k-calendar-navigation .k-calendar-navigation-marker {
|
|
@@ -18660,7 +18834,7 @@ kendo-label > .k-label {
|
|
|
18660
18834
|
}
|
|
18661
18835
|
|
|
18662
18836
|
.k-colorgradient {
|
|
18663
|
-
border-radius:
|
|
18837
|
+
border-radius: 4px;
|
|
18664
18838
|
width: 272px;
|
|
18665
18839
|
padding: 12px 12px;
|
|
18666
18840
|
border-style: solid;
|
|
@@ -18689,7 +18863,7 @@ kendo-label > .k-label {
|
|
|
18689
18863
|
}
|
|
18690
18864
|
|
|
18691
18865
|
.k-colorgradient-canvas .k-hsv-rectangle {
|
|
18692
|
-
border-radius:
|
|
18866
|
+
border-radius: 4px;
|
|
18693
18867
|
position: relative;
|
|
18694
18868
|
flex: 1 1 auto;
|
|
18695
18869
|
-webkit-user-select: none;
|
|
@@ -18699,7 +18873,7 @@ kendo-label > .k-label {
|
|
|
18699
18873
|
}
|
|
18700
18874
|
|
|
18701
18875
|
.k-colorgradient-canvas .k-hsv-gradient {
|
|
18702
|
-
border-radius:
|
|
18876
|
+
border-radius: 4px;
|
|
18703
18877
|
height: 180px;
|
|
18704
18878
|
}
|
|
18705
18879
|
|
|
@@ -18791,6 +18965,10 @@ kendo-label > .k-label {
|
|
|
18791
18965
|
width: 46px;
|
|
18792
18966
|
}
|
|
18793
18967
|
|
|
18968
|
+
.k-colorgradient-inputs .k-input-inner {
|
|
18969
|
+
text-overflow: clip;
|
|
18970
|
+
}
|
|
18971
|
+
|
|
18794
18972
|
.k-colorgradient-color-contrast > div {
|
|
18795
18973
|
display: flex;
|
|
18796
18974
|
flex-flow: row nowrap;
|
|
@@ -18889,7 +19067,7 @@ kendo-label > .k-label {
|
|
|
18889
19067
|
}
|
|
18890
19068
|
|
|
18891
19069
|
.k-coloreditor {
|
|
18892
|
-
border-radius:
|
|
19070
|
+
border-radius: 4px;
|
|
18893
19071
|
min-width: 272px;
|
|
18894
19072
|
border-width: 1px;
|
|
18895
19073
|
border-style: solid;
|
|
@@ -19426,7 +19604,7 @@ kendo-label > .k-label {
|
|
|
19426
19604
|
}
|
|
19427
19605
|
|
|
19428
19606
|
.k-treeview-leaf {
|
|
19429
|
-
border-radius:
|
|
19607
|
+
border-radius: 4px;
|
|
19430
19608
|
padding: 4px 8px;
|
|
19431
19609
|
border: 0px solid transparent;
|
|
19432
19610
|
text-decoration: none;
|
|
@@ -21941,7 +22119,7 @@ kendo-drawer .k-drawer-wrapper {
|
|
|
21941
22119
|
}
|
|
21942
22120
|
|
|
21943
22121
|
.k-notification {
|
|
21944
|
-
border-radius:
|
|
22122
|
+
border-radius: 4px;
|
|
21945
22123
|
padding: 4px 8px;
|
|
21946
22124
|
border-width: 1px;
|
|
21947
22125
|
border-style: solid;
|
|
@@ -22079,7 +22257,7 @@ kendo-card-footer {
|
|
|
22079
22257
|
}
|
|
22080
22258
|
|
|
22081
22259
|
.k-card {
|
|
22082
|
-
border-radius:
|
|
22260
|
+
border-radius: 6px;
|
|
22083
22261
|
border-width: 1px;
|
|
22084
22262
|
border-style: solid;
|
|
22085
22263
|
box-sizing: border-box;
|
|
@@ -22102,7 +22280,7 @@ kendo-card-footer {
|
|
|
22102
22280
|
}
|
|
22103
22281
|
|
|
22104
22282
|
.k-card > .k-card-inner {
|
|
22105
|
-
border-radius:
|
|
22283
|
+
border-radius: 5px;
|
|
22106
22284
|
display: flex;
|
|
22107
22285
|
flex-direction: inherit;
|
|
22108
22286
|
overflow: hidden;
|
|
@@ -22348,17 +22526,17 @@ kendo-card-footer {
|
|
|
22348
22526
|
}
|
|
22349
22527
|
|
|
22350
22528
|
.k-card-group .k-card.k-first {
|
|
22351
|
-
border-top-left-radius:
|
|
22352
|
-
border-bottom-left-radius:
|
|
22529
|
+
border-top-left-radius: 6px;
|
|
22530
|
+
border-bottom-left-radius: 6px;
|
|
22353
22531
|
}
|
|
22354
22532
|
|
|
22355
22533
|
.k-card-group .k-card.k-last {
|
|
22356
|
-
border-top-right-radius:
|
|
22357
|
-
border-bottom-right-radius:
|
|
22534
|
+
border-top-right-radius: 6px;
|
|
22535
|
+
border-bottom-right-radius: 6px;
|
|
22358
22536
|
}
|
|
22359
22537
|
|
|
22360
22538
|
.k-card-group .k-card.k-only {
|
|
22361
|
-
border-radius:
|
|
22539
|
+
border-radius: 6px;
|
|
22362
22540
|
}
|
|
22363
22541
|
|
|
22364
22542
|
.k-card-with-callout {
|
|
@@ -22576,7 +22754,7 @@ kendo-card-footer {
|
|
|
22576
22754
|
}
|
|
22577
22755
|
|
|
22578
22756
|
.k-popover {
|
|
22579
|
-
border-radius:
|
|
22757
|
+
border-radius: 6px;
|
|
22580
22758
|
padding: 0;
|
|
22581
22759
|
border-width: 1px;
|
|
22582
22760
|
border-style: solid;
|
|
@@ -22599,8 +22777,8 @@ kendo-card-footer {
|
|
|
22599
22777
|
}
|
|
22600
22778
|
|
|
22601
22779
|
.k-popover-header {
|
|
22602
|
-
border-top-left-radius:
|
|
22603
|
-
border-top-right-radius:
|
|
22780
|
+
border-top-left-radius: 6px;
|
|
22781
|
+
border-top-right-radius: 6px;
|
|
22604
22782
|
padding: 12px 16px;
|
|
22605
22783
|
border-width: 0 0 1px;
|
|
22606
22784
|
border-style: solid;
|
|
@@ -22760,7 +22938,7 @@ kendo-card-footer {
|
|
|
22760
22938
|
min-width: 72px;
|
|
22761
22939
|
min-height: 48px;
|
|
22762
22940
|
border-width: 0;
|
|
22763
|
-
border-radius:
|
|
22941
|
+
border-radius: 4px;
|
|
22764
22942
|
box-sizing: border-box;
|
|
22765
22943
|
font: inherit;
|
|
22766
22944
|
display: inline-flex;
|
|
@@ -23084,7 +23262,7 @@ kendo-card-footer {
|
|
|
23084
23262
|
|
|
23085
23263
|
.k-breadcrumb-link,
|
|
23086
23264
|
.k-breadcrumb-root-link {
|
|
23087
|
-
border-radius:
|
|
23265
|
+
border-radius: 4px;
|
|
23088
23266
|
padding: 6px 8px;
|
|
23089
23267
|
color: inherit;
|
|
23090
23268
|
text-decoration: none;
|
|
@@ -23315,6 +23493,11 @@ kendo-card-footer {
|
|
|
23315
23493
|
width: 5em;
|
|
23316
23494
|
}
|
|
23317
23495
|
|
|
23496
|
+
.k-pager-sizes .k-input-inner,
|
|
23497
|
+
.k-pager-sizes .k-input-value-text {
|
|
23498
|
+
text-overflow: clip;
|
|
23499
|
+
}
|
|
23500
|
+
|
|
23318
23501
|
.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
|
|
23319
23502
|
.k-rtl .k-pager-sizes .k-dropdownlist,
|
|
23320
23503
|
.k-rtl .k-pager-sizes > select,
|
|
@@ -23510,6 +23693,7 @@ kendo-card-footer {
|
|
|
23510
23693
|
display: flex;
|
|
23511
23694
|
align-items: center;
|
|
23512
23695
|
justify-content: center;
|
|
23696
|
+
flex: none;
|
|
23513
23697
|
position: relative;
|
|
23514
23698
|
z-index: 1;
|
|
23515
23699
|
overflow: visible;
|
|
@@ -23540,7 +23724,7 @@ kendo-card-footer {
|
|
|
23540
23724
|
}
|
|
23541
23725
|
|
|
23542
23726
|
.k-stepper .k-step-label {
|
|
23543
|
-
max-width: 10em;
|
|
23727
|
+
max-width: clamp(100%, 10em, 100%);
|
|
23544
23728
|
display: inline-flex;
|
|
23545
23729
|
flex-wrap: wrap;
|
|
23546
23730
|
align-items: center;
|
|
@@ -23948,8 +24132,8 @@ kendo-card-footer {
|
|
|
23948
24132
|
}
|
|
23949
24133
|
|
|
23950
24134
|
.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
|
|
23951
|
-
border-top-left-radius:
|
|
23952
|
-
border-top-right-radius:
|
|
24135
|
+
border-top-left-radius: 4px;
|
|
24136
|
+
border-top-right-radius: 4px;
|
|
23953
24137
|
margin-bottom: -1px;
|
|
23954
24138
|
}
|
|
23955
24139
|
|
|
@@ -23963,8 +24147,8 @@ kendo-card-footer {
|
|
|
23963
24147
|
|
|
23964
24148
|
.k-tabstrip-top > .k-content,
|
|
23965
24149
|
.k-tabstrip-top > .k-tabstrip-content {
|
|
23966
|
-
border-bottom-right-radius:
|
|
23967
|
-
border-bottom-left-radius:
|
|
24150
|
+
border-bottom-right-radius: 4px;
|
|
24151
|
+
border-bottom-left-radius: 4px;
|
|
23968
24152
|
border-top-color: transparent !important;
|
|
23969
24153
|
}
|
|
23970
24154
|
|
|
@@ -23978,8 +24162,8 @@ kendo-card-footer {
|
|
|
23978
24162
|
}
|
|
23979
24163
|
|
|
23980
24164
|
.k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item {
|
|
23981
|
-
border-bottom-right-radius:
|
|
23982
|
-
border-bottom-left-radius:
|
|
24165
|
+
border-bottom-right-radius: 4px;
|
|
24166
|
+
border-bottom-left-radius: 4px;
|
|
23983
24167
|
margin-top: -1px;
|
|
23984
24168
|
}
|
|
23985
24169
|
|
|
@@ -23993,8 +24177,8 @@ kendo-card-footer {
|
|
|
23993
24177
|
|
|
23994
24178
|
.k-tabstrip-bottom > .k-content,
|
|
23995
24179
|
.k-tabstrip-bottom > .k-tabstrip-content {
|
|
23996
|
-
border-top-left-radius:
|
|
23997
|
-
border-top-right-radius:
|
|
24180
|
+
border-top-left-radius: 4px;
|
|
24181
|
+
border-top-right-radius: 4px;
|
|
23998
24182
|
border-bottom-color: transparent !important;
|
|
23999
24183
|
}
|
|
24000
24184
|
|
|
@@ -24014,8 +24198,8 @@ kendo-card-footer {
|
|
|
24014
24198
|
}
|
|
24015
24199
|
|
|
24016
24200
|
.k-tabstrip-left > .k-tabstrip-items-wrapper .k-item {
|
|
24017
|
-
border-top-left-radius:
|
|
24018
|
-
border-bottom-left-radius:
|
|
24201
|
+
border-top-left-radius: 4px;
|
|
24202
|
+
border-bottom-left-radius: 4px;
|
|
24019
24203
|
margin-right: -1px;
|
|
24020
24204
|
}
|
|
24021
24205
|
|
|
@@ -24029,8 +24213,8 @@ kendo-card-footer {
|
|
|
24029
24213
|
|
|
24030
24214
|
.k-tabstrip-left > .k-content,
|
|
24031
24215
|
.k-tabstrip-left > .k-tabstrip-content {
|
|
24032
|
-
border-top-right-radius:
|
|
24033
|
-
border-bottom-right-radius:
|
|
24216
|
+
border-top-right-radius: 4px;
|
|
24217
|
+
border-bottom-right-radius: 4px;
|
|
24034
24218
|
margin: 0 !important;
|
|
24035
24219
|
border-left-color: transparent !important;
|
|
24036
24220
|
}
|
|
@@ -24051,8 +24235,8 @@ kendo-card-footer {
|
|
|
24051
24235
|
}
|
|
24052
24236
|
|
|
24053
24237
|
.k-tabstrip-right > .k-tabstrip-items-wrapper .k-item {
|
|
24054
|
-
border-top-right-radius:
|
|
24055
|
-
border-bottom-right-radius:
|
|
24238
|
+
border-top-right-radius: 4px;
|
|
24239
|
+
border-bottom-right-radius: 4px;
|
|
24056
24240
|
margin-left: -1px;
|
|
24057
24241
|
}
|
|
24058
24242
|
|
|
@@ -24066,8 +24250,8 @@ kendo-card-footer {
|
|
|
24066
24250
|
|
|
24067
24251
|
.k-tabstrip-right > .k-content,
|
|
24068
24252
|
.k-tabstrip-right > .k-tabstrip-content {
|
|
24069
|
-
border-top-left-radius:
|
|
24070
|
-
border-bottom-left-radius:
|
|
24253
|
+
border-top-left-radius: 4px;
|
|
24254
|
+
border-bottom-left-radius: 4px;
|
|
24071
24255
|
margin: 0 !important;
|
|
24072
24256
|
border-right-color: transparent !important;
|
|
24073
24257
|
}
|
|
@@ -24877,7 +25061,7 @@ kendo-card-footer {
|
|
|
24877
25061
|
}
|
|
24878
25062
|
|
|
24879
25063
|
.k-layout-item-hint {
|
|
24880
|
-
border-radius:
|
|
25064
|
+
border-radius: 6px;
|
|
24881
25065
|
border-width: 1px;
|
|
24882
25066
|
border-style: solid;
|
|
24883
25067
|
position: relative;
|
|
@@ -25902,7 +26086,7 @@ kendo-card-footer {
|
|
|
25902
26086
|
}
|
|
25903
26087
|
|
|
25904
26088
|
.k-group-indicator {
|
|
25905
|
-
border-radius:
|
|
26089
|
+
border-radius: 4px;
|
|
25906
26090
|
margin: 0;
|
|
25907
26091
|
padding: 4px 8px;
|
|
25908
26092
|
border-width: 1px;
|
|
@@ -27480,11 +27664,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27480
27664
|
min-width: 1.4285714286em;
|
|
27481
27665
|
}
|
|
27482
27666
|
|
|
27483
|
-
.k-spreadsheet-toolbar .k-input,
|
|
27484
|
-
.k-spreadsheet-toolbar .k-picker {
|
|
27485
|
-
width: 5em;
|
|
27486
|
-
}
|
|
27487
|
-
|
|
27488
27667
|
.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
|
|
27489
27668
|
width: min-content;
|
|
27490
27669
|
}
|
|
@@ -27948,7 +28127,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27948
28127
|
}
|
|
27949
28128
|
|
|
27950
28129
|
.k-spreadsheet-filter {
|
|
27951
|
-
border-radius:
|
|
28130
|
+
border-radius: 4px;
|
|
27952
28131
|
line-height: 1;
|
|
27953
28132
|
position: absolute;
|
|
27954
28133
|
cursor: pointer;
|
|
@@ -28157,7 +28336,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28157
28336
|
}
|
|
28158
28337
|
|
|
28159
28338
|
.k-spreadsheet-insert-image-dialog {
|
|
28160
|
-
border-radius:
|
|
28339
|
+
border-radius: 4px;
|
|
28161
28340
|
border-style: dashed;
|
|
28162
28341
|
border-width: 2px;
|
|
28163
28342
|
}
|
|
@@ -28229,7 +28408,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28229
28408
|
height: 6px;
|
|
28230
28409
|
border-style: solid;
|
|
28231
28410
|
border-width: 1px;
|
|
28232
|
-
border-radius:
|
|
28411
|
+
border-radius: 6px;
|
|
28233
28412
|
position: absolute;
|
|
28234
28413
|
transform: translate(-50%, -50%);
|
|
28235
28414
|
}
|
|
@@ -28283,7 +28462,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28283
28462
|
}
|
|
28284
28463
|
|
|
28285
28464
|
.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:
|
|
28465
|
+
border-radius: 4px;
|
|
28287
28466
|
}
|
|
28288
28467
|
|
|
28289
28468
|
.k-rtl .k-spreadsheet .k-dirty,
|
|
@@ -28768,7 +28947,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28768
28947
|
.k-calculated-field {
|
|
28769
28948
|
padding: 16px 16px;
|
|
28770
28949
|
border-width: 1px;
|
|
28771
|
-
border-radius:
|
|
28950
|
+
border-radius: 4px;
|
|
28772
28951
|
border-style: solid;
|
|
28773
28952
|
box-sizing: border-box;
|
|
28774
28953
|
display: flex;
|
|
@@ -29783,7 +29962,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29783
29962
|
.k-taskboard-column {
|
|
29784
29963
|
width: 320px;
|
|
29785
29964
|
border-width: 1px;
|
|
29786
|
-
border-radius:
|
|
29965
|
+
border-radius: 4px;
|
|
29787
29966
|
border-style: solid;
|
|
29788
29967
|
outline: none;
|
|
29789
29968
|
display: flex;
|
|
@@ -29881,7 +30060,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29881
30060
|
}
|
|
29882
30061
|
|
|
29883
30062
|
.k-taskboard-card {
|
|
29884
|
-
border-radius:
|
|
30063
|
+
border-radius: 4px;
|
|
29885
30064
|
border-width: 1px;
|
|
29886
30065
|
}
|
|
29887
30066
|
|
|
@@ -29914,7 +30093,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29914
30093
|
}
|
|
29915
30094
|
|
|
29916
30095
|
.k-taskboard-drag-placeholder {
|
|
29917
|
-
border-radius:
|
|
30096
|
+
border-radius: 4px;
|
|
29918
30097
|
border-width: 1px;
|
|
29919
30098
|
border-style: solid;
|
|
29920
30099
|
position: relative;
|
|
@@ -30067,7 +30246,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30067
30246
|
}
|
|
30068
30247
|
|
|
30069
30248
|
.k-editor-inline {
|
|
30070
|
-
border-radius:
|
|
30249
|
+
border-radius: 4px;
|
|
30071
30250
|
padding: 2px 4px;
|
|
30072
30251
|
border: 1px solid transparent;
|
|
30073
30252
|
word-wrap: break-word;
|
|
@@ -30467,7 +30646,7 @@ td.k-editor-content {
|
|
|
30467
30646
|
white-space: nowrap;
|
|
30468
30647
|
overflow: hidden;
|
|
30469
30648
|
cursor: pointer;
|
|
30470
|
-
border-radius:
|
|
30649
|
+
border-radius: 4px;
|
|
30471
30650
|
}
|
|
30472
30651
|
|
|
30473
30652
|
.k-filebrowser .k-tile .k-i-file,
|
|
@@ -30794,6 +30973,11 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30794
30973
|
overflow-y: auto;
|
|
30795
30974
|
}
|
|
30796
30975
|
|
|
30976
|
+
.k-imageeditor-action-pane .k-input-inner,
|
|
30977
|
+
.k-imageeditor-action-pane .k-input-value-text {
|
|
30978
|
+
text-overflow: clip;
|
|
30979
|
+
}
|
|
30980
|
+
|
|
30797
30981
|
.k-imageeditor-crop-overlay {
|
|
30798
30982
|
width: 100%;
|
|
30799
30983
|
height: 100%;
|
|
@@ -31403,7 +31587,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31403
31587
|
}
|
|
31404
31588
|
|
|
31405
31589
|
.k-task-single {
|
|
31406
|
-
border-radius:
|
|
31590
|
+
border-radius: 4px;
|
|
31407
31591
|
border-width: 0px;
|
|
31408
31592
|
border-style: solid;
|
|
31409
31593
|
box-sizing: border-box;
|
|
@@ -31446,7 +31630,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31446
31630
|
}
|
|
31447
31631
|
|
|
31448
31632
|
.k-task-complete {
|
|
31449
|
-
border-radius:
|
|
31633
|
+
border-radius: 4px;
|
|
31450
31634
|
width: 20%;
|
|
31451
31635
|
position: absolute;
|
|
31452
31636
|
z-index: 1;
|
|
@@ -31612,6 +31796,37 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31612
31796
|
visibility: visible;
|
|
31613
31797
|
}
|
|
31614
31798
|
|
|
31799
|
+
.k-gantt-tooltip-validation {
|
|
31800
|
+
max-width: 200px;
|
|
31801
|
+
display: block;
|
|
31802
|
+
}
|
|
31803
|
+
|
|
31804
|
+
.k-gantt-tooltip-validation::before {
|
|
31805
|
+
content: "";
|
|
31806
|
+
width: 4px;
|
|
31807
|
+
height: 100%;
|
|
31808
|
+
position: absolute;
|
|
31809
|
+
top: 0;
|
|
31810
|
+
left: 0;
|
|
31811
|
+
}
|
|
31812
|
+
|
|
31813
|
+
.k-gantt-tooltip-validation-row {
|
|
31814
|
+
display: flex;
|
|
31815
|
+
flex-direction: row;
|
|
31816
|
+
justify-content: space-between;
|
|
31817
|
+
}
|
|
31818
|
+
|
|
31819
|
+
.k-gantt-tooltip-validation-label {
|
|
31820
|
+
display: inline-flex;
|
|
31821
|
+
white-space: nowrap;
|
|
31822
|
+
overflow: hidden;
|
|
31823
|
+
text-overflow: ellipsis;
|
|
31824
|
+
}
|
|
31825
|
+
|
|
31826
|
+
.k-gantt-tooltip-validation-value {
|
|
31827
|
+
font-weight: 700;
|
|
31828
|
+
}
|
|
31829
|
+
|
|
31615
31830
|
.k-pdf-export-shadow .k-gantt {
|
|
31616
31831
|
float: left;
|
|
31617
31832
|
}
|
|
@@ -31637,80 +31852,104 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31637
31852
|
}
|
|
31638
31853
|
|
|
31639
31854
|
.k-rtl .k-gantt-rows,
|
|
31640
|
-
.k-rtl .k-gantt-columns
|
|
31855
|
+
.k-rtl .k-gantt-columns,
|
|
31856
|
+
[dir="rtl"] .k-gantt-rows,
|
|
31857
|
+
[dir="rtl"] .k-gantt-columns {
|
|
31641
31858
|
left: auto;
|
|
31642
31859
|
right: 0;
|
|
31643
31860
|
}
|
|
31644
31861
|
|
|
31645
|
-
.k-rtl .k-task-wrap:not(.k-milestone-wrap)
|
|
31862
|
+
.k-rtl .k-task-wrap:not(.k-milestone-wrap),
|
|
31863
|
+
[dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
|
|
31646
31864
|
margin: 0 -26px;
|
|
31647
31865
|
}
|
|
31648
31866
|
|
|
31649
|
-
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody
|
|
31867
|
+
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody,
|
|
31868
|
+
[dir="rtl"] .k-gantt-timeline .k-gantt-tasks tbody {
|
|
31650
31869
|
text-align: left;
|
|
31651
31870
|
}
|
|
31652
31871
|
|
|
31653
|
-
.k-rtl .k-gantt-timeline .k-header
|
|
31872
|
+
.k-rtl .k-gantt-timeline .k-header,
|
|
31873
|
+
[dir="rtl"] .k-gantt-timeline .k-header {
|
|
31654
31874
|
border-width: 0 1px 1px 0;
|
|
31655
31875
|
}
|
|
31656
31876
|
|
|
31657
|
-
.k-rtl .k-gantt-timeline .k-header:first-child
|
|
31877
|
+
.k-rtl .k-gantt-timeline .k-header:first-child,
|
|
31878
|
+
[dir="rtl"] .k-gantt-timeline .k-header:first-child {
|
|
31658
31879
|
border-right-width: 0;
|
|
31659
31880
|
}
|
|
31660
31881
|
|
|
31661
|
-
.k-rtl .k-gantt-timeline .k-task-start
|
|
31882
|
+
.k-rtl .k-gantt-timeline .k-task-start,
|
|
31883
|
+
[dir="rtl"] .k-gantt-timeline .k-task-start {
|
|
31662
31884
|
left: auto;
|
|
31663
31885
|
right: 0;
|
|
31664
31886
|
}
|
|
31665
31887
|
|
|
31666
|
-
.k-rtl .k-gantt-timeline .k-task-end
|
|
31888
|
+
.k-rtl .k-gantt-timeline .k-task-end,
|
|
31889
|
+
[dir="rtl"] .k-gantt-timeline .k-task-end {
|
|
31667
31890
|
right: auto;
|
|
31668
31891
|
left: 0;
|
|
31669
31892
|
}
|
|
31670
31893
|
|
|
31671
|
-
.k-rtl .k-task-content
|
|
31894
|
+
.k-rtl .k-task-content,
|
|
31895
|
+
[dir="rtl"] .k-task-content {
|
|
31672
31896
|
text-align: right;
|
|
31673
31897
|
}
|
|
31674
31898
|
|
|
31675
|
-
.k-rtl .k-task-complete
|
|
31899
|
+
.k-rtl .k-task-complete,
|
|
31900
|
+
[dir="rtl"] .k-task-complete {
|
|
31676
31901
|
left: auto;
|
|
31677
31902
|
right: 0;
|
|
31678
31903
|
}
|
|
31679
31904
|
|
|
31680
|
-
.k-rtl .k-task-draghandle
|
|
31905
|
+
.k-rtl .k-task-draghandle,
|
|
31906
|
+
[dir="rtl"] .k-task-draghandle {
|
|
31681
31907
|
margin-left: 0;
|
|
31682
31908
|
margin-right: 16px;
|
|
31683
31909
|
}
|
|
31684
31910
|
|
|
31685
|
-
.k-rtl .k-gantt-dependencies
|
|
31911
|
+
.k-rtl .k-gantt-dependencies,
|
|
31912
|
+
[dir="rtl"] .k-gantt-dependencies {
|
|
31686
31913
|
left: auto;
|
|
31687
31914
|
right: 0;
|
|
31688
31915
|
}
|
|
31689
31916
|
|
|
31690
|
-
.k-rtl .k-gantt-delete
|
|
31917
|
+
.k-rtl .k-gantt-delete,
|
|
31918
|
+
[dir="rtl"] .k-gantt-delete {
|
|
31691
31919
|
float: right;
|
|
31692
31920
|
}
|
|
31693
31921
|
|
|
31694
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e
|
|
31922
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e,
|
|
31923
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
|
|
31695
31924
|
display: block;
|
|
31696
31925
|
}
|
|
31697
31926
|
|
|
31698
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w
|
|
31927
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w,
|
|
31928
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
|
|
31699
31929
|
display: none;
|
|
31700
31930
|
}
|
|
31701
31931
|
|
|
31702
|
-
.k-rtl .k-milestone-wrap
|
|
31932
|
+
.k-rtl .k-milestone-wrap,
|
|
31933
|
+
[dir="rtl"] .k-milestone-wrap {
|
|
31703
31934
|
margin-left: -2.4em;
|
|
31704
31935
|
}
|
|
31705
31936
|
|
|
31706
|
-
.k-rtl .k-milestone-wrap .k-task-moment
|
|
31937
|
+
.k-rtl .k-milestone-wrap .k-task-moment,
|
|
31938
|
+
[dir="rtl"] .k-milestone-wrap .k-task-moment {
|
|
31707
31939
|
margin-right: 0.2em;
|
|
31708
31940
|
}
|
|
31709
31941
|
|
|
31710
|
-
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start
|
|
31942
|
+
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start,
|
|
31943
|
+
[dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
31711
31944
|
right: -0.1em;
|
|
31712
31945
|
}
|
|
31713
31946
|
|
|
31947
|
+
.k-rtl .k-gantt-tooltip-validation::before,
|
|
31948
|
+
[dir="rtl"] .k-gantt-tooltip-validation::before {
|
|
31949
|
+
left: auto;
|
|
31950
|
+
right: 0;
|
|
31951
|
+
}
|
|
31952
|
+
|
|
31714
31953
|
.k-gantt {
|
|
31715
31954
|
border-color: rgba(0, 0, 0, 0.08);
|
|
31716
31955
|
color: #424242;
|
|
@@ -31893,6 +32132,18 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31893
32132
|
background-color: #ff6358;
|
|
31894
32133
|
}
|
|
31895
32134
|
|
|
32135
|
+
.k-gantt-tooltip-validation::before {
|
|
32136
|
+
background-color: #656565;
|
|
32137
|
+
}
|
|
32138
|
+
|
|
32139
|
+
.k-gantt-tooltip-valid::before {
|
|
32140
|
+
background-color: #37b400;
|
|
32141
|
+
}
|
|
32142
|
+
|
|
32143
|
+
.k-gantt-tooltip-invalid::before {
|
|
32144
|
+
background-color: #f31700;
|
|
32145
|
+
}
|
|
32146
|
+
|
|
31896
32147
|
.k-scheduler {
|
|
31897
32148
|
border-width: 1px;
|
|
31898
32149
|
border-style: solid;
|
|
@@ -32272,12 +32523,12 @@ kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
|
|
|
32272
32523
|
|
|
32273
32524
|
kendo-scheduler .k-event,
|
|
32274
32525
|
.k-event {
|
|
32275
|
-
border-radius:
|
|
32526
|
+
border-radius: 4px;
|
|
32276
32527
|
min-height: 25px;
|
|
32277
32528
|
box-sizing: border-box;
|
|
32278
32529
|
border-width: 0;
|
|
32279
32530
|
border-style: solid;
|
|
32280
|
-
border-radius:
|
|
32531
|
+
border-radius: 4px;
|
|
32281
32532
|
text-align: left;
|
|
32282
32533
|
outline: 0;
|
|
32283
32534
|
cursor: default;
|
|
@@ -32743,7 +32994,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
32743
32994
|
|
|
32744
32995
|
.k-scheduler-tooltip .k-tooltip-event {
|
|
32745
32996
|
padding: 4px 8px;
|
|
32746
|
-
border-radius:
|
|
32997
|
+
border-radius: 4px;
|
|
32747
32998
|
box-sizing: border-box;
|
|
32748
32999
|
display: flex;
|
|
32749
33000
|
flex-direction: row;
|
|
@@ -33781,7 +34032,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33781
34032
|
display: inline-block;
|
|
33782
34033
|
text-align: center;
|
|
33783
34034
|
padding: 4px 8px;
|
|
33784
|
-
border-radius:
|
|
34035
|
+
border-radius: 4px;
|
|
33785
34036
|
line-height: 1.4285714286;
|
|
33786
34037
|
min-width: 80px;
|
|
33787
34038
|
max-width: 160px;
|
|
@@ -33838,7 +34089,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33838
34089
|
}
|
|
33839
34090
|
|
|
33840
34091
|
.k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
|
|
33841
|
-
border-radius:
|
|
34092
|
+
border-radius: 4px;
|
|
33842
34093
|
}
|
|
33843
34094
|
|
|
33844
34095
|
.k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
|
|
@@ -33875,7 +34126,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33875
34126
|
height: 100%;
|
|
33876
34127
|
width: 6px;
|
|
33877
34128
|
transform: translateX(-50%);
|
|
33878
|
-
border-radius:
|
|
34129
|
+
border-radius: 6px;
|
|
33879
34130
|
}
|
|
33880
34131
|
|
|
33881
34132
|
.k-timeline-vertical .k-timeline-flag-wrap {
|
|
@@ -33917,7 +34168,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33917
34168
|
}
|
|
33918
34169
|
|
|
33919
34170
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-header {
|
|
33920
|
-
border-radius:
|
|
34171
|
+
border-radius: 6px;
|
|
33921
34172
|
}
|
|
33922
34173
|
|
|
33923
34174
|
.k-timeline-vertical .k-timeline-card .k-card .k-card-title {
|
|
@@ -34814,7 +35065,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
34814
35065
|
}
|
|
34815
35066
|
|
|
34816
35067
|
.k-chart-tooltip {
|
|
34817
|
-
border-radius:
|
|
35068
|
+
border-radius: 4px;
|
|
34818
35069
|
font-size: 13.006px;
|
|
34819
35070
|
line-height: 1.4285714286;
|
|
34820
35071
|
padding: 4px 8px;
|
|
@@ -34920,7 +35171,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
34920
35171
|
}
|
|
34921
35172
|
|
|
34922
35173
|
.k-navigator-hint .k-scroll {
|
|
34923
|
-
border-radius:
|
|
35174
|
+
border-radius: 4px;
|
|
34924
35175
|
position: absolute;
|
|
34925
35176
|
height: 4px;
|
|
34926
35177
|
}
|
|
@@ -35127,7 +35378,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35127
35378
|
}
|
|
35128
35379
|
|
|
35129
35380
|
.k-var--border-radius {
|
|
35130
|
-
margin-top:
|
|
35381
|
+
margin-top: 4px;
|
|
35131
35382
|
}
|
|
35132
35383
|
|
|
35133
35384
|
.k-var--normal-background {
|
|
@@ -35634,7 +35885,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
|
|
|
35634
35885
|
}
|
|
35635
35886
|
|
|
35636
35887
|
.k-orgchart-node-group-container {
|
|
35637
|
-
border-radius:
|
|
35888
|
+
border-radius: 4px;
|
|
35638
35889
|
padding: 24px 24px;
|
|
35639
35890
|
border-width: 1px;
|
|
35640
35891
|
border-style: solid;
|