@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.css +414 -91
- package/dist/all.scss +502 -191
- package/package.json +2 -2
- package/scss/chip/_layout.scss +9 -15
- package/scss/chip/_theme.scss +302 -85
- package/scss/chip/_variables.scss +139 -50
- package/scss/core/mixins/_index.scss +1 -1
- package/scss/scheduler/_layout.scss +3 -0
- package/scss/styling/_index.scss +1 -1
- package/scss/utils/_border.scss +11 -2
- package/scss/utils/_index.scss +1 -0
- package/scss/{common/_decoration.scss → utils/_theme-colors.scss} +15 -19
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 "../
|
|
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-
|
|
2948
|
-
.k-
|
|
2949
|
-
|
|
2950
|
-
|
|
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
|
|
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
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
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
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
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-
|
|
6682
|
-
|
|
6683
|
-
$chip-
|
|
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-
|
|
6686
|
-
$chip-
|
|
6687
|
-
$chip-
|
|
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-
|
|
6690
|
-
$chip-
|
|
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-
|
|
6693
|
-
$chip-
|
|
6694
|
-
$chip-
|
|
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-
|
|
6697
|
-
$chip-
|
|
6698
|
-
$chip-
|
|
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-
|
|
6701
|
-
$chip-
|
|
6702
|
-
$chip-
|
|
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-
|
|
6705
|
-
$chip-
|
|
6706
|
-
$chip-
|
|
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-
|
|
6709
|
-
$chip-
|
|
6710
|
-
$chip-
|
|
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-
|
|
6713
|
-
$chip-
|
|
6714
|
-
$chip-
|
|
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-
|
|
6717
|
-
$chip-
|
|
6718
|
-
$chip-
|
|
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-
|
|
6721
|
-
$chip-
|
|
6722
|
-
$chip-
|
|
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-
|
|
6726
|
-
$chip-
|
|
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-
|
|
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:
|
|
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:
|
|
6802
|
+
$chip-outline-warning-bg: null !default;
|
|
6733
6803
|
$chip-outline-warning-text: $warning !default;
|
|
6734
|
-
$chip-outline-warning-border:
|
|
6804
|
+
$chip-outline-warning-border: $warning !default;
|
|
6735
6805
|
|
|
6736
|
-
$chip-outline-
|
|
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:
|
|
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-
|
|
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:
|
|
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-
|
|
6745
|
-
$chip-
|
|
6746
|
-
$chip-
|
|
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-
|
|
6749
|
-
$chip-outline-
|
|
6750
|
-
$chip-outline-
|
|
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
|
-
|
|
6804
|
-
|
|
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-
|
|
6824
|
-
|
|
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-
|
|
6948
|
-
|
|
6949
|
-
|
|
6950
|
-
|
|
6951
|
-
|
|
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
|
-
|
|
7045
|
+
// Solid
|
|
7046
|
+
.k-chip-solid {
|
|
6979
7047
|
@include fill(
|
|
6980
|
-
$chip-
|
|
6981
|
-
$chip-
|
|
6982
|
-
$chip-
|
|
7048
|
+
$chip-solid-text,
|
|
7049
|
+
$chip-solid-bg,
|
|
7050
|
+
$chip-solid-border
|
|
6983
7051
|
);
|
|
6984
7052
|
|
|
6985
7053
|
&:hover,
|
|
6986
|
-
&.k-
|
|
6987
|
-
|
|
6988
|
-
|
|
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-
|
|
6993
|
-
|
|
6994
|
-
box-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-
|
|
6998
|
-
|
|
6999
|
-
|
|
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-
|
|
7005
|
-
$chip-
|
|
7006
|
-
$chip-
|
|
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-
|
|
7013
|
-
$chip-
|
|
7014
|
-
$chip-
|
|
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-
|
|
7021
|
-
$chip-
|
|
7022
|
-
$chip-
|
|
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-
|
|
7029
|
-
$chip-
|
|
7030
|
-
$chip-
|
|
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-
|
|
7235
|
+
&.k-state-hover,
|
|
7236
|
+
&.k-hover {
|
|
7044
7237
|
@include fill(
|
|
7045
|
-
$chip-outline-
|
|
7046
|
-
$chip-outline-
|
|
7047
|
-
$chip-outline-
|
|
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-
|
|
7245
|
+
&.k-state-focus,
|
|
7246
|
+
&.k-focus {
|
|
7247
|
+
@include box-shadow( $chip-outline-focus-shadow );
|
|
7053
7248
|
@include fill(
|
|
7054
|
-
$chip-outline-
|
|
7055
|
-
$chip-outline-
|
|
7056
|
-
$chip-outline-
|
|
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-
|
|
7062
|
-
|
|
7063
|
-
|
|
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
|
-
|
|
7101
|
-
|
|
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
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
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-
|
|
7112
|
-
|
|
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-
|
|
7119
|
-
|
|
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-
|
|
7126
|
-
|
|
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-
|
|
7133
|
-
|
|
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 {
|