@progress/kendo-theme-default 4.43.1-dev.5 → 4.43.1-dev.6

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.scss CHANGED
@@ -2727,18 +2727,6 @@ $display4-letter-spacing: null !default;
2727
2727
  // #region @import "_loading.scss"; -> packages/default/scss/common/_loading.scss
2728
2728
  @include exports( "common/loading" ) {
2729
2729
 
2730
- // Loading indicator
2731
- .k-loading {
2732
- width: 64px;
2733
- height: 64px;
2734
- display: block;
2735
-
2736
- .animate {
2737
- animation: loading 2s infinite linear;
2738
- }
2739
- }
2740
-
2741
-
2742
2730
  // Loading mask
2743
2731
  .k-loading-mask,
2744
2732
  .k-loading-image,
@@ -2827,7 +2815,7 @@ $display4-letter-spacing: null !default;
2827
2815
  content: "";
2828
2816
  // See https://github.com/telerik/kendo-themes/issues/1925
2829
2817
  border-width: 1px; // TODO: Remove once we drop IE support
2830
- border-width: #{"max( 1px, .015em )"}; // sass-lint:disable-line no-duplicate-properties
2818
+ border-width: clamp( .015em, 1px, 1px ); // sass-lint:disable-line no-duplicate-properties
2831
2819
  font-size: 4em;
2832
2820
  }
2833
2821
  }
@@ -7314,30 +7302,69 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7314
7302
  // #region @import "../button/_variables.scss"; -> packages/default/scss/button/_variables.scss
7315
7303
  // Button
7316
7304
 
7317
- /// Width of border around buttons
7305
+ /// Width of the border around the button.
7318
7306
  /// @group button
7319
7307
  $button-border-width: 1px !default;
7320
- /// Border radius of buttons
7308
+
7309
+ /// Border radius of the button.
7321
7310
  /// @group button
7322
7311
  $button-border-radius: $border-radius !default;
7323
7312
 
7324
- /// Horizontal padding of buttons
7313
+ /// Horizontal padding of the button.
7314
+ /// @group button
7315
+ $button-padding-x: map-get( $spacing, 2 ) !default;
7316
+ $button-padding-x-sm: null !default;
7317
+ $button-padding-x-md: null !default;
7318
+ $button-padding-x-lg: null !default;
7319
+
7320
+ /// Vertical padding of the button.
7325
7321
  /// @group button
7326
- $button-padding-x: $padding-x !default;
7327
- /// Vertical padding of buttons
7322
+ $button-padding-y: map-get( $spacing, 1 ) !default;
7323
+ $button-padding-y-sm: null !default;
7324
+ $button-padding-y-md: null !default;
7325
+ $button-padding-y-lg: null !default;
7326
+
7327
+ /// Font family of the button.
7328
7328
  /// @group button
7329
- $button-padding-y: $padding-y !default;
7330
7329
  $button-font-family: $font-family !default;
7330
+
7331
+ /// Font size of the button.
7332
+ /// @group button
7331
7333
  $button-font-size: $font-size !default;
7332
- $button-line-height: $line-height !default;
7334
+ $button-font-size-sm: null !default;
7335
+ $button-font-size-md: null !default;
7336
+ $button-font-size-lg: null !default;
7333
7337
 
7334
- $button-padding-x-sm: $button-padding-x / 2 !default;
7335
- $button-padding-y-sm: $button-padding-y / 2 !default;
7336
- $button-line-height-sm: $line-height-sm !default;
7338
+ /// Line height used along with $font-size.
7339
+ /// @group button
7340
+ $button-line-height: $line-height !default;
7341
+ $button-line-height-sm: null !default;
7342
+ $button-line-height-md: null !default;
7343
+ $button-line-height-lg: null !default;
7337
7344
 
7345
+ /// Calculated height of the button.
7346
+ /// @group button
7338
7347
  $button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} + #{$button-border-width * 2} ) !default;
7348
+
7349
+ /// Calculated inner height of the button. Without the border width.
7350
+ /// @group button
7339
7351
  $button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
7340
7352
 
7353
+ /// Theme colors map for the button.
7354
+ /// @group button
7355
+ $button-theme-colors: (
7356
+ "primary": map-get( $theme-colors, primary ),
7357
+ "secondary": map-get( $theme-colors, secondary ),
7358
+ "tertiary": map-get( $theme-colors, tertiary ),
7359
+ "info": map-get( $theme-colors, info ),
7360
+ "success": map-get( $theme-colors, success ),
7361
+ "warning": map-get( $theme-colors, warning ),
7362
+ "error": map-get( $theme-colors, error ),
7363
+ "dark": map-get( $theme-colors, dark ),
7364
+ "light": map-get( $theme-colors, light ),
7365
+ "inverse": map-get( $theme-colors, inverse )
7366
+ ) !default;
7367
+
7341
7368
  /// The background of the buttons.
7342
7369
  /// @group button
7343
7370
  $button-bg: #f5f5f5 !default;
@@ -7434,7 +7461,31 @@ $primary-button-selected-shadow: null !default;
7434
7461
 
7435
7462
  $primary-button-focused-shadow: 0 0 0 2px rgba( $primary-button-border, .3 ) !default;
7436
7463
 
7437
- $button-group-focus-shadow: inset 0 0 0 2px rgba( $button-border, opacity( $button-border ) * 2 ) !default;
7464
+ $solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
7465
+ $solid-button-shade-function: "try-shade";
7466
+ $solid-button-shade-text-amount: 0 !default;
7467
+ $solid-button-shade-bg-amount: 0 !default;
7468
+ $solid-button-shade-border-amount: 0 !default;
7469
+ $solid-button-hover-shade-text-amount: null !default;
7470
+ $solid-button-hover-shade-bg-amount: .5 !default;
7471
+ $solid-button-hover-shade-border-amount: .5 !default;
7472
+ $solid-button-active-shade-text-amount: null !default;
7473
+ $solid-button-active-shade-bg-amount: 1.5 !default;
7474
+ $solid-button-active-shade-border-amount: 1.5 !default;
7475
+ $solid-button-shadow: true !default;
7476
+ $solid-button-shadow-blur: 0px !default;
7477
+ $solid-button-shadow-spread: 2px !default;
7478
+ $solid-button-shadow-opacity: .3 !default;
7479
+
7480
+ $outline-button-shadow: true !default;
7481
+ $outline-button-shadow-blur: 0px !default;
7482
+ $outline-button-shadow-spread: 2px !default;
7483
+ $outline-button-shadow-opacity: .3 !default;
7484
+
7485
+ $link-button-shadow: true !default;
7486
+ $link-button-shadow-blur: 0px !default;
7487
+ $link-button-shadow-spread: 2px !default;
7488
+ $link-button-shadow-opacity: .3 !default;
7438
7489
 
7439
7490
  $flat-button-hover-opacity: .04 !default;
7440
7491
  $flat-button-focus-opacity: null !default;
@@ -11214,50 +11265,51 @@ $tooltip-error-border: $tooltip-error-bg !default;
11214
11265
  -webkit-touch-callout: none;
11215
11266
  -webkit-tap-highlight-color: $rgba-transparent;
11216
11267
 
11217
- .k-button {
11218
- @include border-radius( 0 );
11219
- }
11220
- .k-button ~ .k-button {
11268
+ > .k-button + .k-button {
11221
11269
  margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
11222
11270
  }
11223
11271
 
11224
- .k-button:hover,
11225
- .k-button.k-state-hover,
11226
- .k-button:active,
11227
- .k-button.k-state-active,
11228
- .k-button.k-state-selected,
11229
- .k-button:focus,
11230
- .k-button.k-state-focus {
11272
+ > .k-button:hover,
11273
+ > .k-button.k-state-hover,
11274
+ > .k-button:focus,
11275
+ > .k-button.k-state-focus,
11276
+ > .k-button:active,
11277
+ > .k-button.k-state-active,
11278
+ > .k-button.k-state-selected {
11231
11279
  z-index: 2;
11232
11280
  }
11233
11281
 
11234
- .k-group-start,
11235
- .k-button:first-child {
11236
- @include border-left-radius( $button-border-radius );
11282
+ .k-button:not(:first-child):not(:last-child) {
11283
+ border-start-end-radius: 0;
11284
+ border-end-end-radius: 0;
11285
+ border-start-start-radius: 0;
11286
+ border-end-start-radius: 0;
11287
+ }
11288
+ > .k-button:first-child:not(:only-child) {
11289
+ border-start-end-radius: 0;
11290
+ border-end-end-radius: 0;
11237
11291
  }
11238
- .k-group-end,
11239
- .k-button:last-child {
11240
- @include border-right-radius( $button-border-radius );
11292
+ > .k-button:last-child:not(:only-child) {
11293
+ border-start-start-radius: 0;
11294
+ border-end-start-radius: 0;
11241
11295
  }
11242
- .k-group-start.k-group-end,
11243
- .k-button:first-child:last-child {
11244
- @include border-radius( $button-border-radius );
11296
+
11297
+ &:disabled,
11298
+ &[disabled],
11299
+ &.k-disabled,
11300
+ &.k-state-disabled {
11301
+ opacity: 1;
11302
+ filter: none;
11245
11303
  }
11246
11304
 
11247
11305
  }
11248
11306
 
11249
11307
  .k-button-group-stretched {
11250
- display: flex;
11308
+ width: 100%;
11251
11309
 
11252
- .k-button {
11253
- display: inline-block;
11310
+ > * {
11254
11311
  flex: 1 0 0%;
11255
11312
  overflow: hidden;
11256
- text-overflow: ellipsis;
11257
-
11258
- > .k-icon {
11259
- vertical-align: text-bottom;
11260
- }
11261
11313
  }
11262
11314
  }
11263
11315
 
@@ -11271,32 +11323,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
11271
11323
  flex-flow: row nowrap;
11272
11324
  vertical-align: middle;
11273
11325
 
11274
- .k-button {
11275
- @include border-radius( 0 );
11276
- }
11277
-
11278
- // .k-button
11279
- > .k-button:first-child {
11280
- @include border-left-radius( $button-border-radius );
11281
- }
11282
- > .k-split-button-arrow,
11283
- > .k-button:last-child {
11284
- @include border-right-radius( $button-border-radius );
11285
- margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
11326
+ .k-split-button-arrow {
11286
11327
  padding: $button-padding-y;
11287
11328
  width: auto;
11288
11329
  flex: none;
11289
- }
11290
11330
 
11291
- &[dir="rtl"] {
11292
- // k-button
11293
- > .k-button:first-child {
11294
- @include border-left-radius( 0 );
11295
- @include border-right-radius( $button-border-radius );
11296
- }
11297
- > .k-button:last-child {
11298
- @include border-right-radius( 0 );
11299
- @include border-left-radius( $button-border-radius );
11331
+ .k-button-icon {
11332
+ min-width: 0;
11300
11333
  }
11301
11334
  }
11302
11335
  }
@@ -11340,13 +11373,29 @@ $tooltip-error-border: $tooltip-error-bg !default;
11340
11373
  .k-button-outline {
11341
11374
  @include box-shadow( none );
11342
11375
  color: inherit;
11343
- background: none;
11376
+ background-color: transparent;
11377
+ background-image: none !important; // sass-lint:disable-line no-important
11344
11378
  }
11345
11379
  .k-button.k-outline {
11346
11380
  @extend .k-button-outline;
11347
11381
  }
11348
11382
 
11349
11383
 
11384
+ // Link button
11385
+ .k-button-link {
11386
+ @include box-shadow( none );
11387
+ border-color: transparent !important; // sass-lint:disable-line no-important
11388
+ color: inherit;
11389
+ background-color: transparent !important; // sass-lint:disable-line no-important
11390
+ background-image: none !important; // sass-lint:disable-line no-important
11391
+ text-decoration: none;
11392
+ }
11393
+ .k-button-link:hover,
11394
+ .k-button-link.k-state-hover {
11395
+ text-decoration: underline;
11396
+ }
11397
+
11398
+
11350
11399
  // Clear button
11351
11400
  .k-button-clear {
11352
11401
  border-color: transparent !important; // sass-lint:disable-line no-important
@@ -11356,46 +11405,11 @@ $tooltip-error-border: $tooltip-error-bg !default;
11356
11405
  }
11357
11406
 
11358
11407
 
11359
- // RTL
11360
- .k-rtl {
11361
-
11362
- // Button group
11363
- .k-button-group {
11364
-
11365
- .k-button {
11366
- @include border-radius( 0 );
11367
- }
11368
-
11369
- .k-group-start,
11370
- .k-button:first-child {
11371
- @include border-right-radius( $button-border-radius );
11372
- }
11373
- .k-group-end,
11374
- .k-button:last-child {
11375
- @include border-left-radius( $button-border-radius );
11376
- }
11377
- .k-group-start.k-group-end,
11378
- .k-button:first-child:last-child {
11379
- @include border-radius( $button-border-radius );
11380
- }
11381
-
11382
- }
11383
-
11384
- // Split button
11385
- .k-split-button {
11386
-
11387
- .k-button {
11388
- @include border-radius( 0 );
11389
- }
11390
-
11391
- // k-button
11392
- > .k-button:first-child {
11393
- @include border-right-radius( $button-border-radius );
11394
- }
11395
- > .k-split-button-arrow,
11396
- > .k-button:last-child {
11397
- @include border-left-radius( $button-border-radius );
11398
- }
11408
+ // IE
11409
+ .k-ie .k-button-group,
11410
+ .k-ie .k-split-button {
11411
+ .k-button {
11412
+ @include border-radius( 0 );
11399
11413
  }
11400
11414
  }
11401
11415
 
@@ -11531,9 +11545,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
11531
11545
  // #region @import "_theme.scss"; -> packages/default/scss/button/_theme.scss
11532
11546
  @include exports( "button/theme" ) {
11533
11547
 
11534
- // Default button
11535
- .k-button,
11536
- .k-button-secondary {
11548
+ // Solid button
11549
+ .k-button {
11537
11550
  @include fill(
11538
11551
  $button-text,
11539
11552
  $button-bg,
@@ -11597,75 +11610,70 @@ $tooltip-error-border: $tooltip-error-bg !default;
11597
11610
  }
11598
11611
 
11599
11612
  }
11613
+ .k-button.k-primary {
11614
+ @extend .k-button-solid-primary !optional;
11615
+ }
11600
11616
 
11617
+ $_shade-fn: get-function( $solid-button-shade-function );
11601
11618
 
11602
- // Primary button
11603
- .k-button-primary {
11604
- @include fill(
11605
- $primary-button-text,
11606
- $primary-button-bg,
11607
- $primary-button-border,
11608
- $primary-button-gradient
11609
- );
11610
- @include box-shadow( $primary-button-shadow );
11619
+ @each $name, $color in $button-theme-colors {
11620
+ $_button-text: contrast-wcag( $color );
11621
+ $_button-bg: if( $solid-button-shade-bg-amount, call( $_shade-fn, $color, $solid-button-shade-bg-amount ), null );
11622
+ $_button-border: if( $solid-button-shade-border-amount, call( $_shade-fn, $color, $solid-button-shade-border-amount ), null );
11611
11623
 
11612
- // Hovoer state
11613
- &:hover,
11614
- &.k-state-hover {
11615
- @include fill(
11616
- $primary-button-hovered-text,
11617
- $primary-button-hovered-bg,
11618
- $primary-button-hovered-border,
11619
- $primary-button-hovered-gradient
11620
- );
11621
- @include box-shadow( $primary-button-hovered-shadow );
11622
- }
11624
+ $_button-hover-text: null;
11625
+ $_button-hover-bg: if( $solid-button-hover-shade-bg-amount, call( $_shade-fn, $color, $solid-button-hover-shade-bg-amount ), null );
11626
+ $_button-hover-border: if( $solid-button-hover-shade-border-amount, call( $_shade-fn, $color, $solid-button-hover-shade-border-amount ), null );
11623
11627
 
11624
- // Focused state
11625
- &:focus,
11626
- &.k-state-focus,
11627
- &.k-state-focused {
11628
- @include box-shadow( $primary-button-focused-shadow );
11629
- }
11628
+ $_button-active-text: null;
11629
+ $_button-active-bg: if( $solid-button-active-shade-bg-amount, call( $_shade-fn, $color, $solid-button-active-shade-bg-amount ), null );
11630
+ $_button-active-border: if( $solid-button-active-shade-border-amount, call( $_shade-fn, $color, $solid-button-active-shade-border-amount ), null );
11630
11631
 
11631
- // Active state
11632
- &:active,
11633
- &.k-state-active {
11632
+ .k-button-solid.k-button-solid-#{$name} {
11634
11633
  @include fill(
11635
- $primary-button-active-text,
11636
- $primary-button-active-bg,
11637
- $primary-button-active-border,
11638
- $primary-button-active-gradient
11634
+ $_button-text,
11635
+ $_button-bg,
11636
+ $_button-border,
11637
+ $solid-button-gradient
11639
11638
  );
11640
- @include box-shadow( $primary-button-active-shadow );
11641
- }
11642
11639
 
11643
- // Selected state
11644
- &.k-state-selected {
11645
- @include fill(
11646
- $primary-button-selected-text,
11647
- $primary-button-selected-bg,
11648
- $primary-button-selected-border,
11649
- $primary-button-selected-gradient
11650
- );
11651
- @include box-shadow( $primary-button-selected-shadow );
11652
- }
11640
+ // Hover state
11641
+ &:hover,
11642
+ &.k-state-hover {
11643
+ @include fill(
11644
+ $_button-hover-text,
11645
+ $_button-hover-bg,
11646
+ $_button-hover-border
11647
+ );
11648
+ }
11653
11649
 
11654
- // Disabled state
11655
- &:disabled,
11656
- &.k-state-disabled {
11657
- @include fill(
11658
- $button-disabled-text,
11659
- $button-disabled-bg,
11660
- $button-disabled-border,
11661
- $button-disabled-gradient
11662
- );
11663
- @include box-shadow( $button-disabled-shadow );
11664
- }
11650
+ // Focus state
11651
+ &:focus,
11652
+ &.k-state-focus {
11653
+ @if ( $solid-button-shadow ) {
11654
+ box-shadow: 0 0 $solid-button-shadow-blur $solid-button-shadow-spread rgba( $_button-border, $solid-button-shadow-opacity );
11655
+ }
11656
+ }
11665
11657
 
11666
- }
11667
- .k-button.k-primary {
11668
- @extend .k-button-primary;
11658
+ // Active state
11659
+ &:active,
11660
+ &.k-state-active {
11661
+ @include fill(
11662
+ $_button-active-text,
11663
+ $_button-active-bg,
11664
+ $_button-active-border
11665
+ );
11666
+ }
11667
+
11668
+ // Selected
11669
+ &.k-state-selected {
11670
+ @include fill(
11671
+ $_button-active-text,
11672
+ $_button-active-bg,
11673
+ $_button-active-border
11674
+ );
11675
+ }
11676
+ }
11669
11677
  }
11670
11678
 
11671
11679
 
@@ -11674,18 +11682,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
11674
11682
 
11675
11683
 
11676
11684
  // Button group
11677
- .k-button-group {
11678
-
11679
- .k-button:focus,
11680
- .k-button.k-state-focus,
11681
- .k-button.k-state-focused,
11682
- .k-button-outline:focus,
11683
- .k-button-outline.k-state-focus,
11684
- .k-button-outline.k-state-focused {
11685
- @include box-shadow( $button-group-focus-shadow );
11686
- }
11687
-
11688
- }
11685
+ .k-button-group {}
11689
11686
 
11690
11687
 
11691
11688
  // Split button
@@ -11707,62 +11704,96 @@ $tooltip-error-border: $tooltip-error-bg !default;
11707
11704
  @include box-shadow( none );
11708
11705
  border-color: currentColor;
11709
11706
  color: $button-text;
11710
- background: none;
11707
+ background-color: transparent;
11711
11708
 
11712
11709
  // Hover state
11713
11710
  &:hover,
11714
11711
  &.k-state-hover {
11715
- @include fill( contrast-wcag( $button-text ), $button-text, $button-text, none );
11712
+ @include fill(
11713
+ contrast-wcag( $button-text ),
11714
+ $button-text,
11715
+ $button-text
11716
+ );
11716
11717
  }
11717
11718
 
11718
11719
  // Focused state
11719
11720
  &:focus,
11720
11721
  &.k-state-focus,
11721
11722
  &.k-state-focused {
11722
- box-shadow: $button-focused-shadow;
11723
+ @if ($outline-button-shadow) {
11724
+ box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $button-text, $outline-button-shadow-opacity );
11725
+ }
11723
11726
  }
11724
11727
 
11725
11728
  // Active state
11726
11729
  &:active,
11727
11730
  &.k-state-active {
11728
- @include fill( contrast-wcag( $button-text ), $button-text, $button-text, none );
11731
+ @include fill(
11732
+ contrast-wcag( $button-text ),
11733
+ $button-text,
11734
+ $button-text
11735
+ );
11729
11736
  }
11730
11737
 
11731
11738
  // Selected state
11732
11739
  &.k-state-selected {
11733
- @include fill( contrast-wcag( $button-text ), $button-text, $button-text, none );
11740
+ @include fill(
11741
+ contrast-wcag( $button-text ),
11742
+ $button-text,
11743
+ $button-text
11744
+ );
11734
11745
  }
11735
11746
  }
11736
11747
  .k-button-outline.k-primary {
11737
- border-color: currentColor;
11738
- color: $primary-button-bg;
11739
- background: none;
11740
- box-shadow: none;
11748
+ @extend .k-button-outline-primary !optional;
11749
+ }
11741
11750
 
11742
- // Hover state
11743
- &:hover,
11744
- &.k-state-hover {
11745
- @include fill( contrast-wcag( $primary-button-bg ), $primary-button-bg, $primary-button-bg, none );
11746
- }
11751
+ @each $name, $color in $button-theme-colors {
11752
+ .k-button-outline.k-button-outline-#{$name} {
11753
+ @include box-shadow( none );
11754
+ border-color: currentColor;
11755
+ color: $color;
11756
+ background-color: transparent;
11747
11757
 
11748
- // Focused state
11749
- &:focus,
11750
- &.k-state-focus,
11751
- &.k-state-focused {
11752
- box-shadow: $primary-button-focused-shadow;
11753
- }
11758
+ // Hover state
11759
+ &:hover,
11760
+ &.k-state-hover {
11761
+ @include fill(
11762
+ contrast-wcag( $color ),
11763
+ $color,
11764
+ $color
11765
+ );
11766
+ }
11754
11767
 
11755
- // Actove state
11756
- &:active,
11757
- &.k-state-active {
11758
- @include fill( contrast-wcag( $primary-button-bg ), $primary-button-bg, $primary-button-bg, none );
11759
- box-shadow: none;
11760
- }
11768
+ // Focused state
11769
+ &:focus,
11770
+ &.k-state-focus,
11771
+ &.k-state-focused {
11772
+ @if ($outline-button-shadow) {
11773
+ box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $color, $outline-button-shadow-opacity );
11774
+ }
11775
+ }
11761
11776
 
11762
- // Selected state
11763
- &.k-state-selected {
11764
- @include fill( contrast-wcag( $primary-button-bg ), $primary-button-bg, $primary-button-bg, none );
11765
- box-shadow: none;
11777
+ // Active state
11778
+ &:active,
11779
+ &.k-state-active {
11780
+ @include fill(
11781
+ contrast-wcag( $color ),
11782
+ $color,
11783
+ $color
11784
+ );
11785
+ box-shadow: none;
11786
+ }
11787
+
11788
+ // Selected state
11789
+ &.k-state-selected {
11790
+ @include fill(
11791
+ contrast-wcag( $color ),
11792
+ $color,
11793
+ $color
11794
+ );
11795
+ box-shadow: none;
11796
+ }
11766
11797
  }
11767
11798
  }
11768
11799
 
@@ -11785,17 +11816,65 @@ $tooltip-error-border: $tooltip-error-bg !default;
11785
11816
  &.k-state-focus {
11786
11817
  color: inherit;
11787
11818
  }
11819
+
11820
+ // Disabled state
11821
+ &:disabled,
11822
+ &.k-state-disabled {
11823
+ color: $button-disabled-text;
11824
+ }
11788
11825
  }
11789
11826
  .k-button-flat.k-primary {
11827
+ @extend .k-button-flat-primary !optional;
11828
+ }
11790
11829
 
11791
- &,
11792
- &:hover,
11793
- &.k-state-hover,
11794
- &:active,
11795
- &.k-state-active,
11796
- &:focus,
11797
- &.k-state-focus {
11798
- color: $primary;
11830
+ @each $name, $color in $button-theme-colors {
11831
+ .k-button-flat.k-button-flat-#{$name} {
11832
+
11833
+ &,
11834
+ &:hover,
11835
+ &.k-state-hover,
11836
+ &:active,
11837
+ &.k-state-active,
11838
+ &:focus,
11839
+ &.k-state-focus {
11840
+ color: $color;
11841
+ }
11842
+
11843
+ // Disabled state
11844
+ &:disabled,
11845
+ &.k-state-disabled {
11846
+ color: $button-disabled-text;
11847
+ }
11848
+ }
11849
+ }
11850
+
11851
+ }
11852
+
11853
+
11854
+
11855
+
11856
+ @include exports( "link-button/theme" ) {
11857
+
11858
+ @each $name, $color in map-merge( $button-theme-colors, ( "base": $base-text ) ) {
11859
+ .k-button-link.k-button-link-#{$name} {
11860
+ @include box-shadow( none );
11861
+ color: $color;
11862
+
11863
+ &:hover,
11864
+ &.k-state-hover {
11865
+ color: try-shade( $color, 2 );
11866
+ }
11867
+ &:focus,
11868
+ &.k-state-focus {
11869
+ @if ($link-button-shadow) {
11870
+ box-shadow: 0 0 $link-button-shadow-blur $link-button-shadow-spread rgba( $color, $link-button-shadow-opacity );
11871
+ }
11872
+ }
11873
+ &:active,
11874
+ &.k-state-active,
11875
+ &.k-state-selected {
11876
+ color: try-shade( $color, 2 );
11877
+ }
11799
11878
  }
11800
11879
  }
11801
11880
 
@@ -12087,6 +12166,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
12087
12166
  .k-toolbar {
12088
12167
  padding: 0;
12089
12168
  border-width: 0;
12169
+ flex-shrink: 1;
12090
12170
  color: inherit;
12091
12171
  background: none;
12092
12172
  }
@@ -13423,7 +13503,7 @@ $textarea-invalid-focus-shadow: $invalid-shadow !default;
13423
13503
  // Targets https://github.com/telerik/kendo-react/issues/638.
13424
13504
  box-shadow: none;
13425
13505
  background: none;
13426
- display: inline-flex;
13506
+ display: flex;
13427
13507
  flex-wrap: nowrap;
13428
13508
  vertical-align: middle;
13429
13509
  position: relative;
@@ -13709,9 +13789,18 @@ $listbox-drop-hint-width: 1px !default;
13709
13789
 
13710
13790
  .k-list-scroller {
13711
13791
  width: 100%;
13792
+ height: inherit;
13712
13793
  border-width: $listbox-border-width;
13713
13794
  border-style: solid;
13714
13795
  box-sizing: border-box;
13796
+
13797
+ .k-list-scroller {
13798
+ border-width: 0;
13799
+ }
13800
+
13801
+ .k-list {
13802
+ height: inherit;
13803
+ }
13715
13804
  }
13716
13805
 
13717
13806
  .k-drop-hint {
@@ -14642,42 +14731,11 @@ $slider-disabled-opacity: null !default;
14642
14731
  line-height: $slider-line-height;
14643
14732
  background: none;
14644
14733
  display: inline-flex;
14645
- align-items: stretch;
14734
+ align-items: center;
14646
14735
  position: relative;
14647
14736
  -webkit-touch-callout: none;
14648
14737
  -webkit-tap-highlight-color: $rgba-transparent;
14649
14738
 
14650
- .k-button {
14651
- height: $slider-button-size;
14652
- line-height: $slider-button-size;
14653
- margin: 0;
14654
- min-width: 0;
14655
- outline: 0;
14656
- padding: 0;
14657
- position: absolute;
14658
- width: $slider-button-size;
14659
- box-sizing: content-box;
14660
-
14661
- .k-icon,
14662
- .k-button-icon {
14663
- vertical-align: baseline;
14664
- line-height: $slider-button-size;
14665
- height: 100%;
14666
- }
14667
- }
14668
-
14669
- .k-button-increase {
14670
- position: absolute;
14671
- right: 0;
14672
- top: 0;
14673
- }
14674
-
14675
- .k-button-decrease {
14676
- position: absolute;
14677
- left: 0;
14678
- top: 0;
14679
- }
14680
-
14681
14739
  .k-label {
14682
14740
  width: auto;
14683
14741
  font-size: .92em;
@@ -14717,28 +14775,18 @@ $slider-disabled-opacity: null !default;
14717
14775
  left: auto;
14718
14776
  right: 0;
14719
14777
  }
14720
-
14721
- .k-button-increase {
14722
- left: 0;
14723
- right: auto;
14724
- }
14725
-
14726
- .k-button-decrease {
14727
- right: 0;
14728
- left: auto;
14729
- }
14730
14778
  }
14731
14779
  }
14732
14780
 
14733
14781
 
14734
14782
  // New rendering
14735
14783
  .k-slider {
14784
+ width: min-content;
14785
+ height: min-content;
14736
14786
  gap: calc( #{$slider-draghandle-size} / 2 );
14737
14787
 
14738
14788
  > .k-button {
14739
- position: relative;
14740
- flex-shrink: 0;
14741
- align-self: center;
14789
+ flex: none;
14742
14790
  }
14743
14791
  > .k-slider-track-wrap {
14744
14792
  flex: 1 1 auto;
@@ -14755,8 +14803,7 @@ $slider-disabled-opacity: null !default;
14755
14803
  display: flex;
14756
14804
  flex-flow: inherit;
14757
14805
  justify-content: space-between;
14758
-
14759
- &::after { display: none; }
14806
+ user-select: none;
14760
14807
  }
14761
14808
  .k-tick {
14762
14809
  flex: 0 0 1px;
@@ -14769,6 +14816,7 @@ $slider-disabled-opacity: null !default;
14769
14816
 
14770
14817
  &-horizontal {
14771
14818
  > .k-slider-track-wrap {
14819
+ height: 26px;
14772
14820
 
14773
14821
  .k-slider-track {
14774
14822
  width: 100%;
@@ -14821,6 +14869,7 @@ $slider-disabled-opacity: null !default;
14821
14869
 
14822
14870
  &-vertical {
14823
14871
  > .k-slider-track-wrap {
14872
+ width: 26px;
14824
14873
 
14825
14874
  .k-slider-track {
14826
14875
  height: 100%;
@@ -14853,14 +14902,8 @@ $slider-disabled-opacity: null !default;
14853
14902
  // Slider vertical
14854
14903
  .k-slider-vertical {
14855
14904
  height: $slider-size;
14856
- width: $slider-alt-size;
14857
14905
  flex-flow: column-reverse nowrap;
14858
14906
 
14859
- .k-button-decrease {
14860
- bottom: 0;
14861
- top: auto;
14862
- }
14863
-
14864
14907
  .k-tick {
14865
14908
  text-align: right;
14866
14909
  margin-left: 2px;
@@ -14872,32 +14915,32 @@ $slider-disabled-opacity: null !default;
14872
14915
 
14873
14916
  // ticks
14874
14917
 
14875
- .k-tick { background-position: -92px center; }
14876
- .k-slider-topleft .k-tick { background-position: -122px center; }
14877
- .k-slider-bottomright .k-tick { background-position: -152px center; }
14918
+ .k-tick { background-position: -94px center; }
14919
+ .k-slider-topleft .k-tick { background-position: -124px center; }
14920
+ .k-slider-bottomright .k-tick { background-position: -154px center; }
14878
14921
 
14879
14922
  .k-tick-large {
14880
14923
  display: flex;
14881
14924
  align-items: center;
14882
- background-position: -2px center;
14925
+ background-position: -4px center;
14883
14926
  }
14884
14927
 
14885
- .k-slider-topleft .k-tick-large { background-position: -32px center; }
14886
- .k-slider-bottomright .k-tick-large { background-position: -62px center; }
14928
+ .k-slider-topleft .k-tick-large { background-position: -34px center; }
14929
+ .k-slider-bottomright .k-tick-large { background-position: -64px center; }
14887
14930
 
14888
- .k-first { background-position: -92px 100%; }
14889
- .k-tick-large.k-first { background-position: -2px 100%; }
14890
- .k-slider-topleft .k-first { background-position: -122px 100%; }
14891
- .k-slider-topleft .k-tick-large.k-first { background-position: -32px 100%; }
14892
- .k-slider-bottomright .k-first { background-position: -152px 100%; }
14893
- .k-slider-bottomright .k-tick-large.k-first { background-position: -62px 100%; }
14931
+ .k-first { background-position: -94px 100%; }
14932
+ .k-tick-large.k-first { background-position: -4px 100%; }
14933
+ .k-slider-topleft .k-first { background-position: -124px 100%; }
14934
+ .k-slider-topleft .k-tick-large.k-first { background-position: -34px 100%; }
14935
+ .k-slider-bottomright .k-first { background-position: -154px 100%; }
14936
+ .k-slider-bottomright .k-tick-large.k-first { background-position: -64px 100%; }
14894
14937
 
14895
- .k-last { background-position: -92px 0; }
14896
- .k-tick-large.k-last { background-position: -2px 0; }
14897
- .k-slider-topleft .k-last { background-position: -122px 0; }
14898
- .k-slider-topleft .k-tick-large.k-last { background-position: -32px 0; }
14899
- .k-slider-bottomright .k-last { background-position: -152px 0; }
14900
- .k-slider-bottomright .k-tick-large.k-last { background-position: -62px 0; }
14938
+ .k-last { background-position: -94px 0; }
14939
+ .k-tick-large.k-last { background-position: -4px 0; }
14940
+ .k-slider-topleft .k-last { background-position: -124px 0; }
14941
+ .k-slider-topleft .k-tick-large.k-last { background-position: -34px 0; }
14942
+ .k-slider-bottomright .k-last { background-position: -154px 0; }
14943
+ .k-slider-bottomright .k-tick-large.k-last { background-position: -64px 0; }
14901
14944
 
14902
14945
  // labels
14903
14946
 
@@ -14935,17 +14978,9 @@ $slider-disabled-opacity: null !default;
14935
14978
 
14936
14979
  // Slider horizontal
14937
14980
  .k-slider-horizontal {
14938
- height: $slider-alt-size;
14939
14981
  width: $slider-size;
14940
14982
  flex-flow: row nowrap;
14941
14983
 
14942
- // ticks
14943
- .k-tick {
14944
- float: left;
14945
- height: 100%;
14946
- text-align: center;
14947
- }
14948
-
14949
14984
  .k-tick { background-position: center -92px; }
14950
14985
  .k-slider-topleft .k-tick { background-position: center -122px; }
14951
14986
  .k-slider-bottomright .k-tick { background-position: center -152px; }
@@ -14991,9 +15026,6 @@ $slider-disabled-opacity: null !default;
14991
15026
  right: 0;
14992
15027
  left: auto;
14993
15028
  }
14994
- .k-slider-buttons .k-slider-track {
14995
- right: $slider-button-spacing;
14996
- }
14997
15029
 
14998
15030
  .k-button .k-i-arrow-e,
14999
15031
  .k-button .k-i-arrow-w {
@@ -15002,11 +15034,6 @@ $slider-disabled-opacity: null !default;
15002
15034
  }
15003
15035
  }
15004
15036
 
15005
- .k-slider-wrap {
15006
- height: 100%;
15007
- width: 100%;
15008
- }
15009
-
15010
15037
  .k-slider-track,
15011
15038
  .k-slider-selection {
15012
15039
  margin: 0;
@@ -15028,16 +15055,6 @@ $slider-disabled-opacity: null !default;
15028
15055
  }
15029
15056
  }
15030
15057
 
15031
- .k-slider-buttons .k-slider-track {
15032
- .k-slider-horizontal & {
15033
- left: $slider-button-spacing;
15034
- }
15035
-
15036
- .k-slider-vertical & {
15037
- bottom: $slider-button-spacing;
15038
- }
15039
- }
15040
-
15041
15058
 
15042
15059
  .k-draghandle {
15043
15060
  background-color: transparent;
@@ -15048,30 +15065,10 @@ $slider-disabled-opacity: null !default;
15048
15065
  position: absolute;
15049
15066
  text-align: center;
15050
15067
  text-decoration: none;
15051
- box-sizing: content-box;
15068
+ box-sizing: border-box;
15052
15069
  width: $slider-draghandle-size;
15053
15070
  height: $slider-draghandle-size;
15054
15071
 
15055
- .k-slider-horizontal & {
15056
- top: 50%;
15057
- transform: translateY(-50%);
15058
-
15059
- &:active,
15060
- &.k-pressed {
15061
- transform: translateY(-50%) scale($slider-draghandle-active-scale);
15062
- }
15063
- }
15064
-
15065
- .k-slider-vertical & {
15066
- left: 50%;
15067
- transform: translateX(-50%);
15068
-
15069
- &:active,
15070
- &.k-pressed {
15071
- transform: translateX(-50%) scale($slider-draghandle-active-scale);
15072
- }
15073
- }
15074
-
15075
15072
  .k-slider-transitions.k-slider-horizontal & {
15076
15073
  transition: left $slider-transition-speed $slider-transition-function, background-color $slider-transition-speed $slider-transition-function, transform $slider-draghandle-transition-speed $slider-draghandle-transition-function;
15077
15074
  }
@@ -15100,34 +15097,18 @@ $slider-disabled-opacity: null !default;
15100
15097
  }
15101
15098
 
15102
15099
 
15103
- .k-slider-items {
15104
- user-select: none;
15105
-
15106
- .k-slider-buttons & {
15107
- margin-left: $slider-button-spacing;
15108
- }
15109
-
15110
- .k-slider-horizontal & {
15111
- height: 100%;
15112
- padding: 2px 0;
15113
- box-sizing: border-box;
15114
- }
15115
-
15116
- .k-slider-vertical & {
15117
- padding-top: 1px;
15118
- }
15119
-
15120
- .k-slider-vertical .k-slider-buttons & {
15121
- margin: 0;
15122
- padding-top: $slider-button-spacing;
15100
+ // Slider readonly
15101
+ .k-slider.k-readonly {
15102
+ .k-button,
15103
+ .k-slider-track,
15104
+ .k-tick,
15105
+ .k-draghandle {
15106
+ pointer-events: none;
15123
15107
  }
15124
15108
  }
15125
- .k-slider-items::after {
15126
- content: "";
15127
- display: block;
15128
- clear: both;
15129
- }
15130
15109
 
15110
+
15111
+ // Slider tooltip
15131
15112
  .k-slider-tooltip {
15132
15113
  .k-callout-n,
15133
15114
  .k-callout-s {
@@ -15210,12 +15191,6 @@ $slider-disabled-opacity: null !default;
15210
15191
  &.k-state-disabled {
15211
15192
  opacity: $slider-disabled-opacity;
15212
15193
  }
15213
-
15214
- .k-slider-wrap {
15215
- &:focus {
15216
- outline: none;
15217
- }
15218
- }
15219
15194
  }
15220
15195
 
15221
15196
  .k-slider-horizontal .k-tick {
@@ -17210,10 +17185,6 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
17210
17185
  z-index: 1;
17211
17186
  }
17212
17187
 
17213
- .k-slider-wrap > .k-slider-track {
17214
- height: $colorgradient-slider-vertical-size;
17215
- }
17216
-
17217
17188
  .k-slider-selection {
17218
17189
  display: none;
17219
17190
  }
@@ -19309,8 +19280,8 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
19309
19280
 
19310
19281
  // Token
19311
19282
  .k-button {
19312
- min-height: calc( #{$form-line-height-em} + #{$button-padding-y-sm} + 2px );
19313
- padding: ($button-padding-y-sm / 2) ($button-padding-x / 2);
19283
+ min-height: calc( #{$form-line-height-em} + #{$button-padding-y /2} + 2px );
19284
+ padding: ($button-padding-y / 4) ($button-padding-x / 2);
19314
19285
  margin: $padding-y-sm 0 0 $padding-y-sm;
19315
19286
  cursor: default;
19316
19287
  display: inline-flex;
@@ -19732,6 +19703,16 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19732
19703
  }
19733
19704
 
19734
19705
 
19706
+ // Treeview filter
19707
+ .k-treeview-filter {
19708
+ padding: map-get( $spacing, 1 );
19709
+ box-sizing: border-box;
19710
+ display: block;
19711
+ position: relative;
19712
+ flex: none;
19713
+ }
19714
+
19715
+
19735
19716
  // Treeview group
19736
19717
  .k-treeview-group,
19737
19718
  .k-treeview .k-group {
@@ -19792,11 +19773,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19792
19773
  .k-treeview .k-i-collapse {
19793
19774
  margin-left: -$treeview-indent;
19794
19775
  cursor: pointer;
19795
-
19796
- + .k-checkbox-wrap,
19797
- + .k-checkbox-wrapper {
19798
- margin-left: $icon-spacing;
19799
- }
19800
19776
  }
19801
19777
 
19802
19778
 
@@ -19809,6 +19785,7 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19809
19785
  // Checkbox
19810
19786
  .k-treeview .k-checkbox-wrap,
19811
19787
  .k-treeview .k-checkbox-wrapper {
19788
+ margin-left: $icon-spacing;
19812
19789
  margin-right: $icon-spacing;
19813
19790
  align-self: center;
19814
19791
  }
@@ -19872,11 +19849,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19872
19849
  .k-treeview-toggle {
19873
19850
  margin-left: 0;
19874
19851
  margin-right: -$treeview-indent;
19875
-
19876
- + .k-checkbox-wrap,
19877
- + .k-checkbox-wrapper {
19878
- margin-right: $icon-spacing;
19879
- }
19880
19852
  }
19881
19853
 
19882
19854
  // Loading
@@ -19885,13 +19857,6 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19885
19857
  margin-left: $icon-spacing;
19886
19858
  }
19887
19859
 
19888
- // Checkbox
19889
- .k-checkbox-wrap,
19890
- .k-checkbox-wrapper {
19891
- margin-right: 0;
19892
- margin-left: $icon-spacing;
19893
- }
19894
-
19895
19860
  // Treeview leaf
19896
19861
  .k-treeview-leaf,
19897
19862
  .k-in {
@@ -19902,8 +19867,8 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
19902
19867
  margin-left: $icon-spacing;
19903
19868
  }
19904
19869
  }
19905
-
19906
19870
  }
19871
+
19907
19872
  }
19908
19873
 
19909
19874
  // #endregion
@@ -23212,10 +23177,10 @@ $actionsheet-item-disabled-shadow: null !default;
23212
23177
  margin-top: -($window-inner-padding-y / 2);
23213
23178
  }
23214
23179
  .k-window-content:first-child {
23215
- padding-top: #{"max( #{$window-inner-padding-y}, #{$window-titlebar-padding-y} )"};
23180
+ padding-top: clamp( #{$window-inner-padding-y}, #{$window-titlebar-padding-y}, #{$window-titlebar-padding-y} );
23216
23181
  }
23217
23182
  .k-window-content:last-child {
23218
- padding-bottom: #{"max( #{$window-inner-padding-y}, #{$window-titlebar-padding-y} )"};
23183
+ padding-bottom: clamp( #{$window-inner-padding-y}, #{$window-titlebar-padding-y}, #{$window-titlebar-padding-y} );
23219
23184
  }
23220
23185
 
23221
23186
  .k-window-iframecontent {
@@ -26589,7 +26554,7 @@ $tabstrip-content-border-focused: $component-text !default;
26589
26554
  color: inherit;
26590
26555
  background-color: transparent;
26591
26556
  display: flex;
26592
- flex-direction: column;
26557
+ flex-flow: column nowrap;
26593
26558
  -webkit-touch-callout: none;
26594
26559
  -webkit-tap-highlight-color: $rgba-transparent;
26595
26560
 
@@ -26682,6 +26647,9 @@ $tabstrip-content-border-focused: $component-text !default;
26682
26647
  left: 0;
26683
26648
  transition: width .2s linear;
26684
26649
 
26650
+ // TODO: a better name
26651
+ display: none;
26652
+
26685
26653
  &.k-complete {
26686
26654
  width: 100%;
26687
26655
  border-top-width: 0;
@@ -26695,6 +26663,7 @@ $tabstrip-content-border-focused: $component-text !default;
26695
26663
 
26696
26664
  > .k-tabstrip-items {
26697
26665
  flex: 1 1 auto;
26666
+ flex-wrap: nowrap;
26698
26667
  white-space: nowrap;
26699
26668
  overflow: hidden;
26700
26669
  }
@@ -30379,7 +30348,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30379
30348
  padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
30380
30349
  }
30381
30350
  .k-popup > & {
30382
- width: 100%;
30351
+ max-width: 100%;
30383
30352
  }
30384
30353
 
30385
30354
  .k-actions {
@@ -30675,12 +30644,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30675
30644
  @include fill( $bg: $grid-sticky-selected-alt-bg );
30676
30645
  }
30677
30646
 
30678
- // Hovered state
30679
- .k-state-hover td,
30680
- tr:hover td {
30681
- @include fill( $bg: $grid-sticky-hovered-bg );
30682
- }
30683
-
30684
30647
  // Selected hover
30685
30648
  .k-state-selected:hover td,
30686
30649
  .k-state-selected.k-state-hover td {
@@ -31388,6 +31351,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31388
31351
  margin: 0;
31389
31352
  }
31390
31353
  .k-spreadsheet-tabstrip .k-loading {
31354
+ // TODO: better name
31391
31355
  display: none;
31392
31356
  }
31393
31357
  .k-spreadsheet-tabstrip .k-content,
@@ -33739,9 +33703,13 @@ $treelist-footer-row-border-width: 1px !default;
33739
33703
  padding: .4em .6em;
33740
33704
  line-height: 1.6em;
33741
33705
 
33706
+ // TODO: see what this does and use a better name
33742
33707
  .k-loading {
33743
33708
  vertical-align: baseline;
33744
33709
  margin-right: 5px;
33710
+
33711
+ // TODO
33712
+ display: none;
33745
33713
  }
33746
33714
  }
33747
33715
 
@@ -39760,10 +39728,16 @@ $chat-quick-reply-hover-border: $primary !default;
39760
39728
 
39761
39729
  .k-scroll-button {
39762
39730
  height: 100%;
39731
+ aspect-ratio: auto;
39763
39732
  position: absolute;
39764
39733
  z-index: 2;
39765
39734
  top: 50%;
39766
39735
  transform: translateY(-50%);
39736
+
39737
+ .k-button-icon {
39738
+ min-width: auto;
39739
+ min-height: auto;
39740
+ }
39767
39741
  }
39768
39742
  .k-scroll-button-left {
39769
39743
  left: 0;
@@ -40060,6 +40034,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
40060
40034
  padding: 0 (14px / 2);
40061
40035
  align-items: center;
40062
40036
  }
40037
+ .k-mediaplayer-volume {
40038
+ width: 100px;
40039
+ }
40063
40040
 
40064
40041
 
40065
40042
  // Seekbar
@@ -40067,8 +40044,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
40067
40044
  width: 100%;
40068
40045
  position: absolute;
40069
40046
  z-index: 3;
40070
- top: -17px;
40047
+ top: 0;
40071
40048
  left: 0;
40049
+ transform: translateY( -50% );
40072
40050
  }
40073
40051
  .k-mediaplayer-seekbar .k-slider-track {
40074
40052
  // sass-lint:disable no-important
@@ -40076,6 +40054,9 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
40076
40054
  // sass-lint:enable no-important
40077
40055
  border-radius: 0;
40078
40056
  }
40057
+ .k-mediaplayer-seekbar .k-slider-selection {
40058
+ border-radius: 0;
40059
+ }
40079
40060
 
40080
40061
  .k-mediaplayer-fullscreen {
40081
40062
  z-index: 10000;