@progress/kendo-theme-default 8.0.0-dev.9 → 8.0.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 +74 -76
- package/dist/all.scss +100 -72
- package/dist/meta/sassdoc-data.json +1437 -897
- package/dist/meta/sassdoc-raw-data.json +738 -488
- package/dist/meta/variables.json +8 -8
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +5 -5
- package/scss/action-sheet/_layout.scss +1 -1
- package/scss/badge/_theme.scss +1 -1
- package/scss/button/_theme.scss +15 -11
- package/scss/calendar/_layout.scss +26 -27
- package/scss/calendar/_theme.scss +0 -5
- package/scss/calendar/_variables.scss +13 -0
- package/scss/chip/_theme.scss +4 -4
- package/scss/chip/_variables.scss +1 -1
- package/scss/dataviz/_layout.scss +5 -2
- package/scss/drawer/_layout.scss +2 -0
- package/scss/drawer/_variables.scss +13 -2
- package/scss/listview/_layout.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -14110,7 +14110,7 @@ $kendo-utils: (
|
|
|
14110
14110
|
/// @contextType css
|
|
14111
14111
|
|
|
14112
14112
|
// stylelint-disable scss/at-function-pattern
|
|
14113
|
-
@function
|
|
14113
|
+
@function _rotate( $val ) {
|
|
14114
14114
|
@return rotate( $val );
|
|
14115
14115
|
}
|
|
14116
14116
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14119,7 +14119,7 @@ $kendo-utils: (
|
|
|
14119
14119
|
|
|
14120
14120
|
// Rotate utility classes
|
|
14121
14121
|
$kendo-utils-rotate: k-map-get( $kendo-utils, "rotate" ) !default;
|
|
14122
|
-
@include generate-utils( rotate, transform, $kendo-utils-rotate,
|
|
14122
|
+
@include generate-utils( rotate, transform, $kendo-utils-rotate, _rotate );
|
|
14123
14123
|
|
|
14124
14124
|
}
|
|
14125
14125
|
|
|
@@ -14144,13 +14144,13 @@ $kendo-utils: (
|
|
|
14144
14144
|
/// @contextType css
|
|
14145
14145
|
|
|
14146
14146
|
// stylelint-disable scss/at-function-pattern
|
|
14147
|
-
@function
|
|
14147
|
+
@function _scale( $val ) {
|
|
14148
14148
|
@return scale( $val );
|
|
14149
14149
|
}
|
|
14150
|
-
@function
|
|
14150
|
+
@function _scale-x( $val ) {
|
|
14151
14151
|
@return scaleX( $val );
|
|
14152
14152
|
}
|
|
14153
|
-
@function
|
|
14153
|
+
@function _scale-y( $val ) {
|
|
14154
14154
|
@return scaleY( $val );
|
|
14155
14155
|
}
|
|
14156
14156
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14159,9 +14159,9 @@ $kendo-utils: (
|
|
|
14159
14159
|
|
|
14160
14160
|
// Scale utility classes
|
|
14161
14161
|
$kendo-utils-scale: k-map-get( $kendo-utils, "scale" ) !default;
|
|
14162
|
-
@include generate-utils( scale, transform, $kendo-utils-scale,
|
|
14163
|
-
@include generate-utils( scale-x, transform, $kendo-utils-scale,
|
|
14164
|
-
@include generate-utils( scale-y, transform, $kendo-utils-scale,
|
|
14162
|
+
@include generate-utils( scale, transform, $kendo-utils-scale, _scale );
|
|
14163
|
+
@include generate-utils( scale-x, transform, $kendo-utils-scale, _scale-x );
|
|
14164
|
+
@include generate-utils( scale-y, transform, $kendo-utils-scale, _scale-y );
|
|
14165
14165
|
|
|
14166
14166
|
}
|
|
14167
14167
|
|
|
@@ -14192,10 +14192,10 @@ $kendo-utils: (
|
|
|
14192
14192
|
/// @contextType css
|
|
14193
14193
|
|
|
14194
14194
|
// stylelint-disable scss/at-function-pattern
|
|
14195
|
-
@function
|
|
14195
|
+
@function _skew-x( $val ) {
|
|
14196
14196
|
@return skewX( $val );
|
|
14197
14197
|
}
|
|
14198
|
-
@function
|
|
14198
|
+
@function _skew-y( $val ) {
|
|
14199
14199
|
@return skewY( $val );
|
|
14200
14200
|
}
|
|
14201
14201
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14204,8 +14204,8 @@ $kendo-utils: (
|
|
|
14204
14204
|
|
|
14205
14205
|
// Transform skew utility classes
|
|
14206
14206
|
$kendo-utils-skew: k-map-get( $kendo-utils, "skew" ) !default;
|
|
14207
|
-
@include generate-utils( skew-x, transform, $kendo-utils-skew,
|
|
14208
|
-
@include generate-utils( skew-y, transform, $kendo-utils-skew,
|
|
14207
|
+
@include generate-utils( skew-x, transform, $kendo-utils-skew, _skew-x );
|
|
14208
|
+
@include generate-utils( skew-y, transform, $kendo-utils-skew, _skew-y );
|
|
14209
14209
|
|
|
14210
14210
|
}
|
|
14211
14211
|
|
|
@@ -14266,13 +14266,13 @@ $kendo-utils: (
|
|
|
14266
14266
|
/// @contextType css
|
|
14267
14267
|
|
|
14268
14268
|
// stylelint-disable scss/at-function-pattern
|
|
14269
|
-
@function
|
|
14269
|
+
@function _translate( $val ) {
|
|
14270
14270
|
@return translate( $val );
|
|
14271
14271
|
}
|
|
14272
|
-
@function
|
|
14272
|
+
@function _translate-x( $val ) {
|
|
14273
14273
|
@return translateX( $val );
|
|
14274
14274
|
}
|
|
14275
|
-
@function
|
|
14275
|
+
@function _translate-y( $val ) {
|
|
14276
14276
|
@return translateY( $val );
|
|
14277
14277
|
}
|
|
14278
14278
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14292,9 +14292,9 @@ $kendo-utils: (
|
|
|
14292
14292
|
"100-50": ( 100%, 50% ),
|
|
14293
14293
|
"100-100": ( 100%, 100% )
|
|
14294
14294
|
) !default;
|
|
14295
|
-
@include generate-utils( translate, transform, $kendo-utils-translate-xy,
|
|
14296
|
-
@include generate-utils( translate-x, transform, $kendo-utils-translate,
|
|
14297
|
-
@include generate-utils( translate-y, transform, $kendo-utils-translate,
|
|
14295
|
+
@include generate-utils( translate, transform, $kendo-utils-translate-xy, _translate );
|
|
14296
|
+
@include generate-utils( translate-x, transform, $kendo-utils-translate, _translate-x );
|
|
14297
|
+
@include generate-utils( translate-y, transform, $kendo-utils-translate, _translate-y );
|
|
14298
14298
|
|
|
14299
14299
|
}
|
|
14300
14300
|
|
|
@@ -19378,7 +19378,7 @@ $kendo-badge-sizes: (
|
|
|
19378
19378
|
// Outline badges
|
|
19379
19379
|
.k-badge-outline {
|
|
19380
19380
|
border-color: currentColor;
|
|
19381
|
-
background-color:
|
|
19381
|
+
background-color: transparent;
|
|
19382
19382
|
}
|
|
19383
19383
|
|
|
19384
19384
|
@each $name, $color in $kendo-theme-colors {
|
|
@@ -19851,7 +19851,7 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
19851
19851
|
$kendo-chip-outline-bg: $kendo-component-bg !default;
|
|
19852
19852
|
/// The base text color of the outline Chip.
|
|
19853
19853
|
/// @group chip
|
|
19854
|
-
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
19854
|
+
$kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
|
|
19855
19855
|
/// The base border color of the outline Chip.
|
|
19856
19856
|
/// @group chip
|
|
19857
19857
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
@@ -20114,7 +20114,7 @@ $kendo-chip-list-sizes: (
|
|
|
20114
20114
|
@if ($name == "base") {
|
|
20115
20115
|
@include fill(
|
|
20116
20116
|
$kendo-chip-outline-text,
|
|
20117
|
-
|
|
20117
|
+
transparent,
|
|
20118
20118
|
$kendo-chip-outline-border
|
|
20119
20119
|
);
|
|
20120
20120
|
|
|
@@ -20139,8 +20139,8 @@ $kendo-chip-list-sizes: (
|
|
|
20139
20139
|
}
|
|
20140
20140
|
} @else if ($name == "warning") {
|
|
20141
20141
|
@include fill(
|
|
20142
|
-
if($kendo-enable-color-system,
|
|
20143
|
-
if($kendo-enable-color-system,
|
|
20142
|
+
if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
|
|
20143
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20144
20144
|
if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
20145
20145
|
);
|
|
20146
20146
|
|
|
@@ -20166,7 +20166,7 @@ $kendo-chip-list-sizes: (
|
|
|
20166
20166
|
} @else {
|
|
20167
20167
|
@include fill(
|
|
20168
20168
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
|
|
20169
|
-
if($kendo-enable-color-system,
|
|
20169
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20170
20170
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
|
|
20171
20171
|
);
|
|
20172
20172
|
|
|
@@ -21903,9 +21903,9 @@ $_kendo-module-meta: (
|
|
|
21903
21903
|
&.k-hover {
|
|
21904
21904
|
@if $name == "base" {
|
|
21905
21905
|
@include fill(
|
|
21906
|
-
if($kendo-enable-color-system,
|
|
21907
|
-
$color,
|
|
21908
|
-
$color
|
|
21906
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
21907
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
21908
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
21909
21909
|
);
|
|
21910
21910
|
} @else {
|
|
21911
21911
|
@include fill(
|
|
@@ -21933,9 +21933,9 @@ $_kendo-module-meta: (
|
|
|
21933
21933
|
&.k-active {
|
|
21934
21934
|
@if $name == "base" {
|
|
21935
21935
|
@include fill(
|
|
21936
|
-
if($kendo-enable-color-system,
|
|
21937
|
-
$color,
|
|
21938
|
-
$color
|
|
21936
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
21937
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
21938
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
21939
21939
|
);
|
|
21940
21940
|
} @else {
|
|
21941
21941
|
@include fill(
|
|
@@ -21950,9 +21950,9 @@ $_kendo-module-meta: (
|
|
|
21950
21950
|
&.k-selected {
|
|
21951
21951
|
@if $name == "base" {
|
|
21952
21952
|
@include fill(
|
|
21953
|
-
if($kendo-enable-color-system,
|
|
21954
|
-
$color,
|
|
21955
|
-
$color
|
|
21953
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
21954
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
21955
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
21956
21956
|
);
|
|
21957
21957
|
} @else {
|
|
21958
21958
|
@include fill(
|
|
@@ -21975,7 +21975,11 @@ $_kendo-module-meta: (
|
|
|
21975
21975
|
// Flat button
|
|
21976
21976
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
|
|
21977
21977
|
.k-button-flat-#{$name} {
|
|
21978
|
-
|
|
21978
|
+
@if $name == "base" {
|
|
21979
|
+
color: inherit;
|
|
21980
|
+
} @else {
|
|
21981
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
21982
|
+
}
|
|
21979
21983
|
|
|
21980
21984
|
// Disabled state
|
|
21981
21985
|
&:disabled,
|
|
@@ -22044,7 +22048,7 @@ $_kendo-module-meta: (
|
|
|
22044
22048
|
// Clear button
|
|
22045
22049
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
|
|
22046
22050
|
.k-button-clear-#{$name} {
|
|
22047
|
-
color: $color;
|
|
22051
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
22048
22052
|
|
|
22049
22053
|
&:focus,
|
|
22050
22054
|
&.k-focus,
|
|
@@ -28759,8 +28763,15 @@ $_kendo-module-meta: (
|
|
|
28759
28763
|
/// The width of the border around the Calendar.
|
|
28760
28764
|
/// @group calendar
|
|
28761
28765
|
$kendo-calendar-border-width: 1px !default;
|
|
28766
|
+
|
|
28767
|
+
/// The font family of the Calendar.
|
|
28768
|
+
/// @group calendar
|
|
28762
28769
|
$kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
|
|
28770
|
+
/// The font size of the Calendar.
|
|
28771
|
+
/// @group calendar
|
|
28763
28772
|
$kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
|
|
28773
|
+
/// The line height of the Calendar.
|
|
28774
|
+
/// @group calendar
|
|
28764
28775
|
$kendo-calendar-line-height: var( --kendo-line-height, normal ) !default;
|
|
28765
28776
|
|
|
28766
28777
|
/// The size of the cells in the Calendar.
|
|
@@ -28843,7 +28854,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
|
28843
28854
|
/// The height of the header cells in the Calendar.
|
|
28844
28855
|
/// @group calendar
|
|
28845
28856
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
28857
|
+
/// The font size of the header cells in the Calendar.
|
|
28858
|
+
/// @group calendar
|
|
28846
28859
|
$kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
28860
|
+
/// The line height of the header cells in the Calendar.
|
|
28861
|
+
/// @group calendar
|
|
28847
28862
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
28848
28863
|
|
|
28849
28864
|
/// The background color of the header cells in the Calendar.
|
|
@@ -28871,6 +28886,8 @@ $kendo-calendar-caption-font-size: null !default;
|
|
|
28871
28886
|
/// The line height of the caption in the Calendar.
|
|
28872
28887
|
/// @group calendar
|
|
28873
28888
|
$kendo-calendar-caption-line-height: null !default;
|
|
28889
|
+
/// The font weight of the caption in the Calendar.
|
|
28890
|
+
/// @group calendar
|
|
28874
28891
|
$kendo-calendar-caption-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
28875
28892
|
|
|
28876
28893
|
/// The font size of the week number cells in the Calendar.
|
|
@@ -29551,9 +29568,6 @@ $kendo-calendar-sizes: (
|
|
|
29551
29568
|
// }
|
|
29552
29569
|
}
|
|
29553
29570
|
|
|
29554
|
-
|
|
29555
|
-
|
|
29556
|
-
|
|
29557
29571
|
// Multiview calendar
|
|
29558
29572
|
.k-calendar-range {
|
|
29559
29573
|
width: auto;
|
|
@@ -29570,25 +29584,34 @@ $kendo-calendar-sizes: (
|
|
|
29570
29584
|
outline: 0;
|
|
29571
29585
|
}
|
|
29572
29586
|
}
|
|
29587
|
+
}
|
|
29573
29588
|
|
|
29574
|
-
|
|
29575
|
-
|
|
29576
|
-
|
|
29577
|
-
|
|
29578
|
-
|
|
29579
|
-
.k-
|
|
29580
|
-
.k-range-end .k-link {
|
|
29589
|
+
// Range Selection
|
|
29590
|
+
.k-range-start {
|
|
29591
|
+
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
29592
|
+
|
|
29593
|
+
.k-calendar-cell-inner,
|
|
29594
|
+
.k-link {
|
|
29581
29595
|
border-color: inherit;
|
|
29582
|
-
border-radius:
|
|
29596
|
+
border-radius: inherit;
|
|
29583
29597
|
}
|
|
29584
|
-
|
|
29598
|
+
}
|
|
29599
|
+
.k-range-end {
|
|
29600
|
+
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
29601
|
+
|
|
29602
|
+
.k-calendar-cell-inner,
|
|
29603
|
+
.k-link {
|
|
29585
29604
|
border-color: inherit;
|
|
29586
|
-
border-radius:
|
|
29605
|
+
border-radius: inherit;
|
|
29587
29606
|
}
|
|
29588
29607
|
}
|
|
29589
|
-
|
|
29590
|
-
|
|
29591
|
-
|
|
29608
|
+
.k-range-mid {
|
|
29609
|
+
border-color: inherit;
|
|
29610
|
+
border-radius: 0;
|
|
29611
|
+
}
|
|
29612
|
+
.k-range-start.k-range-end {
|
|
29613
|
+
border-radius: $kendo-calendar-range-cell-border-radius;
|
|
29614
|
+
}
|
|
29592
29615
|
|
|
29593
29616
|
// RTL
|
|
29594
29617
|
.k-rtl .k-calendar,
|
|
@@ -29601,21 +29624,14 @@ $kendo-calendar-sizes: (
|
|
|
29601
29624
|
@include hide-scrollbar("left");
|
|
29602
29625
|
}
|
|
29603
29626
|
|
|
29604
|
-
|
|
29605
|
-
|
|
29606
|
-
.k-rtl .k-calendar-range,
|
|
29607
|
-
[dir="rtl"] .k-calendar-range,
|
|
29608
|
-
.k-calendar-range.k-rtl,
|
|
29609
|
-
.k-calendar-range[dir="rtl"] {
|
|
29610
|
-
|
|
29611
|
-
.k-range-start .k-calendar-cell-inner,
|
|
29612
|
-
.k-range-start .k-link {
|
|
29627
|
+
// Range Selection RTL
|
|
29628
|
+
.k-range-start {
|
|
29613
29629
|
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
29614
29630
|
}
|
|
29615
|
-
.k-range-end
|
|
29616
|
-
.k-range-end .k-link {
|
|
29631
|
+
.k-range-end {
|
|
29617
29632
|
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
29618
29633
|
}
|
|
29634
|
+
|
|
29619
29635
|
}
|
|
29620
29636
|
|
|
29621
29637
|
}
|
|
@@ -29794,11 +29810,6 @@ $kendo-calendar-sizes: (
|
|
|
29794
29810
|
background-color: $kendo-calendar-range-bg;
|
|
29795
29811
|
}
|
|
29796
29812
|
|
|
29797
|
-
.k-range-start.k-range-end {
|
|
29798
|
-
background-image: none;
|
|
29799
|
-
background-color: transparent;
|
|
29800
|
-
}
|
|
29801
|
-
|
|
29802
29813
|
.k-range-start,
|
|
29803
29814
|
.k-range-end {
|
|
29804
29815
|
.k-calendar-cell-inner {
|
|
@@ -36449,7 +36460,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-spacing(4) !default;
|
|
|
36449
36460
|
}
|
|
36450
36461
|
|
|
36451
36462
|
.k-actionsheet-filter {
|
|
36452
|
-
width: calc(
|
|
36463
|
+
width: calc( 360px - #{$kendo-adaptive-actionsheet-titlebar-padding-x} * 2 );
|
|
36453
36464
|
}
|
|
36454
36465
|
.k-actionsheet-content,
|
|
36455
36466
|
.k-actionsheet-footer {
|
|
@@ -37226,13 +37237,24 @@ $kendo-drawer-border: $kendo-component-border !default;
|
|
|
37226
37237
|
/// The border width of the Drawer.
|
|
37227
37238
|
/// @group drawer
|
|
37228
37239
|
$kendo-drawer-border-width: 1px !default;
|
|
37240
|
+
|
|
37241
|
+
/// The font family of the Drawer.
|
|
37242
|
+
/// @group drawer
|
|
37229
37243
|
$kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
|
|
37244
|
+
/// The font size of the Drawer.
|
|
37245
|
+
/// @group drawer
|
|
37230
37246
|
$kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
|
|
37247
|
+
/// The line height of the Drawer.
|
|
37248
|
+
/// @group drawer
|
|
37231
37249
|
$kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
|
|
37232
|
-
|
|
37250
|
+
|
|
37251
|
+
/// The horizontal padding of the Drawer content.
|
|
37252
|
+
/// @group drawer
|
|
37253
|
+
$kendo-drawer-content-padding-x: null !default;
|
|
37254
|
+
|
|
37233
37255
|
/// The vertical padding of the Drawer content.
|
|
37234
37256
|
/// @group drawer
|
|
37235
|
-
$kendo-drawer-content-padding-y:
|
|
37257
|
+
$kendo-drawer-content-padding-y: null !default;
|
|
37236
37258
|
|
|
37237
37259
|
/// The width of the Drawer scrollbar.
|
|
37238
37260
|
/// @group drawer
|
|
@@ -37377,6 +37399,8 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
|
|
|
37377
37399
|
.k-drawer-content {
|
|
37378
37400
|
flex: 1 1 auto;
|
|
37379
37401
|
overflow: auto;
|
|
37402
|
+
padding-block: $kendo-drawer-content-padding-y;
|
|
37403
|
+
padding-inline: $kendo-drawer-content-padding-x;
|
|
37380
37404
|
}
|
|
37381
37405
|
|
|
37382
37406
|
|
|
@@ -47121,6 +47145,7 @@ $kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
47121
47145
|
font-family: $kendo-listview-font-family;
|
|
47122
47146
|
font-size: $kendo-listview-font-size;
|
|
47123
47147
|
line-height: $kendo-listview-line-height;
|
|
47148
|
+
display: flex;
|
|
47124
47149
|
flex-flow: column nowrap;
|
|
47125
47150
|
position: relative;
|
|
47126
47151
|
-webkit-touch-callout: none;
|
|
@@ -59475,7 +59500,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
59475
59500
|
}
|
|
59476
59501
|
|
|
59477
59502
|
|
|
59478
|
-
|
|
59503
|
+
// Sankey labels
|
|
59504
|
+
.k-sankey text {
|
|
59505
|
+
pointer-events: none;
|
|
59506
|
+
}
|
|
59479
59507
|
|
|
59480
59508
|
// Treemap
|
|
59481
59509
|
.k-treemap {
|
|
@@ -59660,7 +59688,7 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
59660
59688
|
series-30: $kendo-series-30,
|
|
59661
59689
|
|
|
59662
59690
|
gauge-pointer: $kendo-color-primary,
|
|
59663
|
-
gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
|
|
59691
|
+
gauge-track: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-chart-bg ))
|
|
59664
59692
|
);
|
|
59665
59693
|
|
|
59666
59694
|
@each $name, $value in $exported {
|