@progress/kendo-theme-default 7.2.2-dev.0 → 7.3.0-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.scss CHANGED
@@ -712,27 +712,129 @@ $kendo-color-level-step: 8% !default;
712
712
  @return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
713
713
  }
714
714
 
715
+ // #endregion
716
+ // #region @import "./_color-variations.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color-variations.import.scss
715
717
  /// Generates all color variations of a given main color
716
718
  /// @param {String} $name - The name of the main color
717
- /// @param {Color} $level - The color value to be assigned to the main color
719
+ /// @param {Color} $color - The color value to be assigned to the main color
720
+ /// @param {String} $theme - The theme the colors will be generated for
718
721
  /// @return {Map} - A map with the generated keys and values
719
722
  ///
720
723
  /// @group color-system
721
- @function k-generate-colors( $name, $color ) {
722
- $_variations: (
723
- #{$name}-subtle: k-try-tint( $color, 80% ),
724
- #{$name}-subtle-hover: k-try-tint( $color, 65% ),
725
- #{$name}-subtle-active: k-try-tint( $color, 50% ),
726
- #{$name}: $color,
727
- #{$name}-hover: k-try-shade( $color, 0.5 ),
728
- #{$name}-active: k-try-shade( $color, 1.5 ),
729
- #{$name}-emphasis: k-try-tint( $color, 4.5 ),
730
- #{$name}-on-subtle: k-try-shade( $color, 8 ),
731
- on-#{$name}: k-contrast-legacy( $color ),
732
- #{$name}-on-surface: $color,
733
- );
734
-
735
- @return $_variations;
724
+ @function k-generate-color-variations( $name, $color, $theme: null ) {
725
+ $result: ();
726
+
727
+ // DataViz
728
+ @if (
729
+ $name == 'series-a' or
730
+ $name == 'series-b' or
731
+ $name == 'series-c' or
732
+ $name == 'series-d' or
733
+ $name == 'series-e' or
734
+ $name == 'series-f'
735
+ ) {
736
+ $_variations: (
737
+ #{$name}: $color,
738
+ #{$name}-bold: k-color-mix(black, $color, 25%),
739
+ #{$name}-bolder: k-color-mix(black, $color, 50%),
740
+ #{$name}-subtle: k-color-mix(white, $color, 25%),
741
+ #{$name}-subtler: k-color-mix(white, $color, 50%),
742
+ );
743
+
744
+ $result: k-map-merge($result, $_variations);
745
+ } @else {
746
+ // Default
747
+ @if ( $theme == 'default' or $theme == null ) { // stylelint-disable-line
748
+ $_variations: (
749
+ #{$name}-subtle: if( $name == 'base', k-try-shade( $color, 4% ), k-try-tint( $color, 80% )),
750
+ #{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
751
+ #{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 13% ), k-try-tint( $color, 50% )),
752
+ #{$name}: $color,
753
+ #{$name}-hover: k-try-shade( $color, 0.5 ),
754
+ #{$name}-active: k-try-shade( $color, 1.5 ),
755
+ #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
756
+ #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 65% )),
757
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 75% ), k-contrast-legacy( $color )),
758
+ #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 25% )),
759
+ );
760
+
761
+ $result: k-map-merge($result, $_variations);
762
+ }
763
+
764
+ // Bootstrap
765
+ @if ( $theme == 'bootstrap' ) {
766
+ $_variations: (
767
+ #{$name}-subtle: if( $name == 'base', k-try-tint( $color, 30% ), k-try-tint( $color, 80% )),
768
+ #{$name}-subtle-hover: if( $name == 'base', $color, k-try-tint($color, 65% )),
769
+ #{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint( $color, 50% )),
770
+ #{$name}: $color,
771
+ #{$name}-hover: k-color-darken( $color, 7.5% ),
772
+ #{$name}-active: k-color-darken( $color, 10% ),
773
+ #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
774
+ #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
775
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-color( $color )),
776
+ #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
777
+ );
778
+
779
+ $result: k-map-merge($result, $_variations);
780
+ }
781
+
782
+ // Material
783
+ @if ( $theme == 'material' ) {
784
+ $_variations: (
785
+ #{$name}-subtle: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 80% )),
786
+ #{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 16% ), k-try-tint($color, 65% )),
787
+ #{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 24% ), k-try-tint( $color, 50% )),
788
+ #{$name}: $color,
789
+ #{$name}-hover: k-try-shade( $color, 0.5 ),
790
+ #{$name}-active: k-try-shade( $color, 1.5 ),
791
+ #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 32% ), k-try-tint( $color, 25% )),
792
+ #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 65% )),
793
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 87% ), k-contrast-color( $color )),
794
+ #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 50% )),
795
+ );
796
+
797
+ $result: k-map-merge($result, $_variations);
798
+ }
799
+
800
+ // Fluent
801
+ @if ( $theme == 'fluent' ) {
802
+ $_variations: (
803
+ #{$name}-subtle: if( $name == 'base', k-try-shade( $color, 2% ), k-try-tint( $color, 80% )),
804
+ #{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
805
+ #{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 50% )),
806
+ #{$name}: $color,
807
+ #{$name}-hover: k-try-shade( $color, 0.5 ),
808
+ #{$name}-active: k-try-shade( $color, 1.5 ),
809
+ #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 18% ), k-try-tint( $color, 25% )),
810
+ #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 74% ), k-try-shade( $color, 65% )),
811
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 86% ), k-contrast-legacy( $color )),
812
+ #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 86% ), k-try-shade( $color, 25% )),
813
+ );
814
+
815
+ $result: k-map-merge($result, $_variations);
816
+ }
817
+
818
+ // Classic
819
+ @if ( $theme == 'classic' ) {
820
+ $_variations: (
821
+ #{$name}-subtle: if( $name == 'base', k-try-tint( $color, 20% ), k-try-tint( $color, 80% )),
822
+ #{$name}-subtle-hover: if( $name == 'base', k-try-tint( $color, 8% ), k-try-tint($color, 65% )),
823
+ #{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 6% ), k-try-tint( $color, 50% )),
824
+ #{$name}: $color,
825
+ #{$name}-hover: k-try-shade( $color, 1 ),
826
+ #{$name}-active: k-try-shade( $color, 2 ),
827
+ #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 14% ), k-try-tint( $color, 25% )),
828
+ #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
829
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-legacy( $color )),
830
+ #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
831
+ );
832
+
833
+ $result: k-map-merge($result, $_variations);
834
+ }
835
+ }
836
+
837
+ @return $result;
736
838
  }
737
839
  // #endregion
738
840
  // #region @import "./_custom-properties.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
@@ -6984,13 +7086,57 @@ $_kendo-module-meta: (
6984
7086
 
6985
7087
  // #endregion
6986
7088
  // #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
7089
+ // #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
7090
+ // File already imported_once. Skipping output.
7091
+ // #endregion
7092
+
6987
7093
  $kendo-prefix: k- !default;
6988
7094
  $kendo-important: true !default;
7095
+ $kendo-enable-color-system: false !default;
6989
7096
 
6990
7097
  $kendo-theme-colors: () !default;
6991
7098
 
6992
7099
  $kendo-font-sizes: () !default;
6993
7100
 
7101
+ $kendo-util-colors-list: (
7102
+ primary-subtle,
7103
+ primary,
7104
+ primary-emphasis,
7105
+ secondary-subtle,
7106
+ secondary,
7107
+ secondary-emphasis,
7108
+ tertiary-subtle,
7109
+ tertiary,
7110
+ tertiary-emphasis,
7111
+ info-subtle,
7112
+ info,
7113
+ info-emphasis,
7114
+ success-subtle,
7115
+ success,
7116
+ success-emphasis,
7117
+ warning-subtle,
7118
+ warning,
7119
+ warning-emphasis,
7120
+ error-subtle,
7121
+ error,
7122
+ error-emphasis,
7123
+ light-subtle,
7124
+ light,
7125
+ light-emphasis,
7126
+ dark-subtle,
7127
+ dark,
7128
+ dark-emphasis,
7129
+ ) !default;
7130
+
7131
+ $kendo-util-colors: () !default;
7132
+ @each $name, $color in $kendo-colors {
7133
+ @each $util-color in $kendo-util-colors-list {
7134
+ @if ( $name == $util-color ) {
7135
+ $kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
7136
+ }
7137
+ }
7138
+ }
7139
+
6994
7140
  $kendo-spacing: (
6995
7141
  0: 0,
6996
7142
  1px: 1px,
@@ -7678,7 +7824,7 @@ $kendo-utils: (
7678
7824
  start,
7679
7825
  end
7680
7826
  ),
7681
- "text-color": k-map-merge( $kendo-theme-colors, (
7827
+ "text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
7682
7828
  "inherit": inherit,
7683
7829
  "current": currentColor,
7684
7830
  "transparent": transparent,
@@ -7733,7 +7879,7 @@ $kendo-utils: (
7733
7879
  content: content-box,
7734
7880
  text: text
7735
7881
  ),
7736
- "background-color": k-map-merge( $kendo-theme-colors, (
7882
+ "background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
7737
7883
  "inherit": inherit,
7738
7884
  "transparent": transparent,
7739
7885
  "black": black,
@@ -7776,7 +7922,7 @@ $kendo-utils: (
7776
7922
  hidden,
7777
7923
  none
7778
7924
  ),
7779
- "border-color": k-map-merge( $kendo-theme-colors, (
7925
+ "border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
7780
7926
  "inherit": inherit,
7781
7927
  "current": currentColor,
7782
7928
  "transparent": transparent,
@@ -7802,7 +7948,7 @@ $kendo-utils: (
7802
7948
  outset,
7803
7949
  none
7804
7950
  ),
7805
- "outline-color": k-map-merge( $kendo-theme-colors, (
7951
+ "outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
7806
7952
  "inherit": inherit,
7807
7953
  "current": currentColor,
7808
7954
  "transparent": transparent,
@@ -8021,7 +8167,7 @@ $kendo-utils: (
8021
8167
 
8022
8168
  // #endregion
8023
8169
  // #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
8024
- @mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
8170
+ @mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
8025
8171
  @if $values {
8026
8172
  $_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
8027
8173
  $_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
@@ -8031,25 +8177,33 @@ $kendo-utils: (
8031
8177
  $_val: if( k-meta-type-of($values) == list, $key, $val );
8032
8178
  $_name: k-escape-class-name( $name );
8033
8179
  $_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
8180
+ $_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
8034
8181
 
8035
8182
  @if $important != only {
8036
8183
  .#{$_selector} {
8037
8184
  @each $prop in $_props {
8038
- #{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
8185
+ @if $css-var {
8186
+ #{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
8187
+ } @else {
8188
+ #{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
8189
+ }
8039
8190
  }
8040
8191
  }
8041
8192
  }
8042
8193
  @if $important {
8043
8194
  .\!#{$_selector} {
8044
8195
  @each $prop in $_props {
8045
- #{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
8196
+ @if $css-var {
8197
+ #{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
8198
+ } @else {
8199
+ #{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
8200
+ }
8046
8201
  }
8047
8202
  }
8048
8203
  }
8049
8204
  }
8050
8205
  }
8051
8206
  }
8052
-
8053
8207
  // #endregion
8054
8208
 
8055
8209
  // #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
@@ -12103,11 +12257,11 @@ $kendo-utils: (
12103
12257
 
12104
12258
  // Text color utility classes
12105
12259
  $kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
12106
- @include generate-utils( text, color, $kendo-utils-text-color );
12260
+ @include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
12107
12261
 
12108
12262
 
12109
12263
  // Legacy aliases
12110
- @include generate-utils( color, color, $kendo-utils-text-color );
12264
+ @include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
12111
12265
 
12112
12266
  }
12113
12267
 
@@ -12405,7 +12559,7 @@ $kendo-utils: (
12405
12559
 
12406
12560
  // Background color utility classes
12407
12561
  $kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
12408
- @include generate-utils( bg, background-color, $kendo-utils-background-color );
12562
+ @include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
12409
12563
 
12410
12564
  }
12411
12565
 
@@ -12549,13 +12703,7 @@ $kendo-utils: (
12549
12703
 
12550
12704
  // Border color utility classes
12551
12705
  $kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
12552
- @include generate-utils( border, border-color, $kendo-utils-border-color );
12553
- @include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
12554
- @include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
12555
- @include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
12556
- @include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
12557
- @include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
12558
- @include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
12706
+ @include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
12559
12707
 
12560
12708
  }
12561
12709
 
@@ -13435,7 +13583,7 @@ $kendo-utils: (
13435
13583
 
13436
13584
  // Outline color utility classes
13437
13585
  $kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
13438
- @include generate-utils( outline, outline-color, $kendo-utils-outline-color );
13586
+ @include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
13439
13587
 
13440
13588
  }
13441
13589
 
@@ -14825,7 +14973,7 @@ $kendo-utils: (
14825
14973
  // #endregion
14826
14974
 
14827
14975
  @mixin kendo-utils--elevation {
14828
- @include generate-utils(elevation, box-shadow, $kendo-elevation);
14976
+ @include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
14829
14977
  }
14830
14978
 
14831
14979
  // #endregion
@@ -23898,19 +24046,6 @@ $kendo-form-sizes: (
23898
24046
  }
23899
24047
  }
23900
24048
 
23901
- .k-input-label {
23902
- margin-right: $kendo-horizontal-form-label-margin-x;
23903
- z-index: 1;
23904
-
23905
- &:dir(rtl),
23906
- .k-rtl &,
23907
- &.k-rtl,
23908
- [dir="rtl"] &,
23909
- &[dir="rtl"] {
23910
- margin-right: 0;
23911
- margin-left: $kendo-horizontal-form-label-margin-x;
23912
- }
23913
- }
23914
24049
 
23915
24050
 
23916
24051
  // Vertical Form
@@ -25841,7 +25976,7 @@ $kendo-floating-label-focus-text: null !default;
25841
25976
  box-sizing: border-box;
25842
25977
  }
25843
25978
 
25844
- > .k-label {
25979
+ > .k-floating-label {
25845
25980
  max-width: $kendo-floating-label-max-width;
25846
25981
  font-size: $kendo-floating-label-font-size;
25847
25982
  line-height: $kendo-floating-label-line-height;
@@ -25856,13 +25991,9 @@ $kendo-floating-label-focus-text: null !default;
25856
25991
  transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, left $kendo-floating-label-transition;
25857
25992
  }
25858
25993
 
25859
- > .k-widget {
25860
- flex: 1 1 auto;
25861
- width: auto;
25862
- }
25863
25994
 
25864
25995
  &.k-empty {
25865
- > .k-label {
25996
+ > .k-floating-label {
25866
25997
  top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
25867
25998
  left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
25868
25999
  transform: scale( $kendo-floating-label-scale );
@@ -25870,13 +26001,13 @@ $kendo-floating-label-focus-text: null !default;
25870
26001
  }
25871
26002
  }
25872
26003
 
25873
- > .k-label,
25874
- &.k-focus > .k-label {
26004
+ > .k-floating-label,
26005
+ &.k-focus > .k-floating-label {
25875
26006
  top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
25876
26007
  left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25877
26008
  transform: scale( $kendo-floating-label-focus-scale );
25878
26009
  }
25879
- &:focus-within > .k-label {
26010
+ &:focus-within > .k-floating-label {
25880
26011
  top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
25881
26012
  left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25882
26013
  transform: scale( $kendo-floating-label-focus-scale );
@@ -25890,24 +26021,24 @@ $kendo-floating-label-focus-text: null !default;
25890
26021
  .k-rtl &,
25891
26022
  &[dir="rtl"] {
25892
26023
 
25893
- > .k-label {
26024
+ > .k-floating-label {
25894
26025
  transform-origin: right center;
25895
26026
  transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, right $kendo-floating-label-transition;
25896
26027
  }
25897
26028
 
25898
26029
  &.k-empty {
25899
- > .k-label {
26030
+ > .k-floating-label {
25900
26031
  left: auto;
25901
26032
  right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
25902
26033
  }
25903
26034
  }
25904
26035
 
25905
- > .k-label,
25906
- &.k-focus > .k-label {
26036
+ > .k-floating-label,
26037
+ &.k-focus > .k-floating-label {
25907
26038
  left: auto;
25908
26039
  right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25909
26040
  }
25910
- &:focus-within > .k-label {
26041
+ &:focus-within > .k-floating-label {
25911
26042
  left: auto;
25912
26043
  right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25913
26044
  }
@@ -25928,23 +26059,23 @@ $kendo-floating-label-focus-text: null !default;
25928
26059
  // Floating label
25929
26060
  .k-floating-label-container {
25930
26061
 
25931
- > .k-label {
26062
+ > .k-floating-label {
25932
26063
  @include fill(
25933
26064
  $color: $kendo-floating-label-text,
25934
26065
  $bg: $kendo-floating-label-bg
25935
26066
  );
25936
26067
  }
25937
26068
 
25938
- &.k-focus > .k-label {
26069
+ &.k-focus > .k-floating-label {
25939
26070
  @include fill(
25940
26071
  $color: $kendo-floating-label-focus-text,
25941
26072
  $bg: $kendo-floating-label-focus-bg
25942
26073
  );
25943
26074
  }
25944
26075
 
25945
- &.k-invalid > .k-label,
25946
- &.ng-invalid.ng-touched > .k-label,
25947
- &.ng-invalid.ng-dirty > .k-label {
26076
+ &.k-invalid > .k-floating-label,
26077
+ &.ng-invalid.ng-touched > .k-floating-label,
26078
+ &.ng-invalid.ng-dirty > .k-floating-label {
25948
26079
  @include fill ( $color: $kendo-invalid-text );
25949
26080
  }
25950
26081
  }
@@ -28348,137 +28479,333 @@ $_kendo-module-meta: (
28348
28479
  // #region @import "./_variables.scss"; -> scss/calendar/_variables.scss
28349
28480
  // Calendar
28350
28481
 
28482
+ /// The width of the border around the Calendar.
28483
+ /// @group calendar
28351
28484
  $kendo-calendar-border-width: 1px !default;
28485
+
28486
+ /// The font family of the Calendar.
28487
+ /// @group calendar
28352
28488
  $kendo-calendar-font-family: $kendo-font-family !default;
28489
+ /// The font size of the Calendar.
28490
+ /// @group calendar
28353
28491
  $kendo-calendar-font-size: $kendo-font-size-md !default;
28492
+ /// The line height of the Calendar.
28493
+ /// @group calendar
28354
28494
  $kendo-calendar-line-height: $kendo-line-height-md !default;
28355
28495
 
28496
+ /// The size of the cells in the Calendar.
28497
+ /// @group calendar
28356
28498
  $kendo-calendar-cell-size: 32px !default;
28357
28499
 
28500
+ /// The background color of the Calendar.
28501
+ /// @group calendar
28358
28502
  $kendo-calendar-bg: $kendo-component-bg !default;
28503
+ /// The text color of the Calendar.
28504
+ /// @group calendar
28359
28505
  $kendo-calendar-text: $kendo-component-text !default;
28506
+ /// The border color of the Calendar.
28507
+ /// @group calendar
28360
28508
  $kendo-calendar-border: $kendo-component-border !default;
28361
28509
 
28510
+ /// The horizontal padding of the header in the Calendar.
28511
+ /// @group calendar
28362
28512
  $kendo-calendar-header-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
28513
+ /// The vertical padding of the header in the Calendar.
28514
+ /// @group calendar
28363
28515
  $kendo-calendar-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
28516
+
28517
+ /// The border width of the header in the Calendar.
28518
+ /// @group calendar
28364
28519
  $kendo-calendar-header-border-width: 1px !default;
28365
28520
 
28521
+ /// The background color of the header in the Calendar.
28522
+ /// @group calendar
28366
28523
  $kendo-calendar-header-bg: $kendo-component-header-bg !default;
28524
+ /// The text color of the header in the Calendar.
28525
+ /// @group calendar
28367
28526
  $kendo-calendar-header-text: $kendo-component-header-text !default;
28527
+ /// The border color of the header in the Calendar.
28528
+ /// @group calendar
28368
28529
  $kendo-calendar-header-border: $kendo-component-header-border !default;
28530
+ /// The gradient of the header in the Calendar.
28531
+ /// @group calendar
28369
28532
  $kendo-calendar-header-gradient: $kendo-component-header-gradient !default;
28370
28533
  // TODO: variable is used, but the selector using it is not! Potentially remove;
28534
+ /// The shadow of the header in the Calendar.
28535
+ /// @group calendar
28371
28536
  $kendo-calendar-header-shadow: 0 1px 3px 1px rgba(black, .1) !default;
28372
28537
 
28538
+ /// The gap between the items in the navigation of the Calendar.
28539
+ /// @group calendar
28373
28540
  $kendo-calendar-nav-gap: null !default;
28374
28541
 
28542
+ /// The horizontal padding of the footer in the Calendar.
28543
+ /// @group calendar
28375
28544
  $kendo-calendar-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
28545
+ /// The vertical padding of the footer in the Calendar.
28546
+ /// @group calendar
28376
28547
  $kendo-calendar-footer-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
28377
28548
 
28549
+ /// The horizontal padding of the cells in the Calendar.
28550
+ /// @group calendar
28378
28551
  $kendo-calendar-cell-padding-x: .25em !default;
28552
+ /// The vertical padding of the cells in the Calendar.
28553
+ /// @group calendar
28379
28554
  $kendo-calendar-cell-padding-y: $kendo-calendar-cell-padding-x !default;
28555
+
28556
+ /// The line height of the cells in the Calendar.
28557
+ /// @group calendar
28380
28558
  $kendo-calendar-cell-line-height: $kendo-calendar-line-height !default;
28559
+
28560
+ /// The border radius of the cells in the Calendar.
28561
+ /// @group calendar
28381
28562
  $kendo-calendar-cell-border-radius: $kendo-border-radius-md !default;
28382
28563
 
28564
+ /// The horizontal padding of the header cells in the Calendar.
28565
+ /// @group calendar
28383
28566
  $kendo-calendar-header-cell-padding-x: null !default;
28567
+ /// The vertical padding of the header cells in the Calendar.
28568
+ /// @group calendar
28384
28569
  $kendo-calendar-header-cell-padding-y: null !default;
28570
+ /// The width of the header cells in the Calendar.
28571
+ /// @group calendar
28385
28572
  $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
28573
+ /// The height of the header cells in the Calendar.
28574
+ /// @group calendar
28386
28575
  $kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
28576
+ /// The font size of the header cells in the Calendar.
28577
+ /// @group calendar
28387
28578
  $kendo-calendar-header-cell-font-size: $kendo-font-size-sm !default;
28579
+ /// The line height of the header cells in the Calendar.
28580
+ /// @group calendar
28388
28581
  $kendo-calendar-header-cell-line-height: 2 !default;
28582
+
28583
+ /// The background color of the header cells in the Calendar.
28584
+ /// @group calendar
28389
28585
  $kendo-calendar-header-cell-bg: null !default;
28586
+ /// The text color of the header cells in the Calendar.
28587
+ /// @group calendar
28390
28588
  $kendo-calendar-header-cell-text: $kendo-subtle-text !default;
28589
+ /// The opacity of the header cells in the Calendar.
28590
+ /// @group calendar
28391
28591
  $kendo-calendar-header-cell-opacity: null !default;
28392
28592
 
28593
+ /// The horizontal padding of the caption in the Calendar.
28594
+ /// @group calendar
28393
28595
  $kendo-calendar-caption-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
28596
+ /// The vertical padding of the caption in the Calendar.
28597
+ /// @group calendar
28394
28598
  $kendo-calendar-caption-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
28599
+ /// The height of the caption in the Calendar.
28600
+ /// @group calendar
28395
28601
  $kendo-calendar-caption-height: $kendo-calendar-cell-size !default;
28602
+ /// The font size of the caption in the Calendar.
28603
+ /// @group calendar
28396
28604
  $kendo-calendar-caption-font-size: null !default;
28605
+ /// The line height of the caption in the Calendar.
28606
+ /// @group calendar
28397
28607
  $kendo-calendar-caption-line-height: null !default;
28608
+ /// The font weight of the caption in the Calendar.
28609
+ /// @group calendar
28398
28610
  $kendo-calendar-caption-font-weight: bold !default;
28399
28611
 
28612
+ /// The font size of the week number cells in the Calendar.
28613
+ /// @group calendar
28614
+ $kendo-calendar-week-number-font-size: $kendo-font-size-sm !default;
28615
+
28616
+ /// The width of the Calendar view.
28617
+ /// @group calendar
28400
28618
  $kendo-calendar-view-width: ($kendo-calendar-cell-size * 8) !default;
28619
+ /// The height of the Calendar view.
28620
+ /// @group calendar
28401
28621
  $kendo-calendar-view-height: ($kendo-calendar-cell-size * 7) !default;
28622
+
28623
+ /// The gap between the items in the Calendar view.
28624
+ /// @group calendar
28402
28625
  $kendo-calendar-view-gap: k-map-get( $kendo-spacing, 4 ) !default;
28403
28626
 
28627
+ /// The background color of the weekend cells in the Calendar.
28628
+ /// @group calendar
28404
28629
  $kendo-calendar-weekend-bg: null !default;
28630
+ /// The text color of the weekend cells in the Calendar.
28631
+ /// @group calendar
28405
28632
  $kendo-calendar-weekend-text: null !default;
28406
28633
 
28634
+ /// The style of the current day in the Calendar.
28635
+ /// @group calendar
28407
28636
  $kendo-calendar-today-style: color !default;
28637
+ /// The color of the current day in the Calendar.
28638
+ /// @group calendar
28408
28639
  $kendo-calendar-today-color: $kendo-color-primary !default;
28409
28640
 
28641
+ /// The background color of the week number cells in the Calendar.
28642
+ /// @group calendar
28410
28643
  $kendo-calendar-week-number-bg: null !default;
28644
+ /// The text color of the week number cells in the Calendar.
28645
+ /// @group calendar
28411
28646
  $kendo-calendar-week-number-text: $kendo-calendar-header-cell-text !default;
28412
28647
 
28648
+ /// The background color of the preceding/subsequent month cells in the Calendar.
28649
+ /// @group calendar
28413
28650
  $kendo-calendar-other-month-bg: null !default;
28651
+ /// The text color of the preceding/subsequent month cells in the Calendar.
28652
+ /// @group calendar
28414
28653
  $kendo-calendar-other-month-text: $kendo-calendar-header-cell-text !default;
28415
28654
 
28655
+ /// The background color of the cells in the Calendar.
28656
+ /// @group calendar
28416
28657
  $kendo-calendar-cell-bg: null !default;
28658
+ /// The text color of the cells in the Calendar.
28659
+ /// @group calendar
28417
28660
  $kendo-calendar-cell-text: null !default;
28661
+ /// The border color of the cells in the Calendar.
28662
+ /// @group calendar
28418
28663
  $kendo-calendar-cell-border: null !default;
28664
+ /// The gradient of the cells in the Calendar.
28665
+ /// @group calendar
28419
28666
  $kendo-calendar-cell-gradient: null !default;
28420
28667
 
28668
+ /// The background color of the hovered cells in the Calendar.
28669
+ /// @group calendar
28421
28670
  $kendo-calendar-cell-hover-bg: $kendo-hover-bg !default;
28671
+ /// The text color of the hovered cells in the Calendar.
28672
+ /// @group calendar
28422
28673
  $kendo-calendar-cell-hover-text: $kendo-hover-text !default;
28674
+ /// The border color of the hovered cells in the Calendar.
28675
+ /// @group calendar
28423
28676
  $kendo-calendar-cell-hover-border: $kendo-hover-border !default;
28677
+ /// The gradient of the hovered cells in the Calendar.
28678
+ /// @group calendar
28424
28679
  $kendo-calendar-cell-hover-gradient: null !default;
28425
28680
 
28681
+ /// The background color of the selected cells in the Calendar.
28682
+ /// @group calendar
28426
28683
  $kendo-calendar-cell-selected-bg: $kendo-selected-bg !default;
28684
+ /// The text color of the selected cells in the Calendar.
28685
+ /// @group calendar
28427
28686
  $kendo-calendar-cell-selected-text: $kendo-selected-text !default;
28687
+ /// The border color of the selected cells in the Calendar.
28688
+ /// @group calendar
28428
28689
  $kendo-calendar-cell-selected-border: $kendo-selected-border !default;
28690
+ /// The gradient of the selected cells in the Calendar.
28691
+ /// @group calendar
28429
28692
  $kendo-calendar-cell-selected-gradient: null !default;
28430
28693
 
28694
+ /// The background color of the selected and hovered cells in the Calendar.
28695
+ /// @group calendar
28431
28696
  $kendo-calendar-cell-selected-hover-bg: $kendo-selected-hover-bg !default;
28697
+ /// The text color of the selected and hovered cells in the Calendar.
28698
+ /// @group calendar
28432
28699
  $kendo-calendar-cell-selected-hover-text: $kendo-selected-hover-text !default;
28700
+ /// The border color of the selected and hovered cells in the Calendar.
28701
+ /// @group calendar
28433
28702
  $kendo-calendar-cell-selected-hover-border: null !default;
28703
+ /// The gradient of the selected and hovered cells in the Calendar.
28704
+ /// @group calendar
28434
28705
  $kendo-calendar-cell-selected-hover-gradient: null !default;
28435
28706
 
28707
+ /// The shadow of the focused cells in the Calendar.
28708
+ /// @group calendar
28436
28709
  $kendo-calendar-cell-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08 ) !default;
28710
+ /// The shadow of the selected and focused cells in the Calendar.
28711
+ /// @group calendar
28437
28712
  $kendo-calendar-cell-selected-focus-shadow: $kendo-calendar-cell-focus-shadow !default;
28438
28713
 
28439
28714
 
28440
- // Calendar navigation
28715
+ /// The width of the Calendar navigation.
28716
+ /// @group calendar
28441
28717
  $kendo-calendar-navigation-width: 5em !default;
28718
+ /// The height of the items in the Calendar navigation.
28719
+ /// @group calendar
28442
28720
  $kendo-calendar-navigation-item-height: 2em !default;
28443
28721
 
28722
+ /// The background color of the Calendar navigation.
28723
+ /// @group calendar
28444
28724
  $kendo-calendar-navigation-bg: $kendo-calendar-header-bg !default;
28725
+ /// The text color of the Calendar navigation.
28726
+ /// @group calendar
28445
28727
  $kendo-calendar-navigation-text: $kendo-calendar-header-text !default;
28728
+ /// The border color of the Calendar navigation.
28729
+ /// @group calendar
28446
28730
  $kendo-calendar-navigation-border: $kendo-calendar-header-border !default;
28447
28731
 
28732
+ /// The text color of the hovered items in the Calendar navigation.
28733
+ /// @group calendar
28448
28734
  $kendo-calendar-navigation-hover-text: $kendo-link-hover-text !default;
28449
28735
 
28450
28736
 
28451
- // Infinite calendar
28737
+ /// The horizontal padding of the header in the Infinite Calendar.
28738
+ /// @group calendar
28452
28739
  $kendo-infinite-calendar-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
28740
+ /// The vertical padding of the header in the Infinite Calendar.
28741
+ /// @group calendar
28453
28742
  $kendo-infinite-calendar-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
28454
28743
 
28744
+ /// The horizontal padding of the Calendar view in the Infinite Calendar.
28745
+ /// @group calendar
28455
28746
  $kendo-infinite-calendar-view-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
28747
+ /// The vertical padding of the Calendar view in the Infinite Calendar.
28748
+ /// @group calendar
28456
28749
  $kendo-infinite-calendar-view-padding-y: 0px !default;
28750
+
28751
+ /// The height of the Calendar view in the Infinite Calendar.
28752
+ /// @group calendar
28457
28753
  $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default;
28458
28754
 
28459
28755
 
28460
28756
  // Multiview calendar
28461
28757
 
28462
28758
 
28463
- // Calendar sizes
28759
+ /// The font size of the small Calendar.
28760
+ /// @group calendar
28464
28761
  $kendo-calendar-sm-font-size: $kendo-font-size-md !default;
28762
+ /// The line height of the small Calendar.
28763
+ /// @group calendar
28465
28764
  $kendo-calendar-sm-line-height: $kendo-line-height-md !default;
28765
+ /// The size of the cells in the small Calendar.
28766
+ /// @group calendar
28466
28767
  $kendo-calendar-sm-cell-size: 28px !default;
28768
+ /// The horizontal padding of the cells in the small Calendar.
28769
+ /// @group calendar
28467
28770
  $kendo-calendar-sm-cell-padding-x: k-map-get( $kendo-spacing, 0.5 ) !default;
28771
+ /// The vertical padding of the cells in the small Calendar.
28772
+ /// @group calendar
28468
28773
  $kendo-calendar-sm-cell-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
28469
28774
 
28775
+ /// The font size of the medium Calendar.
28776
+ /// @group calendar
28470
28777
  $kendo-calendar-md-font-size: $kendo-font-size-md !default;
28778
+ /// The line height of the medium Calendar.
28779
+ /// @group calendar
28471
28780
  $kendo-calendar-md-line-height: $kendo-line-height-md !default;
28781
+ /// The size of the cells in the medium Calendar.
28782
+ /// @group calendar
28472
28783
  $kendo-calendar-md-cell-size: 32px !default;
28784
+ /// The horizontal padding of the cells in the medium Calendar.
28785
+ /// @group calendar
28473
28786
  $kendo-calendar-md-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
28787
+ /// The vertical padding of the cells in the medium Calendar.
28788
+ /// @group calendar
28474
28789
  $kendo-calendar-md-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
28475
28790
 
28791
+ /// The font size of the large Calendar.
28792
+ /// @group calendar
28476
28793
  $kendo-calendar-lg-font-size: $kendo-font-size-lg !default;
28794
+ /// The line height of the large Calendar.
28795
+ /// @group calendar
28477
28796
  $kendo-calendar-lg-line-height: $kendo-line-height-lg !default;
28797
+ /// The size of the cells in the large Calendar.
28798
+ /// @group calendar
28478
28799
  $kendo-calendar-lg-cell-size: 40px !default;
28800
+ /// The horizontal padding of the cells in the large Calendar.
28801
+ /// @group calendar
28479
28802
  $kendo-calendar-lg-cell-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
28803
+ /// The vertical padding of the cells in the large Calendar.
28804
+ /// @group calendar
28480
28805
  $kendo-calendar-lg-cell-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
28481
28806
 
28807
+ /// The sizes Map of the Calendar.
28808
+ /// @group calendar
28482
28809
  $kendo-calendar-sizes: (
28483
28810
  sm: (
28484
28811
  font-size: $kendo-calendar-sm-font-size,
@@ -28593,6 +28920,9 @@ $kendo-calendar-sizes: (
28593
28920
  block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
28594
28921
  border-color: transparent;
28595
28922
  }
28923
+ .k-calendar-td.k-alt {
28924
+ font-size: $kendo-calendar-week-number-font-size;
28925
+ }
28596
28926
 
28597
28927
 
28598
28928
  // Calendar cell inner
@@ -28640,11 +28970,6 @@ $kendo-calendar-sizes: (
28640
28970
  justify-content: space-between;
28641
28971
  flex: 0 0 auto;
28642
28972
 
28643
- .k-title,
28644
- .k-calendar-title {
28645
- font-weight: bold;
28646
- }
28647
-
28648
28973
  .k-calendar-nav {
28649
28974
  display: flex;
28650
28975
  flex-flow: row nowrap;
@@ -28678,6 +29003,10 @@ $kendo-calendar-sizes: (
28678
29003
  position: relative;
28679
29004
  z-index: 1;
28680
29005
  overflow: hidden;
29006
+
29007
+ .k-today {
29008
+ font-weight: bold;
29009
+ }
28681
29010
  }
28682
29011
 
28683
29012
 
@@ -29080,9 +29409,6 @@ $kendo-calendar-sizes: (
29080
29409
  $kendo-calendar-week-number-bg
29081
29410
  );
29082
29411
  }
29083
- .k-out-of-range {
29084
- pointer-events: none;
29085
- }
29086
29412
 
29087
29413
 
29088
29414
  // Interactive states
@@ -36604,59 +36930,129 @@ $_kendo-module-meta: (
36604
36930
  // Component
36605
36931
  // #region @import "./_variables.scss"; -> scss/drawer/_variables.scss
36606
36932
  // Drawer
36933
+
36934
+ /// The background color of the Drawer.
36935
+ /// @group drawer
36607
36936
  $kendo-drawer-bg: $kendo-component-bg !default;
36937
+ /// The text color of the Drawer.
36938
+ /// @group drawer
36608
36939
  $kendo-drawer-text: $kendo-component-text !default;
36940
+ /// The border color of the Drawer.
36941
+ /// @group drawer
36609
36942
  $kendo-drawer-border: $kendo-component-border !default;
36943
+ /// The border width of the Drawer.
36944
+ /// @group drawer
36610
36945
  $kendo-drawer-border-width: 1px !default;
36946
+ /// The font family of the Drawer.
36947
+ /// @group drawer
36611
36948
  $kendo-drawer-font-family: $kendo-font-family !default;
36949
+ /// The font size of the Drawer.
36950
+ /// @group drawer
36612
36951
  $kendo-drawer-font-size: $kendo-font-size-md !default;
36952
+ /// The line height of the Drawer.
36953
+ /// @group drawer
36613
36954
  $kendo-drawer-line-height: $kendo-line-height-md !default;
36955
+
36956
+ /// The horizontal padding of the Drawer content.
36957
+ /// @group drawer
36614
36958
  $kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
36959
+ /// The vertical padding of the Drawer content.
36960
+ /// @group drawer
36615
36961
  $kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
36616
36962
 
36963
+ /// The width of the Drawer scrollbar.
36964
+ /// @group drawer
36617
36965
  $kendo-drawer-scrollbar-width: 7px !default;
36966
+ /// The color of the Drawer scrollbar track.
36967
+ /// @group drawer
36618
36968
  $kendo-drawer-scrollbar-color: rgba(156, 156, 156, .7) !default;
36969
+ /// The background color of the Drawer scrollbar thumb.
36970
+ /// @group drawer
36619
36971
  $kendo-drawer-scrollbar-bg: #dedede !default;
36972
+ /// The border radius of the Drawer scrollbar.
36973
+ /// @group drawer
36620
36974
  $kendo-drawer-scrollbar-radius: 20px !default;
36975
+ /// The hover color of the Drawer scrollbar track.
36976
+ /// @group drawer
36621
36977
  $kendo-drawer-scrollbar-hover-color: rgba(156, 156, 156, 1) !default;
36622
36978
 
36979
+ /// The horizontal padding of the Drawer item.
36980
+ /// @group drawer
36623
36981
  $kendo-drawer-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
36982
+ /// The vertical padding of the Drawer item.
36983
+ /// @group drawer
36624
36984
  $kendo-drawer-item-padding-y: $kendo-padding-md-x !default;
36985
+ /// The font size of the Drawer item.
36986
+ /// @group drawer
36625
36987
  $kendo-drawer-item-font-size: 16px !default;
36988
+ /// The line height of the Drawer item.
36989
+ /// @group drawer
36626
36990
  $kendo-drawer-item-line-height: $kendo-line-height-lg !default;
36627
36991
 
36992
+ /// The horizontal padding of the Drawer item in each level.
36993
+ /// @group drawer
36628
36994
  $kendo-drawer-item-level-padding-x: $kendo-drawer-item-padding-x !default;
36995
+ /// The count of the Drawer item levels.
36996
+ /// @group drawer
36629
36997
  $kendo-drawer-item-level-count: 5 !default;
36630
36998
 
36999
+ /// The horizontal padding of the Drawer icon.
37000
+ /// @group drawer
36631
37001
  $kendo-drawer-icon-padding-x: 0 !default;
37002
+ /// The vertical padding of the Drawer icon.
37003
+ /// @group drawer
36632
37004
  $kendo-drawer-icon-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
36633
37005
 
37006
+ /// The initial width of the mini Drawer.
37007
+ /// @group drawer
36634
37008
  $kendo-drawer-mini-initial-width: calc(2 * #{$kendo-drawer-item-padding-x} + #{$kendo-icon-size}) !default;
36635
37009
 
37010
+ /// The background color of the hovered Drawer item.
37011
+ /// @group drawer
36636
37012
  $kendo-drawer-hover-bg: $kendo-hover-bg !default;
37013
+ /// The text color of the hovered Drawer item.
37014
+ /// @group drawer
36637
37015
  $kendo-drawer-hover-text: $kendo-hover-text !default;
36638
37016
 
37017
+ /// The background color of the focused Drawer item.
37018
+ /// @group drawer
36639
37019
  $kendo-drawer-focus-bg: $kendo-drawer-bg !default;
37020
+ /// The box shadow of the focused Drawer item.
37021
+ /// @group drawer
36640
37022
  $kendo-drawer-focus-shadow: $kendo-list-item-focus-shadow !default;
36641
37023
 
37024
+ /// The background color of the selected Drawer item.
37025
+ /// @group drawer
36642
37026
  $kendo-drawer-selected-bg: $kendo-selected-bg !default;
37027
+ /// The text color of the selected Drawer item.
37028
+ /// @group drawer
36643
37029
  $kendo-drawer-selected-text: $kendo-selected-text !default;
37030
+
37031
+ /// The background color of the selected and hovered Drawer item.
37032
+ /// @group drawer
36644
37033
  $kendo-drawer-selected-hover-bg: $kendo-selected-hover-bg !default;
37034
+ /// The text color of the selected and hovered Drawer item.
37035
+ /// @group drawer
36645
37036
  $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36646
37037
 
36647
37038
  // #endregion
36648
37039
  // #region @import "./_layout.scss"; -> scss/drawer/_layout.scss
36649
37040
  @mixin kendo-drawer--layout-base() {
36650
37041
 
37042
+ // Container
36651
37043
  .k-drawer-container {
36652
37044
  display: flex;
36653
37045
  flex-flow: row nowrap;
36654
37046
  align-items: flex-start;
36655
37047
  }
37048
+
36656
37049
  kendo-drawer.k-drawer,
36657
37050
  kendo-drawer .k-drawer-wrapper {
36658
37051
  transition: none;
36659
37052
  }
37053
+
37054
+
37055
+ // Drawer
36660
37056
  .k-drawer {
36661
37057
  height: 100%;
36662
37058
  max-width: 100%;
@@ -36681,41 +37077,38 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36681
37077
  box-sizing: border-box;
36682
37078
  }
36683
37079
 
36684
- // Borders
36685
37080
  .k-drawer-mini &.k-drawer-start,
36686
- .k-drawer-expanded &.k-drawer-start,
36687
- .k-drawer-left.k-drawer-mini &,
36688
- .k-drawer-left.k-drawer-expanded & {
36689
- border-right-width: $kendo-drawer-border-width;
37081
+ .k-drawer-expanded &.k-drawer-start {
37082
+ border-inline-end-width: $kendo-drawer-border-width;
36690
37083
  }
37084
+
36691
37085
  .k-drawer-mini &.k-drawer-end,
36692
- .k-drawer-expanded &.k-drawer-end,
36693
- .k-drawer-right.k-drawer-mini &,
36694
- .k-drawer-right.k-drawer-expanded & {
36695
- border-left-width: $kendo-drawer-border-width;
37086
+ .k-drawer-expanded &.k-drawer-end {
37087
+ border-inline-start-width: $kendo-drawer-border-width;
36696
37088
  }
36697
37089
 
37090
+
36698
37091
  // Position
36699
- &.k-drawer-start,
36700
- .k-drawer-left & {
37092
+ &.k-drawer-start {
36701
37093
  top: 0;
36702
- left: 0;
37094
+ inset-inline-start: 0;
36703
37095
  }
36704
- &.k-drawer-end,
36705
- .k-drawer-right & {
37096
+ &.k-drawer-end {
36706
37097
  top: 0;
36707
- right: 0;
37098
+ inset-inline-end: 0;
36708
37099
  }
36709
37100
  }
37101
+
37102
+
37103
+ // Content
36710
37104
  .k-drawer-content {
36711
37105
  flex: 1 1 auto;
36712
37106
  overflow: auto;
36713
37107
  }
36714
37108
 
36715
37109
 
36716
- // Overlay drawer
37110
+ // Overlay
36717
37111
  .k-drawer-overlay {
36718
-
36719
37112
  .k-drawer {
36720
37113
  max-width: 80vw; // limit width
36721
37114
  position: fixed;
@@ -36729,7 +37122,6 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36729
37122
  &.k-drawer-expanded > .k-overlay {
36730
37123
  display: block;
36731
37124
  }
36732
-
36733
37125
  }
36734
37126
 
36735
37127
 
@@ -36744,13 +37136,9 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36744
37136
  align-self: stretch;
36745
37137
  }
36746
37138
 
36747
-
36748
- // right drawer
36749
- .k-drawer.k-drawer-end,
36750
- &.k-drawer-right .k-drawer {
36751
- order: 1;
37139
+ &:has(.k-drawer.k-drawer-end) {
37140
+ flex-direction: row-reverse;
36752
37141
  }
36753
-
36754
37142
  }
36755
37143
 
36756
37144
 
@@ -36769,8 +37157,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36769
37157
  border-radius: $kendo-drawer-scrollbar-radius;
36770
37158
  }
36771
37159
  }
36772
- .k-drawer-items,
36773
- .k-drawer-items ul {
37160
+ .k-drawer-items {
36774
37161
  margin: 0;
36775
37162
  padding: 0;
36776
37163
  list-style: none;
@@ -36833,61 +37220,18 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36833
37220
  }
36834
37221
  }
36835
37222
  }
37223
+
37224
+
37225
+ // Separator
36836
37226
  .k-drawer-separator {
36837
37227
  padding: 0;
36838
37228
  height: 1px;
36839
37229
  }
36840
37230
 
36841
37231
 
36842
-
36843
37232
  // Mini mode
36844
- .k-drawer-mini {
36845
-
36846
- .k-drawer-wrapper {
36847
- width: $kendo-drawer-mini-initial-width;
36848
- }
36849
-
36850
- }
36851
-
36852
-
36853
- .k-rtl,
36854
- [dir="rtl"] {
36855
-
36856
- // Borders
36857
- &.k-drawer-mini .k-drawer-start,
36858
- .k-drawer-mini .k-drawer-start,
36859
- .k-drawer-expanded .k-drawer-start,
36860
- &.k-drawer-expanded .k-drawer-start {
36861
- border-left-width: $kendo-drawer-border-width;
36862
- border-right-width: 0;
36863
- }
36864
- &.k-drawer-mini .k-drawer-end,
36865
- .k-drawer-mini .k-drawer-end,
36866
- &.k-drawer-expanded .k-drawer-end
36867
- .k-drawer-expanded .k-drawer-end {
36868
- border-left-width: 0;
36869
- border-right-width: $kendo-drawer-border-width;
36870
- }
36871
-
36872
- // Position
36873
- &.k-drawer-overlay .k-drawer-start,
36874
- .k-drawer-overlay .k-drawer-start {
36875
- left: auto;
36876
- right: 0;
36877
- }
36878
- &.k-drawer-overlay .k-drawer-end,
36879
- .k-drawer-overlay .k-drawer-end {
36880
- left: 0;
36881
- right: auto;
36882
- }
36883
-
36884
- // Order
36885
- .k-drawer-left.k-drawer-push .k-drawer {
36886
- order: 1;
36887
- }
36888
- .k-drawer-right.k-drawer-push .k-drawer {
36889
- order: 0;
36890
- }
37233
+ .k-drawer-mini .k-drawer-wrapper {
37234
+ width: $kendo-drawer-mini-initial-width;
36891
37235
  }
36892
37236
  }
36893
37237
 
@@ -41656,108 +42000,274 @@ $_kendo-module-meta: (
41656
42000
  // #region @import "./_variables.scss"; -> scss/panelbar/_variables.scss
41657
42001
  // Panelbar
41658
42002
 
42003
+ /// The horizontal padding of the PanelBar.
42004
+ /// @group panelbar
41659
42005
  $kendo-panelbar-padding-x: 0px !default;
42006
+ /// The vertical padding of the PanelBar.
42007
+ /// @group panelbar
41660
42008
  $kendo-panelbar-padding-y: 0px !default;
42009
+ /// The font family of the PanelBar.
42010
+ /// @group panelbar
41661
42011
  $kendo-panelbar-font-family: $kendo-font-family !default;
42012
+ /// The font size of the PanelBar.
42013
+ /// @group panelbar
41662
42014
  $kendo-panelbar-font-size: $kendo-font-size-md !default;
42015
+ /// The line height of the PanelBar.
42016
+ /// @group panelbar
41663
42017
  $kendo-panelbar-line-height: $kendo-line-height-md !default;
42018
+ /// The width of the border around the PanelBar.
42019
+ /// @group panelbar
41664
42020
  $kendo-panelbar-border-width: 1px !default;
42021
+ /// The border style around the the PanelBar.
42022
+ /// @group panelbar
41665
42023
  $kendo-panelbar-border-style: solid !default;
42024
+ /// The width of the border around the PanelBar items.
42025
+ /// @group panelbar
41666
42026
  $kendo-panelbar-item-border-width: 1px !default;
42027
+ /// The style of the border around the PanelBar items.
42028
+ /// @group panelbar
41667
42029
  $kendo-panelbar-item-border-style: solid !default;
41668
42030
 
42031
+ /// The horizontal padding of the PanelBar header.
42032
+ /// @group panelbar
41669
42033
  $kendo-panelbar-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
42034
+ /// The vertical padding of the PanelBar header.
42035
+ /// @group panelbar
41670
42036
  $kendo-panelbar-header-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
41671
42037
 
42038
+ /// The horizontal padding of the PanelBar items.
42039
+ /// @group panelbar
41672
42040
  $kendo-panelbar-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
42041
+ /// The vertical padding of the PanelBar items.
42042
+ /// @group panelbar
41673
42043
  $kendo-panelbar-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
41674
42044
 
42045
+ /// The maximum nesting of the PanelBar items.
42046
+ /// @group panelbar
41675
42047
  $kendo-panelbar-item-level-count: 4 !default;
41676
42048
 
42049
+ /// The background color of the PanelBar.
42050
+ /// @group panelbar
41677
42051
  $kendo-panelbar-bg: $kendo-component-bg !default;
42052
+ /// The text color of the PanelBar.
42053
+ /// @group panelbar
41678
42054
  $kendo-panelbar-text: $kendo-component-text !default;
42055
+ /// The border color of the PanelBar.
42056
+ /// @group panelbar
41679
42057
  $kendo-panelbar-border: $kendo-component-border !default;
41680
42058
 
42059
+ /// The background color of the PanelBar header.
42060
+ /// @group panelbar
41681
42061
  $kendo-panelbar-header-bg: $kendo-panelbar-bg !default;
42062
+ /// The text color of the PanelBar header.
42063
+ /// @group panelbar
41682
42064
  $kendo-panelbar-header-text: $kendo-link-text !default;
42065
+ /// The border color of the PanelBar header.
42066
+ /// @group panelbar
41683
42067
  $kendo-panelbar-header-border: null !default;
42068
+ /// The gradient of the PanelBar header.
42069
+ /// @group panelbar
41684
42070
  $kendo-panelbar-header-gradient: null !default;
41685
42071
 
42072
+ /// The background color of the hovered PanelBar header.
42073
+ /// @group panelbar
41686
42074
  $kendo-panelbar-header-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-header-bg, .5 )) !default;
42075
+ /// The text color of the hovered PanelBar header.
42076
+ /// @group panelbar
41687
42077
  $kendo-panelbar-header-hover-text: null !default;
42078
+ /// The border color of the hovered PanelBar header.
42079
+ /// @group panelbar
41688
42080
  $kendo-panelbar-header-hover-border: null !default;
42081
+ /// The gradient of the hovered PanelBar header.
42082
+ /// @group panelbar
41689
42083
  $kendo-panelbar-header-hover-gradient: null !default;
41690
42084
 
42085
+ /// The background color of the focused PanelBar header.
42086
+ /// @group panelbar
41691
42087
  $kendo-panelbar-header-focus-bg: null !default;
42088
+ /// The text color of the focused PanelBar header.
42089
+ /// @group panelbar
41692
42090
  $kendo-panelbar-header-focus-text: null !default;
42091
+ /// The border color of the focused PanelBar header.
42092
+ /// @group panelbar
41693
42093
  $kendo-panelbar-header-focus-border: null !default;
42094
+ /// The gradient of the focused PanelBar header.
42095
+ /// @group panelbar
41694
42096
  $kendo-panelbar-header-focus-gradient: null !default;
42097
+ /// The shadow of the focused PanelBar header.
42098
+ /// @group panelbar
41695
42099
  $kendo-panelbar-header-focus-shadow: $kendo-list-item-focus-shadow !default;
41696
42100
 
42101
+ /// The background color of the focused and hovered PanelBar header.
42102
+ /// @group panelbar
41697
42103
  $kendo-panelbar-header-hover-focus-bg: null !default;
42104
+ /// The text color of the focused and hovered PanelBar header.
42105
+ /// @group panelbar
41698
42106
  $kendo-panelbar-header-hover-focus-text: null !default;
42107
+ /// The border color of the focused and hovered PanelBar header.
42108
+ /// @group panelbar
41699
42109
  $kendo-panelbar-header-hover-focus-border: null !default;
42110
+ /// The gradient of the focused and hovered PanelBar header.
42111
+ /// @group panelbar
41700
42112
  $kendo-panelbar-header-hover-focus-gradient: null !default;
41701
42113
 
42114
+ /// The background color of the selected PanelBar header.
42115
+ /// @group panelbar
41702
42116
  $kendo-panelbar-header-selected-bg: $kendo-selected-bg !default;
42117
+ /// The text color of the selected PanelBar header.
42118
+ /// @group panelbar
41703
42119
  $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
42120
+ /// The border color of the selected PanelBar header.
42121
+ /// @group panelbar
41704
42122
  $kendo-panelbar-header-selected-border: null !default;
42123
+ /// The gradient of the selected PanelBar header.
42124
+ /// @group panelbar
41705
42125
  $kendo-panelbar-header-selected-gradient: null !default;
41706
42126
 
42127
+ /// The background color of the selected and hovered PanelBar header.
42128
+ /// @group panelbar
41707
42129
  $kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
42130
+ /// The text color of the selected and hovered PanelBar header.
42131
+ /// @group panelbar
41708
42132
  $kendo-panelbar-header-selected-hover-text: null !default;
42133
+ /// The border color of the selected and hovered PanelBar header.
42134
+ /// @group panelbar
41709
42135
  $kendo-panelbar-header-selected-hover-border: null !default;
42136
+ /// The gradient of the selected and hovered PanelBar header.
42137
+ /// @group panelbar
41710
42138
  $kendo-panelbar-header-selected-hover-gradient: null !default;
41711
42139
 
42140
+ /// The background color of the selected and focused PanelBar header.
42141
+ /// @group panelbar
41712
42142
  $kendo-panelbar-header-selected-focus-bg: null !default;
42143
+ /// The text color of the selected and focused PanelBar header.
42144
+ /// @group panelbar
41713
42145
  $kendo-panelbar-header-selected-focus-text: null !default;
42146
+ /// The border color of the selected and focused PanelBar header.
42147
+ /// @group panelbar
41714
42148
  $kendo-panelbar-header-selected-focus-border: null !default;
42149
+ /// The gradient of the selected and focused PanelBar header.
42150
+ /// @group panelbar
41715
42151
  $kendo-panelbar-header-selected-focus-gradient: null !default;
41716
42152
 
42153
+ /// The background color of the selected, hovered and focused PanelBar header.
42154
+ /// @group panelbar
41717
42155
  $kendo-panelbar-header-selected-hover-focus-bg: null !default;
42156
+ /// The text color of the selected, hovered and focused PanelBar header.
42157
+ /// @group panelbar
41718
42158
  $kendo-panelbar-header-selected-hover-focus-text: null !default;
42159
+ /// The border color of the selected, hovered and focused PanelBar header.
42160
+ /// @group panelbar
41719
42161
  $kendo-panelbar-header-selected-hover-focus-border: null !default;
42162
+ /// The gradient of the selected, hovered and focused PanelBar header.
42163
+ /// @group panelbar
41720
42164
  $kendo-panelbar-header-selected-hover-focus-gradient: null !default;
41721
42165
 
42166
+ /// The background color of the hovered PanelBar items.
42167
+ /// @group panelbar
41722
42168
  $kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-bg, .5 )) !default;
42169
+ /// The text color of the hovered PanelBar items.
42170
+ /// @group panelbar
41723
42171
  $kendo-panelbar-item-hover-text: null !default;
42172
+ /// The border color of the hovered PanelBar items.
42173
+ /// @group panelbar
41724
42174
  $kendo-panelbar-item-hover-border: null !default;
42175
+ /// The gradient of the hovered PanelBar items.
42176
+ /// @group panelbar
41725
42177
  $kendo-panelbar-item-hover-gradient: null !default;
41726
42178
 
42179
+ /// The background color of the focused PanelBar items.
42180
+ /// @group panelbar
41727
42181
  $kendo-panelbar-item-focus-bg: null !default;
42182
+ /// The text color of the focused PanelBar items.
42183
+ /// @group panelbar
41728
42184
  $kendo-panelbar-item-focus-text: null !default;
42185
+ /// The border color of the focused PanelBar items.
42186
+ /// @group panelbar
41729
42187
  $kendo-panelbar-item-focus-border: null !default;
42188
+ /// The gradient of the focused PanelBar items.
42189
+ /// @group panelbar
41730
42190
  $kendo-panelbar-item-focus-gradient: null !default;
42191
+ /// The box shadow of the focused PanelBar items.
42192
+ /// @group panelbar
41731
42193
  $kendo-panelbar-item-focus-shadow: $kendo-list-item-focus-shadow !default;
41732
42194
 
42195
+ /// The background color of the focused and hovered PanelBar items.
42196
+ /// @group panelbar
41733
42197
  $kendo-panelbar-item-hover-focus-bg: null !default;
42198
+ /// The text color of the focused and hovered PanelBar items.
42199
+ /// @group panelbar
41734
42200
  $kendo-panelbar-item-hover-focus-text: null !default;
42201
+ /// The border color of the focused and hovered PanelBar items.
42202
+ /// @group panelbar
41735
42203
  $kendo-panelbar-item-hover-focus-border: null !default;
42204
+ /// The gradient of the focused and hovered PanelBar items.
42205
+ /// @group panelbar
41736
42206
  $kendo-panelbar-item-hover-focus-gradient: null !default;
41737
42207
 
42208
+ /// The background color of the selected PanelBar items.
42209
+ /// @group panelbar
41738
42210
  $kendo-panelbar-item-selected-bg: $kendo-selected-bg !default;
42211
+ /// The text color of the selected PanelBar items.
42212
+ /// @group panelbar
41739
42213
  $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
42214
+ /// The border color of the selected PanelBar items.
42215
+ /// @group panelbar
41740
42216
  $kendo-panelbar-item-selected-border: null !default;
42217
+ /// The gradient of the selected PanelBar items.
42218
+ /// @group panelbar
41741
42219
  $kendo-panelbar-item-selected-gradient: null !default;
41742
42220
 
42221
+ /// The background color of the selected and hovered PanelBar items.
42222
+ /// @group panelbar
41743
42223
  $kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
42224
+ /// The text color of the selected and hovered PanelBar items.
42225
+ /// @group panelbar
41744
42226
  $kendo-panelbar-item-selected-hover-text: null !default;
42227
+ /// The border color of the selected and hovered PanelBar items.
42228
+ /// @group panelbar
41745
42229
  $kendo-panelbar-item-selected-hover-border: null !default;
42230
+ /// The gradient of the selected and hovered PanelBar items.
42231
+ /// @group panelbar
41746
42232
  $kendo-panelbar-item-selected-hover-gradient: null !default;
41747
42233
 
42234
+ /// The background color of the selected and focused PanelBar items.
42235
+ /// @group panelbar
41748
42236
  $kendo-panelbar-item-selected-focus-bg: null !default;
42237
+ /// The text color of the selected and focused PanelBar items.
42238
+ /// @group panelbar
41749
42239
  $kendo-panelbar-item-selected-focus-text: null !default;
42240
+ /// The border color of the selected and focused PanelBar items.
42241
+ /// @group panelbar
41750
42242
  $kendo-panelbar-item-selected-focus-border: null !default;
42243
+ /// The gradient of the selected and focused PanelBar items.
42244
+ /// @group panelbar
41751
42245
  $kendo-panelbar-item-selected-focus-gradient: null !default;
41752
42246
 
42247
+ /// The background color of the selected, hovered and focused PanelBar items.
42248
+ /// @group panelbar
41753
42249
  $kendo-panelbar-item-selected-hover-focus-bg: null !default;
42250
+ /// The text color of the selected, hovered and focused PanelBar items.
42251
+ /// @group panelbar
41754
42252
  $kendo-panelbar-item-selected-hover-focus-text: null !default;
42253
+ /// The border color of the selected, hovered and focused PanelBar items.
42254
+ /// @group panelbar
41755
42255
  $kendo-panelbar-item-selected-hover-focus-border: null !default;
42256
+ /// The gradient of the selected, hovered and focused PanelBar items.
42257
+ /// @group panelbar
41756
42258
  $kendo-panelbar-item-selected-hover-focus-gradient: null !default;
41757
42259
 
42260
+ /// The background color of the expanded PanelBar header.
42261
+ /// @group panelbar
41758
42262
  $kendo-panelbar-header-expanded-bg: null !default;
42263
+ /// The text color of the expanded PanelBar header.
42264
+ /// @group panelbar
41759
42265
  $kendo-panelbar-header-expanded-text: null !default;
42266
+ /// The border color of the expanded PanelBar header.
42267
+ /// @group panelbar
41760
42268
  $kendo-panelbar-header-expanded-border: null !default;
42269
+ /// The gradient of the expanded PanelBar header.
42270
+ /// @group panelbar
41761
42271
  $kendo-panelbar-header-expanded-gradient: null !default;
41762
42272
 
41763
42273
  // #endregion
@@ -41789,7 +42299,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41789
42299
 
41790
42300
 
41791
42301
  // Root
41792
- > .k-item,
41793
42302
  > .k-panelbar-header {
41794
42303
  // TODO
41795
42304
  border-width: 0;
@@ -41815,14 +42324,12 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41815
42324
  transition: $kendo-transition;
41816
42325
  }
41817
42326
  }
41818
- > .k-item + .k-item,
41819
42327
  > .k-panelbar-header + .k-panelbar-header {
41820
42328
  border-top-width: $kendo-panelbar-item-border-width;
41821
42329
  }
41822
42330
 
41823
42331
 
41824
42332
  // Sub
41825
- .k-group,
41826
42333
  .k-panelbar-group {
41827
42334
  margin: 0;
41828
42335
  padding: 0;
@@ -41832,7 +42339,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41832
42339
  background-color: transparent;
41833
42340
  list-style: none;
41834
42341
  }
41835
- .k-group > .k-item,
41836
42342
  .k-panelbar-group > .k-panelbar-item {
41837
42343
  display: block;
41838
42344
 
@@ -41879,8 +42385,8 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41879
42385
  .k-panelbar-toggle {
41880
42386
  margin-inline-start: auto;
41881
42387
  }
41882
- .k-group .k-panelbar-expand,
41883
- .k-group .k-panelbar-collapse,
42388
+ .k-panelbar-group .k-panelbar-expand,
42389
+ .k-panelbar-group .k-panelbar-collapse,
41884
42390
  .k-panelbar-group .k-panelbar-toggle {
41885
42391
  margin-inline-end: calc( #{$kendo-panelbar-header-padding-x} - #{$kendo-panelbar-item-padding-x} );
41886
42392
  }
@@ -41889,7 +42395,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41889
42395
  .k-rtl &,
41890
42396
  &.k-rtl,
41891
42397
  &[dir = "rtl"] {
41892
- .k-group > .k-item,
41893
42398
  .k-panelbar-group > .k-panelbar-item {
41894
42399
  // Hierarchy items
41895
42400
  @for $i from 1 through $kendo-panelbar-item-level-count {
@@ -41926,7 +42431,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
41926
42431
 
41927
42432
 
41928
42433
  // Root
41929
- > .k-item,
41930
42434
  > .k-panelbar-header {
41931
42435
 
41932
42436
  &.k-expanded.k-level-0 > .k-link {
@@ -42038,12 +42542,9 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42038
42542
 
42039
42543
 
42040
42544
  // Sub
42041
- .k-group,
42042
42545
  .k-panelbar-group {
42043
42546
 
42044
42547
  // Hover
42045
- > .k-item > .k-link:hover,
42046
- > .k-item > .k-link.k-hover,
42047
42548
  > .k-panelbar-item > .k-link:hover,
42048
42549
  > .k-panelbar-item > .k-link.k-hover {
42049
42550
  @include fill(
@@ -42055,8 +42556,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42055
42556
  }
42056
42557
 
42057
42558
  // Focus
42058
- > .k-item > .k-link:focus,
42059
- > .k-item > .k-link.k-focus,
42060
42559
  > .k-panelbar-item > .k-link:focus,
42061
42560
  > .k-panelbar-item > .k-link.k-focus {
42062
42561
  @include fill(
@@ -42069,8 +42568,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42069
42568
  }
42070
42569
 
42071
42570
  // Focus & Hover
42072
- > .k-item > .k-link:focus:hover,
42073
- > .k-item > .k-link.k-focus.k-hover,
42074
42571
  > .k-panelbar-item > .k-link:focus:hover,
42075
42572
  > .k-panelbar-item > .k-link.k-focus.k-hover {
42076
42573
  @include fill(
@@ -42082,7 +42579,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42082
42579
  }
42083
42580
 
42084
42581
  // Selected
42085
- > .k-item > .k-link.k-selected,
42086
42582
  > .k-panelbar-item > .k-link.k-selected {
42087
42583
  @include fill(
42088
42584
  $kendo-panelbar-item-selected-text,
@@ -42093,8 +42589,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42093
42589
  }
42094
42590
 
42095
42591
  // Selected Hover
42096
- > .k-item > .k-link.k-selected:hover,
42097
- > .k-item > .k-link.k-selected.k-hover,
42098
42592
  > .k-panelbar-item > .k-link.k-selected:hover,
42099
42593
  > .k-panelbar-item > .k-link.k-selected.k-hover {
42100
42594
  @include fill(
@@ -42106,8 +42600,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42106
42600
  }
42107
42601
 
42108
42602
  // Selected Focus
42109
- > .k-item > .k-link.k-selected:focus,
42110
- > .k-item > .k-link.k-selected.k-focus,
42111
42603
  > .k-panelbar-item > .k-link.k-selected:focus,
42112
42604
  > .k-panelbar-item > .k-link.k-selected.k-focus {
42113
42605
  @include fill(
@@ -42119,8 +42611,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
42119
42611
  }
42120
42612
 
42121
42613
  // Selected Focus & Hover
42122
- > .k-item > .k-link.k-selected:focus:hover,
42123
- > .k-item > .k-link.k-selected.k-focus.k-hover,
42124
42614
  > .k-panelbar-item > .k-link.k-selected:focus:hover,
42125
42615
  > .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
42126
42616
  @include fill(