@progress/kendo-theme-bootstrap 5.5.1-dev.1 → 5.6.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 +573 -310
- package/dist/all.scss +497 -228
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/calendar/_variables.scss +44 -1
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/dropdowngrid/_index.scss +1 -0
- package/scss/list/_variables.scss +2 -2
- package/scss/progressbar/_variables.scss +4 -0
- package/scss/timeselector/_variables.scss +38 -0
package/dist/all.scss
CHANGED
|
@@ -1003,11 +1003,11 @@ $popover-header-padding-y: $spacer !default;
|
|
|
1003
1003
|
// stylelint-disable scss/dollar-variable-pattern
|
|
1004
1004
|
@function rgba-css-var($identifier, $target) {
|
|
1005
1005
|
@if $identifier == "body" and $target == "bg" {
|
|
1006
|
-
@return rgba(var(--#{$
|
|
1006
|
+
@return rgba(var(--#{$prefix}#{$identifier}-bg-rgb), var(--#{$prefix}#{$target}-opacity));
|
|
1007
1007
|
} @if $identifier == "body" and $target == "text" {
|
|
1008
|
-
@return rgba(var(--#{$
|
|
1008
|
+
@return rgba(var(--#{$prefix}#{$identifier}-color-rgb), var(--#{$prefix}#{$target}-opacity));
|
|
1009
1009
|
} @else {
|
|
1010
|
-
@return rgba(var(--#{$
|
|
1010
|
+
@return rgba(var(--#{$prefix}#{$identifier}-rgb), var(--#{$prefix}#{$target}-opacity));
|
|
1011
1011
|
}
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
@@ -1031,7 +1031,7 @@ $popover-header-padding-y: $spacer !default;
|
|
|
1031
1031
|
@function varify($list) {
|
|
1032
1032
|
$result: null;
|
|
1033
1033
|
@each $entry in $list {
|
|
1034
|
-
$result: append($result, var(--#{$
|
|
1034
|
+
$result: append($result, var(--#{$prefix}#{$entry}), space);
|
|
1035
1035
|
}
|
|
1036
1036
|
@return $result;
|
|
1037
1037
|
}
|
|
@@ -1140,9 +1140,9 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
|
|
|
1140
1140
|
@return if($l1 > $l2, divide($l1 + .05, $l2 + .05), divide($l2 + .05, $l1 + .05));
|
|
1141
1141
|
}
|
|
1142
1142
|
|
|
1143
|
-
// Return WCAG2.
|
|
1144
|
-
// See https://www.w3.org/
|
|
1145
|
-
// See https://www.w3.org/TR/
|
|
1143
|
+
// Return WCAG2.1 relative luminance
|
|
1144
|
+
// See https://www.w3.org/TR/WCAG/#dfn-relative-luminance
|
|
1145
|
+
// See https://www.w3.org/TR/WCAG/#dfn-contrast-ratio
|
|
1146
1146
|
@function luminance($color) {
|
|
1147
1147
|
$rgb: (
|
|
1148
1148
|
"r": red($color),
|
|
@@ -1328,40 +1328,13 @@ $colors: (
|
|
|
1328
1328
|
"green": $green,
|
|
1329
1329
|
"teal": $teal,
|
|
1330
1330
|
"cyan": $cyan,
|
|
1331
|
+
"black": $black,
|
|
1331
1332
|
"white": $white,
|
|
1332
1333
|
"gray": $gray-600,
|
|
1333
1334
|
"gray-dark": $gray-800
|
|
1334
1335
|
) !default;
|
|
1335
1336
|
// scss-docs-end colors-map
|
|
1336
1337
|
|
|
1337
|
-
// scss-docs-start theme-color-variables
|
|
1338
|
-
$primary: $blue !default;
|
|
1339
|
-
$secondary: $gray-600 !default;
|
|
1340
|
-
$success: $green !default;
|
|
1341
|
-
$info: $cyan !default;
|
|
1342
|
-
$warning: $yellow !default;
|
|
1343
|
-
$danger: $red !default;
|
|
1344
|
-
$light: $gray-100 !default;
|
|
1345
|
-
$dark: $gray-900 !default;
|
|
1346
|
-
// scss-docs-end theme-color-variables
|
|
1347
|
-
|
|
1348
|
-
// scss-docs-start theme-colors-map
|
|
1349
|
-
$theme-colors: (
|
|
1350
|
-
"primary": $primary,
|
|
1351
|
-
"secondary": $secondary,
|
|
1352
|
-
"success": $success,
|
|
1353
|
-
"info": $info,
|
|
1354
|
-
"warning": $warning,
|
|
1355
|
-
"danger": $danger,
|
|
1356
|
-
"light": $light,
|
|
1357
|
-
"dark": $dark
|
|
1358
|
-
) !default;
|
|
1359
|
-
// scss-docs-end theme-colors-map
|
|
1360
|
-
|
|
1361
|
-
// scss-docs-start theme-colors-rgb
|
|
1362
|
-
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value") !default;
|
|
1363
|
-
// scss-docs-end theme-colors-rgb
|
|
1364
|
-
|
|
1365
1338
|
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
|
|
1366
1339
|
// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
|
|
1367
1340
|
$min-contrast-ratio: 4.5 !default;
|
|
@@ -1496,8 +1469,8 @@ $indigos: (
|
|
|
1496
1469
|
) !default;
|
|
1497
1470
|
|
|
1498
1471
|
$purples: (
|
|
1499
|
-
"purple-100": $purple-
|
|
1500
|
-
"purple-200": $purple-
|
|
1472
|
+
"purple-100": $purple-100,
|
|
1473
|
+
"purple-200": $purple-200,
|
|
1501
1474
|
"purple-300": $purple-300,
|
|
1502
1475
|
"purple-400": $purple-400,
|
|
1503
1476
|
"purple-500": $purple-500,
|
|
@@ -1592,6 +1565,30 @@ $cyans: (
|
|
|
1592
1565
|
) !default;
|
|
1593
1566
|
// fusv-enable
|
|
1594
1567
|
|
|
1568
|
+
// scss-docs-start theme-color-variables
|
|
1569
|
+
$primary: $blue !default;
|
|
1570
|
+
$secondary: $gray-600 !default;
|
|
1571
|
+
$success: $green !default;
|
|
1572
|
+
$info: $cyan !default;
|
|
1573
|
+
$warning: $yellow !default;
|
|
1574
|
+
$danger: $red !default;
|
|
1575
|
+
$light: $gray-100 !default;
|
|
1576
|
+
$dark: $gray-900 !default;
|
|
1577
|
+
// scss-docs-end theme-color-variables
|
|
1578
|
+
|
|
1579
|
+
// scss-docs-start theme-colors-map
|
|
1580
|
+
$theme-colors: (
|
|
1581
|
+
"primary": $primary,
|
|
1582
|
+
"secondary": $secondary,
|
|
1583
|
+
"success": $success,
|
|
1584
|
+
"info": $info,
|
|
1585
|
+
"warning": $warning,
|
|
1586
|
+
"danger": $danger,
|
|
1587
|
+
"light": $light,
|
|
1588
|
+
"dark": $dark
|
|
1589
|
+
) !default;
|
|
1590
|
+
// scss-docs-end theme-colors-map
|
|
1591
|
+
|
|
1595
1592
|
// Characters which are escaped by the escape-svg function
|
|
1596
1593
|
$escaped-characters: (
|
|
1597
1594
|
("<", "%3c"),
|
|
@@ -1613,6 +1610,7 @@ $enable-transitions: true !default;
|
|
|
1613
1610
|
$enable-reduced-motion: true !default;
|
|
1614
1611
|
$enable-smooth-scroll: true !default;
|
|
1615
1612
|
$enable-grid-classes: true !default;
|
|
1613
|
+
$enable-container-classes: true !default;
|
|
1616
1614
|
$enable-cssgrid: false !default;
|
|
1617
1615
|
$enable-button-pointers: true !default;
|
|
1618
1616
|
$enable-rfs: true !default;
|
|
@@ -1623,7 +1621,8 @@ $enable-important-utilities: true !default;
|
|
|
1623
1621
|
|
|
1624
1622
|
// Prefix for :root CSS variables
|
|
1625
1623
|
|
|
1626
|
-
$variable-prefix: bs- !default;
|
|
1624
|
+
$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`
|
|
1625
|
+
$prefix: $variable-prefix !default;
|
|
1627
1626
|
|
|
1628
1627
|
// Gradient
|
|
1629
1628
|
//
|
|
@@ -1649,8 +1648,6 @@ $spacers: (
|
|
|
1649
1648
|
4: $spacer * 1.5,
|
|
1650
1649
|
5: $spacer * 3,
|
|
1651
1650
|
) !default;
|
|
1652
|
-
|
|
1653
|
-
$negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default;
|
|
1654
1651
|
// scss-docs-end spacer-variables-maps
|
|
1655
1652
|
|
|
1656
1653
|
// Position
|
|
@@ -1673,39 +1670,6 @@ $body-bg: $white !default;
|
|
|
1673
1670
|
$body-color: $gray-900 !default;
|
|
1674
1671
|
$body-text-align: null !default;
|
|
1675
1672
|
|
|
1676
|
-
// Utilities maps
|
|
1677
|
-
//
|
|
1678
|
-
// Extends the default `$theme-colors` maps to help create our utilities.
|
|
1679
|
-
|
|
1680
|
-
// Come v6, we'll de-dupe these variables. Until then, for backward compatibility, we keep them to reassign.
|
|
1681
|
-
// scss-docs-start utilities-colors
|
|
1682
|
-
$utilities-colors: $theme-colors-rgb !default;
|
|
1683
|
-
// scss-docs-end utilities-colors
|
|
1684
|
-
|
|
1685
|
-
// scss-docs-start utilities-text-colors
|
|
1686
|
-
$utilities-text: map-merge(
|
|
1687
|
-
$utilities-colors,
|
|
1688
|
-
(
|
|
1689
|
-
"black": to-rgb($black),
|
|
1690
|
-
"white": to-rgb($white),
|
|
1691
|
-
"body": to-rgb($body-color)
|
|
1692
|
-
)
|
|
1693
|
-
) !default;
|
|
1694
|
-
$utilities-text-colors: map-loop($utilities-text, rgba-css-var, "$key", "text") !default;
|
|
1695
|
-
// scss-docs-end utilities-text-colors
|
|
1696
|
-
|
|
1697
|
-
// scss-docs-start utilities-bg-colors
|
|
1698
|
-
$utilities-bg: map-merge(
|
|
1699
|
-
$utilities-colors,
|
|
1700
|
-
(
|
|
1701
|
-
"black": to-rgb($black),
|
|
1702
|
-
"white": to-rgb($white),
|
|
1703
|
-
"body": to-rgb($body-bg)
|
|
1704
|
-
)
|
|
1705
|
-
) !default;
|
|
1706
|
-
$utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg") !default;
|
|
1707
|
-
// scss-docs-end utilities-bg-colors
|
|
1708
|
-
|
|
1709
1673
|
// Links
|
|
1710
1674
|
//
|
|
1711
1675
|
// Style anchor elements.
|
|
@@ -1771,11 +1735,9 @@ $grid-columns: 12 !default;
|
|
|
1771
1735
|
$grid-gutter-width: 1.5rem !default;
|
|
1772
1736
|
$grid-row-columns: 6 !default;
|
|
1773
1737
|
|
|
1774
|
-
$gutters: $spacers !default;
|
|
1775
|
-
|
|
1776
1738
|
// Container padding
|
|
1777
1739
|
|
|
1778
|
-
$container-padding-x: $grid-gutter-width
|
|
1740
|
+
$container-padding-x: $grid-gutter-width !default;
|
|
1779
1741
|
|
|
1780
1742
|
|
|
1781
1743
|
// Components
|
|
@@ -1792,13 +1754,17 @@ $border-widths: (
|
|
|
1792
1754
|
5: 5px
|
|
1793
1755
|
) !default;
|
|
1794
1756
|
|
|
1757
|
+
$border-style: solid !default;
|
|
1795
1758
|
$border-color: $gray-300 !default;
|
|
1759
|
+
$border-color-translucent: rgba($black, .175) !default;
|
|
1796
1760
|
// scss-docs-end border-variables
|
|
1797
1761
|
|
|
1798
1762
|
// scss-docs-start border-radius-variables
|
|
1799
|
-
$border-radius: .
|
|
1800
|
-
$border-radius-sm: .
|
|
1801
|
-
$border-radius-lg: .
|
|
1763
|
+
$border-radius: .375rem !default;
|
|
1764
|
+
$border-radius-sm: .25rem !default;
|
|
1765
|
+
$border-radius-lg: .5rem !default;
|
|
1766
|
+
$border-radius-xl: 1rem !default;
|
|
1767
|
+
$border-radius-2xl: 2rem !default;
|
|
1802
1768
|
$border-radius-pill: 50rem !default;
|
|
1803
1769
|
// scss-docs-end border-radius-variables
|
|
1804
1770
|
|
|
@@ -1842,11 +1808,11 @@ $aspect-ratios: (
|
|
|
1842
1808
|
|
|
1843
1809
|
// scss-docs-start font-variables
|
|
1844
1810
|
// stylelint-disable value-keyword-case
|
|
1845
|
-
$font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
|
|
1811
|
+
$font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
1846
1812
|
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
|
|
1847
1813
|
// stylelint-enable value-keyword-case
|
|
1848
|
-
$font-family-base: var(--#{$
|
|
1849
|
-
$font-family-code: var(--#{$
|
|
1814
|
+
$font-family-base: var(--#{$prefix}font-sans-serif) !default;
|
|
1815
|
+
$font-family-code: var(--#{$prefix}font-monospace) !default;
|
|
1850
1816
|
|
|
1851
1817
|
// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
|
|
1852
1818
|
// $font-size-base affects the font size of the body text
|
|
@@ -1858,6 +1824,7 @@ $font-size-lg: $font-size-base * 1.25 !default;
|
|
|
1858
1824
|
$font-weight-lighter: lighter !default;
|
|
1859
1825
|
$font-weight-light: 300 !default;
|
|
1860
1826
|
$font-weight-normal: 400 !default;
|
|
1827
|
+
$font-weight-semibold: 600 !default;
|
|
1861
1828
|
$font-weight-bold: 700 !default;
|
|
1862
1829
|
$font-weight-bolder: bolder !default;
|
|
1863
1830
|
|
|
@@ -1905,6 +1872,8 @@ $display-font-sizes: (
|
|
|
1905
1872
|
6: 2.5rem
|
|
1906
1873
|
) !default;
|
|
1907
1874
|
|
|
1875
|
+
$display-font-family: null !default;
|
|
1876
|
+
$display-font-style: null !default;
|
|
1908
1877
|
$display-font-weight: 300 !default;
|
|
1909
1878
|
$display-line-height: $headings-line-height !default;
|
|
1910
1879
|
// scss-docs-end display-headings
|
|
@@ -1928,22 +1897,26 @@ $blockquote-footer-font-size: $small-font-size !default;
|
|
|
1928
1897
|
|
|
1929
1898
|
$hr-margin-y: $spacer !default;
|
|
1930
1899
|
$hr-color: inherit !default;
|
|
1931
|
-
|
|
1900
|
+
|
|
1901
|
+
// fusv-disable
|
|
1902
|
+
$hr-bg-color: null !default; // Deprecated in v5.2.0
|
|
1903
|
+
$hr-height: null !default; // Deprecated in v5.2.0
|
|
1904
|
+
// fusv-enable
|
|
1905
|
+
|
|
1906
|
+
$hr-border-color: null !default; // Allows for inherited colors
|
|
1907
|
+
$hr-border-width: $border-width !default;
|
|
1932
1908
|
$hr-opacity: .25 !default;
|
|
1933
1909
|
|
|
1934
1910
|
$legend-margin-bottom: .5rem !default;
|
|
1935
1911
|
$legend-font-size: 1.5rem !default;
|
|
1936
1912
|
$legend-font-weight: null !default;
|
|
1937
1913
|
|
|
1938
|
-
$mark-padding: .2em !default;
|
|
1939
|
-
|
|
1940
1914
|
$dt-font-weight: $font-weight-bold !default;
|
|
1941
1915
|
|
|
1942
|
-
$nested-kbd-font-weight: $font-weight-bold !default;
|
|
1943
|
-
|
|
1944
1916
|
$list-inline-padding: .5rem !default;
|
|
1945
1917
|
|
|
1946
|
-
$mark-
|
|
1918
|
+
$mark-padding: .1875em !default;
|
|
1919
|
+
$mark-bg: $yellow-100 !default;
|
|
1947
1920
|
// scss-docs-end type-variables
|
|
1948
1921
|
|
|
1949
1922
|
|
|
@@ -1959,7 +1932,7 @@ $table-cell-padding-x-sm: .25rem !default;
|
|
|
1959
1932
|
|
|
1960
1933
|
$table-cell-vertical-align: top !default;
|
|
1961
1934
|
|
|
1962
|
-
$table-color: $body-color !default;
|
|
1935
|
+
$table-color: var(--#{$prefix}body-color) !default;
|
|
1963
1936
|
$table-bg: transparent !default;
|
|
1964
1937
|
$table-accent-bg: transparent !default;
|
|
1965
1938
|
|
|
@@ -1979,11 +1952,12 @@ $table-hover-bg: rgba($black, $table-hover-bg-factor) !default;
|
|
|
1979
1952
|
|
|
1980
1953
|
$table-border-factor: .1 !default;
|
|
1981
1954
|
$table-border-width: $border-width !default;
|
|
1982
|
-
$table-border-color: $border-color !default;
|
|
1955
|
+
$table-border-color: var(--#{$prefix}border-color) !default;
|
|
1983
1956
|
|
|
1984
1957
|
$table-striped-order: odd !default;
|
|
1958
|
+
$table-striped-columns-order: even !default;
|
|
1985
1959
|
|
|
1986
|
-
$table-group-separator-color:
|
|
1960
|
+
$table-group-separator-color: currentcolor !default;
|
|
1987
1961
|
|
|
1988
1962
|
$table-caption-color: $text-muted !default;
|
|
1989
1963
|
|
|
@@ -2062,8 +2036,8 @@ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
|
2062
2036
|
$btn-disabled-opacity: .65 !default;
|
|
2063
2037
|
$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
|
|
2064
2038
|
|
|
2065
|
-
$btn-link-color: $link-color !default;
|
|
2066
|
-
$btn-link-hover-color: $link-hover-color !default;
|
|
2039
|
+
$btn-link-color: var(--#{$prefix}link-color) !default;
|
|
2040
|
+
$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
|
|
2067
2041
|
$btn-link-disabled-color: $gray-600 !default;
|
|
2068
2042
|
|
|
2069
2043
|
// Allows for customizing button radius independently from global border radius
|
|
@@ -2119,6 +2093,7 @@ $input-padding-x-lg: $input-btn-padding-x-lg !default;
|
|
|
2119
2093
|
$input-font-size-lg: $input-btn-font-size-lg !default;
|
|
2120
2094
|
|
|
2121
2095
|
$input-bg: $body-bg !default;
|
|
2096
|
+
$input-disabled-color: null !default;
|
|
2122
2097
|
$input-disabled-bg: $gray-200 !default;
|
|
2123
2098
|
$input-disabled-border-color: null !default;
|
|
2124
2099
|
|
|
@@ -2176,7 +2151,7 @@ $form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
|
2176
2151
|
$form-check-input-checked-color: $component-active-color !default;
|
|
2177
2152
|
$form-check-input-checked-bg-color: $component-active-bg !default;
|
|
2178
2153
|
$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;
|
|
2179
|
-
$form-check-input-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-checked-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='
|
|
2154
|
+
$form-check-input-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-checked-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>") !default;
|
|
2180
2155
|
$form-check-radio-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='#{$form-check-input-checked-color}'/></svg>") !default;
|
|
2181
2156
|
|
|
2182
2157
|
$form-check-input-indeterminate-color: $component-active-color !default;
|
|
@@ -2232,7 +2207,7 @@ $form-select-disabled-border-color: $input-disabled-border-color !default;
|
|
|
2232
2207
|
$form-select-bg-position: right $form-select-padding-x center !default;
|
|
2233
2208
|
$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions
|
|
2234
2209
|
$form-select-indicator-color: $gray-800 !default;
|
|
2235
|
-
$form-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='
|
|
2210
|
+
$form-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
|
|
2236
2211
|
|
|
2237
2212
|
$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;
|
|
2238
2213
|
$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;
|
|
@@ -2309,7 +2284,7 @@ $form-feedback-valid-color: $success !default;
|
|
|
2309
2284
|
$form-feedback-invalid-color: $danger !default;
|
|
2310
2285
|
|
|
2311
2286
|
$form-feedback-icon-valid-color: $form-feedback-valid-color !default;
|
|
2312
|
-
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.
|
|
2287
|
+
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>") !default;
|
|
2313
2288
|
$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
|
|
2314
2289
|
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>") !default;
|
|
2315
2290
|
// scss-docs-end form-feedback-variables
|
|
@@ -2342,6 +2317,7 @@ $zindex-modal-backdrop: 1050 !default;
|
|
|
2342
2317
|
$zindex-modal: 1055 !default;
|
|
2343
2318
|
$zindex-popover: 1070 !default;
|
|
2344
2319
|
$zindex-tooltip: 1080 !default;
|
|
2320
|
+
$zindex-toast: 1090 !default;
|
|
2345
2321
|
// scss-docs-end zindex-stack
|
|
2346
2322
|
|
|
2347
2323
|
|
|
@@ -2352,8 +2328,8 @@ $nav-link-padding-y: .5rem !default;
|
|
|
2352
2328
|
$nav-link-padding-x: 1rem !default;
|
|
2353
2329
|
$nav-link-font-size: null !default;
|
|
2354
2330
|
$nav-link-font-weight: null !default;
|
|
2355
|
-
$nav-link-color: $link-color !default;
|
|
2356
|
-
$nav-link-hover-color: $link-hover-color !default;
|
|
2331
|
+
$nav-link-color: var(--#{$prefix}link-color) !default;
|
|
2332
|
+
$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;
|
|
2357
2333
|
$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;
|
|
2358
2334
|
$nav-link-disabled-color: $gray-600 !default;
|
|
2359
2335
|
|
|
@@ -2428,7 +2404,7 @@ $dropdown-spacer: .125rem !default;
|
|
|
2428
2404
|
$dropdown-font-size: $font-size-base !default;
|
|
2429
2405
|
$dropdown-color: $body-color !default;
|
|
2430
2406
|
$dropdown-bg: $white !default;
|
|
2431
|
-
$dropdown-border-color:
|
|
2407
|
+
$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2432
2408
|
$dropdown-border-radius: $border-radius !default;
|
|
2433
2409
|
$dropdown-border-width: $border-width !default;
|
|
2434
2410
|
$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
|
|
@@ -2449,7 +2425,11 @@ $dropdown-item-padding-y: $spacer * .25 !default;
|
|
|
2449
2425
|
$dropdown-item-padding-x: $spacer !default;
|
|
2450
2426
|
|
|
2451
2427
|
$dropdown-header-color: $gray-600 !default;
|
|
2452
|
-
$dropdown-header-padding:
|
|
2428
|
+
$dropdown-header-padding-x: $dropdown-item-padding-x !default;
|
|
2429
|
+
$dropdown-header-padding-y: $dropdown-padding-y !default;
|
|
2430
|
+
// fusv-disable
|
|
2431
|
+
$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0
|
|
2432
|
+
// fusv-enable
|
|
2453
2433
|
// scss-docs-end dropdown-variables
|
|
2454
2434
|
|
|
2455
2435
|
// scss-docs-start dropdown-dark-variables
|
|
@@ -2478,19 +2458,21 @@ $pagination-padding-x-sm: .5rem !default;
|
|
|
2478
2458
|
$pagination-padding-y-lg: .75rem !default;
|
|
2479
2459
|
$pagination-padding-x-lg: 1.5rem !default;
|
|
2480
2460
|
|
|
2481
|
-
$pagination-
|
|
2461
|
+
$pagination-font-size: $font-size-base !default;
|
|
2462
|
+
|
|
2463
|
+
$pagination-color: var(--#{$prefix}link-color) !default;
|
|
2482
2464
|
$pagination-bg: $white !default;
|
|
2483
|
-
$pagination-border-width: $border-width !default;
|
|
2484
2465
|
$pagination-border-radius: $border-radius !default;
|
|
2485
|
-
$pagination-
|
|
2466
|
+
$pagination-border-width: $border-width !default;
|
|
2467
|
+
$pagination-margin-start: ($pagination-border-width * -1) !default;
|
|
2486
2468
|
$pagination-border-color: $gray-300 !default;
|
|
2487
2469
|
|
|
2488
|
-
$pagination-focus-color: $link-hover-color !default;
|
|
2470
|
+
$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;
|
|
2489
2471
|
$pagination-focus-bg: $gray-200 !default;
|
|
2490
2472
|
$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
|
|
2491
2473
|
$pagination-focus-outline: 0 !default;
|
|
2492
2474
|
|
|
2493
|
-
$pagination-hover-color: $link-hover-color !default;
|
|
2475
|
+
$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;
|
|
2494
2476
|
$pagination-hover-bg: $gray-200 !default;
|
|
2495
2477
|
$pagination-hover-border-color: $gray-300 !default;
|
|
2496
2478
|
|
|
@@ -2523,7 +2505,7 @@ $card-spacer-y: $spacer !default;
|
|
|
2523
2505
|
$card-spacer-x: $spacer !default;
|
|
2524
2506
|
$card-title-spacer-y: $spacer * .5 !default;
|
|
2525
2507
|
$card-border-width: $border-width !default;
|
|
2526
|
-
$card-border-color:
|
|
2508
|
+
$card-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2527
2509
|
$card-border-radius: $border-radius !default;
|
|
2528
2510
|
$card-box-shadow: null !default;
|
|
2529
2511
|
$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
|
|
@@ -2543,10 +2525,10 @@ $card-group-margin: $grid-gutter-width * .5 !default;
|
|
|
2543
2525
|
// scss-docs-start accordion-variables
|
|
2544
2526
|
$accordion-padding-y: 1rem !default;
|
|
2545
2527
|
$accordion-padding-x: 1.25rem !default;
|
|
2546
|
-
$accordion-color: $body-color !default;
|
|
2528
|
+
$accordion-color: var(--#{$prefix}body-color) !default;
|
|
2547
2529
|
$accordion-bg: $body-bg !default;
|
|
2548
2530
|
$accordion-border-width: $border-width !default;
|
|
2549
|
-
$accordion-border-color:
|
|
2531
|
+
$accordion-border-color: var(--#{$prefix}border-color) !default;
|
|
2550
2532
|
$accordion-border-radius: $border-radius !default;
|
|
2551
2533
|
$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;
|
|
2552
2534
|
|
|
@@ -2556,7 +2538,7 @@ $accordion-body-padding-x: $accordion-padding-x !default;
|
|
|
2556
2538
|
$accordion-button-padding-y: $accordion-padding-y !default;
|
|
2557
2539
|
$accordion-button-padding-x: $accordion-padding-x !default;
|
|
2558
2540
|
$accordion-button-color: $accordion-color !default;
|
|
2559
|
-
$accordion-button-bg: $accordion-bg !default;
|
|
2541
|
+
$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;
|
|
2560
2542
|
$accordion-transition: $btn-transition, border-radius .15s ease !default;
|
|
2561
2543
|
$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;
|
|
2562
2544
|
$accordion-button-active-color: shade-color($primary, 10%) !default;
|
|
@@ -2585,11 +2567,13 @@ $tooltip-border-radius: $border-radius !default;
|
|
|
2585
2567
|
$tooltip-opacity: .9 !default;
|
|
2586
2568
|
$tooltip-padding-y: $spacer * .25 !default;
|
|
2587
2569
|
$tooltip-padding-x: $spacer * .5 !default;
|
|
2588
|
-
$tooltip-margin:
|
|
2570
|
+
$tooltip-margin: null !default; // TODO: remove this in v6
|
|
2589
2571
|
|
|
2590
2572
|
$tooltip-arrow-width: .8rem !default;
|
|
2591
2573
|
$tooltip-arrow-height: .4rem !default;
|
|
2592
|
-
|
|
2574
|
+
// fusv-disable
|
|
2575
|
+
$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
2576
|
+
// fusv-enable
|
|
2593
2577
|
// scss-docs-end tooltip-variables
|
|
2594
2578
|
|
|
2595
2579
|
// Form tooltips must come after regular tooltips
|
|
@@ -2610,13 +2594,14 @@ $popover-font-size: $font-size-sm !default;
|
|
|
2610
2594
|
$popover-bg: $white !default;
|
|
2611
2595
|
$popover-max-width: 276px !default;
|
|
2612
2596
|
$popover-border-width: $border-width !default;
|
|
2613
|
-
$popover-border-color:
|
|
2597
|
+
$popover-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2614
2598
|
$popover-border-radius: $border-radius-lg !default;
|
|
2615
2599
|
$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;
|
|
2616
2600
|
$popover-box-shadow: $box-shadow !default;
|
|
2617
2601
|
|
|
2602
|
+
$popover-header-font-size: $font-size-base !default;
|
|
2618
2603
|
$popover-header-bg: shade-color($popover-bg, 6%) !default;
|
|
2619
|
-
$popover-header-color: $
|
|
2604
|
+
$popover-header-color: var(--#{$prefix}heading-color) !default;
|
|
2620
2605
|
$popover-header-padding-y: .5rem !default;
|
|
2621
2606
|
$popover-header-padding-x: $spacer !default;
|
|
2622
2607
|
|
|
@@ -2626,11 +2611,14 @@ $popover-body-padding-x: $spacer !default;
|
|
|
2626
2611
|
|
|
2627
2612
|
$popover-arrow-width: 1rem !default;
|
|
2628
2613
|
$popover-arrow-height: .5rem !default;
|
|
2629
|
-
$popover-arrow-color: $popover-bg !default;
|
|
2630
|
-
|
|
2631
|
-
$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
|
|
2632
2614
|
// scss-docs-end popover-variables
|
|
2633
2615
|
|
|
2616
|
+
// fusv-disable
|
|
2617
|
+
// Deprecated in Bootstrap 5.2.0 for CSS variables
|
|
2618
|
+
$popover-arrow-color: $popover-bg !default;
|
|
2619
|
+
$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2620
|
+
// fusv-enable
|
|
2621
|
+
|
|
2634
2622
|
|
|
2635
2623
|
// Toasts
|
|
2636
2624
|
|
|
@@ -2641,8 +2629,8 @@ $toast-padding-y: .5rem !default;
|
|
|
2641
2629
|
$toast-font-size: .875rem !default;
|
|
2642
2630
|
$toast-color: null !default;
|
|
2643
2631
|
$toast-background-color: rgba($white, .85) !default;
|
|
2644
|
-
$toast-border-width:
|
|
2645
|
-
$toast-border-color:
|
|
2632
|
+
$toast-border-width: $border-width !default;
|
|
2633
|
+
$toast-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2646
2634
|
$toast-border-radius: $border-radius !default;
|
|
2647
2635
|
$toast-box-shadow: $box-shadow !default;
|
|
2648
2636
|
$toast-spacing: $container-padding-x !default;
|
|
@@ -2679,7 +2667,7 @@ $modal-title-line-height: $line-height-base !default;
|
|
|
2679
2667
|
|
|
2680
2668
|
$modal-content-color: null !default;
|
|
2681
2669
|
$modal-content-bg: $white !default;
|
|
2682
|
-
$modal-content-border-color:
|
|
2670
|
+
$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
2683
2671
|
$modal-content-border-width: $border-width !default;
|
|
2684
2672
|
$modal-content-border-radius: $border-radius-lg !default;
|
|
2685
2673
|
$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
|
|
@@ -2688,14 +2676,17 @@ $modal-content-box-shadow-sm-up: $box-shadow !default;
|
|
|
2688
2676
|
|
|
2689
2677
|
$modal-backdrop-bg: $black !default;
|
|
2690
2678
|
$modal-backdrop-opacity: .5 !default;
|
|
2691
|
-
|
|
2692
|
-
$modal-
|
|
2679
|
+
|
|
2680
|
+
$modal-header-border-color: var(--#{$prefix}border-color) !default;
|
|
2693
2681
|
$modal-header-border-width: $modal-content-border-width !default;
|
|
2694
|
-
$modal-footer-border-width: $modal-header-border-width !default;
|
|
2695
2682
|
$modal-header-padding-y: $modal-inner-padding !default;
|
|
2696
2683
|
$modal-header-padding-x: $modal-inner-padding !default;
|
|
2697
2684
|
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
|
|
2698
2685
|
|
|
2686
|
+
$modal-footer-bg: null !default;
|
|
2687
|
+
$modal-footer-border-color: $modal-header-border-color !default;
|
|
2688
|
+
$modal-footer-border-width: $modal-header-border-width !default;
|
|
2689
|
+
|
|
2699
2690
|
$modal-sm: 300px !default;
|
|
2700
2691
|
$modal-md: 500px !default;
|
|
2701
2692
|
$modal-lg: 800px !default;
|
|
@@ -2777,7 +2768,7 @@ $list-group-action-active-bg: $gray-200 !default;
|
|
|
2777
2768
|
$thumbnail-padding: .25rem !default;
|
|
2778
2769
|
$thumbnail-bg: $body-bg !default;
|
|
2779
2770
|
$thumbnail-border-width: $border-width !default;
|
|
2780
|
-
$thumbnail-border-color: $
|
|
2771
|
+
$thumbnail-border-color: var(--#{$prefix}border-color) !default;
|
|
2781
2772
|
$thumbnail-border-radius: $border-radius !default;
|
|
2782
2773
|
$thumbnail-box-shadow: $box-shadow-sm !default;
|
|
2783
2774
|
// scss-docs-end thumbnail-variables
|
|
@@ -2867,7 +2858,7 @@ $btn-close-height: $btn-close-width !default;
|
|
|
2867
2858
|
$btn-close-padding-x: .25em !default;
|
|
2868
2859
|
$btn-close-padding-y: $btn-close-padding-x !default;
|
|
2869
2860
|
$btn-close-color: $black !default;
|
|
2870
|
-
$btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$btn-close-color}'><path d='M.293.293a1 1 0
|
|
2861
|
+
$btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$btn-close-color}'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") !default;
|
|
2871
2862
|
$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;
|
|
2872
2863
|
$btn-close-opacity: .5 !default;
|
|
2873
2864
|
$btn-close-hover-opacity: .75 !default;
|
|
@@ -2900,11 +2891,12 @@ $offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
|
|
|
2900
2891
|
$code-font-size: $small-font-size !default;
|
|
2901
2892
|
$code-color: $pink !default;
|
|
2902
2893
|
|
|
2903
|
-
$kbd-padding-y: .
|
|
2904
|
-
$kbd-padding-x: .
|
|
2894
|
+
$kbd-padding-y: .1875rem !default;
|
|
2895
|
+
$kbd-padding-x: .375rem !default;
|
|
2905
2896
|
$kbd-font-size: $code-font-size !default;
|
|
2906
|
-
$kbd-color: $
|
|
2907
|
-
$kbd-bg: $
|
|
2897
|
+
$kbd-color: var(--#{$prefix}body-bg) !default;
|
|
2898
|
+
$kbd-bg: var(--#{$prefix}body-color) !default;
|
|
2899
|
+
$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6
|
|
2908
2900
|
|
|
2909
2901
|
$pre-color: null !default;
|
|
2910
2902
|
|
|
@@ -8156,8 +8148,8 @@ $kendo-list-font-size-lg: $font-size-md !default;
|
|
|
8156
8148
|
/// @group list
|
|
8157
8149
|
$kendo-list-line-height: null !default;
|
|
8158
8150
|
$kendo-list-line-height-sm: (20 / 14) !default;
|
|
8159
|
-
$kendo-list-line-height-md:
|
|
8160
|
-
$kendo-list-line-height-lg:
|
|
8151
|
+
$kendo-list-line-height-md: $line-height-md !default;
|
|
8152
|
+
$kendo-list-line-height-lg: $line-height-md !default;
|
|
8161
8153
|
|
|
8162
8154
|
/// Horizontal padding of list header, if no size is set.
|
|
8163
8155
|
/// @group list
|
|
@@ -17320,6 +17312,10 @@ $progressbar-indeterminate-gradient: null !default;
|
|
|
17320
17312
|
|
|
17321
17313
|
$progressbar-chunk-border: $body-bg !default;
|
|
17322
17314
|
|
|
17315
|
+
// Circular Progressbar
|
|
17316
|
+
$kendo-circular-progressbar-arc-stroke: $primary !default;
|
|
17317
|
+
$kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
17318
|
+
|
|
17323
17319
|
// #endregion
|
|
17324
17320
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/progressbar/_layout.scss
|
|
17325
17321
|
// #region @import "~@progress/kendo-theme-default/scss/progressbar/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/progressbar/_layout.scss
|
|
@@ -17590,6 +17586,49 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17590
17586
|
|
|
17591
17587
|
}
|
|
17592
17588
|
|
|
17589
|
+
@include exports("circular-progressbar/layout") {
|
|
17590
|
+
|
|
17591
|
+
.k-circular-progressbar {
|
|
17592
|
+
display: inline-block;
|
|
17593
|
+
text-align: left;
|
|
17594
|
+
position: relative;
|
|
17595
|
+
}
|
|
17596
|
+
|
|
17597
|
+
.k-circular-progressbar-surface {
|
|
17598
|
+
height: 100%;
|
|
17599
|
+
|
|
17600
|
+
& > div {
|
|
17601
|
+
width: 100%;
|
|
17602
|
+
height: 100%;
|
|
17603
|
+
}
|
|
17604
|
+
|
|
17605
|
+
svg {
|
|
17606
|
+
width: 100%;
|
|
17607
|
+
height: 100%;
|
|
17608
|
+
}
|
|
17609
|
+
}
|
|
17610
|
+
|
|
17611
|
+
.k-circular-progressbar-scale {
|
|
17612
|
+
fill: none;
|
|
17613
|
+
}
|
|
17614
|
+
|
|
17615
|
+
.k-circular-progressbar-arc {
|
|
17616
|
+
transform-box: fill-box;
|
|
17617
|
+
transform-origin: center center;
|
|
17618
|
+
transform: rotate(-90deg);
|
|
17619
|
+
stroke-linecap: round;
|
|
17620
|
+
fill: none;
|
|
17621
|
+
}
|
|
17622
|
+
|
|
17623
|
+
.k-circular-progressbar-label {
|
|
17624
|
+
position: absolute;
|
|
17625
|
+
text-align: center;
|
|
17626
|
+
padding: 0;
|
|
17627
|
+
margin: 0;
|
|
17628
|
+
}
|
|
17629
|
+
|
|
17630
|
+
}
|
|
17631
|
+
|
|
17593
17632
|
// #endregion
|
|
17594
17633
|
|
|
17595
17634
|
// #endregion
|
|
@@ -17624,6 +17663,19 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17624
17663
|
|
|
17625
17664
|
}
|
|
17626
17665
|
|
|
17666
|
+
@include exports("circular-progressbar/theme") {
|
|
17667
|
+
|
|
17668
|
+
.k-circular-progressbar-scale {
|
|
17669
|
+
stroke: $kendo-circular-progressbar-scale-stroke;
|
|
17670
|
+
}
|
|
17671
|
+
|
|
17672
|
+
.k-circular-progressbar-arc {
|
|
17673
|
+
stroke: $kendo-circular-progressbar-arc-stroke;
|
|
17674
|
+
transition: stroke .5s ease;
|
|
17675
|
+
}
|
|
17676
|
+
|
|
17677
|
+
}
|
|
17678
|
+
|
|
17627
17679
|
// #endregion
|
|
17628
17680
|
|
|
17629
17681
|
// #endregion
|
|
@@ -18791,7 +18843,6 @@ $calendar-border: $component-border !default;
|
|
|
18791
18843
|
$calendar-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
18792
18844
|
$calendar-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
18793
18845
|
$calendar-header-border-width: 1px !default;
|
|
18794
|
-
$calendar-header-min-width: ( $calendar-cell-size * 8 ) !default;
|
|
18795
18846
|
|
|
18796
18847
|
$calendar-header-bg: $header-bg !default;
|
|
18797
18848
|
$calendar-header-text: $header-text !default;
|
|
@@ -18889,6 +18940,50 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18889
18940
|
|
|
18890
18941
|
// Multiview calendar
|
|
18891
18942
|
|
|
18943
|
+
|
|
18944
|
+
// Calendar sizes
|
|
18945
|
+
$kendo-calendar-sm-font-size: $font-size-md !default;
|
|
18946
|
+
$kendo-calendar-sm-line-height: $line-height-md !default;
|
|
18947
|
+
$kendo-calendar-sm-cell-size: 32px !default;
|
|
18948
|
+
$kendo-calendar-sm-cell-padding-x: .125rem !default;
|
|
18949
|
+
$kendo-calendar-sm-cell-padding-y: .125rem !default;
|
|
18950
|
+
|
|
18951
|
+
$kendo-calendar-md-font-size: $font-size-md !default;
|
|
18952
|
+
$kendo-calendar-md-line-height: $line-height-md !default;
|
|
18953
|
+
$kendo-calendar-md-cell-size: 36px !default;
|
|
18954
|
+
$kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
18955
|
+
$kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
|
|
18956
|
+
|
|
18957
|
+
$kendo-calendar-lg-font-size: $font-size-lg !default;
|
|
18958
|
+
$kendo-calendar-lg-line-height: $line-height-lg !default;
|
|
18959
|
+
$kendo-calendar-lg-cell-size: 40px !default;
|
|
18960
|
+
$kendo-calendar-lg-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
18961
|
+
$kendo-calendar-lg-cell-padding-y: map-get( $spacing, 1 ) !default;
|
|
18962
|
+
|
|
18963
|
+
$kendo-calendar-sizes: (
|
|
18964
|
+
sm: (
|
|
18965
|
+
font-size: $kendo-calendar-sm-font-size,
|
|
18966
|
+
line-height: $kendo-calendar-sm-line-height,
|
|
18967
|
+
cell-size: $kendo-calendar-sm-cell-size,
|
|
18968
|
+
cell-padding-x: $kendo-calendar-sm-cell-padding-y,
|
|
18969
|
+
cell-padding-y: $kendo-calendar-sm-cell-padding-x
|
|
18970
|
+
),
|
|
18971
|
+
md: (
|
|
18972
|
+
font-size: $kendo-calendar-md-font-size,
|
|
18973
|
+
line-height: $kendo-calendar-md-line-height,
|
|
18974
|
+
cell-size: $kendo-calendar-md-cell-size,
|
|
18975
|
+
cell-padding-x: $kendo-calendar-md-cell-padding-y,
|
|
18976
|
+
cell-padding-y: $kendo-calendar-md-cell-padding-x
|
|
18977
|
+
),
|
|
18978
|
+
lg: (
|
|
18979
|
+
font-size: $kendo-calendar-lg-font-size,
|
|
18980
|
+
line-height: $kendo-calendar-lg-line-height,
|
|
18981
|
+
cell-size: $kendo-calendar-lg-cell-size,
|
|
18982
|
+
cell-padding-x: $kendo-calendar-lg-cell-padding-y,
|
|
18983
|
+
cell-padding-y: $kendo-calendar-lg-cell-padding-x
|
|
18984
|
+
)
|
|
18985
|
+
) !default;
|
|
18986
|
+
|
|
18892
18987
|
// #endregion
|
|
18893
18988
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/calendar/_layout.scss
|
|
18894
18989
|
// #region @import "~@progress/kendo-theme-default/scss/calendar/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/calendar/_layout.scss
|
|
@@ -18896,6 +18991,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18896
18991
|
|
|
18897
18992
|
// Base
|
|
18898
18993
|
.k-calendar {
|
|
18994
|
+
inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
|
|
18995
|
+
block-size: var( --INTERNAL--kendo-calendar-height, min-content );
|
|
18899
18996
|
border-width: $calendar-border-width;
|
|
18900
18997
|
border-style: solid;
|
|
18901
18998
|
box-sizing: border-box;
|
|
@@ -18916,19 +19013,12 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18916
19013
|
> .k-calendar {
|
|
18917
19014
|
border: 0;
|
|
18918
19015
|
}
|
|
18919
|
-
|
|
18920
|
-
// Common
|
|
18921
|
-
.k-link {
|
|
18922
|
-
white-space: normal;
|
|
18923
|
-
position: relative;
|
|
18924
|
-
overflow: hidden;
|
|
18925
|
-
}
|
|
18926
19016
|
}
|
|
18927
19017
|
|
|
18928
19018
|
|
|
18929
19019
|
// Calendar table
|
|
18930
19020
|
.k-calendar-table {
|
|
18931
|
-
margin: 0;
|
|
19021
|
+
margin: 0 auto;
|
|
18932
19022
|
border-width: 0;
|
|
18933
19023
|
border-color: inherit;
|
|
18934
19024
|
border-spacing: 0;
|
|
@@ -18936,8 +19026,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18936
19026
|
table-layout: fixed;
|
|
18937
19027
|
text-align: center;
|
|
18938
19028
|
outline: 0;
|
|
18939
|
-
display:
|
|
18940
|
-
vertical-align: top;
|
|
19029
|
+
display: table;
|
|
18941
19030
|
position: relative;
|
|
18942
19031
|
z-index: 1;
|
|
18943
19032
|
}
|
|
@@ -18955,6 +19044,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18955
19044
|
font-weight: $calendar-caption-font-weight;
|
|
18956
19045
|
cursor: default;
|
|
18957
19046
|
}
|
|
19047
|
+
|
|
19048
|
+
|
|
19049
|
+
// Calendar cell
|
|
18958
19050
|
.k-calendar-th,
|
|
18959
19051
|
.k-calendar-td {
|
|
18960
19052
|
border-width: 0;
|
|
@@ -18976,10 +19068,32 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18976
19068
|
}
|
|
18977
19069
|
.k-calendar-td {
|
|
18978
19070
|
@include border-radius( $calendar-cell-border-radius );
|
|
19071
|
+
inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
|
|
19072
|
+
block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
|
|
18979
19073
|
border-color: transparent;
|
|
18980
19074
|
}
|
|
18981
19075
|
|
|
18982
19076
|
|
|
19077
|
+
// Calendar cell inner
|
|
19078
|
+
// Remove .k-calendar once we remove k-link
|
|
19079
|
+
.k-calendar .k-calendar-cell-inner {
|
|
19080
|
+
@include border-radius( $calendar-cell-border-radius );
|
|
19081
|
+
padding: $calendar-cell-padding-y $calendar-cell-padding-x;
|
|
19082
|
+
padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
|
|
19083
|
+
padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
|
|
19084
|
+
width: 100%;
|
|
19085
|
+
height: 100%;
|
|
19086
|
+
box-sizing: border-box;
|
|
19087
|
+
display: flex;
|
|
19088
|
+
flex-direction: row;
|
|
19089
|
+
align-items: center;
|
|
19090
|
+
justify-content: center;
|
|
19091
|
+
white-space: normal;
|
|
19092
|
+
position: relative;
|
|
19093
|
+
overflow: hidden;
|
|
19094
|
+
}
|
|
19095
|
+
|
|
19096
|
+
|
|
18983
19097
|
// Calendar header
|
|
18984
19098
|
.k-calendar .k-header {
|
|
18985
19099
|
padding: $calendar-header-padding-y $calendar-header-padding-x;
|
|
@@ -18997,7 +19111,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18997
19111
|
// Calendar header
|
|
18998
19112
|
.k-calendar-header {
|
|
18999
19113
|
padding: $calendar-header-padding-y $calendar-header-padding-x;
|
|
19000
|
-
min-width: $calendar-
|
|
19114
|
+
min-width: ($calendar-cell-size * 8);
|
|
19001
19115
|
box-sizing: border-box;
|
|
19002
19116
|
display: flex;
|
|
19003
19117
|
align-items: center;
|
|
@@ -19009,7 +19123,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19009
19123
|
font-weight: bold;
|
|
19010
19124
|
}
|
|
19011
19125
|
.k-today,
|
|
19012
|
-
.k-nav-today
|
|
19126
|
+
.k-nav-today,
|
|
19127
|
+
.k-calendar-nav-today {
|
|
19013
19128
|
text-decoration: none;
|
|
19014
19129
|
cursor: pointer;
|
|
19015
19130
|
outline: none;
|
|
@@ -19039,22 +19154,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19039
19154
|
padding: 0 $calendar-header-padding-x;
|
|
19040
19155
|
// setting width / height prevents layout changes in meta views
|
|
19041
19156
|
width: $calendar-view-width;
|
|
19157
|
+
inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
|
|
19042
19158
|
min-height: $calendar-view-height;
|
|
19043
19159
|
box-sizing: content-box;
|
|
19044
19160
|
gap: $calendar-view-gap;
|
|
19045
19161
|
position: relative;
|
|
19046
19162
|
z-index: 1;
|
|
19047
19163
|
overflow: hidden;
|
|
19048
|
-
|
|
19049
|
-
.k-link {
|
|
19050
|
-
@include border-radius( $calendar-cell-border-radius );
|
|
19051
|
-
padding: $calendar-cell-padding-y $calendar-cell-padding-x;
|
|
19052
|
-
box-sizing: border-box;
|
|
19053
|
-
display: flex;
|
|
19054
|
-
flex-direction: row;
|
|
19055
|
-
align-items: center;
|
|
19056
|
-
justify-content: center;
|
|
19057
|
-
}
|
|
19058
19164
|
}
|
|
19059
19165
|
.k-week-number .k-calendar-view {
|
|
19060
19166
|
width: (8 * $calendar-cell-size);
|
|
@@ -19062,61 +19168,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19062
19168
|
|
|
19063
19169
|
|
|
19064
19170
|
// Month view
|
|
19171
|
+
.k-month-calendar,
|
|
19065
19172
|
.k-calendar-monthview {
|
|
19066
19173
|
$_month-cell-size: $calendar-cell-size;
|
|
19067
19174
|
|
|
19068
19175
|
.k-calendar-td {
|
|
19069
19176
|
width: $_month-cell-size;
|
|
19070
19177
|
height: $_month-cell-size;
|
|
19071
|
-
|
|
19072
|
-
|
|
19073
|
-
width: $_month-cell-size;
|
|
19074
|
-
height: $_month-cell-size;
|
|
19178
|
+
inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
|
|
19179
|
+
block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
|
|
19075
19180
|
}
|
|
19076
19181
|
}
|
|
19077
19182
|
|
|
19078
19183
|
|
|
19079
19184
|
// Year view
|
|
19185
|
+
.k-year-calendar,
|
|
19080
19186
|
.k-calendar-yearview {
|
|
19081
|
-
$_year-cell-size: (
|
|
19187
|
+
$_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
|
|
19082
19188
|
|
|
19083
19189
|
.k-calendar-td {
|
|
19084
|
-
width: auto;
|
|
19085
|
-
height: auto;
|
|
19086
|
-
}
|
|
19087
|
-
.k-link {
|
|
19088
19190
|
width: $_year-cell-size;
|
|
19089
19191
|
height: $_year-cell-size;
|
|
19192
|
+
inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
|
|
19193
|
+
block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
|
|
19090
19194
|
}
|
|
19091
19195
|
}
|
|
19092
19196
|
|
|
19093
19197
|
|
|
19094
19198
|
// Decade view
|
|
19199
|
+
.k-decade-calendar,
|
|
19095
19200
|
.k-calendar-decadeview {
|
|
19096
|
-
$_decade-cell-size: (
|
|
19201
|
+
$_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
|
|
19097
19202
|
|
|
19098
19203
|
.k-calendar-td {
|
|
19099
|
-
width: auto;
|
|
19100
|
-
height: auto;
|
|
19101
|
-
}
|
|
19102
|
-
.k-link {
|
|
19103
19204
|
width: $_decade-cell-size;
|
|
19104
19205
|
height: $_decade-cell-size;
|
|
19206
|
+
inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
|
|
19207
|
+
block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
|
|
19105
19208
|
}
|
|
19106
19209
|
}
|
|
19107
19210
|
|
|
19108
19211
|
|
|
19109
19212
|
// Century view
|
|
19213
|
+
.k-century-calendar,
|
|
19110
19214
|
.k-calendar-centuryview {
|
|
19111
|
-
$_century-cell-size: (
|
|
19215
|
+
$_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
|
|
19112
19216
|
|
|
19113
19217
|
.k-calendar-td {
|
|
19114
|
-
width: auto;
|
|
19115
|
-
height: auto;
|
|
19116
|
-
}
|
|
19117
|
-
.k-link {
|
|
19118
19218
|
width: $_century-cell-size;
|
|
19119
19219
|
height: $_century-cell-size;
|
|
19220
|
+
inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
|
|
19221
|
+
block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
|
|
19222
|
+
}
|
|
19223
|
+
.k-calendar-cell-inner {
|
|
19120
19224
|
text-align: left;
|
|
19121
19225
|
}
|
|
19122
19226
|
}
|
|
@@ -19156,6 +19260,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19156
19260
|
top: 0;
|
|
19157
19261
|
right: 0;
|
|
19158
19262
|
}
|
|
19263
|
+
|
|
19264
|
+
|
|
19265
|
+
|
|
19266
|
+
|
|
19267
|
+
// Calendar sizes
|
|
19268
|
+
@each $size, $size-props in $kendo-calendar-sizes {
|
|
19269
|
+
$_font-size: map-get( $size-props, font-size );
|
|
19270
|
+
$_line-height: map-get( $size-props, line-height );
|
|
19271
|
+
$_cell-size: map-get( $size-props, cell-size );
|
|
19272
|
+
$_cell-padding-x: map-get( $size-props, cell-padding-x );
|
|
19273
|
+
$_cell-padding-y: map-get( $size-props, cell-padding-y );
|
|
19274
|
+
|
|
19275
|
+
$_month-cell-size: $_cell-size;
|
|
19276
|
+
$_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
|
|
19277
|
+
$_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
|
|
19278
|
+
$_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
|
|
19279
|
+
|
|
19280
|
+
.k-calendar-#{$size} {
|
|
19281
|
+
--INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
|
|
19282
|
+
--INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
|
|
19283
|
+
--INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
|
|
19284
|
+
font-size: $_font-size;
|
|
19285
|
+
line-height: $_line-height;
|
|
19286
|
+
|
|
19287
|
+
&.k-month-calendar,
|
|
19288
|
+
.k-calendar-monthview {
|
|
19289
|
+
--INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
|
|
19290
|
+
}
|
|
19291
|
+
&.k-year-calendar,
|
|
19292
|
+
.k-calendar-yearview {
|
|
19293
|
+
--INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
|
|
19294
|
+
}
|
|
19295
|
+
&.k-decade-calendar,
|
|
19296
|
+
.k-calendar-decadeview {
|
|
19297
|
+
--INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
|
|
19298
|
+
}
|
|
19299
|
+
&.k-century-calendar,
|
|
19300
|
+
.k-calendar-centuryview {
|
|
19301
|
+
--INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
|
|
19302
|
+
}
|
|
19303
|
+
}
|
|
19304
|
+
}
|
|
19305
|
+
|
|
19306
|
+
|
|
19307
|
+
|
|
19308
|
+
|
|
19309
|
+
// Alias
|
|
19310
|
+
.k-link {
|
|
19311
|
+
@extend .k-calendar-cell-inner;
|
|
19312
|
+
}
|
|
19159
19313
|
}
|
|
19160
19314
|
|
|
19161
19315
|
|
|
@@ -19340,7 +19494,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19340
19494
|
.k-nav-prev,
|
|
19341
19495
|
.k-nav-next,
|
|
19342
19496
|
.k-prev-view,
|
|
19343
|
-
.k-next-view
|
|
19497
|
+
.k-next-view,
|
|
19498
|
+
.k-calendar-nav-prev,
|
|
19499
|
+
.k-calendar-nav-next {
|
|
19344
19500
|
transform: scaleX(-1);
|
|
19345
19501
|
}
|
|
19346
19502
|
|
|
@@ -19400,15 +19556,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19400
19556
|
|
|
19401
19557
|
|
|
19402
19558
|
// Today navigation
|
|
19403
|
-
.k-nav-today
|
|
19559
|
+
.k-nav-today,
|
|
19560
|
+
.k-calendar-nav-today {
|
|
19404
19561
|
color: $calendar-today-nav-text;
|
|
19405
19562
|
|
|
19406
19563
|
&:hover,
|
|
19407
19564
|
&.k-hover,
|
|
19408
19565
|
&.k-state-hover,
|
|
19409
19566
|
&:focus,
|
|
19410
|
-
&.k-
|
|
19411
|
-
&.k-focus {
|
|
19567
|
+
&.k-focus,
|
|
19568
|
+
&.k-state-focus {
|
|
19412
19569
|
color: $calendar-today-nav-hover-text;
|
|
19413
19570
|
}
|
|
19414
19571
|
}
|
|
@@ -19426,11 +19583,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19426
19583
|
// Special days
|
|
19427
19584
|
.k-calendar-view .k-today {
|
|
19428
19585
|
@if $calendar-today-style == box {
|
|
19429
|
-
.k-
|
|
19586
|
+
.k-calendar-cell-inner {
|
|
19430
19587
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
19431
19588
|
}
|
|
19432
|
-
&.k-
|
|
19433
|
-
&.k-
|
|
19589
|
+
&.k-focus .k-calendar-cell-inner,
|
|
19590
|
+
&.k-state-focused .k-calendar-cell-inner {
|
|
19434
19591
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
19435
19592
|
}
|
|
19436
19593
|
} @else if $calendar-today-style == color {
|
|
@@ -19464,9 +19621,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19464
19621
|
|
|
19465
19622
|
|
|
19466
19623
|
// Interactive states
|
|
19467
|
-
.k-calendar-td:hover .k-
|
|
19468
|
-
.k-calendar-td.k-
|
|
19469
|
-
.k-calendar-td.k-hover .k-
|
|
19624
|
+
.k-calendar-td:hover .k-calendar-cell-inner,
|
|
19625
|
+
.k-calendar-td.k-hover .k-calendar-cell-inner,
|
|
19626
|
+
.k-calendar-td.k-state-hover .k-calendar-cell-inner {
|
|
19470
19627
|
@include fill(
|
|
19471
19628
|
$calendar-cell-hover-text,
|
|
19472
19629
|
$calendar-cell-hover-bg,
|
|
@@ -19474,8 +19631,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19474
19631
|
$calendar-cell-hover-gradient
|
|
19475
19632
|
);
|
|
19476
19633
|
}
|
|
19477
|
-
.k-calendar-td.k-
|
|
19478
|
-
.k-calendar-td.k-selected .k-
|
|
19634
|
+
.k-calendar-td.k-selected .k-calendar-cell-inner,
|
|
19635
|
+
.k-calendar-td.k-state-selected .k-calendar-cell-inner {
|
|
19479
19636
|
@include fill(
|
|
19480
19637
|
$calendar-cell-selected-text,
|
|
19481
19638
|
$calendar-cell-selected-bg,
|
|
@@ -19483,12 +19640,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19483
19640
|
$calendar-cell-selected-gradient
|
|
19484
19641
|
);
|
|
19485
19642
|
}
|
|
19486
|
-
.k-calendar-td.k-
|
|
19487
|
-
.k-calendar-td.k-selected
|
|
19488
|
-
.k-calendar-td.k-state-selected.k-
|
|
19489
|
-
.k-calendar-td.k-selected.k-hover .k-link,
|
|
19490
|
-
.k-calendar-td.k-selected:hover .k-link,
|
|
19491
|
-
.k-calendar-td.k-selected.k-hover .k-link {
|
|
19643
|
+
.k-calendar-td.k-selected:hover .k-calendar-cell-inner,
|
|
19644
|
+
.k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
|
|
19645
|
+
.k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
|
|
19492
19646
|
@include fill(
|
|
19493
19647
|
$calendar-cell-selected-hover-text,
|
|
19494
19648
|
$calendar-cell-selected-hover-bg,
|
|
@@ -19496,18 +19650,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19496
19650
|
$calendar-cell-selected-hover-gradient
|
|
19497
19651
|
);
|
|
19498
19652
|
}
|
|
19499
|
-
.k-calendar-td.k-
|
|
19500
|
-
.k-calendar-td.k-focus .k-
|
|
19501
|
-
.k-calendar-td.k-state-focus .k-
|
|
19502
|
-
.k-calendar-td.k-
|
|
19653
|
+
.k-calendar-td:focus .k-calendar-cell-inner,
|
|
19654
|
+
.k-calendar-td.k-focus .k-calendar-cell-inner,
|
|
19655
|
+
.k-calendar-td.k-state-focus .k-calendar-cell-inner,
|
|
19656
|
+
.k-calendar-td.k-state-focused .k-calendar-cell-inner {
|
|
19503
19657
|
box-shadow: $calendar-cell-focused-shadow;
|
|
19504
19658
|
}
|
|
19505
|
-
.k-calendar-td.k-
|
|
19506
|
-
.k-calendar-td.k-selected.k-
|
|
19507
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-
|
|
19508
|
-
.k-calendar-td.k-selected.k-focus .k-link,
|
|
19509
|
-
.k-calendar-td.k-selected:focus .k-link,
|
|
19510
|
-
.k-calendar-td.k-selected.k-focus .k-link {
|
|
19659
|
+
.k-calendar-td.k-selected:focus .k-calendar-cell-inner,
|
|
19660
|
+
.k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
|
|
19661
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
|
|
19511
19662
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
19512
19663
|
}
|
|
19513
19664
|
|
|
@@ -19521,8 +19672,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19521
19672
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
19522
19673
|
|
|
19523
19674
|
li:hover,
|
|
19524
|
-
li.k-
|
|
19525
|
-
li.k-hover {
|
|
19675
|
+
li.k-hover,
|
|
19676
|
+
li.k-state-hover {
|
|
19526
19677
|
color: $calendar-today-nav-hover-text;
|
|
19527
19678
|
}
|
|
19528
19679
|
}
|
|
@@ -19577,19 +19728,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19577
19728
|
.k-range-start,
|
|
19578
19729
|
.k-range-end,
|
|
19579
19730
|
.k-range-mid {
|
|
19580
|
-
|
|
19581
|
-
background-image:
|
|
19582
|
-
linear-gradient(
|
|
19583
|
-
transparent $calendar-range-gap,
|
|
19584
|
-
$calendar-range-bg $calendar-range-gap,
|
|
19585
|
-
$calendar-range-bg calc(100% - #{$calendar-range-gap}),
|
|
19586
|
-
transparent calc(100% - #{$calendar-range-gap})
|
|
19587
|
-
);
|
|
19588
|
-
|
|
19589
|
-
.k-ie & {
|
|
19590
|
-
background-image: none;
|
|
19591
|
-
background-color: $calendar-range-bg;
|
|
19592
|
-
}
|
|
19731
|
+
background-color: $calendar-range-bg;
|
|
19593
19732
|
}
|
|
19594
19733
|
|
|
19595
19734
|
.k-range-start.k-range-end {
|
|
@@ -19599,16 +19738,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19599
19738
|
|
|
19600
19739
|
.k-range-start,
|
|
19601
19740
|
.k-range-end {
|
|
19602
|
-
.k-
|
|
19741
|
+
.k-calendar-cell-inner {
|
|
19603
19742
|
background-color: $calendar-cell-selected-bg;
|
|
19604
19743
|
}
|
|
19605
19744
|
}
|
|
19606
19745
|
|
|
19607
|
-
.k-range-start.k-state-active,
|
|
19608
19746
|
.k-range-start.k-active,
|
|
19609
|
-
.k-range-
|
|
19610
|
-
.k-range-end.k-active
|
|
19611
|
-
|
|
19747
|
+
.k-range-start.k-state-active,
|
|
19748
|
+
.k-range-end.k-active,
|
|
19749
|
+
.k-range-end.k-state-active {
|
|
19750
|
+
.k-calendar-cell-inner {
|
|
19612
19751
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
19613
19752
|
}
|
|
19614
19753
|
}
|
|
@@ -19621,8 +19760,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19621
19760
|
content: "";
|
|
19622
19761
|
display: block;
|
|
19623
19762
|
position: absolute;
|
|
19624
|
-
top:
|
|
19625
|
-
bottom:
|
|
19763
|
+
top: 0;
|
|
19764
|
+
bottom: 0;
|
|
19626
19765
|
width: $calendar-range-split-size;
|
|
19627
19766
|
}
|
|
19628
19767
|
}
|
|
@@ -19700,6 +19839,44 @@ $time-list-highlight-border: $component-border !default;
|
|
|
19700
19839
|
|
|
19701
19840
|
$time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
19702
19841
|
|
|
19842
|
+
|
|
19843
|
+
// Time selector sizes
|
|
19844
|
+
$kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
|
|
19845
|
+
$kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
|
|
19846
|
+
$kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
|
|
19847
|
+
$kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
|
|
19848
|
+
|
|
19849
|
+
$kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
|
|
19850
|
+
$kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
|
|
19851
|
+
$kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
|
|
19852
|
+
$kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
19853
|
+
|
|
19854
|
+
$kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
|
|
19855
|
+
$kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
|
|
19856
|
+
$kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
|
|
19857
|
+
$kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
|
|
19858
|
+
|
|
19859
|
+
$kendo-time-selector-sizes: (
|
|
19860
|
+
sm: (
|
|
19861
|
+
font-size: $kendo-time-selector-sm-font-size,
|
|
19862
|
+
line-height: $kendo-time-selector-sm-line-height,
|
|
19863
|
+
list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
|
|
19864
|
+
list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
|
|
19865
|
+
),
|
|
19866
|
+
md: (
|
|
19867
|
+
font-size: $kendo-time-selector-md-font-size,
|
|
19868
|
+
line-height: $kendo-time-selector-md-line-height,
|
|
19869
|
+
list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
|
|
19870
|
+
list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
|
|
19871
|
+
),
|
|
19872
|
+
lg: (
|
|
19873
|
+
font-size: $kendo-time-selector-lg-font-size,
|
|
19874
|
+
line-height: $kendo-time-selector-lg-line-height,
|
|
19875
|
+
list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
|
|
19876
|
+
list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
|
|
19877
|
+
)
|
|
19878
|
+
) !default;
|
|
19879
|
+
|
|
19703
19880
|
// #endregion
|
|
19704
19881
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/timeselector/_layout.scss
|
|
19705
19882
|
// #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
|
|
@@ -19911,6 +20088,36 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
19911
20088
|
top: calc( #{$time-list-title-height / 2} );
|
|
19912
20089
|
}
|
|
19913
20090
|
|
|
20091
|
+
|
|
20092
|
+
// Time selector sizes
|
|
20093
|
+
@each $size, $size-props in $kendo-time-selector-sizes {
|
|
20094
|
+
$_font-size: map-get( $size-props, font-size );
|
|
20095
|
+
$_line-height: map-get( $size-props, line-height );
|
|
20096
|
+
$_list-item-padding-x: map-get( $size-props, list-item-padding-x );
|
|
20097
|
+
$_list-item-padding-y: map-get( $size-props, list-item-padding-y );
|
|
20098
|
+
$_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
|
|
20099
|
+
|
|
20100
|
+
|
|
20101
|
+
.k-timeselector-#{$size} {
|
|
20102
|
+
font-size: $_font-size;
|
|
20103
|
+
line-height: $_line-height;
|
|
20104
|
+
|
|
20105
|
+
.k-time-highlight,
|
|
20106
|
+
.k-time-list-highlight {
|
|
20107
|
+
height: $_highlight-height;
|
|
20108
|
+
}
|
|
20109
|
+
|
|
20110
|
+
.k-time-separator {
|
|
20111
|
+
height: $_highlight-height;
|
|
20112
|
+
}
|
|
20113
|
+
|
|
20114
|
+
.k-time-list-item,
|
|
20115
|
+
.k-time-list .k-item {
|
|
20116
|
+
padding: $_list-item-padding-y $_list-item-padding-x;
|
|
20117
|
+
}
|
|
20118
|
+
}
|
|
20119
|
+
}
|
|
20120
|
+
|
|
19914
20121
|
}
|
|
19915
20122
|
|
|
19916
20123
|
// #endregion
|
|
@@ -20942,10 +21149,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20942
21149
|
// #region @import "../button/_index.scss"; -> packages/bootstrap/scss/button/_index.scss
|
|
20943
21150
|
// File already imported_once. Skipping output.
|
|
20944
21151
|
// #endregion
|
|
20945
|
-
// #region @import "../
|
|
20946
|
-
// File already imported_once. Skipping output.
|
|
20947
|
-
// #endregion
|
|
20948
|
-
// #region @import "../colorgradient/_index.scss"; -> packages/bootstrap/scss/colorgradient/_index.scss
|
|
21152
|
+
// #region @import "../coloreditor/_index.scss"; -> packages/bootstrap/scss/coloreditor/_index.scss
|
|
20949
21153
|
// File already imported_once. Skipping output.
|
|
20950
21154
|
// #endregion
|
|
20951
21155
|
// #region @import "../popup/_index.scss"; -> packages/bootstrap/scss/popup/_index.scss
|
|
@@ -21357,6 +21561,9 @@ $kendo-daterange-picker-input-width: 10em;
|
|
|
21357
21561
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
21358
21562
|
// File already imported_once. Skipping output.
|
|
21359
21563
|
// #endregion
|
|
21564
|
+
// #region @import "../table/_index.scss"; -> packages/bootstrap/scss/table/_index.scss
|
|
21565
|
+
// File already imported_once. Skipping output.
|
|
21566
|
+
// #endregion
|
|
21360
21567
|
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
21361
21568
|
// File already imported_once. Skipping output.
|
|
21362
21569
|
// #endregion
|
|
@@ -24534,6 +24741,10 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24534
24741
|
box-sizing: border-box;
|
|
24535
24742
|
}
|
|
24536
24743
|
}
|
|
24744
|
+
.k-actionsheet-fullscreen {
|
|
24745
|
+
max-height: 100%;
|
|
24746
|
+
height: 100%;
|
|
24747
|
+
}
|
|
24537
24748
|
|
|
24538
24749
|
|
|
24539
24750
|
// Actionsheet header
|
|
@@ -24547,6 +24758,35 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24547
24758
|
font-size: $actionsheet-header-font-size;
|
|
24548
24759
|
font-family: $actionsheet-header-font-family;
|
|
24549
24760
|
line-height: $actionsheet-header-line-height;
|
|
24761
|
+
flex: none;
|
|
24762
|
+
}
|
|
24763
|
+
|
|
24764
|
+
|
|
24765
|
+
// Actionsheet titlebar
|
|
24766
|
+
.k-actionsheet-titlebar {
|
|
24767
|
+
@extend .k-actionsheet-header !optional;
|
|
24768
|
+
display: flex;
|
|
24769
|
+
flex-flow: row nowrap;
|
|
24770
|
+
align-items: center;
|
|
24771
|
+
}
|
|
24772
|
+
.k-actionsheet-title {
|
|
24773
|
+
flex: 1;
|
|
24774
|
+
}
|
|
24775
|
+
.k-actionsheet-actions {
|
|
24776
|
+
flex: none;
|
|
24777
|
+
}
|
|
24778
|
+
|
|
24779
|
+
|
|
24780
|
+
// Actionsheet content
|
|
24781
|
+
.k-actionsheet-content {
|
|
24782
|
+
flex: 1;
|
|
24783
|
+
overflow: auto;
|
|
24784
|
+
}
|
|
24785
|
+
|
|
24786
|
+
|
|
24787
|
+
// Actionsheet footer
|
|
24788
|
+
.k-actionsheet-footer {
|
|
24789
|
+
flex: none;
|
|
24550
24790
|
}
|
|
24551
24791
|
|
|
24552
24792
|
|
|
@@ -24643,6 +24883,37 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24643
24883
|
transform: none;
|
|
24644
24884
|
}
|
|
24645
24885
|
|
|
24886
|
+
|
|
24887
|
+
// Adaptive action sheet
|
|
24888
|
+
.k-adaptive-actionsheet {
|
|
24889
|
+
max-width: 100%;
|
|
24890
|
+
width: 100%;
|
|
24891
|
+
|
|
24892
|
+
// TMP: this should be moved to action sheet
|
|
24893
|
+
display: flex;
|
|
24894
|
+
flex-flow: column nowrap;
|
|
24895
|
+
|
|
24896
|
+
.k-calendar {
|
|
24897
|
+
margin-inline: auto;
|
|
24898
|
+
border-width: 0;
|
|
24899
|
+
display: flex;
|
|
24900
|
+
}
|
|
24901
|
+
|
|
24902
|
+
.k-timeselector {
|
|
24903
|
+
height: 100%;
|
|
24904
|
+
border-width: 0;
|
|
24905
|
+
overflow: hidden;
|
|
24906
|
+
|
|
24907
|
+
.k-time-part {
|
|
24908
|
+
display: contents;
|
|
24909
|
+
}
|
|
24910
|
+
|
|
24911
|
+
.k-time-list-wrapper {
|
|
24912
|
+
height: 100%;
|
|
24913
|
+
}
|
|
24914
|
+
}
|
|
24915
|
+
}
|
|
24916
|
+
|
|
24646
24917
|
}
|
|
24647
24918
|
|
|
24648
24919
|
// #endregion
|
|
@@ -44350,8 +44621,6 @@ $treemap-line-height: $line-height !default;
|
|
|
44350
44621
|
}
|
|
44351
44622
|
|
|
44352
44623
|
|
|
44353
|
-
|
|
44354
|
-
|
|
44355
44624
|
@include exports("dataviz/treemap/theme") {
|
|
44356
44625
|
|
|
44357
44626
|
// Treemap
|