@progress/kendo-theme-bootstrap 5.0.0-next.3 → 5.0.0-next.4

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
@@ -602,6 +602,25 @@ $data-uris: () !default;
602
602
  }
603
603
  }
604
604
 
605
+ // #endregion
606
+ // #region @import "_disabled.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/mixins/_disabled.scss
607
+ // Disabled
608
+ @mixin disabled( $disabled-styling ) {
609
+ outline: none;
610
+ cursor: default;
611
+ opacity: map-get($disabled-styling, opacity);
612
+ filter: map-get($disabled-styling, filter);
613
+ pointer-events: none;
614
+ box-shadow: none;
615
+ }
616
+
617
+ @mixin disabled-legacy-ie( $disabled-styling ) {
618
+ outline: none;
619
+ cursor: default;
620
+ opacity: map-get($disabled-styling, opacity);
621
+ box-shadow: none;
622
+ }
623
+
605
624
  // #endregion
606
625
  // #region @import "_decoration.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/mixins/_decoration.scss
607
626
  // Fill and outline
@@ -632,25 +651,6 @@ $data-uris: () !default;
632
651
  }
633
652
  }
634
653
 
635
- // #endregion
636
- // #region @import "_disabled.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/mixins/_disabled.scss
637
- // Disabled
638
- @mixin disabled( $disabled-styling ) {
639
- outline: none;
640
- cursor: default;
641
- opacity: map-get($disabled-styling, opacity);
642
- filter: map-get($disabled-styling, filter);
643
- pointer-events: none;
644
- box-shadow: none;
645
- }
646
-
647
- @mixin disabled-legacy-ie( $disabled-styling ) {
648
- outline: none;
649
- cursor: default;
650
- opacity: map-get($disabled-styling, opacity);
651
- box-shadow: none;
652
- }
653
-
654
654
  // #endregion
655
655
  // #region @import "_gradients.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/mixins/_gradients.scss
656
656
  @mixin linear-gradient( $gradient: null ) {
@@ -4985,22 +4985,19 @@ $display4-letter-spacing: null !default;
4985
4985
 
4986
4986
 
4987
4987
  // Dependencies
4988
- // #region @import "../common/_decoration.scss"; -> packages/bootstrap/scss/common/_decoration.scss
4989
- // #region @import "~@progress/kendo-theme-default/scss/common/_decoration.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/common/_decoration.scss
4988
+ // #region @import "../utils/_theme-colors.scss"; -> packages/bootstrap/scss/utils/_theme-colors.scss
4989
+ // #region @import "~@progress/kendo-theme-default/scss/utils/_theme-colors.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/utils/_theme-colors.scss
4990
4990
  @include exports( "common/decoration/color" ) {
4991
4991
 
4992
4992
  // sass-lint:disable-block no-important
4993
4993
  // stylelint-disable block-opening-brace-space-before
4994
4994
 
4995
- .k-text-primary { color: $primary !important; }
4996
- .k-text-info { color: $info !important; }
4997
- .k-text-success { color: $success !important; }
4998
- .k-text-warning { color: $warning !important; }
4999
- .k-text-error { color: $error !important; }
5000
-
5001
- .k-text-base { color: $base-text; }
4995
+ .k-text-base,
4996
+ .k-color-base {
4997
+ color: $base-text;
4998
+ }
5002
4999
 
5003
- .k-color-inherit { color: inherit; }
5000
+ .k-color-inherit { color: inherit; }
5004
5001
 
5005
5002
  @each $name, $color in $theme-colors {
5006
5003
  .k-text-#{$name},
@@ -5016,11 +5013,11 @@ $display4-letter-spacing: null !default;
5016
5013
 
5017
5014
  // sass-lint:disable-block no-important
5018
5015
 
5019
- .k-bg-primary { background-color: $primary !important; }
5020
- .k-bg-info { background-color: $info !important; }
5021
- .k-bg-success { background-color: $success !important; }
5022
- .k-bg-warning { background-color: $warning !important; }
5023
- .k-bg-error { background-color: $error !important; }
5016
+ @each $name, $bg-color in $theme-colors {
5017
+ .k-bg-#{$name} {
5018
+ background-color: $bg-color !important;
5019
+ }
5020
+ }
5024
5021
 
5025
5022
  }
5026
5023
 
@@ -5033,12 +5030,11 @@ $display4-letter-spacing: null !default;
5033
5030
 
5034
5031
  @include exports( "common/decoration/variant" ) {
5035
5032
 
5036
- .k-state-primary { @include variant( $primary ); }
5037
- .k-state-info { @include variant( $info ); }
5038
- .k-state-success { @include variant( $success ); }
5039
- .k-state-warning { @include variant( $warning ); }
5040
- .k-state-error { @include variant( $error ); }
5041
-
5033
+ @each $name, $variant in $theme-colors {
5034
+ .k-state-#{$name} {
5035
+ @include variant( $variant );
5036
+ }
5037
+ }
5042
5038
  }
5043
5039
 
5044
5040
 
@@ -5128,12 +5124,21 @@ $display4-letter-spacing: null !default;
5128
5124
  top: ( border-top-left-radius, border-top-right-radius ),
5129
5125
  right: ( border-top-right-radius, border-bottom-right-radius ),
5130
5126
  bottom: ( border-bottom-left-radius, border-bottom-right-radius ),
5131
- left: ( border-bottom-left-radius, border-top-left-radius )
5127
+ left: ( border-bottom-left-radius, border-top-left-radius ),
5128
+ top-left: border-top-left-radius,
5129
+ top-right: border-top-right-radius,
5130
+ bottom-left: border-bottom-left-radius,
5131
+ bottom-right: border-bottom-right-radius
5132
5132
  ) !default;
5133
5133
 
5134
5134
  $utils-border-radius: (
5135
5135
  default: map-get( $spacing, 1 ),
5136
- 0: 0
5136
+ 0: 0,
5137
+ sm: map-get( $spacing, 1 ) / 2,
5138
+ md: map-get( $spacing, 1 ),
5139
+ lg: map-get( $spacing, 2 ),
5140
+ circle: 50%,
5141
+ pill: 9999px
5137
5142
  ) !default;
5138
5143
 
5139
5144
 
@@ -6159,6 +6164,9 @@ $display4-letter-spacing: null !default;
6159
6164
 
6160
6165
  // #endregion
6161
6166
 
6167
+ // #endregion
6168
+ // #region @import "_theme-colors.scss"; -> packages/bootstrap/scss/utils/_theme-colors.scss
6169
+ // File already imported_once. Skipping output.
6162
6170
  // #endregion
6163
6171
  // #region @import "_touch-action.scss"; -> packages/bootstrap/scss/utils/_touch-action.scss
6164
6172
  // #region @import "~@progress/kendo-theme-default/scss/utils/_touch-action.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/utils/_touch-action.scss
@@ -8817,74 +8825,165 @@ $chip-remove-icon-font-size: 14px !default;
8817
8825
 
8818
8826
  $chip-avatar-size: 24px !default;
8819
8827
 
8820
- $chip-filled-bg: #e4e7eb !default;
8821
- $chip-filled-text: $body-text !default;
8822
- $chip-filled-border: transparent !default;
8828
+ $chip-base-bg: $base-text !default;
8829
+
8830
+ $chip-solid-bg: rgba( $chip-base-bg, .08 ) !default;
8831
+ $chip-solid-text: $chip-base-bg !default;
8832
+ $chip-solid-border: rgba( $chip-base-bg, .3 ) !default;
8833
+
8834
+ $chip-solid-hover-bg: rgba( $chip-base-bg, .16 ) !default;
8835
+ $chip-solid-hover-text: null !default;
8836
+ $chip-solid-hover-border: null !default;
8837
+
8838
+ $chip-solid-focus-bg: $chip-solid-bg !default;
8839
+ $chip-solid-focus-shadow: 0 0 0 3px rgba( $chip-base-bg, .16 ) !default;
8823
8840
 
8824
- $chip-filled-hovered-bg: #ced3db !default;
8825
- $chip-filled-hovered-border: transparent !default;
8841
+ $chip-solid-selected-bg: rgba( $chip-base-bg, .24 ) !default;
8842
+ $chip-solid-selected-border: null !default;
8826
8843
 
8827
- $chip-filled-focused-bg: $chip-filled-bg !default;
8828
- $chip-filled-focused-shadow: 0 0 0 3px rgba($chip-filled-bg, .5) !default;
8844
+ $chip-solid-success-bg: rgba( $success, .08 ) !default;
8845
+ $chip-solid-success-text: $success !default;
8846
+ $chip-solid-success-border: rgba( $success, .3 ) !default;
8829
8847
 
8830
- $chip-filled-selected-bg: #c7cdd5 !default;
8831
- $chip-filled-selected-border: transparent !default;
8848
+ $chip-solid-success-hover-bg: rgba( $success, .16 ) !default;
8849
+ $chip-solid-success-hover-text: null !default;
8850
+ $chip-solid-success-hover-border: null !default;
8832
8851
 
8833
- $chip-filled-success-bg: rgba($success, .15) !default;
8834
- $chip-filled-success-text: $success !default;
8835
- $chip-filled-success-border: transparent !default;
8852
+ $chip-solid-success-focus-bg: null !default;
8853
+ $chip-solid-success-focus-text: null !default;
8854
+ $chip-solid-success-focus-border: null !default;
8836
8855
 
8837
- $chip-filled-warning-bg: rgba($warning, .15) !default;
8838
- $chip-filled-warning-text: $warning !default;
8839
- $chip-filled-warning-border: transparent !default;
8856
+ $chip-solid-success-selected-bg: rgba( $success, .24 ) !default;
8857
+ $chip-solid-success-selected-text: null !default;
8858
+ $chip-solid-success-selected-border: null !default;
8840
8859
 
8841
- $chip-filled-error-bg: rgba($error, .15) !default;
8842
- $chip-filled-error-text: $error !default;
8843
- $chip-filled-error-border: transparent !default;
8860
+ $chip-solid-warning-bg: rgba( $warning, .08 ) !default;
8861
+ $chip-solid-warning-text: $warning !default;
8862
+ $chip-solid-warning-border: rgba( $warning, .3 ) !default;
8844
8863
 
8845
- $chip-filled-info-bg: rgba($info, .15) !default;
8846
- $chip-filled-info-text: $info !default;
8847
- $chip-filled-info-border: transparent !default;
8864
+ $chip-solid-warning-hover-bg: rgba( $warning, .16 ) !default;
8865
+ $chip-solid-warning-hover-text: null !default;
8866
+ $chip-solid-warning-hover-border: null !default;
8848
8867
 
8849
- $chip-outline-bg: transparent !default;
8850
- $chip-outline-text: #6c757d !default;
8851
- $chip-outline-border: $chip-outline-text !default;
8868
+ $chip-solid-warning-focus-bg: null !default;
8869
+ $chip-solid-warning-focus-text: null !default;
8870
+ $chip-solid-warning-focus-border: null !default;
8852
8871
 
8853
- $chip-outline-hovered-bg: rgba(206, 211, 219, .3) !default;
8854
- $chip-outline-hovered-text: $chip-outline-text !default;
8855
- $chip-outline-hovered-border: $chip-outline-border !default;
8872
+ $chip-solid-warning-selected-bg: rgba( $warning, .24 ) !default;
8873
+ $chip-solid-warning-selected-text: null !default;
8874
+ $chip-solid-warning-selected-border: null !default;
8856
8875
 
8857
- $chip-outline-focused-bg: $chip-outline-bg !default;
8858
- $chip-outline-focused-text: $chip-outline-text !default;
8859
- $chip-outline-focused-border: $chip-outline-border !default;
8860
- $chip-outline-focused-shadow: $chip-filled-focused-shadow !default;
8876
+ $chip-solid-error-bg: rgba( $error, .08 ) !default;
8877
+ $chip-solid-error-text: $error !default;
8878
+ $chip-solid-error-border: rgba( $error, .3 ) !default;
8861
8879
 
8862
- $chip-outline-selected-bg: rgba(199, 205, 213, .5) !default;
8863
- $chip-outline-selected-text: $chip-outline-text !default;
8880
+ $chip-solid-error-hover-bg: rgba( $error, .16 ) !default;
8881
+ $chip-solid-error-hover-text: null !default;
8882
+ $chip-solid-error-hover-border: null !default;
8864
8883
 
8865
- $chip-outline-success-bg: transparent !default;
8884
+ $chip-solid-error-focus-bg: null !default;
8885
+ $chip-solid-error-focus-text: null !default;
8886
+ $chip-solid-error-focus-border: null !default;
8887
+
8888
+ $chip-solid-error-selected-bg: rgba( $error, .24 ) !default;
8889
+ $chip-solid-error-selected-text: null !default;
8890
+ $chip-solid-error-selected-border: null !default;
8891
+
8892
+ $chip-solid-info-bg: rgba( $info, .08 ) !default;
8893
+ $chip-solid-info-text: $info !default;
8894
+ $chip-solid-info-border: rgba( $info, .3 ) !default;
8895
+
8896
+ $chip-solid-info-hover-bg: rgba( $info, .16 ) !default;
8897
+ $chip-solid-info-hover-text: null !default;
8898
+ $chip-solid-info-hover-border: null !default;
8899
+
8900
+ $chip-solid-info-focus-bg: null !default;
8901
+ $chip-solid-info-focus-text: null !default;
8902
+ $chip-solid-info-focus-border: null !default;
8903
+
8904
+ $chip-solid-info-selected-bg: rgba( $info, .24 ) !default;
8905
+ $chip-solid-info-selected-text: null !default;
8906
+ $chip-solid-info-selected-border: null !default;
8907
+
8908
+ $chip-outline-bg: $component-bg !default;
8909
+ $chip-outline-text: $chip-base-bg !default;
8910
+ $chip-outline-border: $chip-base-bg !default;
8911
+
8912
+ $chip-outline-hover-bg: $chip-base-bg !default;
8913
+ $chip-outline-hover-text: contrast-wcag( $chip-outline-hover-bg ) !default;
8914
+ $chip-outline-hover-border: null !default;
8915
+
8916
+ $chip-outline-focus-bg: null !default;
8917
+ $chip-outline-focus-text: null !default;
8918
+ $chip-outline-focus-border: null !default;
8919
+ $chip-outline-focus-shadow: $chip-solid-focus-shadow !default;
8920
+
8921
+ $chip-outline-selected-bg: $chip-outline-hover-bg !default;
8922
+ $chip-outline-selected-text: $chip-outline-hover-text !default;
8923
+
8924
+ $chip-outline-success-bg: null !default;
8866
8925
  $chip-outline-success-text: $success !default;
8867
8926
  $chip-outline-success-border: $success !default;
8868
8927
 
8869
- $chip-outline-warning-bg: transparent !default;
8928
+ $chip-outline-success-hover-bg: $success !default;
8929
+ $chip-outline-success-hover-text: contrast-wcag( $chip-outline-success-hover-bg ) !default;
8930
+ $chip-outline-success-hover-border: null !default;
8931
+
8932
+ $chip-outline-success-focus-bg: null !default;
8933
+ $chip-outline-success-focus-text: null !default;
8934
+ $chip-outline-success-focus-border: null !default;
8935
+
8936
+ $chip-outline-success-selected-bg: $chip-outline-success-hover-bg !default;
8937
+ $chip-outline-success-selected-text: $chip-outline-success-hover-text !default;
8938
+ $chip-outline-success-selected-border: null !default;
8939
+
8940
+ $chip-outline-warning-bg: null !default;
8870
8941
  $chip-outline-warning-text: $warning !default;
8871
8942
  $chip-outline-warning-border: $warning !default;
8872
8943
 
8873
- $chip-outline-error-bg: transparent !default;
8944
+ $chip-outline-warning-hover-bg: $warning !default;
8945
+ $chip-outline-warning-hover-text: $white !default;
8946
+ $chip-outline-warning-hover-border: null !default;
8947
+
8948
+ $chip-outline-warning-focus-bg: null !default;
8949
+ $chip-outline-warning-focus-text: null !default;
8950
+ $chip-outline-warning-focus-border: null !default;
8951
+
8952
+ $chip-outline-warning-selected-bg: $chip-outline-warning-hover-bg !default;
8953
+ $chip-outline-warning-selected-text: $chip-outline-warning-hover-text !default;
8954
+ $chip-outline-warning-selected-border: null !default;
8955
+
8956
+ $chip-outline-error-bg: null !default;
8874
8957
  $chip-outline-error-text: $error !default;
8875
8958
  $chip-outline-error-border: $error !default;
8876
8959
 
8877
- $chip-outline-info-bg: transparent !default;
8960
+ $chip-outline-error-hover-bg: $error !default;
8961
+ $chip-outline-error-hover-text: contrast-wcag( $chip-outline-error-hover-bg ) !default;
8962
+ $chip-outline-error-hover-border: null !default;
8963
+
8964
+ $chip-outline-error-focus-bg: null !default;
8965
+ $chip-outline-error-focus-text: null !default;
8966
+ $chip-outline-error-focus-border: null !default;
8967
+
8968
+ $chip-outline-error-selected-bg: $chip-outline-error-hover-bg !default;
8969
+ $chip-outline-error-selected-text: $chip-outline-error-hover-text !default;
8970
+ $chip-outline-error-selected-border: null !default;
8971
+
8972
+ $chip-outline-info-bg: null !default;
8878
8973
  $chip-outline-info-text: $info !default;
8879
8974
  $chip-outline-info-border: $info !default;
8880
8975
 
8881
- $chip-filled-single-selected-bg: rgba($primary, .12) !default;
8882
- $chip-filled-single-selected-text: $primary !default;
8883
- $chip-filled-single-selected-border: transparent !default;
8976
+ $chip-outline-info-hover-bg: $info !default;
8977
+ $chip-outline-info-hover-text: contrast-wcag( $chip-outline-info-hover-bg ) !default;
8978
+ $chip-outline-info-hover-border: null !default;
8979
+
8980
+ $chip-outline-info-focus-bg: null !default;
8981
+ $chip-outline-info-focus-text: null !default;
8982
+ $chip-outline-info-focus-border: null !default;
8884
8983
 
8885
- $chip-outline-single-selected-bg: $chip-filled-single-selected-bg !default;
8886
- $chip-outline-single-selected-text: $primary !default;
8887
- $chip-outline-single-selected-border: $primary !default;
8984
+ $chip-outline-info-selected-bg: $chip-outline-info-hover-bg !default;
8985
+ $chip-outline-info-selected-text: $chip-outline-info-hover-text !default;
8986
+ $chip-outline-info-selected-border: null !default;
8888
8987
 
8889
8988
  $chip-multiple-selected-icon-bg: rgba(0, 0, 0, .36) !default;
8890
8989
  $chip-multiple-selected-icon-text: #ffffff !default;
@@ -8892,10 +8991,10 @@ $chip-multiple-selected-icon-text: #ffffff !default;
8892
8991
 
8893
8992
  $chip-primary-focus-shadow: null !default;
8894
8993
  $chip-secondary-focus-shadow: null !default;
8895
- $chip-info-focus-shadow: null !default;
8896
- $chip-success-focus-shadow: null !default;
8897
- $chip-warning-focus-shadow: null !default;
8898
- $chip-error-focus-shadow: null !default;
8994
+ $chip-info-focus-shadow: 0 0 0 3px rgba( $info, .16 ) !default;
8995
+ $chip-success-focus-shadow: 0 0 0 3px rgba( $success, .16 ) !default;
8996
+ $chip-warning-focus-shadow: 0 0 0 3px rgba( $warning, .16 ) !default;
8997
+ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
8899
8998
 
8900
8999
  // #endregion
8901
9000
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/chip/_layout.scss
@@ -8937,11 +9036,9 @@ $chip-error-focus-shadow: null !default;
8937
9036
  font-size: $chip-selected-icon-font-size;
8938
9037
  }
8939
9038
 
8940
- .k-chip-selected {
8941
- .k-selected-icon-wrapper {
8942
- width: $chip-selected-icon-size;
8943
- visibility: visible;
8944
- }
9039
+ .k-chip.k-selected .k-selected-icon-wrapper {
9040
+ width: $chip-selected-icon-size;
9041
+ visibility: visible;
8945
9042
  }
8946
9043
 
8947
9044
  > .k-chip-has-icon {
@@ -8958,10 +9055,8 @@ $chip-error-focus-shadow: null !default;
8958
9055
  transition: width .2s, opacity .2s;
8959
9056
  }
8960
9057
 
8961
- &.k-chip-selected {
8962
- .k-selected-icon-wrapper {
8963
- opacity: 1;
8964
- }
9058
+ &.k-selected .k-selected-icon-wrapper {
9059
+ opacity: 1;
8965
9060
  }
8966
9061
  }
8967
9062
  }
@@ -8986,10 +9081,6 @@ $chip-error-focus-shadow: null !default;
8986
9081
  &.k-chip-focus {
8987
9082
  outline: 0;
8988
9083
  }
8989
-
8990
- &.k-chip-disabled {
8991
- @include disabled( $disabled-styling );
8992
- }
8993
9084
  }
8994
9085
 
8995
9086
  .k-chip-content {
@@ -9035,7 +9126,8 @@ $chip-error-focus-shadow: null !default;
9035
9126
 
9036
9127
  .k-chip-list {
9037
9128
  &[dir="rtl"],
9038
- .k-rtl & {
9129
+ .k-rtl &,
9130
+ &.k-rtl {
9039
9131
  > * {
9040
9132
  margin-right: 0;
9041
9133
  margin-left: $chips-margin;
@@ -9049,7 +9141,8 @@ $chip-error-focus-shadow: null !default;
9049
9141
 
9050
9142
  .k-chip {
9051
9143
  &[dir="rtl"],
9052
- .k-rtl & {
9144
+ .k-rtl &,
9145
+ &.k-rtl {
9053
9146
  .k-chip-icon {
9054
9147
  margin-left: 0;
9055
9148
  margin-right: $chip-icon-margin;
@@ -9085,91 +9178,192 @@ $chip-error-focus-shadow: null !default;
9085
9178
  // #region @import "~@progress/kendo-theme-default/scss/chip/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
9086
9179
  @include exports("chip/theme") {
9087
9180
 
9088
- .k-selection-single {
9089
- .k-chip-selected {
9090
- &.k-chip-filled {
9091
- @include fill(
9092
- $chip-filled-single-selected-text,
9093
- $chip-filled-single-selected-bg,
9094
- $chip-filled-single-selected-border
9095
- );
9096
- }
9097
-
9098
- &.k-chip-outline {
9099
- @include fill(
9100
- $chip-outline-single-selected-text,
9101
- $chip-outline-single-selected-bg,
9102
- $chip-outline-single-selected-border
9103
- );
9104
- }
9105
- }
9106
- }
9107
-
9108
- .k-selection-multiple {
9109
- > .k-chip-has-icon {
9110
- &.k-chip-selected {
9111
- .k-selected-icon-wrapper {
9112
- color: $chip-multiple-selected-icon-text;
9113
- background-color: $chip-multiple-selected-icon-bg;
9114
- }
9115
- }
9116
- }
9181
+ .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
9182
+ @include fill(
9183
+ $color: $chip-multiple-selected-icon-text,
9184
+ $bg: $chip-multiple-selected-icon-bg
9185
+ );
9117
9186
  }
9118
9187
 
9119
- .k-chip-filled {
9188
+ // Solid
9189
+ .k-chip-solid {
9120
9190
  @include fill(
9121
- $chip-filled-text,
9122
- $chip-filled-bg,
9123
- $chip-filled-border
9191
+ $chip-solid-text,
9192
+ $chip-solid-bg,
9193
+ $chip-solid-border
9124
9194
  );
9125
9195
 
9126
9196
  &:hover,
9127
- &.k-chip-hover {
9128
- background-color: $chip-filled-hovered-bg;
9129
- border-color: $chip-filled-hovered-border;
9197
+ &.k-state-hover,
9198
+ &.k-hover {
9199
+ @include fill(
9200
+ $bg: $chip-solid-hover-bg,
9201
+ $border: $chip-solid-hover-border
9202
+ );
9130
9203
  }
9131
9204
 
9132
9205
  &:focus,
9133
- &.k-chip-focused {
9134
- background-color: $chip-filled-focused-bg;
9135
- box-shadow: $chip-filled-focused-shadow;
9206
+ &.k-state-focus,
9207
+ &.k-focus {
9208
+ @include box-shadow( $chip-solid-focus-shadow );
9209
+ @include fill( $bg: $chip-solid-focus-bg );
9136
9210
  }
9137
9211
 
9138
- &.k-chip-selected {
9139
- background-color: $chip-filled-selected-bg;
9140
- border-color: $chip-filled-selected-border;
9212
+ &.k-state-selected,
9213
+ &.k-selected {
9214
+ @include fill(
9215
+ $bg: $chip-solid-selected-bg,
9216
+ $border: $chip-solid-selected-border
9217
+ );
9141
9218
  }
9142
9219
 
9143
9220
  &.k-chip-success {
9144
9221
  @include fill(
9145
- $chip-filled-success-text,
9146
- $chip-filled-success-bg,
9147
- $chip-filled-success-border
9222
+ $chip-solid-success-text,
9223
+ $chip-solid-success-bg,
9224
+ $chip-solid-success-border
9148
9225
  );
9226
+
9227
+ &:hover,
9228
+ &.k-state-hover,
9229
+ &.k-hover {
9230
+ @include fill(
9231
+ $chip-solid-success-hover-text,
9232
+ $chip-solid-success-hover-bg,
9233
+ $chip-solid-success-hover-border
9234
+ );
9235
+ }
9236
+
9237
+ &:focus,
9238
+ &.k-state-focus,
9239
+ &.k-focus {
9240
+ @include fill(
9241
+ $chip-solid-success-focus-text,
9242
+ $chip-solid-success-focus-bg,
9243
+ $chip-solid-success-focus-border
9244
+ );
9245
+ }
9246
+
9247
+ &.k-state-selected,
9248
+ &.k-selected {
9249
+ @include fill(
9250
+ $chip-solid-success-selected-text,
9251
+ $chip-solid-success-selected-bg,
9252
+ $chip-solid-success-selected-border
9253
+ );
9254
+ }
9149
9255
  }
9150
9256
 
9257
+
9151
9258
  &.k-chip-warning {
9152
9259
  @include fill(
9153
- $chip-filled-warning-text,
9154
- $chip-filled-warning-bg,
9155
- $chip-filled-warning-border
9260
+ $chip-solid-warning-text,
9261
+ $chip-solid-warning-bg,
9262
+ $chip-solid-warning-border
9156
9263
  );
9264
+
9265
+ &:hover,
9266
+ &.k-state-hover,
9267
+ &.k-hover {
9268
+ @include fill(
9269
+ $chip-solid-warning-hover-text,
9270
+ $chip-solid-warning-hover-bg,
9271
+ $chip-solid-warning-hover-border
9272
+ );
9273
+ }
9274
+
9275
+ &:focus,
9276
+ &.k-state-focus,
9277
+ &.k-focus {
9278
+ @include fill(
9279
+ $chip-solid-warning-focus-text,
9280
+ $chip-solid-warning-focus-bg,
9281
+ $chip-solid-warning-focus-border
9282
+ );
9283
+ }
9284
+
9285
+ &.k-state-selected,
9286
+ &.k-selected {
9287
+ @include fill(
9288
+ $chip-solid-warning-selected-text,
9289
+ $chip-solid-warning-selected-bg,
9290
+ $chip-solid-warning-selected-border
9291
+ );
9292
+ }
9157
9293
  }
9158
9294
 
9159
9295
  &.k-chip-error {
9160
9296
  @include fill(
9161
- $chip-filled-error-text,
9162
- $chip-filled-error-bg,
9163
- $chip-filled-error-border
9297
+ $chip-solid-error-text,
9298
+ $chip-solid-error-bg,
9299
+ $chip-solid-error-border
9164
9300
  );
9301
+
9302
+ &:hover,
9303
+ &.k-state-hover,
9304
+ &.k-hover {
9305
+ @include fill(
9306
+ $chip-solid-error-hover-text,
9307
+ $chip-solid-error-hover-bg,
9308
+ $chip-solid-error-hover-border
9309
+ );
9310
+ }
9311
+
9312
+ &:focus,
9313
+ &.k-state-focus,
9314
+ &.k-focus {
9315
+ @include fill(
9316
+ $chip-solid-error-focus-text,
9317
+ $chip-solid-error-focus-bg,
9318
+ $chip-solid-error-focus-border
9319
+ );
9320
+ }
9321
+
9322
+ &.k-state-selected,
9323
+ &.k-selected {
9324
+ @include fill(
9325
+ $chip-solid-error-selected-text,
9326
+ $chip-solid-error-selected-bg,
9327
+ $chip-solid-error-selected-border
9328
+ );
9329
+ }
9165
9330
  }
9166
9331
 
9167
9332
  &.k-chip-info {
9168
9333
  @include fill(
9169
- $chip-filled-info-text,
9170
- $chip-filled-info-bg,
9171
- $chip-filled-info-border
9334
+ $chip-solid-info-text,
9335
+ $chip-solid-info-bg,
9336
+ $chip-solid-info-border
9172
9337
  );
9338
+
9339
+ &:hover,
9340
+ &.k-state-hover,
9341
+ &.k-hover {
9342
+ @include fill(
9343
+ $chip-solid-info-hover-text,
9344
+ $chip-solid-info-hover-bg,
9345
+ $chip-solid-info-hover-border
9346
+ );
9347
+ }
9348
+
9349
+ &:focus,
9350
+ &.k-state-focus,
9351
+ &.k-focus {
9352
+ @include fill(
9353
+ $chip-solid-info-focus-text,
9354
+ $chip-solid-info-focus-bg,
9355
+ $chip-solid-info-focus-border
9356
+ );
9357
+ }
9358
+
9359
+ &.k-state-selected,
9360
+ &.k-selected {
9361
+ @include fill(
9362
+ $chip-solid-info-selected-text,
9363
+ $chip-solid-info-selected-bg,
9364
+ $chip-solid-info-selected-border
9365
+ );
9366
+ }
9173
9367
  }
9174
9368
  }
9175
9369
 
@@ -9181,27 +9375,32 @@ $chip-error-focus-shadow: null !default;
9181
9375
  );
9182
9376
 
9183
9377
  &:hover,
9184
- &.k-chip-hover {
9378
+ &.k-state-hover,
9379
+ &.k-hover {
9185
9380
  @include fill(
9186
- $chip-outline-hovered-text,
9187
- $chip-outline-hovered-bg,
9188
- $chip-outline-hovered-border
9381
+ $chip-outline-hover-text,
9382
+ $chip-outline-hover-bg,
9383
+ $chip-outline-hover-border
9189
9384
  );
9190
9385
  }
9191
9386
 
9192
9387
  &:focus,
9193
- &.k-chip-focused {
9388
+ &.k-state-focus,
9389
+ &.k-focus {
9390
+ @include box-shadow( $chip-outline-focus-shadow );
9194
9391
  @include fill(
9195
- $chip-outline-focused-text,
9196
- $chip-outline-focused-bg,
9197
- $chip-outline-focused-border
9392
+ $chip-outline-focus-text,
9393
+ $chip-outline-focus-bg,
9394
+ $chip-outline-focus-border
9198
9395
  );
9199
- box-shadow: $chip-outline-focused-shadow;
9200
9396
  }
9201
9397
 
9202
- &.k-chip-selected {
9203
- color: $chip-outline-selected-text;
9204
- background-color: $chip-outline-selected-bg;
9398
+ &.k-state-selected,
9399
+ &.k-selected {
9400
+ @include fill(
9401
+ $color: $chip-outline-selected-text,
9402
+ $bg: $chip-outline-selected-bg
9403
+ );
9205
9404
  }
9206
9405
 
9207
9406
  &.k-chip-success {
@@ -9210,6 +9409,35 @@ $chip-error-focus-shadow: null !default;
9210
9409
  $chip-outline-success-bg,
9211
9410
  $chip-outline-success-border
9212
9411
  );
9412
+
9413
+ &:hover,
9414
+ &.k-state-hover,
9415
+ &.k-hover {
9416
+ @include fill(
9417
+ $chip-outline-success-hover-text,
9418
+ $chip-outline-success-hover-bg,
9419
+ $chip-outline-success-hover-border
9420
+ );
9421
+ }
9422
+
9423
+ &:focus,
9424
+ &.k-state-focus,
9425
+ &.k-focus {
9426
+ @include fill(
9427
+ $chip-outline-success-focus-text,
9428
+ $chip-outline-success-focus-bg,
9429
+ $chip-outline-success-focus-border
9430
+ );
9431
+ }
9432
+
9433
+ &.k-state-selected,
9434
+ &.k-selected {
9435
+ @include fill(
9436
+ $chip-outline-success-selected-text,
9437
+ $chip-outline-success-selected-bg,
9438
+ $chip-outline-success-selected-border
9439
+ );
9440
+ }
9213
9441
  }
9214
9442
 
9215
9443
  &.k-chip-warning {
@@ -9218,60 +9446,142 @@ $chip-error-focus-shadow: null !default;
9218
9446
  $chip-outline-warning-bg,
9219
9447
  $chip-outline-warning-border
9220
9448
  );
9449
+
9450
+ &:hover,
9451
+ &.k-state-hover,
9452
+ &.k-hover {
9453
+ @include fill(
9454
+ $chip-outline-warning-hover-text,
9455
+ $chip-outline-warning-hover-bg,
9456
+ $chip-outline-warning-hover-border
9457
+ );
9458
+ }
9459
+
9460
+ &:focus,
9461
+ &.k-state-focus,
9462
+ &.k-focus {
9463
+ @include fill(
9464
+ $chip-outline-warning-focus-text,
9465
+ $chip-outline-warning-focus-bg,
9466
+ $chip-outline-warning-focus-border
9467
+ );
9468
+ }
9469
+
9470
+ &.k-state-selected,
9471
+ &.k-selected {
9472
+ @include fill(
9473
+ $chip-outline-warning-selected-text,
9474
+ $chip-outline-warning-selected-bg,
9475
+ $chip-outline-warning-selected-border
9476
+ );
9477
+ }
9221
9478
  }
9222
9479
 
9480
+
9223
9481
  &.k-chip-error {
9224
9482
  @include fill(
9225
9483
  $chip-outline-error-text,
9226
9484
  $chip-outline-error-bg,
9227
9485
  $chip-outline-error-border
9228
9486
  );
9487
+
9488
+ &:hover,
9489
+ &.k-state-hover,
9490
+ &.k-hover {
9491
+ @include fill(
9492
+ $chip-outline-error-hover-text,
9493
+ $chip-outline-error-hover-bg,
9494
+ $chip-outline-error-hover-border
9495
+ );
9496
+ }
9497
+
9498
+ &:focus,
9499
+ &.k-state-focus,
9500
+ &.k-focus {
9501
+ @include fill(
9502
+ $chip-outline-error-focus-text,
9503
+ $chip-outline-error-focus-bg,
9504
+ $chip-outline-error-focus-border
9505
+ );
9506
+ }
9507
+
9508
+ &.k-state-selected,
9509
+ &.k-selected {
9510
+ @include fill(
9511
+ $chip-outline-error-selected-text,
9512
+ $chip-outline-error-selected-bg,
9513
+ $chip-outline-error-selected-border
9514
+ );
9515
+ }
9229
9516
  }
9230
9517
 
9518
+
9231
9519
  &.k-chip-info {
9232
9520
  @include fill(
9233
9521
  $chip-outline-info-text,
9234
9522
  $chip-outline-info-bg,
9235
9523
  $chip-outline-info-border
9236
9524
  );
9237
- }
9238
- }
9239
9525
 
9526
+ &:hover,
9527
+ &.k-state-hover,
9528
+ &.k-hover {
9529
+ @include fill(
9530
+ $chip-outline-info-hover-text,
9531
+ $chip-outline-info-hover-bg,
9532
+ $chip-outline-info-hover-border
9533
+ );
9534
+ }
9240
9535
 
9241
- // Chip colors
9242
- .k-chip-primary {
9536
+ &:focus,
9537
+ &.k-state-focus,
9538
+ &.k-focus {
9539
+ @include fill(
9540
+ $chip-outline-info-focus-text,
9541
+ $chip-outline-info-focus-bg,
9542
+ $chip-outline-info-focus-border
9543
+ );
9544
+ }
9243
9545
 
9244
- &:focus,
9245
- &.k-chip-focus {
9246
- box-shadow: $chip-primary-focus-shadow;
9546
+ &.k-state-selected,
9547
+ &.k-selected {
9548
+ @include fill(
9549
+ $chip-outline-info-selected-text,
9550
+ $chip-outline-info-selected-bg,
9551
+ $chip-outline-info-selected-border
9552
+ );
9553
+ }
9247
9554
  }
9248
9555
  }
9249
- .k-chip-info {
9250
9556
 
9557
+
9558
+ // Chip colors
9559
+ .k-chip-info {
9251
9560
  &:focus,
9252
- &.k-chip-focus {
9253
- box-shadow: $chip-info-focus-shadow;
9561
+ &.k-state-focus,
9562
+ &.k-focus {
9563
+ @include box-shadow( $chip-info-focus-shadow );
9254
9564
  }
9255
9565
  }
9256
9566
  .k-chip-success {
9257
-
9258
9567
  &:focus,
9259
- &.k-chip-focus {
9260
- box-shadow: $chip-success-focus-shadow;
9568
+ &.k-state-focus,
9569
+ &.k-focus {
9570
+ @include box-shadow( $chip-success-focus-shadow );
9261
9571
  }
9262
9572
  }
9263
9573
  .k-chip-warning {
9264
-
9265
9574
  &:focus,
9266
- &.k-chip-focus {
9267
- box-shadow: $chip-warning-focus-shadow;
9575
+ &.k-state-focus,
9576
+ &.k-focus {
9577
+ @include box-shadow( $chip-warning-focus-shadow );
9268
9578
  }
9269
9579
  }
9270
9580
  .k-chip-error {
9271
-
9272
9581
  &:focus,
9273
- &.k-chip-focus {
9274
- box-shadow: $chip-error-focus-shadow;
9582
+ &.k-state-focus,
9583
+ &.k-focus {
9584
+ @include box-shadow( $chip-error-focus-shadow );
9275
9585
  }
9276
9586
  }
9277
9587
 
@@ -39943,6 +40253,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
39943
40253
  }
39944
40254
  }
39945
40255
 
40256
+ &.k-scheduler-timeline-view .k-scheduler-body .k-scheduler-cell {
40257
+ flex-basis: auto;
40258
+ }
39946
40259
 
39947
40260
 
39948
40261
  .k-more-events {