@progress/kendo-theme-bootstrap 5.5.1-dev.2 → 5.6.1-dev.1
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 +344 -277
- package/dist/all.scss +175 -164
- 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/colorpicker/_index.scss +1 -2
- package/scss/dropdowngrid/_index.scss +1 -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
|
|
|
@@ -19131,7 +19123,8 @@ $kendo-calendar-sizes: (
|
|
|
19131
19123
|
font-weight: bold;
|
|
19132
19124
|
}
|
|
19133
19125
|
.k-today,
|
|
19134
|
-
.k-nav-today
|
|
19126
|
+
.k-nav-today,
|
|
19127
|
+
.k-calendar-nav-today {
|
|
19135
19128
|
text-decoration: none;
|
|
19136
19129
|
cursor: pointer;
|
|
19137
19130
|
outline: none;
|
|
@@ -19501,7 +19494,9 @@ $kendo-calendar-sizes: (
|
|
|
19501
19494
|
.k-nav-prev,
|
|
19502
19495
|
.k-nav-next,
|
|
19503
19496
|
.k-prev-view,
|
|
19504
|
-
.k-next-view
|
|
19497
|
+
.k-next-view,
|
|
19498
|
+
.k-calendar-nav-prev,
|
|
19499
|
+
.k-calendar-nav-next {
|
|
19505
19500
|
transform: scaleX(-1);
|
|
19506
19501
|
}
|
|
19507
19502
|
|
|
@@ -19561,7 +19556,8 @@ $kendo-calendar-sizes: (
|
|
|
19561
19556
|
|
|
19562
19557
|
|
|
19563
19558
|
// Today navigation
|
|
19564
|
-
.k-nav-today
|
|
19559
|
+
.k-nav-today,
|
|
19560
|
+
.k-calendar-nav-today {
|
|
19565
19561
|
color: $calendar-today-nav-text;
|
|
19566
19562
|
|
|
19567
19563
|
&:hover,
|
|
@@ -21153,10 +21149,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
21153
21149
|
// #region @import "../button/_index.scss"; -> packages/bootstrap/scss/button/_index.scss
|
|
21154
21150
|
// File already imported_once. Skipping output.
|
|
21155
21151
|
// #endregion
|
|
21156
|
-
// #region @import "../
|
|
21157
|
-
// File already imported_once. Skipping output.
|
|
21158
|
-
// #endregion
|
|
21159
|
-
// #region @import "../colorgradient/_index.scss"; -> packages/bootstrap/scss/colorgradient/_index.scss
|
|
21152
|
+
// #region @import "../coloreditor/_index.scss"; -> packages/bootstrap/scss/coloreditor/_index.scss
|
|
21160
21153
|
// File already imported_once. Skipping output.
|
|
21161
21154
|
// #endregion
|
|
21162
21155
|
// #region @import "../popup/_index.scss"; -> packages/bootstrap/scss/popup/_index.scss
|
|
@@ -21568,6 +21561,9 @@ $kendo-daterange-picker-input-width: 10em;
|
|
|
21568
21561
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
21569
21562
|
// File already imported_once. Skipping output.
|
|
21570
21563
|
// #endregion
|
|
21564
|
+
// #region @import "../table/_index.scss"; -> packages/bootstrap/scss/table/_index.scss
|
|
21565
|
+
// File already imported_once. Skipping output.
|
|
21566
|
+
// #endregion
|
|
21571
21567
|
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
21572
21568
|
// File already imported_once. Skipping output.
|
|
21573
21569
|
// #endregion
|
|
@@ -25327,10 +25323,6 @@ $dialog-button-spacing: $actions-button-spacing !default;
|
|
|
25327
25323
|
.k-dialog-titlebar {}
|
|
25328
25324
|
.k-dialog-title {}
|
|
25329
25325
|
|
|
25330
|
-
.k-dialog-close {
|
|
25331
|
-
align-self: flex-end;
|
|
25332
|
-
}
|
|
25333
|
-
|
|
25334
25326
|
|
|
25335
25327
|
// Actions
|
|
25336
25328
|
.k-dialog-actions {}
|
|
@@ -27599,7 +27591,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27599
27591
|
// #region @import "~@progress/kendo-theme-default/scss/pager/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/pager/_layout.scss
|
|
27600
27592
|
@include exports("pager/layout") {
|
|
27601
27593
|
|
|
27602
|
-
.k-pager-wrap
|
|
27594
|
+
.k-pager-wrap,
|
|
27595
|
+
.k-pager {
|
|
27603
27596
|
padding: $pager-padding-y $pager-padding-x;
|
|
27604
27597
|
border-width: $pager-border-width;
|
|
27605
27598
|
border-style: solid;
|
|
@@ -27895,7 +27888,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27895
27888
|
// #region @import "~@progress/kendo-theme-default/scss/pager/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/pager/_theme.scss
|
|
27896
27889
|
@include exports("pager/theme") {
|
|
27897
27890
|
|
|
27898
|
-
.k-pager-wrap
|
|
27891
|
+
.k-pager-wrap,
|
|
27892
|
+
.k-pager {
|
|
27899
27893
|
@include fill(
|
|
27900
27894
|
$pager-text,
|
|
27901
27895
|
$pager-bg,
|
|
@@ -28263,12 +28257,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28263
28257
|
align-items: center;
|
|
28264
28258
|
overflow: hidden;
|
|
28265
28259
|
}
|
|
28266
|
-
.k-step-disabled {
|
|
28267
|
-
pointer-events: none;
|
|
28268
|
-
|
|
28269
|
-
.k-step-link { cursor: default; }
|
|
28270
|
-
}
|
|
28271
|
-
|
|
28272
28260
|
|
|
28273
28261
|
// Step indicator
|
|
28274
28262
|
.k-step-indicator {
|
|
@@ -28305,7 +28293,9 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28305
28293
|
z-index: 2;
|
|
28306
28294
|
}
|
|
28307
28295
|
}
|
|
28296
|
+
|
|
28308
28297
|
.k-step-focus,
|
|
28298
|
+
.k-step.k-focus,
|
|
28309
28299
|
.k-step-link:focus {
|
|
28310
28300
|
.k-step-indicator::after {
|
|
28311
28301
|
display: block;
|
|
@@ -28348,12 +28338,21 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28348
28338
|
font-style: $stepper-optional-label-font-style;
|
|
28349
28339
|
opacity: $stepper-optional-label-opacity;
|
|
28350
28340
|
}
|
|
28351
|
-
|
|
28352
|
-
|
|
28353
|
-
|
|
28354
|
-
|
|
28341
|
+
|
|
28342
|
+
|
|
28343
|
+
.k-step-disabled,
|
|
28344
|
+
.k-step.k-disabled {
|
|
28345
|
+
opacity: 1;
|
|
28346
|
+
pointer-events: none;
|
|
28347
|
+
|
|
28348
|
+
.k-step-link { cursor: default; }
|
|
28349
|
+
|
|
28350
|
+
.k-step-label-optional {
|
|
28351
|
+
color: inherit;
|
|
28352
|
+
}
|
|
28355
28353
|
}
|
|
28356
28354
|
|
|
28355
|
+
|
|
28357
28356
|
// Progressbar
|
|
28358
28357
|
.k-progressbar {
|
|
28359
28358
|
pointer-events: none;
|
|
@@ -28498,6 +28497,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28498
28497
|
.k-step {
|
|
28499
28498
|
// Hover
|
|
28500
28499
|
&:hover,
|
|
28500
|
+
&.k-hover,
|
|
28501
28501
|
&.k-step-hover {
|
|
28502
28502
|
.k-step-label {
|
|
28503
28503
|
color: $stepper-label-hover-text;
|
|
@@ -28512,9 +28512,18 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28512
28512
|
}
|
|
28513
28513
|
}
|
|
28514
28514
|
|
|
28515
|
+
&.k-step-focus,
|
|
28516
|
+
&.k-focus,
|
|
28517
|
+
.k-step-link:focus {
|
|
28518
|
+
// Labels only
|
|
28519
|
+
.k-step-label:only-child {
|
|
28520
|
+
@include box-shadow( inset 0 0 0 $stepper-indicator-focus-size $component-border );
|
|
28521
|
+
}
|
|
28522
|
+
}
|
|
28515
28523
|
|
|
28516
28524
|
// Disabled
|
|
28517
28525
|
&.k-step-disabled,
|
|
28526
|
+
&.k-disabled,
|
|
28518
28527
|
&:disabled {
|
|
28519
28528
|
.k-step-indicator {
|
|
28520
28529
|
@include fill(
|
|
@@ -28523,6 +28532,10 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28523
28532
|
$stepper-indicator-disabled-border
|
|
28524
28533
|
);
|
|
28525
28534
|
}
|
|
28535
|
+
|
|
28536
|
+
.k-step-label {
|
|
28537
|
+
@include fill( $color: $stepper-label-disabled-text );
|
|
28538
|
+
}
|
|
28526
28539
|
}
|
|
28527
28540
|
}
|
|
28528
28541
|
.k-step-indicator {
|
|
@@ -28558,6 +28571,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28558
28571
|
|
|
28559
28572
|
// Hover
|
|
28560
28573
|
&:hover,
|
|
28574
|
+
&.k-hover,
|
|
28561
28575
|
&.k-step-hover {
|
|
28562
28576
|
.k-step-indicator {
|
|
28563
28577
|
@include fill(
|
|
@@ -28571,6 +28585,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28571
28585
|
|
|
28572
28586
|
// Disabled
|
|
28573
28587
|
&.k-step-disabled,
|
|
28588
|
+
&.k-disabled,
|
|
28574
28589
|
&:disabled {
|
|
28575
28590
|
.k-step-indicator {
|
|
28576
28591
|
@include fill(
|
|
@@ -28597,6 +28612,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28597
28612
|
|
|
28598
28613
|
// Hover
|
|
28599
28614
|
&:hover,
|
|
28615
|
+
&.k-hover,
|
|
28600
28616
|
&.k-step-hover {
|
|
28601
28617
|
.k-step-indicator {
|
|
28602
28618
|
@include fill(
|
|
@@ -28610,6 +28626,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28610
28626
|
|
|
28611
28627
|
// Disabled
|
|
28612
28628
|
&.k-step-disabled,
|
|
28629
|
+
&.k-disabled,
|
|
28613
28630
|
&:disabled {
|
|
28614
28631
|
.k-step-indicator {
|
|
28615
28632
|
@include fill(
|
|
@@ -28638,6 +28655,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28638
28655
|
}
|
|
28639
28656
|
|
|
28640
28657
|
&:hover,
|
|
28658
|
+
&.k-hover,
|
|
28641
28659
|
&.k-step-hover {
|
|
28642
28660
|
.k-step-label {
|
|
28643
28661
|
@include fill( $color: $stepper-label-error-text );
|
|
@@ -28645,16 +28663,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28645
28663
|
}
|
|
28646
28664
|
}
|
|
28647
28665
|
|
|
28648
|
-
.k-step-disabled .k-step-label {
|
|
28649
|
-
@include fill( $color: $stepper-label-disabled-text );
|
|
28650
|
-
}
|
|
28651
|
-
|
|
28652
|
-
// Labels only
|
|
28653
|
-
.k-step-focus .k-step-label:only-child,
|
|
28654
|
-
.k-step-link:focus .k-step-label:only-child {
|
|
28655
|
-
@include box-shadow( inset 0 0 0 $stepper-indicator-focus-size $component-border );
|
|
28656
|
-
}
|
|
28657
|
-
|
|
28658
28666
|
// Optional Label
|
|
28659
28667
|
.k-step-label-optional {
|
|
28660
28668
|
color: $stepper-optional-label-text;
|
|
@@ -30070,7 +30078,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30070
30078
|
> .k-item,
|
|
30071
30079
|
> .k-panelbar-header {
|
|
30072
30080
|
|
|
30073
|
-
&.k-state-expanded.k-level-0 > .k-link
|
|
30081
|
+
&.k-state-expanded.k-level-0 > .k-link,
|
|
30082
|
+
&.k-expanded.k-level-0 > .k-link {
|
|
30074
30083
|
@include fill(
|
|
30075
30084
|
$panelbar-header-expanded-text,
|
|
30076
30085
|
$panelbar-header-expanded-bg,
|
|
@@ -31262,7 +31271,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31262
31271
|
}
|
|
31263
31272
|
|
|
31264
31273
|
// Pager
|
|
31265
|
-
.k-pager-wrap.k-pager-sm
|
|
31274
|
+
.k-pager-wrap.k-pager-sm,
|
|
31275
|
+
.k-pager.k-pager-sm {
|
|
31266
31276
|
justify-content: center;
|
|
31267
31277
|
|
|
31268
31278
|
.k-pager-refresh {
|
|
@@ -43190,7 +43200,8 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43190
43200
|
flex: 0 0 auto;
|
|
43191
43201
|
z-index: 2;
|
|
43192
43202
|
}
|
|
43193
|
-
.k-toolbar .k-pager-wrap
|
|
43203
|
+
.k-toolbar .k-pager-wrap,
|
|
43204
|
+
.k-toolbar .k-pager {
|
|
43194
43205
|
padding: 0;
|
|
43195
43206
|
border-width: 0;
|
|
43196
43207
|
color: inherit;
|