@progress/kendo-theme-classic 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 +97 -72
- package/dist/meta/sassdoc-data.json +139070 -0
- package/dist/meta/sassdoc-raw-data.json +64614 -0
- package/dist/meta/variables.json +8 -8
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +6 -6
- package/scss/calendar/_variables.scss +11 -0
- package/scss/chip/_variables.scss +1 -1
- package/scss/drawer/_variables.scss +12 -2
package/dist/all.scss
CHANGED
|
@@ -14112,7 +14112,7 @@ $kendo-utils: (
|
|
|
14112
14112
|
/// @contextType css
|
|
14113
14113
|
|
|
14114
14114
|
// stylelint-disable scss/at-function-pattern
|
|
14115
|
-
@function
|
|
14115
|
+
@function _rotate( $val ) {
|
|
14116
14116
|
@return rotate( $val );
|
|
14117
14117
|
}
|
|
14118
14118
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14121,7 +14121,7 @@ $kendo-utils: (
|
|
|
14121
14121
|
|
|
14122
14122
|
// Rotate utility classes
|
|
14123
14123
|
$kendo-utils-rotate: k-map-get( $kendo-utils, "rotate" ) !default;
|
|
14124
|
-
@include generate-utils( rotate, transform, $kendo-utils-rotate,
|
|
14124
|
+
@include generate-utils( rotate, transform, $kendo-utils-rotate, _rotate );
|
|
14125
14125
|
|
|
14126
14126
|
}
|
|
14127
14127
|
|
|
@@ -14146,13 +14146,13 @@ $kendo-utils: (
|
|
|
14146
14146
|
/// @contextType css
|
|
14147
14147
|
|
|
14148
14148
|
// stylelint-disable scss/at-function-pattern
|
|
14149
|
-
@function
|
|
14149
|
+
@function _scale( $val ) {
|
|
14150
14150
|
@return scale( $val );
|
|
14151
14151
|
}
|
|
14152
|
-
@function
|
|
14152
|
+
@function _scale-x( $val ) {
|
|
14153
14153
|
@return scaleX( $val );
|
|
14154
14154
|
}
|
|
14155
|
-
@function
|
|
14155
|
+
@function _scale-y( $val ) {
|
|
14156
14156
|
@return scaleY( $val );
|
|
14157
14157
|
}
|
|
14158
14158
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14161,9 +14161,9 @@ $kendo-utils: (
|
|
|
14161
14161
|
|
|
14162
14162
|
// Scale utility classes
|
|
14163
14163
|
$kendo-utils-scale: k-map-get( $kendo-utils, "scale" ) !default;
|
|
14164
|
-
@include generate-utils( scale, transform, $kendo-utils-scale,
|
|
14165
|
-
@include generate-utils( scale-x, transform, $kendo-utils-scale,
|
|
14166
|
-
@include generate-utils( scale-y, transform, $kendo-utils-scale,
|
|
14164
|
+
@include generate-utils( scale, transform, $kendo-utils-scale, _scale );
|
|
14165
|
+
@include generate-utils( scale-x, transform, $kendo-utils-scale, _scale-x );
|
|
14166
|
+
@include generate-utils( scale-y, transform, $kendo-utils-scale, _scale-y );
|
|
14167
14167
|
|
|
14168
14168
|
}
|
|
14169
14169
|
|
|
@@ -14194,10 +14194,10 @@ $kendo-utils: (
|
|
|
14194
14194
|
/// @contextType css
|
|
14195
14195
|
|
|
14196
14196
|
// stylelint-disable scss/at-function-pattern
|
|
14197
|
-
@function
|
|
14197
|
+
@function _skew-x( $val ) {
|
|
14198
14198
|
@return skewX( $val );
|
|
14199
14199
|
}
|
|
14200
|
-
@function
|
|
14200
|
+
@function _skew-y( $val ) {
|
|
14201
14201
|
@return skewY( $val );
|
|
14202
14202
|
}
|
|
14203
14203
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14206,8 +14206,8 @@ $kendo-utils: (
|
|
|
14206
14206
|
|
|
14207
14207
|
// Transform skew utility classes
|
|
14208
14208
|
$kendo-utils-skew: k-map-get( $kendo-utils, "skew" ) !default;
|
|
14209
|
-
@include generate-utils( skew-x, transform, $kendo-utils-skew,
|
|
14210
|
-
@include generate-utils( skew-y, transform, $kendo-utils-skew,
|
|
14209
|
+
@include generate-utils( skew-x, transform, $kendo-utils-skew, _skew-x );
|
|
14210
|
+
@include generate-utils( skew-y, transform, $kendo-utils-skew, _skew-y );
|
|
14211
14211
|
|
|
14212
14212
|
}
|
|
14213
14213
|
|
|
@@ -14268,13 +14268,13 @@ $kendo-utils: (
|
|
|
14268
14268
|
/// @contextType css
|
|
14269
14269
|
|
|
14270
14270
|
// stylelint-disable scss/at-function-pattern
|
|
14271
|
-
@function
|
|
14271
|
+
@function _translate( $val ) {
|
|
14272
14272
|
@return translate( $val );
|
|
14273
14273
|
}
|
|
14274
|
-
@function
|
|
14274
|
+
@function _translate-x( $val ) {
|
|
14275
14275
|
@return translateX( $val );
|
|
14276
14276
|
}
|
|
14277
|
-
@function
|
|
14277
|
+
@function _translate-y( $val ) {
|
|
14278
14278
|
@return translateY( $val );
|
|
14279
14279
|
}
|
|
14280
14280
|
// stylelint-enable scss/at-function-pattern
|
|
@@ -14294,9 +14294,9 @@ $kendo-utils: (
|
|
|
14294
14294
|
"100-50": ( 100%, 50% ),
|
|
14295
14295
|
"100-100": ( 100%, 100% )
|
|
14296
14296
|
) !default;
|
|
14297
|
-
@include generate-utils( translate, transform, $kendo-utils-translate-xy,
|
|
14298
|
-
@include generate-utils( translate-x, transform, $kendo-utils-translate,
|
|
14299
|
-
@include generate-utils( translate-y, transform, $kendo-utils-translate,
|
|
14297
|
+
@include generate-utils( translate, transform, $kendo-utils-translate-xy, _translate );
|
|
14298
|
+
@include generate-utils( translate-x, transform, $kendo-utils-translate, _translate-x );
|
|
14299
|
+
@include generate-utils( translate-y, transform, $kendo-utils-translate, _translate-y );
|
|
14300
14300
|
|
|
14301
14301
|
}
|
|
14302
14302
|
|
|
@@ -19596,7 +19596,7 @@ $kendo-badge-sizes: (
|
|
|
19596
19596
|
// Outline badges
|
|
19597
19597
|
.k-badge-outline {
|
|
19598
19598
|
border-color: currentColor;
|
|
19599
|
-
background-color:
|
|
19599
|
+
background-color: transparent;
|
|
19600
19600
|
}
|
|
19601
19601
|
|
|
19602
19602
|
@each $name, $color in $kendo-theme-colors {
|
|
@@ -20076,7 +20076,7 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
20076
20076
|
$kendo-chip-outline-bg: $kendo-component-bg !default;
|
|
20077
20077
|
/// The base text color of the outline Chip.
|
|
20078
20078
|
/// @group chip
|
|
20079
|
-
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
20079
|
+
$kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
|
|
20080
20080
|
/// The base border color of the outline Chip.
|
|
20081
20081
|
/// @group chip
|
|
20082
20082
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
@@ -20348,7 +20348,7 @@ $kendo-chip-list-sizes: (
|
|
|
20348
20348
|
@if ($name == "base") {
|
|
20349
20349
|
@include fill(
|
|
20350
20350
|
$kendo-chip-outline-text,
|
|
20351
|
-
|
|
20351
|
+
transparent,
|
|
20352
20352
|
$kendo-chip-outline-border
|
|
20353
20353
|
);
|
|
20354
20354
|
|
|
@@ -20373,8 +20373,8 @@ $kendo-chip-list-sizes: (
|
|
|
20373
20373
|
}
|
|
20374
20374
|
} @else if ($name == "warning") {
|
|
20375
20375
|
@include fill(
|
|
20376
|
-
if($kendo-enable-color-system,
|
|
20377
|
-
if($kendo-enable-color-system,
|
|
20376
|
+
if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
|
|
20377
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20378
20378
|
if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
20379
20379
|
);
|
|
20380
20380
|
|
|
@@ -20400,7 +20400,7 @@ $kendo-chip-list-sizes: (
|
|
|
20400
20400
|
} @else {
|
|
20401
20401
|
@include fill(
|
|
20402
20402
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
|
|
20403
|
-
if($kendo-enable-color-system,
|
|
20403
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20404
20404
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
|
|
20405
20405
|
);
|
|
20406
20406
|
|
|
@@ -22204,9 +22204,9 @@ $_kendo-module-meta: (
|
|
|
22204
22204
|
&.k-hover {
|
|
22205
22205
|
@if $name == "base" {
|
|
22206
22206
|
@include fill(
|
|
22207
|
-
if($kendo-enable-color-system,
|
|
22208
|
-
$color,
|
|
22209
|
-
$color
|
|
22207
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22208
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22209
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22210
22210
|
);
|
|
22211
22211
|
} @else {
|
|
22212
22212
|
@include fill(
|
|
@@ -22234,9 +22234,9 @@ $_kendo-module-meta: (
|
|
|
22234
22234
|
&.k-active {
|
|
22235
22235
|
@if $name == "base" {
|
|
22236
22236
|
@include fill(
|
|
22237
|
-
if($kendo-enable-color-system,
|
|
22238
|
-
$color,
|
|
22239
|
-
$color
|
|
22237
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22238
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22239
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22240
22240
|
);
|
|
22241
22241
|
} @else {
|
|
22242
22242
|
@include fill(
|
|
@@ -22251,9 +22251,9 @@ $_kendo-module-meta: (
|
|
|
22251
22251
|
&.k-selected {
|
|
22252
22252
|
@if $name == "base" {
|
|
22253
22253
|
@include fill(
|
|
22254
|
-
if($kendo-enable-color-system,
|
|
22255
|
-
$color,
|
|
22256
|
-
$color
|
|
22254
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22255
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22256
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22257
22257
|
);
|
|
22258
22258
|
} @else {
|
|
22259
22259
|
@include fill(
|
|
@@ -22276,7 +22276,11 @@ $_kendo-module-meta: (
|
|
|
22276
22276
|
// Flat button
|
|
22277
22277
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
|
|
22278
22278
|
.k-button-flat-#{$name} {
|
|
22279
|
-
|
|
22279
|
+
@if $name == "base" {
|
|
22280
|
+
color: inherit;
|
|
22281
|
+
} @else {
|
|
22282
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
22283
|
+
}
|
|
22280
22284
|
|
|
22281
22285
|
// Disabled state
|
|
22282
22286
|
&:disabled,
|
|
@@ -22345,7 +22349,7 @@ $_kendo-module-meta: (
|
|
|
22345
22349
|
// Clear button
|
|
22346
22350
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
|
|
22347
22351
|
.k-button-clear-#{$name} {
|
|
22348
|
-
color: $color;
|
|
22352
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
22349
22353
|
|
|
22350
22354
|
&:focus,
|
|
22351
22355
|
&.k-focus,
|
|
@@ -29322,8 +29326,15 @@ $_kendo-module-meta: (
|
|
|
29322
29326
|
/// The width of the border around the Calendar.
|
|
29323
29327
|
/// @group calendar
|
|
29324
29328
|
$kendo-calendar-border-width: 1px !default;
|
|
29329
|
+
|
|
29330
|
+
/// The font family of the Calendar.
|
|
29331
|
+
/// @group calendar
|
|
29325
29332
|
$kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
|
|
29333
|
+
/// The font size of the Calendar.
|
|
29334
|
+
/// @group calendar
|
|
29326
29335
|
$kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
|
|
29336
|
+
/// The line height of the Calendar.
|
|
29337
|
+
/// @group calendar
|
|
29327
29338
|
$kendo-calendar-line-height: var( --kendo-line-height, normal ) !default;
|
|
29328
29339
|
|
|
29329
29340
|
/// The size of the cells in the Calendar.
|
|
@@ -29405,7 +29416,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
|
29405
29416
|
/// The height of the header cells in the Calendar.
|
|
29406
29417
|
/// @group calendar
|
|
29407
29418
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
29419
|
+
/// The font size of the header cells in the Calendar.
|
|
29420
|
+
/// @group calendar
|
|
29408
29421
|
$kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
29422
|
+
/// The line height of the header cells in the Calendar.
|
|
29423
|
+
/// @group calendar
|
|
29409
29424
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
29410
29425
|
|
|
29411
29426
|
/// The background color of the header cells in the Calendar.
|
|
@@ -30117,9 +30132,6 @@ $kendo-calendar-sizes: (
|
|
|
30117
30132
|
// }
|
|
30118
30133
|
}
|
|
30119
30134
|
|
|
30120
|
-
|
|
30121
|
-
|
|
30122
|
-
|
|
30123
30135
|
// Multiview calendar
|
|
30124
30136
|
.k-calendar-range {
|
|
30125
30137
|
width: auto;
|
|
@@ -30136,25 +30148,34 @@ $kendo-calendar-sizes: (
|
|
|
30136
30148
|
outline: 0;
|
|
30137
30149
|
}
|
|
30138
30150
|
}
|
|
30151
|
+
}
|
|
30139
30152
|
|
|
30140
|
-
|
|
30141
|
-
|
|
30142
|
-
|
|
30143
|
-
|
|
30144
|
-
|
|
30145
|
-
.k-
|
|
30146
|
-
.k-range-end .k-link {
|
|
30153
|
+
// Range Selection
|
|
30154
|
+
.k-range-start {
|
|
30155
|
+
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
30156
|
+
|
|
30157
|
+
.k-calendar-cell-inner,
|
|
30158
|
+
.k-link {
|
|
30147
30159
|
border-color: inherit;
|
|
30148
|
-
border-radius:
|
|
30160
|
+
border-radius: inherit;
|
|
30149
30161
|
}
|
|
30150
|
-
|
|
30162
|
+
}
|
|
30163
|
+
.k-range-end {
|
|
30164
|
+
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
30165
|
+
|
|
30166
|
+
.k-calendar-cell-inner,
|
|
30167
|
+
.k-link {
|
|
30151
30168
|
border-color: inherit;
|
|
30152
|
-
border-radius:
|
|
30169
|
+
border-radius: inherit;
|
|
30153
30170
|
}
|
|
30154
30171
|
}
|
|
30155
|
-
|
|
30156
|
-
|
|
30157
|
-
|
|
30172
|
+
.k-range-mid {
|
|
30173
|
+
border-color: inherit;
|
|
30174
|
+
border-radius: 0;
|
|
30175
|
+
}
|
|
30176
|
+
.k-range-start.k-range-end {
|
|
30177
|
+
border-radius: $kendo-calendar-range-cell-border-radius;
|
|
30178
|
+
}
|
|
30158
30179
|
|
|
30159
30180
|
// RTL
|
|
30160
30181
|
.k-rtl .k-calendar,
|
|
@@ -30167,21 +30188,14 @@ $kendo-calendar-sizes: (
|
|
|
30167
30188
|
@include hide-scrollbar("left");
|
|
30168
30189
|
}
|
|
30169
30190
|
|
|
30170
|
-
|
|
30171
|
-
|
|
30172
|
-
.k-rtl .k-calendar-range,
|
|
30173
|
-
[dir="rtl"] .k-calendar-range,
|
|
30174
|
-
.k-calendar-range.k-rtl,
|
|
30175
|
-
.k-calendar-range[dir="rtl"] {
|
|
30176
|
-
|
|
30177
|
-
.k-range-start .k-calendar-cell-inner,
|
|
30178
|
-
.k-range-start .k-link {
|
|
30191
|
+
// Range Selection RTL
|
|
30192
|
+
.k-range-start {
|
|
30179
30193
|
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
30180
30194
|
}
|
|
30181
|
-
.k-range-end
|
|
30182
|
-
.k-range-end .k-link {
|
|
30195
|
+
.k-range-end {
|
|
30183
30196
|
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
30184
30197
|
}
|
|
30198
|
+
|
|
30185
30199
|
}
|
|
30186
30200
|
|
|
30187
30201
|
}
|
|
@@ -30368,11 +30382,6 @@ $kendo-calendar-sizes: (
|
|
|
30368
30382
|
background-color: $kendo-calendar-range-bg;
|
|
30369
30383
|
}
|
|
30370
30384
|
|
|
30371
|
-
.k-range-start.k-range-end {
|
|
30372
|
-
background-image: none;
|
|
30373
|
-
background-color: transparent;
|
|
30374
|
-
}
|
|
30375
|
-
|
|
30376
30385
|
.k-range-start,
|
|
30377
30386
|
.k-range-end {
|
|
30378
30387
|
.k-calendar-cell-inner {
|
|
@@ -37475,7 +37484,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-spacing(4) !default;
|
|
|
37475
37484
|
}
|
|
37476
37485
|
|
|
37477
37486
|
.k-actionsheet-filter {
|
|
37478
|
-
width: calc(
|
|
37487
|
+
width: calc( 360px - #{$kendo-adaptive-actionsheet-titlebar-padding-x} * 2 );
|
|
37479
37488
|
}
|
|
37480
37489
|
.k-actionsheet-content,
|
|
37481
37490
|
.k-actionsheet-footer {
|
|
@@ -38299,13 +38308,23 @@ $kendo-drawer-border: $kendo-component-border !default;
|
|
|
38299
38308
|
/// The border width of the Drawer.
|
|
38300
38309
|
/// @group drawer
|
|
38301
38310
|
$kendo-drawer-border-width: 1px !default;
|
|
38311
|
+
|
|
38312
|
+
/// The font family of the Drawer.
|
|
38313
|
+
/// @group drawer
|
|
38302
38314
|
$kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
|
|
38315
|
+
/// The font size of the Drawer.
|
|
38316
|
+
/// @group drawer
|
|
38303
38317
|
$kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
|
|
38318
|
+
/// The line height of the Drawer.
|
|
38319
|
+
/// @group drawer
|
|
38304
38320
|
$kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
|
|
38305
|
-
|
|
38321
|
+
|
|
38322
|
+
/// The horizontal padding of the Drawer content.
|
|
38323
|
+
/// @group drawer
|
|
38324
|
+
$kendo-drawer-content-padding-x: null !default;
|
|
38306
38325
|
/// The vertical padding of the Drawer content.
|
|
38307
38326
|
/// @group drawer
|
|
38308
|
-
$kendo-drawer-content-padding-y:
|
|
38327
|
+
$kendo-drawer-content-padding-y: null !default;
|
|
38309
38328
|
|
|
38310
38329
|
/// The width of the Drawer scrollbar.
|
|
38311
38330
|
/// @group drawer
|
|
@@ -38453,6 +38472,8 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
|
|
|
38453
38472
|
.k-drawer-content {
|
|
38454
38473
|
flex: 1 1 auto;
|
|
38455
38474
|
overflow: auto;
|
|
38475
|
+
padding-block: $kendo-drawer-content-padding-y;
|
|
38476
|
+
padding-inline: $kendo-drawer-content-padding-x;
|
|
38456
38477
|
}
|
|
38457
38478
|
|
|
38458
38479
|
|
|
@@ -48495,6 +48516,7 @@ $kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
|
48495
48516
|
font-family: $kendo-listview-font-family;
|
|
48496
48517
|
font-size: $kendo-listview-font-size;
|
|
48497
48518
|
line-height: $kendo-listview-line-height;
|
|
48519
|
+
display: flex;
|
|
48498
48520
|
flex-flow: column nowrap;
|
|
48499
48521
|
position: relative;
|
|
48500
48522
|
-webkit-touch-callout: none;
|
|
@@ -61136,7 +61158,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
61136
61158
|
}
|
|
61137
61159
|
|
|
61138
61160
|
|
|
61139
|
-
|
|
61161
|
+
// Sankey labels
|
|
61162
|
+
.k-sankey text {
|
|
61163
|
+
pointer-events: none;
|
|
61164
|
+
}
|
|
61140
61165
|
|
|
61141
61166
|
// Treemap
|
|
61142
61167
|
.k-treemap {
|
|
@@ -61321,7 +61346,7 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
61321
61346
|
series-30: $kendo-series-30,
|
|
61322
61347
|
|
|
61323
61348
|
gauge-pointer: $kendo-color-primary,
|
|
61324
|
-
gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
|
|
61349
|
+
gauge-track: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-chart-bg ))
|
|
61325
61350
|
);
|
|
61326
61351
|
|
|
61327
61352
|
@each $name, $value in $exported {
|