@progress/kendo-theme-default 4.41.3-dev.1 → 4.41.3-dev.2

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
@@ -598,6 +598,25 @@ $data-uris: () !default;
598
598
  }
599
599
  }
600
600
 
601
+ // #endregion
602
+ // #region @import "_disabled.scss"; -> packages/default/scss/core/mixins/_disabled.scss
603
+ // Disabled
604
+ @mixin disabled( $disabled-styling ) {
605
+ outline: none;
606
+ cursor: default;
607
+ opacity: map-get($disabled-styling, opacity);
608
+ filter: map-get($disabled-styling, filter);
609
+ pointer-events: none;
610
+ box-shadow: none;
611
+ }
612
+
613
+ @mixin disabled-legacy-ie( $disabled-styling ) {
614
+ outline: none;
615
+ cursor: default;
616
+ opacity: map-get($disabled-styling, opacity);
617
+ box-shadow: none;
618
+ }
619
+
601
620
  // #endregion
602
621
  // #region @import "_decoration.scss"; -> packages/default/scss/core/mixins/_decoration.scss
603
622
  // Fill and outline
@@ -628,25 +647,6 @@ $data-uris: () !default;
628
647
  }
629
648
  }
630
649
 
631
- // #endregion
632
- // #region @import "_disabled.scss"; -> packages/default/scss/core/mixins/_disabled.scss
633
- // Disabled
634
- @mixin disabled( $disabled-styling ) {
635
- outline: none;
636
- cursor: default;
637
- opacity: map-get($disabled-styling, opacity);
638
- filter: map-get($disabled-styling, filter);
639
- pointer-events: none;
640
- box-shadow: none;
641
- }
642
-
643
- @mixin disabled-legacy-ie( $disabled-styling ) {
644
- outline: none;
645
- cursor: default;
646
- opacity: map-get($disabled-styling, opacity);
647
- box-shadow: none;
648
- }
649
-
650
650
  // #endregion
651
651
  // #region @import "_gradients.scss"; -> packages/default/scss/core/mixins/_gradients.scss
652
652
  @mixin linear-gradient( $gradient: null ) {
@@ -2938,21 +2938,18 @@ $display4-letter-spacing: null !default;
2938
2938
 
2939
2939
 
2940
2940
  // Dependencies
2941
- // #region @import "../common/_decoration.scss"; -> packages/default/scss/common/_decoration.scss
2941
+ // #region @import "../utils/_theme-colors.scss"; -> packages/default/scss/utils/_theme-colors.scss
2942
2942
  @include exports( "common/decoration/color" ) {
2943
2943
 
2944
2944
  // sass-lint:disable-block no-important
2945
2945
  // stylelint-disable block-opening-brace-space-before
2946
2946
 
2947
- .k-text-primary { color: $primary !important; }
2948
- .k-text-info { color: $info !important; }
2949
- .k-text-success { color: $success !important; }
2950
- .k-text-warning { color: $warning !important; }
2951
- .k-text-error { color: $error !important; }
2952
-
2953
- .k-text-base { color: $base-text; }
2947
+ .k-text-base,
2948
+ .k-color-base {
2949
+ color: $base-text;
2950
+ }
2954
2951
 
2955
- .k-color-inherit { color: inherit; }
2952
+ .k-color-inherit { color: inherit; }
2956
2953
 
2957
2954
  @each $name, $color in $theme-colors {
2958
2955
  .k-text-#{$name},
@@ -2968,11 +2965,11 @@ $display4-letter-spacing: null !default;
2968
2965
 
2969
2966
  // sass-lint:disable-block no-important
2970
2967
 
2971
- .k-bg-primary { background-color: $primary !important; }
2972
- .k-bg-info { background-color: $info !important; }
2973
- .k-bg-success { background-color: $success !important; }
2974
- .k-bg-warning { background-color: $warning !important; }
2975
- .k-bg-error { background-color: $error !important; }
2968
+ @each $name, $bg-color in $theme-colors {
2969
+ .k-bg-#{$name} {
2970
+ background-color: $bg-color !important;
2971
+ }
2972
+ }
2976
2973
 
2977
2974
  }
2978
2975
 
@@ -2985,12 +2982,11 @@ $display4-letter-spacing: null !default;
2985
2982
 
2986
2983
  @include exports( "common/decoration/variant" ) {
2987
2984
 
2988
- .k-state-primary { @include variant( $primary ); }
2989
- .k-state-info { @include variant( $info ); }
2990
- .k-state-success { @include variant( $success ); }
2991
- .k-state-warning { @include variant( $warning ); }
2992
- .k-state-error { @include variant( $error ); }
2993
-
2985
+ @each $name, $variant in $theme-colors {
2986
+ .k-state-#{$name} {
2987
+ @include variant( $variant );
2988
+ }
2989
+ }
2994
2990
  }
2995
2991
 
2996
2992
 
@@ -3077,12 +3073,21 @@ $display4-letter-spacing: null !default;
3077
3073
  top: ( border-top-left-radius, border-top-right-radius ),
3078
3074
  right: ( border-top-right-radius, border-bottom-right-radius ),
3079
3075
  bottom: ( border-bottom-left-radius, border-bottom-right-radius ),
3080
- left: ( border-bottom-left-radius, border-top-left-radius )
3076
+ left: ( border-bottom-left-radius, border-top-left-radius ),
3077
+ top-left: border-top-left-radius,
3078
+ top-right: border-top-right-radius,
3079
+ bottom-left: border-bottom-left-radius,
3080
+ bottom-right: border-bottom-right-radius
3081
3081
  ) !default;
3082
3082
 
3083
3083
  $utils-border-radius: (
3084
3084
  default: map-get( $spacing, 1 ),
3085
- 0: 0
3085
+ 0: 0,
3086
+ sm: map-get( $spacing, 1 ) / 2,
3087
+ md: map-get( $spacing, 1 ),
3088
+ lg: map-get( $spacing, 2 ),
3089
+ circle: 50%,
3090
+ pill: 9999px
3086
3091
  ) !default;
3087
3092
 
3088
3093
 
@@ -4067,6 +4072,9 @@ $display4-letter-spacing: null !default;
4067
4072
 
4068
4073
  }
4069
4074
 
4075
+ // #endregion
4076
+ // #region @import "_theme-colors.scss"; -> packages/default/scss/utils/_theme-colors.scss
4077
+ // File already imported_once. Skipping output.
4070
4078
  // #endregion
4071
4079
  // #region @import "_touch-action.scss"; -> packages/default/scss/utils/_touch-action.scss
4072
4080
  @include exports( "utils/touch-action" ) {
@@ -6678,81 +6686,170 @@ $chip-remove-icon-font-size: 14px !default;
6678
6686
 
6679
6687
  $chip-avatar-size: 16px !default;
6680
6688
 
6681
- $chip-filled-bg: #ebebeb !default;
6682
- $chip-filled-text: $body-text !default;
6683
- $chip-filled-border: rgba( black, .08 ) !default;
6689
+ $chip-base-bg: get-base-hue( gray, 800 ) !default;
6690
+
6691
+ $chip-solid-bg: rgba( $chip-base-bg, .08 ) !default;
6692
+ $chip-solid-text: $chip-base-bg !default;
6693
+ $chip-solid-border: rgba( $chip-base-bg, .3 ) !default;
6694
+
6695
+ $chip-solid-hover-bg: rgba( $chip-base-bg, .16 ) !default;
6696
+ $chip-solid-hover-text: null !default;
6697
+ $chip-solid-hover-border: null !default;
6698
+
6699
+ $chip-solid-focus-bg: $chip-solid-bg !default;
6700
+ $chip-solid-focus-shadow: 0 0 0 2px rgba( $chip-base-bg, .16 ) !default;
6684
6701
 
6685
- $chip-filled-hovered-bg: try-shade( $chip-filled-bg, .5 ) !default;
6686
- $chip-filled-hovered-text: null !default;
6687
- $chip-filled-hovered-border: null !default;
6702
+ $chip-solid-selected-bg: rgba( $chip-base-bg, .24 ) !default;
6703
+ $chip-solid-selected-text: null !default;
6704
+ $chip-solid-selected-border: null !default;
6688
6705
 
6689
- $chip-filled-focused-bg: $chip-filled-bg !default;
6690
- $chip-filled-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
6706
+ $chip-solid-success-bg: rgba( $success, .08 ) !default;
6707
+ $chip-solid-success-text: $success !default;
6708
+ $chip-solid-success-border: rgba( $success, .3 ) !default;
6691
6709
 
6692
- $chip-filled-selected-bg: try-shade( $chip-filled-bg, 1 ) !default;
6693
- $chip-filled-selected-text: null !default;
6694
- $chip-filled-selected-border: null !default;
6710
+ $chip-solid-success-hover-bg: rgba( $success, .16 ) !default;
6711
+ $chip-solid-success-hover-text: null !default;
6712
+ $chip-solid-success-hover-border: null !default;
6695
6713
 
6696
- $chip-filled-success-bg: rgba( $success, .12 ) !default;
6697
- $chip-filled-success-text: $success !default;
6698
- $chip-filled-success-border: rgba( $success, .3 ) !default;
6714
+ $chip-solid-success-focus-bg: null !default;
6715
+ $chip-solid-success-focus-text: null !default;
6716
+ $chip-solid-success-focus-border: null !default;
6699
6717
 
6700
- $chip-filled-warning-bg: rgba( $warning, .12 ) !default;
6701
- $chip-filled-warning-text: $warning !default;
6702
- $chip-filled-warning-border: rgba($warning, .3 ) !default;
6718
+ $chip-solid-success-selected-bg: rgba( $success, .24 ) !default;
6719
+ $chip-solid-success-selected-text: null !default;
6720
+ $chip-solid-success-selected-border: null !default;
6703
6721
 
6704
- $chip-filled-error-bg: rgba( $error, .12 ) !default;
6705
- $chip-filled-error-text: $error !default;
6706
- $chip-filled-error-border: rgba( $error, .3 ) !default;
6722
+ $chip-solid-warning-bg: rgba( $warning, .08 ) !default;
6723
+ $chip-solid-warning-text: $warning !default;
6724
+ $chip-solid-warning-border: rgba( $warning, .3 ) !default;
6707
6725
 
6708
- $chip-filled-info-bg: rgba( $info, .12 ) !default;
6709
- $chip-filled-info-text: $info !default;
6710
- $chip-filled-info-border: rgba( $info, .3 ) !default;
6726
+ $chip-solid-warning-hover-bg: rgba( $warning, .16 ) !default;
6727
+ $chip-solid-warning-hover-text: null !default;
6728
+ $chip-solid-warning-hover-border: null !default;
6711
6729
 
6712
- $chip-outline-bg: transparent !default;
6713
- $chip-outline-text: $body-text !default;
6714
- $chip-outline-border: $body-text !default;
6730
+ $chip-solid-warning-focus-bg: null !default;
6731
+ $chip-solid-warning-focus-text: null !default;
6732
+ $chip-solid-warning-focus-border: null !default;
6715
6733
 
6716
- $chip-outline-hovered-bg: $body-text !default;
6717
- $chip-outline-hovered-text: #ffffff !default;
6718
- $chip-outline-hovered-border: rgba( black, .08 ) !default;
6734
+ $chip-solid-warning-selected-bg: rgba( $warning, .24 ) !default;
6735
+ $chip-solid-warning-selected-text: null !default;
6736
+ $chip-solid-warning-selected-border: null !default;
6719
6737
 
6720
- $chip-outline-focused-bg: $chip-outline-bg !default;
6721
- $chip-outline-focused-text: $chip-outline-text !default;
6722
- $chip-outline-focused-border: $chip-outline-border !default;
6723
- $chip-outline-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
6738
+ $chip-solid-error-bg: rgba( $error, .08 ) !default;
6739
+ $chip-solid-error-text: $error !default;
6740
+ $chip-solid-error-border: rgba( $error, .3 ) !default;
6724
6741
 
6725
- $chip-outline-selected-bg: $body-text !default;
6726
- $chip-outline-selected-text: #ffffff !default;
6742
+ $chip-solid-error-hover-bg: rgba( $error, .16 ) !default;
6743
+ $chip-solid-error-hover-text: null !default;
6744
+ $chip-solid-error-hover-border: null !default;
6727
6745
 
6728
- $chip-outline-success-bg: transparent !default;
6746
+ $chip-solid-error-focus-bg: null !default;
6747
+ $chip-solid-error-focus-text: null !default;
6748
+ $chip-solid-error-focus-border: null !default;
6749
+
6750
+ $chip-solid-error-selected-bg: rgba( $error, .24 ) !default;
6751
+ $chip-solid-error-selected-text: null !default;
6752
+ $chip-solid-error-selected-border: null !default;
6753
+
6754
+ $chip-solid-info-bg: rgba( $info, .08 ) !default;
6755
+ $chip-solid-info-text: $info !default;
6756
+ $chip-solid-info-border: rgba( $info, .3 ) !default;
6757
+
6758
+ $chip-solid-info-hover-bg: rgba( $info, .16 ) !default;
6759
+ $chip-solid-info-hover-text: null !default;
6760
+ $chip-solid-info-hover-border: null !default;
6761
+
6762
+ $chip-solid-info-focus-bg: null !default;
6763
+ $chip-solid-info-focus-text: null !default;
6764
+ $chip-solid-info-focus-border: null !default;
6765
+
6766
+ $chip-solid-info-selected-bg: rgba( $info, .24 ) !default;
6767
+ $chip-solid-info-selected-text: null !default;
6768
+ $chip-solid-info-selected-border: null !default;
6769
+
6770
+ $chip-outline-bg: $body-bg !default;
6771
+ $chip-outline-text: $chip-base-bg !default;
6772
+ $chip-outline-border: $chip-base-bg !default;
6773
+
6774
+ $chip-outline-hover-bg: $chip-base-bg !default;
6775
+ $chip-outline-hover-text: contrast-wcag( $chip-outline-hover-bg ) !default;
6776
+ $chip-outline-hover-border: null !default;
6777
+
6778
+ $chip-outline-focus-bg: null !default;
6779
+ $chip-outline-focus-text: null !default;
6780
+ $chip-outline-focus-border: null !default;
6781
+ $chip-outline-focus-shadow: 0 0 0 2px rgba( $black, .08 ) !default;
6782
+
6783
+ $chip-outline-selected-bg: $chip-outline-hover-bg !default;
6784
+ $chip-outline-selected-text: $chip-outline-hover-text !default;
6785
+
6786
+ $chip-outline-success-bg: null !default;
6729
6787
  $chip-outline-success-text: $success !default;
6730
- $chip-outline-success-border: rgba( $success, .54 ) !default;
6788
+ $chip-outline-success-border: $success !default;
6789
+
6790
+ $chip-outline-success-hover-bg: $success !default;
6791
+ $chip-outline-success-hover-text: contrast-wcag( $chip-outline-success-hover-bg ) !default;
6792
+ $chip-outline-success-hover-border: null !default;
6793
+
6794
+ $chip-outline-success-focus-bg: nul !default;
6795
+ $chip-outline-success-focus-text: null !default;
6796
+ $chip-outline-success-focus-border: null !default;
6797
+
6798
+ $chip-outline-success-selected-bg: $chip-outline-success-hover-bg !default;
6799
+ $chip-outline-success-selected-text: $chip-outline-success-hover-text !default;
6800
+ $chip-outline-success-selected-border: null !default;
6731
6801
 
6732
- $chip-outline-warning-bg: transparent !default;
6802
+ $chip-outline-warning-bg: null !default;
6733
6803
  $chip-outline-warning-text: $warning !default;
6734
- $chip-outline-warning-border: rgba( $warning, .54 ) !default;
6804
+ $chip-outline-warning-border: $warning !default;
6735
6805
 
6736
- $chip-outline-error-bg: transparent !default;
6806
+ $chip-outline-warning-hover-bg: $warning !default;
6807
+ $chip-outline-warning-hover-text: $white !default;
6808
+ $chip-outline-warning-hover-border: null !default;
6809
+
6810
+ $chip-outline-warning-focus-bg: nul !default;
6811
+ $chip-outline-warning-focus-text: null !default;
6812
+ $chip-outline-warning-focus-border: null !default;
6813
+
6814
+ $chip-outline-warning-selected-bg: $chip-outline-warning-hover-bg !default;
6815
+ $chip-outline-warning-selected-text: $chip-outline-warning-hover-text !default;
6816
+ $chip-outline-warning-selected-border: null !default;
6817
+
6818
+ $chip-outline-error-bg: null !default;
6737
6819
  $chip-outline-error-text: $error !default;
6738
- $chip-outline-error-border: rgba( $error, .54 ) !default;
6820
+ $chip-outline-error-border: $error !default;
6821
+
6822
+ $chip-outline-error-hover-bg: $error !default;
6823
+ $chip-outline-error-hover-text: contrast-wcag( $chip-outline-error-hover-bg ) !default;
6824
+ $chip-outline-error-hover-border: null !default;
6739
6825
 
6740
- $chip-outline-info-bg: transparent !default;
6826
+ $chip-outline-error-focus-bg: nul !default;
6827
+ $chip-outline-error-focus-text: null !default;
6828
+ $chip-outline-error-focus-border: null !default;
6829
+
6830
+ $chip-outline-error-selected-bg: $chip-outline-error-hover-bg !default;
6831
+ $chip-outline-error-selected-text: $chip-outline-error-hover-text !default;
6832
+ $chip-outline-error-selected-border: null !default;
6833
+
6834
+ $chip-outline-info-bg: null !default;
6741
6835
  $chip-outline-info-text: $info !default;
6742
- $chip-outline-info-border: rgba( $info, .54 ) !default;
6836
+ $chip-outline-info-border: $info !default;
6837
+
6838
+ $chip-outline-info-hover-bg: $info !default;
6839
+ $chip-outline-info-hover-text: contrast-wcag( $chip-outline-info-hover-bg ) !default;
6840
+ $chip-outline-info-hover-border: null !default;
6743
6841
 
6744
- $chip-filled-single-selected-bg: rgba( $primary, .08 ) !default;
6745
- $chip-filled-single-selected-text: $primary !default;
6746
- $chip-filled-single-selected-border: rgba( $primary, .2 ) !default;
6842
+ $chip-outline-info-focus-bg: nul !default;
6843
+ $chip-outline-info-focus-text: null !default;
6844
+ $chip-outline-info-focus-border: null !default;
6747
6845
 
6748
- $chip-outline-single-selected-bg: transparent !default;
6749
- $chip-outline-single-selected-text: $primary !default;
6750
- $chip-outline-single-selected-border: rgba( $primary, .2 ) !default;
6846
+ $chip-outline-info-selected-bg: $chip-outline-info-hover-bg !default;
6847
+ $chip-outline-info-selected-text: $chip-outline-info-hover-text !default;
6848
+ $chip-outline-info-selected-border: null !default;
6751
6849
 
6752
6850
  $chip-multiple-selected-icon-bg: rgba( black, .44 ) !default;
6753
6851
  $chip-multiple-selected-icon-text: #ffffff !default;
6754
6852
 
6755
-
6756
6853
  $chip-primary-focus-shadow: 0 0 0 2px rgba( $primary, .16 ) !default;
6757
6854
  $chip-secondary-focus-shadow: 0 0 0 2px rgba( $secondary, .16 ) !default;
6758
6855
  $chip-info-focus-shadow: 0 0 0 2px rgba( $info, .16 ) !default;
@@ -6799,11 +6896,9 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6799
6896
  font-size: $chip-selected-icon-font-size;
6800
6897
  }
6801
6898
 
6802
- .k-chip-selected {
6803
- .k-selected-icon-wrapper {
6804
- width: $chip-selected-icon-size;
6805
- visibility: visible;
6806
- }
6899
+ .k-chip.k-selected .k-selected-icon-wrapper {
6900
+ width: $chip-selected-icon-size;
6901
+ visibility: visible;
6807
6902
  }
6808
6903
 
6809
6904
  > .k-chip-has-icon {
@@ -6820,10 +6915,8 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6820
6915
  transition: width .2s, opacity .2s;
6821
6916
  }
6822
6917
 
6823
- &.k-chip-selected {
6824
- .k-selected-icon-wrapper {
6825
- opacity: 1;
6826
- }
6918
+ &.k-selected .k-selected-icon-wrapper {
6919
+ opacity: 1;
6827
6920
  }
6828
6921
  }
6829
6922
  }
@@ -6848,10 +6941,6 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6848
6941
  &.k-chip-focus {
6849
6942
  outline: 0;
6850
6943
  }
6851
-
6852
- &.k-chip-disabled {
6853
- @include disabled( $disabled-styling );
6854
- }
6855
6944
  }
6856
6945
 
6857
6946
  .k-chip-content {
@@ -6897,7 +6986,8 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6897
6986
 
6898
6987
  .k-chip-list {
6899
6988
  &[dir="rtl"],
6900
- .k-rtl & {
6989
+ .k-rtl &,
6990
+ &.k-rtl {
6901
6991
  > * {
6902
6992
  margin-right: 0;
6903
6993
  margin-left: $chips-margin;
@@ -6911,7 +7001,8 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6911
7001
 
6912
7002
  .k-chip {
6913
7003
  &[dir="rtl"],
6914
- .k-rtl & {
7004
+ .k-rtl &,
7005
+ &.k-rtl {
6915
7006
  .k-chip-icon {
6916
7007
  margin-left: 0;
6917
7008
  margin-right: $chip-icon-margin;
@@ -6944,91 +7035,192 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
6944
7035
  // #region @import "_theme.scss"; -> packages/default/scss/chip/_theme.scss
6945
7036
  @include exports("chip/theme") {
6946
7037
 
6947
- .k-selection-single {
6948
- .k-chip-selected {
6949
- &.k-chip-filled {
6950
- @include fill(
6951
- $chip-filled-single-selected-text,
6952
- $chip-filled-single-selected-bg,
6953
- $chip-filled-single-selected-border
6954
- );
6955
- }
6956
-
6957
- &.k-chip-outline {
6958
- @include fill(
6959
- $chip-outline-single-selected-text,
6960
- $chip-outline-single-selected-bg,
6961
- $chip-outline-single-selected-border
6962
- );
6963
- }
6964
- }
6965
- }
6966
-
6967
- .k-selection-multiple {
6968
- > .k-chip-has-icon {
6969
- &.k-chip-selected {
6970
- .k-selected-icon-wrapper {
6971
- color: $chip-multiple-selected-icon-text;
6972
- background-color: $chip-multiple-selected-icon-bg;
6973
- }
6974
- }
6975
- }
7038
+ .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
7039
+ @include fill(
7040
+ $color: $chip-multiple-selected-icon-text,
7041
+ $bg: $chip-multiple-selected-icon-bg
7042
+ );
6976
7043
  }
6977
7044
 
6978
- .k-chip-filled {
7045
+ // Solid
7046
+ .k-chip-solid {
6979
7047
  @include fill(
6980
- $chip-filled-text,
6981
- $chip-filled-bg,
6982
- $chip-filled-border
7048
+ $chip-solid-text,
7049
+ $chip-solid-bg,
7050
+ $chip-solid-border
6983
7051
  );
6984
7052
 
6985
7053
  &:hover,
6986
- &.k-chip-hover {
6987
- background-color: $chip-filled-hovered-bg;
6988
- border-color: $chip-filled-hovered-border;
7054
+ &.k-state-hover,
7055
+ &.k-hover {
7056
+ @include fill(
7057
+ $bg: $chip-solid-hover-bg,
7058
+ $border: $chip-solid-hover-border
7059
+ );
6989
7060
  }
6990
7061
 
6991
7062
  &:focus,
6992
- &.k-chip-focused {
6993
- background-color: $chip-filled-focused-bg;
6994
- box-shadow: $chip-filled-focused-shadow;
7063
+ &.k-state-focus,
7064
+ &.k-focus {
7065
+ @include box-shadow( $chip-solid-focus-shadow );
7066
+ @include fill( $bg: $chip-solid-focus-bg );
6995
7067
  }
6996
7068
 
6997
- &.k-chip-selected {
6998
- background-color: $chip-filled-selected-bg;
6999
- border-color: $chip-filled-selected-border;
7069
+ &.k-state-selected,
7070
+ &.k-selected {
7071
+ @include fill(
7072
+ $bg: $chip-solid-selected-bg,
7073
+ $border: $chip-solid-selected-border
7074
+ );
7000
7075
  }
7001
7076
 
7002
7077
  &.k-chip-success {
7003
7078
  @include fill(
7004
- $chip-filled-success-text,
7005
- $chip-filled-success-bg,
7006
- $chip-filled-success-border
7079
+ $chip-solid-success-text,
7080
+ $chip-solid-success-bg,
7081
+ $chip-solid-success-border
7007
7082
  );
7083
+
7084
+ &:hover,
7085
+ &.k-state-hover,
7086
+ &.k-hover {
7087
+ @include fill(
7088
+ $chip-solid-success-hover-text,
7089
+ $chip-solid-success-hover-bg,
7090
+ $chip-solid-success-hover-border
7091
+ );
7092
+ }
7093
+
7094
+ &:focus,
7095
+ &.k-state-focus,
7096
+ &.k-focus {
7097
+ @include fill(
7098
+ $chip-solid-success-focus-text,
7099
+ $chip-solid-success-focus-bg,
7100
+ $chip-solid-success-focus-border
7101
+ );
7102
+ }
7103
+
7104
+ &.k-state-selected,
7105
+ &.k-selected {
7106
+ @include fill(
7107
+ $chip-solid-success-selected-text,
7108
+ $chip-solid-success-selected-bg,
7109
+ $chip-solid-success-selected-border
7110
+ );
7111
+ }
7008
7112
  }
7009
7113
 
7114
+
7010
7115
  &.k-chip-warning {
7011
7116
  @include fill(
7012
- $chip-filled-warning-text,
7013
- $chip-filled-warning-bg,
7014
- $chip-filled-warning-border
7117
+ $chip-solid-warning-text,
7118
+ $chip-solid-warning-bg,
7119
+ $chip-solid-warning-border
7015
7120
  );
7121
+
7122
+ &:hover,
7123
+ &.k-state-hover,
7124
+ &.k-hover {
7125
+ @include fill(
7126
+ $chip-solid-warning-hover-text,
7127
+ $chip-solid-warning-hover-bg,
7128
+ $chip-solid-warning-hover-border
7129
+ );
7130
+ }
7131
+
7132
+ &:focus,
7133
+ &.k-state-focus,
7134
+ &.k-focus {
7135
+ @include fill(
7136
+ $chip-solid-warning-focus-text,
7137
+ $chip-solid-warning-focus-bg,
7138
+ $chip-solid-warning-focus-border
7139
+ );
7140
+ }
7141
+
7142
+ &.k-state-selected,
7143
+ &.k-selected {
7144
+ @include fill(
7145
+ $chip-solid-warning-selected-text,
7146
+ $chip-solid-warning-selected-bg,
7147
+ $chip-solid-warning-selected-border
7148
+ );
7149
+ }
7016
7150
  }
7017
7151
 
7018
7152
  &.k-chip-error {
7019
7153
  @include fill(
7020
- $chip-filled-error-text,
7021
- $chip-filled-error-bg,
7022
- $chip-filled-error-border
7154
+ $chip-solid-error-text,
7155
+ $chip-solid-error-bg,
7156
+ $chip-solid-error-border
7023
7157
  );
7158
+
7159
+ &:hover,
7160
+ &.k-state-hover,
7161
+ &.k-hover {
7162
+ @include fill(
7163
+ $chip-solid-error-hover-text,
7164
+ $chip-solid-error-hover-bg,
7165
+ $chip-solid-error-hover-border
7166
+ );
7167
+ }
7168
+
7169
+ &:focus,
7170
+ &.k-state-focus,
7171
+ &.k-focus {
7172
+ @include fill(
7173
+ $chip-solid-error-focus-text,
7174
+ $chip-solid-error-focus-bg,
7175
+ $chip-solid-error-focus-border
7176
+ );
7177
+ }
7178
+
7179
+ &.k-state-selected,
7180
+ &.k-selected {
7181
+ @include fill(
7182
+ $chip-solid-error-selected-text,
7183
+ $chip-solid-error-selected-bg,
7184
+ $chip-solid-error-selected-border
7185
+ );
7186
+ }
7024
7187
  }
7025
7188
 
7026
7189
  &.k-chip-info {
7027
7190
  @include fill(
7028
- $chip-filled-info-text,
7029
- $chip-filled-info-bg,
7030
- $chip-filled-info-border
7191
+ $chip-solid-info-text,
7192
+ $chip-solid-info-bg,
7193
+ $chip-solid-info-border
7031
7194
  );
7195
+
7196
+ &:hover,
7197
+ &.k-state-hover,
7198
+ &.k-hover {
7199
+ @include fill(
7200
+ $chip-solid-info-hover-text,
7201
+ $chip-solid-info-hover-bg,
7202
+ $chip-solid-info-hover-border
7203
+ );
7204
+ }
7205
+
7206
+ &:focus,
7207
+ &.k-state-focus,
7208
+ &.k-focus {
7209
+ @include fill(
7210
+ $chip-solid-info-focus-text,
7211
+ $chip-solid-info-focus-bg,
7212
+ $chip-solid-info-focus-border
7213
+ );
7214
+ }
7215
+
7216
+ &.k-state-selected,
7217
+ &.k-selected {
7218
+ @include fill(
7219
+ $chip-solid-info-selected-text,
7220
+ $chip-solid-info-selected-bg,
7221
+ $chip-solid-info-selected-border
7222
+ );
7223
+ }
7032
7224
  }
7033
7225
  }
7034
7226
 
@@ -7040,27 +7232,32 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
7040
7232
  );
7041
7233
 
7042
7234
  &:hover,
7043
- &.k-chip-hover {
7235
+ &.k-state-hover,
7236
+ &.k-hover {
7044
7237
  @include fill(
7045
- $chip-outline-hovered-text,
7046
- $chip-outline-hovered-bg,
7047
- $chip-outline-hovered-border
7238
+ $chip-outline-hover-text,
7239
+ $chip-outline-hover-bg,
7240
+ $chip-outline-hover-border
7048
7241
  );
7049
7242
  }
7050
7243
 
7051
7244
  &:focus,
7052
- &.k-chip-focused {
7245
+ &.k-state-focus,
7246
+ &.k-focus {
7247
+ @include box-shadow( $chip-outline-focus-shadow );
7053
7248
  @include fill(
7054
- $chip-outline-focused-text,
7055
- $chip-outline-focused-bg,
7056
- $chip-outline-focused-border
7249
+ $chip-outline-focus-text,
7250
+ $chip-outline-focus-bg,
7251
+ $chip-outline-focus-border
7057
7252
  );
7058
- box-shadow: $chip-outline-focused-shadow;
7059
7253
  }
7060
7254
 
7061
- &.k-chip-selected {
7062
- color: $chip-outline-selected-text;
7063
- background-color: $chip-outline-selected-bg;
7255
+ &.k-state-selected,
7256
+ &.k-selected {
7257
+ @include fill(
7258
+ $color: $chip-outline-selected-text,
7259
+ $bg: $chip-outline-selected-bg
7260
+ );
7064
7261
  }
7065
7262
 
7066
7263
  &.k-chip-success {
@@ -7069,6 +7266,35 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
7069
7266
  $chip-outline-success-bg,
7070
7267
  $chip-outline-success-border
7071
7268
  );
7269
+
7270
+ &:hover,
7271
+ &.k-state-hover,
7272
+ &.k-hover {
7273
+ @include fill(
7274
+ $chip-outline-success-hover-text,
7275
+ $chip-outline-success-hover-bg,
7276
+ $chip-outline-success-hover-border
7277
+ );
7278
+ }
7279
+
7280
+ &:focus,
7281
+ &.k-state-focus,
7282
+ &.k-focus {
7283
+ @include fill(
7284
+ $chip-outline-success-focus-text,
7285
+ $chip-outline-success-focus-bg,
7286
+ $chip-outline-success-focus-border
7287
+ );
7288
+ }
7289
+
7290
+ &.k-state-selected,
7291
+ &.k-selected {
7292
+ @include fill(
7293
+ $chip-outline-success-selected-text,
7294
+ $chip-outline-success-selected-bg,
7295
+ $chip-outline-success-selected-border
7296
+ );
7297
+ }
7072
7298
  }
7073
7299
 
7074
7300
  &.k-chip-warning {
@@ -7077,60 +7303,142 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
7077
7303
  $chip-outline-warning-bg,
7078
7304
  $chip-outline-warning-border
7079
7305
  );
7306
+
7307
+ &:hover,
7308
+ &.k-state-hover,
7309
+ &.k-hover {
7310
+ @include fill(
7311
+ $chip-outline-warning-hover-text,
7312
+ $chip-outline-warning-hover-bg,
7313
+ $chip-outline-warning-hover-border
7314
+ );
7315
+ }
7316
+
7317
+ &:focus,
7318
+ &.k-state-focus,
7319
+ &.k-focus {
7320
+ @include fill(
7321
+ $chip-outline-warning-focus-text,
7322
+ $chip-outline-warning-focus-bg,
7323
+ $chip-outline-warning-focus-border
7324
+ );
7325
+ }
7326
+
7327
+ &.k-state-selected,
7328
+ &.k-selected {
7329
+ @include fill(
7330
+ $chip-outline-warning-selected-text,
7331
+ $chip-outline-warning-selected-bg,
7332
+ $chip-outline-warning-selected-border
7333
+ );
7334
+ }
7080
7335
  }
7081
7336
 
7337
+
7082
7338
  &.k-chip-error {
7083
7339
  @include fill(
7084
7340
  $chip-outline-error-text,
7085
7341
  $chip-outline-error-bg,
7086
7342
  $chip-outline-error-border
7087
7343
  );
7344
+
7345
+ &:hover,
7346
+ &.k-state-hover,
7347
+ &.k-hover {
7348
+ @include fill(
7349
+ $chip-outline-error-hover-text,
7350
+ $chip-outline-error-hover-bg,
7351
+ $chip-outline-error-hover-border
7352
+ );
7353
+ }
7354
+
7355
+ &:focus,
7356
+ &.k-state-focus,
7357
+ &.k-focus {
7358
+ @include fill(
7359
+ $chip-outline-error-focus-text,
7360
+ $chip-outline-error-focus-bg,
7361
+ $chip-outline-error-focus-border
7362
+ );
7363
+ }
7364
+
7365
+ &.k-state-selected,
7366
+ &.k-selected {
7367
+ @include fill(
7368
+ $chip-outline-error-selected-text,
7369
+ $chip-outline-error-selected-bg,
7370
+ $chip-outline-error-selected-border
7371
+ );
7372
+ }
7088
7373
  }
7089
7374
 
7375
+
7090
7376
  &.k-chip-info {
7091
7377
  @include fill(
7092
7378
  $chip-outline-info-text,
7093
7379
  $chip-outline-info-bg,
7094
7380
  $chip-outline-info-border
7095
7381
  );
7096
- }
7097
- }
7098
7382
 
7383
+ &:hover,
7384
+ &.k-state-hover,
7385
+ &.k-hover {
7386
+ @include fill(
7387
+ $chip-outline-info-hover-text,
7388
+ $chip-outline-info-hover-bg,
7389
+ $chip-outline-info-hover-border
7390
+ );
7391
+ }
7099
7392
 
7100
- // Chip colors
7101
- .k-chip-primary {
7393
+ &:focus,
7394
+ &.k-state-focus,
7395
+ &.k-focus {
7396
+ @include fill(
7397
+ $chip-outline-info-focus-text,
7398
+ $chip-outline-info-focus-bg,
7399
+ $chip-outline-info-focus-border
7400
+ );
7401
+ }
7102
7402
 
7103
- &:focus,
7104
- &.k-chip-focus {
7105
- box-shadow: $chip-primary-focus-shadow;
7403
+ &.k-state-selected,
7404
+ &.k-selected {
7405
+ @include fill(
7406
+ $chip-outline-info-selected-text,
7407
+ $chip-outline-info-selected-bg,
7408
+ $chip-outline-info-selected-border
7409
+ );
7410
+ }
7106
7411
  }
7107
7412
  }
7108
- .k-chip-info {
7109
7413
 
7414
+
7415
+ // Chip colors
7416
+ .k-chip-info {
7110
7417
  &:focus,
7111
- &.k-chip-focus {
7112
- box-shadow: $chip-info-focus-shadow;
7418
+ &.k-state-focus,
7419
+ &.k-focus {
7420
+ @include box-shadow( $chip-info-focus-shadow );
7113
7421
  }
7114
7422
  }
7115
7423
  .k-chip-success {
7116
-
7117
7424
  &:focus,
7118
- &.k-chip-focus {
7119
- box-shadow: $chip-success-focus-shadow;
7425
+ &.k-state-focus,
7426
+ &.k-focus {
7427
+ @include box-shadow( $chip-success-focus-shadow );
7120
7428
  }
7121
7429
  }
7122
7430
  .k-chip-warning {
7123
-
7124
7431
  &:focus,
7125
- &.k-chip-focus {
7126
- box-shadow: $chip-warning-focus-shadow;
7432
+ &.k-state-focus,
7433
+ &.k-focus {
7434
+ @include box-shadow( $chip-warning-focus-shadow );
7127
7435
  }
7128
7436
  }
7129
7437
  .k-chip-error {
7130
-
7131
7438
  &:focus,
7132
- &.k-chip-focus {
7133
- box-shadow: $chip-error-focus-shadow;
7439
+ &.k-state-focus,
7440
+ &.k-focus {
7441
+ @include box-shadow( $chip-error-focus-shadow );
7134
7442
  }
7135
7443
  }
7136
7444
 
@@ -36608,6 +36916,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
36608
36916
  }
36609
36917
  }
36610
36918
 
36919
+ &.k-scheduler-timeline-view .k-scheduler-body .k-scheduler-cell {
36920
+ flex-basis: auto;
36921
+ }
36611
36922
 
36612
36923
 
36613
36924
  .k-more-events {