@progress/kendo-theme-material 7.2.2-dev.0 → 7.3.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +219 -1092
- package/dist/all.scss +667 -182
- package/dist/meta/sassdoc-data.json +43525 -32215
- package/dist/meta/sassdoc-raw-data.json +13681 -8456
- package/dist/meta/variables.json +12 -0
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/calendar/_variables.scss +195 -4
- package/scss/drawer/_variables.scss +65 -0
- package/scss/floating-label/_layout.scss +2 -2
- package/scss/floating-label/_theme.scss +4 -4
- package/scss/panelbar/_variables.scss +166 -0
package/dist/all.scss
CHANGED
|
@@ -711,27 +711,129 @@ $kendo-color-level-step: 8% !default;
|
|
|
711
711
|
@return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
|
|
712
712
|
}
|
|
713
713
|
|
|
714
|
+
// #endregion
|
|
715
|
+
// #region @import "./_color-variations.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color-variations.import.scss
|
|
714
716
|
/// Generates all color variations of a given main color
|
|
715
717
|
/// @param {String} $name - The name of the main color
|
|
716
|
-
/// @param {Color} $
|
|
718
|
+
/// @param {Color} $color - The color value to be assigned to the main color
|
|
719
|
+
/// @param {String} $theme - The theme the colors will be generated for
|
|
717
720
|
/// @return {Map} - A map with the generated keys and values
|
|
718
721
|
///
|
|
719
722
|
/// @group color-system
|
|
720
|
-
@function k-generate-
|
|
721
|
-
$
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
723
|
+
@function k-generate-color-variations( $name, $color, $theme: null ) {
|
|
724
|
+
$result: ();
|
|
725
|
+
|
|
726
|
+
// DataViz
|
|
727
|
+
@if (
|
|
728
|
+
$name == 'series-a' or
|
|
729
|
+
$name == 'series-b' or
|
|
730
|
+
$name == 'series-c' or
|
|
731
|
+
$name == 'series-d' or
|
|
732
|
+
$name == 'series-e' or
|
|
733
|
+
$name == 'series-f'
|
|
734
|
+
) {
|
|
735
|
+
$_variations: (
|
|
736
|
+
#{$name}: $color,
|
|
737
|
+
#{$name}-bold: k-color-mix(black, $color, 25%),
|
|
738
|
+
#{$name}-bolder: k-color-mix(black, $color, 50%),
|
|
739
|
+
#{$name}-subtle: k-color-mix(white, $color, 25%),
|
|
740
|
+
#{$name}-subtler: k-color-mix(white, $color, 50%),
|
|
741
|
+
);
|
|
742
|
+
|
|
743
|
+
$result: k-map-merge($result, $_variations);
|
|
744
|
+
} @else {
|
|
745
|
+
// Default
|
|
746
|
+
@if ( $theme == 'default' or $theme == null ) { // stylelint-disable-line
|
|
747
|
+
$_variations: (
|
|
748
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 4% ), k-try-tint( $color, 80% )),
|
|
749
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
750
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 13% ), k-try-tint( $color, 50% )),
|
|
751
|
+
#{$name}: $color,
|
|
752
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
753
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
754
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
755
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 65% )),
|
|
756
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 75% ), k-contrast-legacy( $color )),
|
|
757
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 25% )),
|
|
758
|
+
);
|
|
759
|
+
|
|
760
|
+
$result: k-map-merge($result, $_variations);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
// Bootstrap
|
|
764
|
+
@if ( $theme == 'bootstrap' ) {
|
|
765
|
+
$_variations: (
|
|
766
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 30% ), k-try-tint( $color, 80% )),
|
|
767
|
+
#{$name}-subtle-hover: if( $name == 'base', $color, k-try-tint($color, 65% )),
|
|
768
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint( $color, 50% )),
|
|
769
|
+
#{$name}: $color,
|
|
770
|
+
#{$name}-hover: k-color-darken( $color, 7.5% ),
|
|
771
|
+
#{$name}-active: k-color-darken( $color, 10% ),
|
|
772
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
773
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
774
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-color( $color )),
|
|
775
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
776
|
+
);
|
|
777
|
+
|
|
778
|
+
$result: k-map-merge($result, $_variations);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
// Material
|
|
782
|
+
@if ( $theme == 'material' ) {
|
|
783
|
+
$_variations: (
|
|
784
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 80% )),
|
|
785
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 16% ), k-try-tint($color, 65% )),
|
|
786
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 24% ), k-try-tint( $color, 50% )),
|
|
787
|
+
#{$name}: $color,
|
|
788
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
789
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
790
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 32% ), k-try-tint( $color, 25% )),
|
|
791
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 65% )),
|
|
792
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 87% ), k-contrast-color( $color )),
|
|
793
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 50% )),
|
|
794
|
+
);
|
|
795
|
+
|
|
796
|
+
$result: k-map-merge($result, $_variations);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
// Fluent
|
|
800
|
+
@if ( $theme == 'fluent' ) {
|
|
801
|
+
$_variations: (
|
|
802
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 2% ), k-try-tint( $color, 80% )),
|
|
803
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
804
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 50% )),
|
|
805
|
+
#{$name}: $color,
|
|
806
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
807
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
808
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 18% ), k-try-tint( $color, 25% )),
|
|
809
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 74% ), k-try-shade( $color, 65% )),
|
|
810
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 86% ), k-contrast-legacy( $color )),
|
|
811
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 86% ), k-try-shade( $color, 25% )),
|
|
812
|
+
);
|
|
813
|
+
|
|
814
|
+
$result: k-map-merge($result, $_variations);
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
// Classic
|
|
818
|
+
@if ( $theme == 'classic' ) {
|
|
819
|
+
$_variations: (
|
|
820
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 20% ), k-try-tint( $color, 80% )),
|
|
821
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-tint( $color, 8% ), k-try-tint($color, 65% )),
|
|
822
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 6% ), k-try-tint( $color, 50% )),
|
|
823
|
+
#{$name}: $color,
|
|
824
|
+
#{$name}-hover: k-try-shade( $color, 1 ),
|
|
825
|
+
#{$name}-active: k-try-shade( $color, 2 ),
|
|
826
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 14% ), k-try-tint( $color, 25% )),
|
|
827
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
828
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-legacy( $color )),
|
|
829
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
830
|
+
);
|
|
831
|
+
|
|
832
|
+
$result: k-map-merge($result, $_variations);
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
@return $result;
|
|
735
837
|
}
|
|
736
838
|
// #endregion
|
|
737
839
|
// #region @import "./_custom-properties.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
|
|
@@ -7883,13 +7985,57 @@ $_kendo-module-meta: (
|
|
|
7883
7985
|
|
|
7884
7986
|
// #endregion
|
|
7885
7987
|
// #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
|
|
7988
|
+
// #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
7989
|
+
// File already imported_once. Skipping output.
|
|
7990
|
+
// #endregion
|
|
7991
|
+
|
|
7886
7992
|
$kendo-prefix: k- !default;
|
|
7887
7993
|
$kendo-important: true !default;
|
|
7994
|
+
$kendo-enable-color-system: false !default;
|
|
7888
7995
|
|
|
7889
7996
|
$kendo-theme-colors: () !default;
|
|
7890
7997
|
|
|
7891
7998
|
$kendo-font-sizes: () !default;
|
|
7892
7999
|
|
|
8000
|
+
$kendo-util-colors-list: (
|
|
8001
|
+
primary-subtle,
|
|
8002
|
+
primary,
|
|
8003
|
+
primary-emphasis,
|
|
8004
|
+
secondary-subtle,
|
|
8005
|
+
secondary,
|
|
8006
|
+
secondary-emphasis,
|
|
8007
|
+
tertiary-subtle,
|
|
8008
|
+
tertiary,
|
|
8009
|
+
tertiary-emphasis,
|
|
8010
|
+
info-subtle,
|
|
8011
|
+
info,
|
|
8012
|
+
info-emphasis,
|
|
8013
|
+
success-subtle,
|
|
8014
|
+
success,
|
|
8015
|
+
success-emphasis,
|
|
8016
|
+
warning-subtle,
|
|
8017
|
+
warning,
|
|
8018
|
+
warning-emphasis,
|
|
8019
|
+
error-subtle,
|
|
8020
|
+
error,
|
|
8021
|
+
error-emphasis,
|
|
8022
|
+
light-subtle,
|
|
8023
|
+
light,
|
|
8024
|
+
light-emphasis,
|
|
8025
|
+
dark-subtle,
|
|
8026
|
+
dark,
|
|
8027
|
+
dark-emphasis,
|
|
8028
|
+
) !default;
|
|
8029
|
+
|
|
8030
|
+
$kendo-util-colors: () !default;
|
|
8031
|
+
@each $name, $color in $kendo-colors {
|
|
8032
|
+
@each $util-color in $kendo-util-colors-list {
|
|
8033
|
+
@if ( $name == $util-color ) {
|
|
8034
|
+
$kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
}
|
|
8038
|
+
|
|
7893
8039
|
$kendo-spacing: (
|
|
7894
8040
|
0: 0,
|
|
7895
8041
|
1px: 1px,
|
|
@@ -8577,7 +8723,7 @@ $kendo-utils: (
|
|
|
8577
8723
|
start,
|
|
8578
8724
|
end
|
|
8579
8725
|
),
|
|
8580
|
-
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
8726
|
+
"text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8581
8727
|
"inherit": inherit,
|
|
8582
8728
|
"current": currentColor,
|
|
8583
8729
|
"transparent": transparent,
|
|
@@ -8632,7 +8778,7 @@ $kendo-utils: (
|
|
|
8632
8778
|
content: content-box,
|
|
8633
8779
|
text: text
|
|
8634
8780
|
),
|
|
8635
|
-
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
8781
|
+
"background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8636
8782
|
"inherit": inherit,
|
|
8637
8783
|
"transparent": transparent,
|
|
8638
8784
|
"black": black,
|
|
@@ -8675,7 +8821,7 @@ $kendo-utils: (
|
|
|
8675
8821
|
hidden,
|
|
8676
8822
|
none
|
|
8677
8823
|
),
|
|
8678
|
-
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
8824
|
+
"border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8679
8825
|
"inherit": inherit,
|
|
8680
8826
|
"current": currentColor,
|
|
8681
8827
|
"transparent": transparent,
|
|
@@ -8701,7 +8847,7 @@ $kendo-utils: (
|
|
|
8701
8847
|
outset,
|
|
8702
8848
|
none
|
|
8703
8849
|
),
|
|
8704
|
-
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
8850
|
+
"outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8705
8851
|
"inherit": inherit,
|
|
8706
8852
|
"current": currentColor,
|
|
8707
8853
|
"transparent": transparent,
|
|
@@ -8920,7 +9066,7 @@ $kendo-utils: (
|
|
|
8920
9066
|
|
|
8921
9067
|
// #endregion
|
|
8922
9068
|
// #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
|
|
8923
|
-
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
|
|
9069
|
+
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
|
|
8924
9070
|
@if $values {
|
|
8925
9071
|
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
|
|
8926
9072
|
$_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
|
|
@@ -8930,25 +9076,33 @@ $kendo-utils: (
|
|
|
8930
9076
|
$_val: if( k-meta-type-of($values) == list, $key, $val );
|
|
8931
9077
|
$_name: k-escape-class-name( $name );
|
|
8932
9078
|
$_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
|
|
9079
|
+
$_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
|
|
8933
9080
|
|
|
8934
9081
|
@if $important != only {
|
|
8935
9082
|
.#{$_selector} {
|
|
8936
9083
|
@each $prop in $_props {
|
|
8937
|
-
|
|
9084
|
+
@if $css-var {
|
|
9085
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
|
|
9086
|
+
} @else {
|
|
9087
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
|
|
9088
|
+
}
|
|
8938
9089
|
}
|
|
8939
9090
|
}
|
|
8940
9091
|
}
|
|
8941
9092
|
@if $important {
|
|
8942
9093
|
.\!#{$_selector} {
|
|
8943
9094
|
@each $prop in $_props {
|
|
8944
|
-
|
|
9095
|
+
@if $css-var {
|
|
9096
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
|
|
9097
|
+
} @else {
|
|
9098
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
9099
|
+
}
|
|
8945
9100
|
}
|
|
8946
9101
|
}
|
|
8947
9102
|
}
|
|
8948
9103
|
}
|
|
8949
9104
|
}
|
|
8950
9105
|
}
|
|
8951
|
-
|
|
8952
9106
|
// #endregion
|
|
8953
9107
|
|
|
8954
9108
|
// #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
|
|
@@ -13002,11 +13156,11 @@ $kendo-utils: (
|
|
|
13002
13156
|
|
|
13003
13157
|
// Text color utility classes
|
|
13004
13158
|
$kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
|
|
13005
|
-
@include generate-utils( text, color, $kendo-utils-text-color );
|
|
13159
|
+
@include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13006
13160
|
|
|
13007
13161
|
|
|
13008
13162
|
// Legacy aliases
|
|
13009
|
-
@include generate-utils( color, color, $kendo-utils-text-color );
|
|
13163
|
+
@include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13010
13164
|
|
|
13011
13165
|
}
|
|
13012
13166
|
|
|
@@ -13304,7 +13458,7 @@ $kendo-utils: (
|
|
|
13304
13458
|
|
|
13305
13459
|
// Background color utility classes
|
|
13306
13460
|
$kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
|
|
13307
|
-
@include generate-utils( bg, background-color, $kendo-utils-background-color );
|
|
13461
|
+
@include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
|
|
13308
13462
|
|
|
13309
13463
|
}
|
|
13310
13464
|
|
|
@@ -13448,13 +13602,7 @@ $kendo-utils: (
|
|
|
13448
13602
|
|
|
13449
13603
|
// Border color utility classes
|
|
13450
13604
|
$kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
|
|
13451
|
-
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
13452
|
-
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
13453
|
-
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
13454
|
-
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
13455
|
-
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
13456
|
-
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
13457
|
-
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
13605
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
|
|
13458
13606
|
|
|
13459
13607
|
}
|
|
13460
13608
|
|
|
@@ -14334,7 +14482,7 @@ $kendo-utils: (
|
|
|
14334
14482
|
|
|
14335
14483
|
// Outline color utility classes
|
|
14336
14484
|
$kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
|
|
14337
|
-
@include generate-utils( outline, outline-color, $kendo-utils-outline-color );
|
|
14485
|
+
@include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
|
|
14338
14486
|
|
|
14339
14487
|
}
|
|
14340
14488
|
|
|
@@ -15724,7 +15872,7 @@ $kendo-utils: (
|
|
|
15724
15872
|
// #endregion
|
|
15725
15873
|
|
|
15726
15874
|
@mixin kendo-utils--elevation {
|
|
15727
|
-
@include generate-utils(elevation, box-shadow, $kendo-elevation);
|
|
15875
|
+
@include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
|
|
15728
15876
|
}
|
|
15729
15877
|
|
|
15730
15878
|
// #endregion
|
|
@@ -25690,19 +25838,6 @@ $kendo-form-sizes: (
|
|
|
25690
25838
|
}
|
|
25691
25839
|
}
|
|
25692
25840
|
|
|
25693
|
-
.k-input-label {
|
|
25694
|
-
margin-right: $kendo-horizontal-form-label-margin-x;
|
|
25695
|
-
z-index: 1;
|
|
25696
|
-
|
|
25697
|
-
&:dir(rtl),
|
|
25698
|
-
.k-rtl &,
|
|
25699
|
-
&.k-rtl,
|
|
25700
|
-
[dir="rtl"] &,
|
|
25701
|
-
&[dir="rtl"] {
|
|
25702
|
-
margin-right: 0;
|
|
25703
|
-
margin-left: $kendo-horizontal-form-label-margin-x;
|
|
25704
|
-
}
|
|
25705
|
-
}
|
|
25706
25841
|
|
|
25707
25842
|
|
|
25708
25843
|
// Vertical Form
|
|
@@ -27841,7 +27976,7 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27841
27976
|
box-sizing: border-box;
|
|
27842
27977
|
}
|
|
27843
27978
|
|
|
27844
|
-
> .k-label {
|
|
27979
|
+
> .k-floating-label {
|
|
27845
27980
|
max-width: $kendo-floating-label-max-width;
|
|
27846
27981
|
font-size: $kendo-floating-label-font-size;
|
|
27847
27982
|
line-height: $kendo-floating-label-line-height;
|
|
@@ -27856,13 +27991,9 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27856
27991
|
transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, left $kendo-floating-label-transition;
|
|
27857
27992
|
}
|
|
27858
27993
|
|
|
27859
|
-
> .k-widget {
|
|
27860
|
-
flex: 1 1 auto;
|
|
27861
|
-
width: auto;
|
|
27862
|
-
}
|
|
27863
27994
|
|
|
27864
27995
|
&.k-empty {
|
|
27865
|
-
> .k-label {
|
|
27996
|
+
> .k-floating-label {
|
|
27866
27997
|
top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
|
|
27867
27998
|
left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
27868
27999
|
transform: scale( $kendo-floating-label-scale );
|
|
@@ -27870,13 +28001,13 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27870
28001
|
}
|
|
27871
28002
|
}
|
|
27872
28003
|
|
|
27873
|
-
> .k-label,
|
|
27874
|
-
&.k-focus > .k-label {
|
|
28004
|
+
> .k-floating-label,
|
|
28005
|
+
&.k-focus > .k-floating-label {
|
|
27875
28006
|
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
27876
28007
|
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
27877
28008
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
27878
28009
|
}
|
|
27879
|
-
&:focus-within > .k-label {
|
|
28010
|
+
&:focus-within > .k-floating-label {
|
|
27880
28011
|
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
27881
28012
|
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
27882
28013
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
@@ -27890,24 +28021,24 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27890
28021
|
.k-rtl &,
|
|
27891
28022
|
&[dir="rtl"] {
|
|
27892
28023
|
|
|
27893
|
-
> .k-label {
|
|
28024
|
+
> .k-floating-label {
|
|
27894
28025
|
transform-origin: right center;
|
|
27895
28026
|
transition: transform $kendo-floating-label-transition, color $kendo-floating-label-transition, top $kendo-floating-label-transition, right $kendo-floating-label-transition;
|
|
27896
28027
|
}
|
|
27897
28028
|
|
|
27898
28029
|
&.k-empty {
|
|
27899
|
-
> .k-label {
|
|
28030
|
+
> .k-floating-label {
|
|
27900
28031
|
left: auto;
|
|
27901
28032
|
right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
27902
28033
|
}
|
|
27903
28034
|
}
|
|
27904
28035
|
|
|
27905
|
-
> .k-label,
|
|
27906
|
-
&.k-focus > .k-label {
|
|
28036
|
+
> .k-floating-label,
|
|
28037
|
+
&.k-focus > .k-floating-label {
|
|
27907
28038
|
left: auto;
|
|
27908
28039
|
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
27909
28040
|
}
|
|
27910
|
-
&:focus-within > .k-label {
|
|
28041
|
+
&:focus-within > .k-floating-label {
|
|
27911
28042
|
left: auto;
|
|
27912
28043
|
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
27913
28044
|
}
|
|
@@ -27931,7 +28062,7 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27931
28062
|
// Floating label
|
|
27932
28063
|
.k-floating-label-container {
|
|
27933
28064
|
|
|
27934
|
-
> .k-label {
|
|
28065
|
+
> .k-floating-label {
|
|
27935
28066
|
transform-origin: left bottom;
|
|
27936
28067
|
}
|
|
27937
28068
|
|
|
@@ -27939,7 +28070,7 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27939
28070
|
.k-rtl &,
|
|
27940
28071
|
&[dir="rtl"] {
|
|
27941
28072
|
|
|
27942
|
-
> .k-label {
|
|
28073
|
+
> .k-floating-label {
|
|
27943
28074
|
transform-origin: right bottom;
|
|
27944
28075
|
}
|
|
27945
28076
|
|
|
@@ -27956,23 +28087,23 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27956
28087
|
// Floating label
|
|
27957
28088
|
.k-floating-label-container {
|
|
27958
28089
|
|
|
27959
|
-
> .k-label {
|
|
28090
|
+
> .k-floating-label {
|
|
27960
28091
|
@include fill(
|
|
27961
28092
|
$color: $kendo-floating-label-text,
|
|
27962
28093
|
$bg: $kendo-floating-label-bg
|
|
27963
28094
|
);
|
|
27964
28095
|
}
|
|
27965
28096
|
|
|
27966
|
-
&.k-focus > .k-label {
|
|
28097
|
+
&.k-focus > .k-floating-label {
|
|
27967
28098
|
@include fill(
|
|
27968
28099
|
$color: $kendo-floating-label-focus-text,
|
|
27969
28100
|
$bg: $kendo-floating-label-focus-bg
|
|
27970
28101
|
);
|
|
27971
28102
|
}
|
|
27972
28103
|
|
|
27973
|
-
&.k-invalid > .k-label,
|
|
27974
|
-
&.ng-invalid.ng-touched > .k-label,
|
|
27975
|
-
&.ng-invalid.ng-dirty > .k-label {
|
|
28104
|
+
&.k-invalid > .k-floating-label,
|
|
28105
|
+
&.ng-invalid.ng-touched > .k-floating-label,
|
|
28106
|
+
&.ng-invalid.ng-dirty > .k-floating-label {
|
|
27976
28107
|
@include fill ( $color: $kendo-invalid-text );
|
|
27977
28108
|
}
|
|
27978
28109
|
}
|
|
@@ -27994,10 +28125,10 @@ $kendo-floating-label-focus-text: $kendo-color-primary !default;
|
|
|
27994
28125
|
// Floating label
|
|
27995
28126
|
.k-floating-label-container {
|
|
27996
28127
|
|
|
27997
|
-
&.k-invalid + .k-label,
|
|
27998
|
-
.k-invalid + .k-label,
|
|
27999
|
-
.ng-invalid.ng-touched + .k-label,
|
|
28000
|
-
.ng-invalid.ng-dirty + .k-label {
|
|
28128
|
+
&.k-invalid + .k-floating-label,
|
|
28129
|
+
.k-invalid + .k-floating-label,
|
|
28130
|
+
.ng-invalid.ng-touched + .k-floating-label,
|
|
28131
|
+
.ng-invalid.ng-dirty + .k-floating-label {
|
|
28001
28132
|
@include fill( $color: $kendo-color-error );
|
|
28002
28133
|
}
|
|
28003
28134
|
}
|
|
@@ -30765,136 +30896,327 @@ $_kendo-module-meta: (
|
|
|
30765
30896
|
// #region @import "./_variables.scss"; -> scss/calendar/_variables.scss
|
|
30766
30897
|
// Calendar
|
|
30767
30898
|
|
|
30899
|
+
/// The width of the border around the Calendar.
|
|
30900
|
+
/// @group calendar
|
|
30768
30901
|
$kendo-calendar-border-width: 1px !default;
|
|
30902
|
+
/// The font family of the Calendar.
|
|
30903
|
+
/// @group calendar
|
|
30769
30904
|
$kendo-calendar-font-family: $kendo-font-family !default;
|
|
30905
|
+
/// The font size of the Calendar.
|
|
30906
|
+
/// @group calendar
|
|
30770
30907
|
$kendo-calendar-font-size: $kendo-font-size-md !default;
|
|
30908
|
+
/// The line height of the Calendar.
|
|
30909
|
+
/// @group calendar
|
|
30771
30910
|
$kendo-calendar-line-height: k-math-div( 20, 14 ) !default;
|
|
30772
30911
|
|
|
30912
|
+
/// The size of the cells in the Calendar.
|
|
30913
|
+
/// @group calendar
|
|
30773
30914
|
$kendo-calendar-cell-size: 36px !default;
|
|
30774
30915
|
|
|
30916
|
+
/// The background color of the Calendar.
|
|
30917
|
+
/// @group calendar
|
|
30775
30918
|
$kendo-calendar-bg: $kendo-component-bg !default;
|
|
30919
|
+
/// The text color of the Calendar.
|
|
30920
|
+
/// @group calendar
|
|
30776
30921
|
$kendo-calendar-text: $kendo-component-text !default;
|
|
30922
|
+
/// The border color of the Calendar.
|
|
30923
|
+
/// @group calendar
|
|
30777
30924
|
$kendo-calendar-border: $kendo-component-border !default;
|
|
30778
30925
|
|
|
30926
|
+
/// The horizontal padding of the header in the Calendar.
|
|
30927
|
+
/// @group calendar
|
|
30779
30928
|
$kendo-calendar-header-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30929
|
+
/// The vertical padding of the header in the Calendar.
|
|
30930
|
+
/// @group calendar
|
|
30780
30931
|
$kendo-calendar-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30932
|
+
/// The height of the header in the Calendar.
|
|
30933
|
+
/// @group calendar
|
|
30781
30934
|
$kendo-calendar-header-border-width: 0px !default;
|
|
30782
30935
|
|
|
30936
|
+
/// The background color of the header in the Calendar.
|
|
30937
|
+
/// @group calendar
|
|
30783
30938
|
$kendo-calendar-header-bg: null !default;
|
|
30939
|
+
/// The text color of the header in the Calendar.
|
|
30940
|
+
/// @group calendar
|
|
30784
30941
|
$kendo-calendar-header-text: $kendo-component-header-text !default;
|
|
30942
|
+
/// The border color of the header in the Calendar.
|
|
30943
|
+
/// @group calendar
|
|
30785
30944
|
$kendo-calendar-header-border: $kendo-component-header-border !default;
|
|
30945
|
+
/// The gradient of the header in the Calendar.
|
|
30946
|
+
/// @group calendar
|
|
30786
30947
|
$kendo-calendar-header-gradient: null !default;
|
|
30948
|
+
/// The shadow of the header in the Calendar.
|
|
30949
|
+
/// @group calendar
|
|
30787
30950
|
$kendo-calendar-header-shadow: null !default;
|
|
30788
30951
|
|
|
30952
|
+
/// The gap between the items in the navigation of the Calendar.
|
|
30953
|
+
/// @group calendar
|
|
30789
30954
|
$kendo-calendar-nav-gap: null !default;
|
|
30790
30955
|
|
|
30956
|
+
/// The horizontal padding of the footer in the Calendar.
|
|
30957
|
+
/// @group calendar
|
|
30791
30958
|
$kendo-calendar-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
30959
|
+
/// The vertical padding of the footer in the Calendar.
|
|
30792
30960
|
$kendo-calendar-footer-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
30793
30961
|
|
|
30962
|
+
/// The horizontal padding of the cells in the Calendar.
|
|
30963
|
+
/// @group calendar
|
|
30794
30964
|
$kendo-calendar-cell-padding-x: .25em !default;
|
|
30965
|
+
/// The vertical padding of the cells in the Calendar.
|
|
30966
|
+
/// @group calendar
|
|
30795
30967
|
$kendo-calendar-cell-padding-y: $kendo-calendar-cell-padding-x !default;
|
|
30968
|
+
|
|
30969
|
+
/// The line height of the cells in the Calendar.
|
|
30970
|
+
/// @group calendar
|
|
30796
30971
|
$kendo-calendar-cell-line-height: $kendo-calendar-line-height !default;
|
|
30972
|
+
|
|
30973
|
+
/// The border radius of the cells in the Calendar.
|
|
30974
|
+
/// @group calendar
|
|
30797
30975
|
$kendo-calendar-cell-border-radius: 100px !default;
|
|
30798
30976
|
|
|
30977
|
+
/// The horizontal padding of the header cells in the Calendar.
|
|
30978
|
+
/// @group calenda
|
|
30799
30979
|
$kendo-calendar-header-cell-padding-x: null !default;
|
|
30980
|
+
/// The vertical padding of the header cells in the Calendar.
|
|
30981
|
+
/// @group calendar
|
|
30800
30982
|
$kendo-calendar-header-cell-padding-y: null !default;
|
|
30983
|
+
/// The width of the header cells in the Calendar.
|
|
30984
|
+
/// @group calendar
|
|
30801
30985
|
$kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
30986
|
+
/// The height of the header cells in the Calendar.
|
|
30987
|
+
/// @group calendar
|
|
30802
30988
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
30989
|
+
/// The font size of the header cells in the Calendar.
|
|
30990
|
+
/// @group calendar
|
|
30803
30991
|
$kendo-calendar-header-cell-font-size: $kendo-font-size-sm !default;
|
|
30992
|
+
/// The line height of the header cells in the Calendar.
|
|
30993
|
+
/// @group calendar
|
|
30804
30994
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
30995
|
+
|
|
30996
|
+
/// The background color of the header cells in the Calendar.
|
|
30997
|
+
/// @group calendar
|
|
30805
30998
|
$kendo-calendar-header-cell-bg: null !default;
|
|
30999
|
+
/// The text color of the header cells in the Calendar.
|
|
31000
|
+
/// @group calendar
|
|
30806
31001
|
$kendo-calendar-header-cell-text: $kendo-subtle-text !default;
|
|
31002
|
+
|
|
31003
|
+
/// The opacity of the header cells in the Calendar.
|
|
31004
|
+
/// @group calendar
|
|
30807
31005
|
$kendo-calendar-header-cell-opacity: null !default;
|
|
30808
31006
|
|
|
31007
|
+
/// The horizontal padding of the caption in the Calendar.
|
|
31008
|
+
/// @group calendar
|
|
30809
31009
|
$kendo-calendar-caption-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31010
|
+
/// The vertical padding of the caption in the Calendar.
|
|
31011
|
+
/// @group calendar
|
|
30810
31012
|
$kendo-calendar-caption-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31013
|
+
/// The height of the caption in the Calendar.
|
|
31014
|
+
/// @group calendar
|
|
30811
31015
|
$kendo-calendar-caption-height: $kendo-calendar-cell-size !default;
|
|
31016
|
+
/// The font size of the caption in the Calendar.
|
|
31017
|
+
/// @group calendar
|
|
30812
31018
|
$kendo-calendar-caption-font-size: null !default;
|
|
31019
|
+
/// The line height of the caption in the Calendar.
|
|
31020
|
+
/// @group calendar
|
|
30813
31021
|
$kendo-calendar-caption-line-height: null !default;
|
|
31022
|
+
/// The font weight of the caption in the Calendar.
|
|
31023
|
+
/// @group calendar
|
|
30814
31024
|
$kendo-calendar-caption-font-weight: bold !default;
|
|
30815
31025
|
|
|
31026
|
+
/// The font size of the week number cells in the Calendar.
|
|
31027
|
+
/// @group calendar
|
|
31028
|
+
$kendo-calendar-week-number-font-size: $kendo-font-size-sm !default;
|
|
31029
|
+
|
|
31030
|
+
/// The width of the Calendar view.
|
|
31031
|
+
/// @group calendar
|
|
30816
31032
|
$kendo-calendar-view-width: ($kendo-calendar-cell-size * 8) !default;
|
|
31033
|
+
/// The height of the Calendar view.
|
|
31034
|
+
/// @group calendar
|
|
30817
31035
|
$kendo-calendar-view-height: ($kendo-calendar-cell-size * 7) !default;
|
|
31036
|
+
|
|
31037
|
+
/// The gap between the items in the Calendar view.
|
|
31038
|
+
/// @group calendar
|
|
30818
31039
|
$kendo-calendar-view-gap: k-map-get( $kendo-spacing, 4 ) !default;
|
|
30819
31040
|
|
|
31041
|
+
/// The background color of the weekend cells in the Calendar.
|
|
31042
|
+
/// @group calendar
|
|
30820
31043
|
$kendo-calendar-weekend-bg: null !default;
|
|
31044
|
+
/// The text color of the weekend cells in the Calendar.
|
|
30821
31045
|
$kendo-calendar-weekend-text: null !default;
|
|
30822
31046
|
|
|
31047
|
+
/// The style of the current day in the Calendar.
|
|
31048
|
+
/// @group calendar
|
|
30823
31049
|
$kendo-calendar-today-style: color !default;
|
|
31050
|
+
/// The color of the current day in the Calendar.
|
|
31051
|
+
/// @group calendar
|
|
30824
31052
|
$kendo-calendar-today-color: $kendo-color-primary !default;
|
|
30825
31053
|
|
|
31054
|
+
/// The background color of the week number cells in the Calendar.
|
|
31055
|
+
/// @group calendar
|
|
30826
31056
|
$kendo-calendar-week-number-bg: null !default;
|
|
31057
|
+
/// The text color of the week number cells in the Calendar.
|
|
31058
|
+
/// @group calendar
|
|
30827
31059
|
$kendo-calendar-week-number-text: $kendo-calendar-header-cell-text !default;
|
|
30828
31060
|
|
|
31061
|
+
/// The background color of the preceding/subsequent month cells in the Calendar.
|
|
31062
|
+
/// @group calendar
|
|
30829
31063
|
$kendo-calendar-other-month-bg: null !default;
|
|
31064
|
+
/// The text color of the preceding/subsequent month cells in the Calendar.
|
|
31065
|
+
/// @group calendar
|
|
30830
31066
|
$kendo-calendar-other-month-text: $kendo-calendar-header-cell-text !default;
|
|
30831
31067
|
|
|
31068
|
+
/// The background color of the cells in the Calendar.
|
|
31069
|
+
/// @group calendar
|
|
30832
31070
|
$kendo-calendar-cell-bg: null !default;
|
|
31071
|
+
/// The text color of the cells in the Calendar.
|
|
31072
|
+
/// @group calendar
|
|
30833
31073
|
$kendo-calendar-cell-text: null !default;
|
|
31074
|
+
/// The border color of the cells in the Calendar.
|
|
31075
|
+
/// @group calendar
|
|
30834
31076
|
$kendo-calendar-cell-border: null !default;
|
|
31077
|
+
/// The gradient of the cells in the Calendar.
|
|
31078
|
+
/// @group calendar
|
|
30835
31079
|
$kendo-calendar-cell-gradient: null !default;
|
|
30836
31080
|
|
|
31081
|
+
/// The background color of the hovered cells in the Calendar.
|
|
31082
|
+
/// @group calendar
|
|
30837
31083
|
$kendo-calendar-cell-hover-bg: $kendo-hover-bg !default;
|
|
31084
|
+
/// The text color of the hovered cells in the Calendar.
|
|
31085
|
+
/// @group calendar
|
|
30838
31086
|
$kendo-calendar-cell-hover-text: $kendo-hover-text !default;
|
|
31087
|
+
/// The border color of the hovered cells in the Calendar.
|
|
31088
|
+
/// @group calendar
|
|
30839
31089
|
$kendo-calendar-cell-hover-border: $kendo-hover-border !default;
|
|
31090
|
+
/// The gradient of the hovered cells in the Calendar.
|
|
31091
|
+
/// @group calendar
|
|
30840
31092
|
$kendo-calendar-cell-hover-gradient: null !default;
|
|
30841
31093
|
|
|
31094
|
+
/// The background color of the selected cells in the Calendar.
|
|
31095
|
+
/// @group calendar
|
|
30842
31096
|
$kendo-calendar-cell-selected-bg: $kendo-color-primary !default;
|
|
31097
|
+
/// The text color of the selected cells in the Calendar.
|
|
31098
|
+
/// @group calendar
|
|
30843
31099
|
$kendo-calendar-cell-selected-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-calendar-cell-selected-bg )) !default;
|
|
31100
|
+
/// The border color of the selected cells in the Calendar.
|
|
31101
|
+
/// @group calendar
|
|
30844
31102
|
$kendo-calendar-cell-selected-border: $kendo-calendar-cell-selected-bg !default;
|
|
31103
|
+
/// The gradient of the selected cells in the Calendar.
|
|
31104
|
+
/// @group calendar
|
|
30845
31105
|
$kendo-calendar-cell-selected-gradient: null !default;
|
|
30846
31106
|
|
|
31107
|
+
/// The background color of the selected and hovered cells in the Calendar.
|
|
31108
|
+
/// @group calendar
|
|
30847
31109
|
$kendo-calendar-cell-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-calendar-cell-selected-bg, .5 )) !default;
|
|
31110
|
+
/// The text color of the selected and hovered cells in the Calendar.
|
|
31111
|
+
/// @group calendar
|
|
30848
31112
|
$kendo-calendar-cell-selected-hover-text: $kendo-calendar-cell-selected-text !default;
|
|
31113
|
+
/// The border color of the selected and hovered cells in the Calendar.
|
|
31114
|
+
/// @group calendar
|
|
30849
31115
|
$kendo-calendar-cell-selected-hover-border: null !default;
|
|
31116
|
+
/// The gradient of the selected and hovered cells in the Calendar.
|
|
31117
|
+
/// @group calendar
|
|
30850
31118
|
$kendo-calendar-cell-selected-hover-gradient: null !default;
|
|
30851
31119
|
|
|
31120
|
+
/// The shadow of the focused cells in the Calendar.
|
|
31121
|
+
/// @group calendar
|
|
30852
31122
|
$kendo-calendar-cell-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
31123
|
+
/// The shadow of the selected and focused cells in the Calendar.
|
|
31124
|
+
/// @group calendar
|
|
30853
31125
|
$kendo-calendar-cell-selected-focus-shadow: $kendo-calendar-cell-focus-shadow !default;
|
|
30854
31126
|
|
|
30855
31127
|
|
|
30856
|
-
|
|
31128
|
+
/// The width of the Calendar navigation.
|
|
31129
|
+
/// @group calendar
|
|
30857
31130
|
$kendo-calendar-navigation-width: 5em !default;
|
|
31131
|
+
/// The height of the items in the Calendar navigation.
|
|
31132
|
+
/// @group calendar
|
|
30858
31133
|
$kendo-calendar-navigation-item-height: 2em !default;
|
|
30859
31134
|
|
|
31135
|
+
/// The background color of the Calendar navigation.
|
|
31136
|
+
/// @group calendar
|
|
30860
31137
|
$kendo-calendar-navigation-bg: if($kendo-enable-color-system, k-color( surface ), k-true-mix( $kendo-calendar-text, $kendo-calendar-bg, 3)) !default;
|
|
31138
|
+
/// The text color of the Calendar navigation.
|
|
31139
|
+
/// @group calendar
|
|
30861
31140
|
$kendo-calendar-navigation-text: $kendo-calendar-text !default;
|
|
31141
|
+
/// The border color of the Calendar navigation.
|
|
31142
|
+
/// @group calendar
|
|
30862
31143
|
$kendo-calendar-navigation-border: $kendo-calendar-border !default;
|
|
30863
31144
|
|
|
31145
|
+
/// The background color of the hovered items in the Calendar navigation.
|
|
30864
31146
|
$kendo-calendar-navigation-hover-text: $kendo-link-hover-text !default;
|
|
30865
31147
|
|
|
30866
|
-
|
|
30867
|
-
|
|
31148
|
+
/// The horizontal padding of the header in the Infinite Calendar.
|
|
31149
|
+
/// @group calendar
|
|
30868
31150
|
$kendo-infinite-calendar-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31151
|
+
/// The vertical padding of the header in the Infinite Calendar.
|
|
31152
|
+
/// @group calendar
|
|
30869
31153
|
$kendo-infinite-calendar-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
30870
31154
|
|
|
31155
|
+
/// The horizontal padding of the Calendar view in the Infinite Calendar.
|
|
31156
|
+
/// @group calendar
|
|
30871
31157
|
$kendo-infinite-calendar-view-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
31158
|
+
/// The vertical padding of the Calendar view in the Infinite Calendar.
|
|
31159
|
+
/// @group calendar
|
|
30872
31160
|
$kendo-infinite-calendar-view-padding-y: 0px !default;
|
|
31161
|
+
|
|
31162
|
+
/// The height of the Calendar view in the Infinite Calendar.
|
|
31163
|
+
/// @group calendar
|
|
30873
31164
|
$kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default;
|
|
30874
31165
|
|
|
30875
31166
|
|
|
30876
31167
|
// Multiview calendar
|
|
30877
31168
|
|
|
30878
31169
|
|
|
30879
|
-
|
|
31170
|
+
/// The font size of the small Calendar.
|
|
31171
|
+
/// @group calendar
|
|
30880
31172
|
$kendo-calendar-sm-font-size: $kendo-font-size-md !default;
|
|
31173
|
+
/// The line height of the small Calendar.
|
|
31174
|
+
/// @group calendar
|
|
30881
31175
|
$kendo-calendar-sm-line-height: $kendo-line-height-md !default;
|
|
31176
|
+
/// The size of the cells in the small Calendar.
|
|
31177
|
+
/// @group calendar
|
|
30882
31178
|
$kendo-calendar-sm-cell-size: 32px !default;
|
|
31179
|
+
/// The horizontal padding of the cells in the small Calendar.
|
|
31180
|
+
/// @group calendar
|
|
30883
31181
|
$kendo-calendar-sm-cell-padding-x: .125rem !default;
|
|
31182
|
+
/// The vertical padding of the cells in the small Calendar.
|
|
31183
|
+
/// @group calendar
|
|
30884
31184
|
$kendo-calendar-sm-cell-padding-y: .125rem !default;
|
|
30885
31185
|
|
|
31186
|
+
/// The font size of the medium Calendar.
|
|
31187
|
+
/// @group calendar
|
|
30886
31188
|
$kendo-calendar-md-font-size: $kendo-font-size-md !default;
|
|
31189
|
+
/// The line height of the medium Calendar.
|
|
31190
|
+
/// @group calendar
|
|
30887
31191
|
$kendo-calendar-md-line-height: $kendo-line-height-md !default;
|
|
31192
|
+
/// The size of the cells in the medium Calendar.
|
|
31193
|
+
/// @group calendar
|
|
30888
31194
|
$kendo-calendar-md-cell-size: 36px !default;
|
|
31195
|
+
/// The horizontal padding of the cells in the medium Calendar.
|
|
31196
|
+
/// @group calendar
|
|
30889
31197
|
$kendo-calendar-md-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31198
|
+
/// The vertical padding of the cells in the medium Calendar.
|
|
31199
|
+
/// @group calendar
|
|
30890
31200
|
$kendo-calendar-md-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30891
31201
|
|
|
31202
|
+
/// The font size of the large Calendar.
|
|
31203
|
+
/// @group calendar
|
|
30892
31204
|
$kendo-calendar-lg-font-size: $kendo-font-size-lg !default;
|
|
31205
|
+
/// The line height of the large Calendar.
|
|
31206
|
+
/// @group calendar
|
|
30893
31207
|
$kendo-calendar-lg-line-height: $kendo-line-height-lg !default;
|
|
31208
|
+
/// The size of the cells in the large Calendar.
|
|
31209
|
+
/// @group calendar
|
|
30894
31210
|
$kendo-calendar-lg-cell-size: 40px !default;
|
|
31211
|
+
/// The horizontal padding of the cells in the large Calendar.
|
|
31212
|
+
/// @group calendar
|
|
30895
31213
|
$kendo-calendar-lg-cell-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
31214
|
+
/// The vertical padding of the cells in the large Calendar.
|
|
31215
|
+
/// @group calendar
|
|
30896
31216
|
$kendo-calendar-lg-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30897
31217
|
|
|
31218
|
+
/// The sizes Map of the Calendar.
|
|
31219
|
+
/// @group calendar
|
|
30898
31220
|
$kendo-calendar-sizes: (
|
|
30899
31221
|
sm: (
|
|
30900
31222
|
font-size: $kendo-calendar-sm-font-size,
|
|
@@ -31010,6 +31332,9 @@ $kendo-calendar-sizes: (
|
|
|
31010
31332
|
block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
|
|
31011
31333
|
border-color: transparent;
|
|
31012
31334
|
}
|
|
31335
|
+
.k-calendar-td.k-alt {
|
|
31336
|
+
font-size: $kendo-calendar-week-number-font-size;
|
|
31337
|
+
}
|
|
31013
31338
|
|
|
31014
31339
|
|
|
31015
31340
|
// Calendar cell inner
|
|
@@ -31057,11 +31382,6 @@ $kendo-calendar-sizes: (
|
|
|
31057
31382
|
justify-content: space-between;
|
|
31058
31383
|
flex: 0 0 auto;
|
|
31059
31384
|
|
|
31060
|
-
.k-title,
|
|
31061
|
-
.k-calendar-title {
|
|
31062
|
-
font-weight: bold;
|
|
31063
|
-
}
|
|
31064
|
-
|
|
31065
31385
|
.k-calendar-nav {
|
|
31066
31386
|
display: flex;
|
|
31067
31387
|
flex-flow: row nowrap;
|
|
@@ -31095,6 +31415,10 @@ $kendo-calendar-sizes: (
|
|
|
31095
31415
|
position: relative;
|
|
31096
31416
|
z-index: 1;
|
|
31097
31417
|
overflow: hidden;
|
|
31418
|
+
|
|
31419
|
+
.k-today {
|
|
31420
|
+
font-weight: bold;
|
|
31421
|
+
}
|
|
31098
31422
|
}
|
|
31099
31423
|
|
|
31100
31424
|
|
|
@@ -31528,9 +31852,6 @@ $kendo-calendar-sizes: (
|
|
|
31528
31852
|
$kendo-calendar-week-number-bg
|
|
31529
31853
|
);
|
|
31530
31854
|
}
|
|
31531
|
-
.k-out-of-range {
|
|
31532
|
-
pointer-events: none;
|
|
31533
|
-
}
|
|
31534
31855
|
|
|
31535
31856
|
|
|
31536
31857
|
// Interactive states
|
|
@@ -39839,44 +40160,109 @@ $_kendo-module-meta: (
|
|
|
39839
40160
|
// Component
|
|
39840
40161
|
// #region @import "./_variables.scss"; -> scss/drawer/_variables.scss
|
|
39841
40162
|
// Drawer
|
|
40163
|
+
|
|
40164
|
+
/// The background color of the Drawer.
|
|
40165
|
+
/// @group drawer
|
|
39842
40166
|
$kendo-drawer-bg: $kendo-component-bg !default;
|
|
40167
|
+
/// The text color of the Drawer.
|
|
40168
|
+
/// @group drawer
|
|
39843
40169
|
$kendo-drawer-text: $kendo-component-text !default;
|
|
40170
|
+
/// The border color of the Drawer.
|
|
40171
|
+
/// @group drawer
|
|
39844
40172
|
$kendo-drawer-border: $kendo-component-border !default;
|
|
40173
|
+
/// The border width of the Drawer.
|
|
40174
|
+
/// @group drawer
|
|
39845
40175
|
$kendo-drawer-border-width: 1px !default;
|
|
40176
|
+
/// The font family of the Drawer.
|
|
40177
|
+
/// @group drawer
|
|
39846
40178
|
$kendo-drawer-font-family: $kendo-font-family !default;
|
|
40179
|
+
/// The font size of the Drawer.
|
|
40180
|
+
/// @group drawer
|
|
39847
40181
|
$kendo-drawer-font-size: $kendo-font-size-md !default;
|
|
40182
|
+
/// The line height of the Drawer.
|
|
40183
|
+
/// @group drawer
|
|
39848
40184
|
$kendo-drawer-line-height: $kendo-line-height-md !default;
|
|
40185
|
+
|
|
40186
|
+
/// The horizontal padding of the Drawer content.
|
|
40187
|
+
/// @group drawer
|
|
39849
40188
|
$kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
|
|
40189
|
+
/// The vertical padding of the Drawer content.
|
|
40190
|
+
/// @group drawer
|
|
39850
40191
|
$kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
|
|
39851
40192
|
|
|
40193
|
+
/// The width of the Drawer scrollbar.
|
|
40194
|
+
/// @group drawer
|
|
39852
40195
|
$kendo-drawer-scrollbar-width: 7px !default;
|
|
40196
|
+
/// The color of the Drawer scrollbar track.
|
|
40197
|
+
/// @group drawer
|
|
39853
40198
|
$kendo-drawer-scrollbar-color: rgba( 156, 156, 156, .7 ) !default;
|
|
40199
|
+
/// The background color of the Drawer scrollbar thumb.
|
|
40200
|
+
/// @group drawer
|
|
39854
40201
|
$kendo-drawer-scrollbar-bg: #dedede !default;
|
|
40202
|
+
/// The border radius of the Drawer scrollbar.
|
|
40203
|
+
/// @group drawer
|
|
39855
40204
|
$kendo-drawer-scrollbar-radius: 20px !default;
|
|
40205
|
+
/// The hover color of the Drawer scrollbar track.
|
|
40206
|
+
/// @group drawer
|
|
39856
40207
|
$kendo-drawer-scrollbar-hover-color: rgba( 156, 156, 156, 1 ) !default;
|
|
39857
40208
|
|
|
40209
|
+
/// The horizontal padding of the Drawer item.
|
|
40210
|
+
/// @group drawer
|
|
39858
40211
|
$kendo-drawer-item-padding-x: $kendo-padding-md-x !default;
|
|
40212
|
+
/// The vertical padding of the Drawer item.
|
|
40213
|
+
/// @group drawer
|
|
39859
40214
|
$kendo-drawer-item-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
40215
|
+
/// The font size of the Drawer item.
|
|
40216
|
+
/// @group drawer
|
|
39860
40217
|
$kendo-drawer-item-font-size: 16px !default;
|
|
40218
|
+
/// The line height of the Drawer item.
|
|
40219
|
+
/// @group drawer
|
|
39861
40220
|
$kendo-drawer-item-line-height: $kendo-line-height-lg !default;
|
|
39862
40221
|
|
|
40222
|
+
/// The horizontal padding of the Drawer item in each level.
|
|
40223
|
+
/// @group drawer
|
|
39863
40224
|
$kendo-drawer-item-level-padding-x: $kendo-drawer-item-padding-x !default;
|
|
40225
|
+
/// The count of the Drawer item levels.
|
|
40226
|
+
/// @group drawer
|
|
39864
40227
|
$kendo-drawer-item-level-count: 5 !default;
|
|
39865
40228
|
|
|
40229
|
+
/// The horizontal padding of the Drawer icon.
|
|
40230
|
+
/// @group drawer
|
|
39866
40231
|
$kendo-drawer-icon-padding-x: 0 !default;
|
|
40232
|
+
/// The vertical padding of the Drawer icon.
|
|
40233
|
+
/// @group drawer
|
|
39867
40234
|
$kendo-drawer-icon-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
39868
40235
|
|
|
40236
|
+
/// The initial width of the mini Drawer.
|
|
40237
|
+
/// @group drawer
|
|
39869
40238
|
$kendo-drawer-mini-initial-width: calc(2 * #{$kendo-drawer-item-padding-x} + #{$kendo-icon-size}) !default;
|
|
39870
40239
|
|
|
40240
|
+
/// The background color of the hovered Drawer item.
|
|
40241
|
+
/// @group drawer
|
|
39871
40242
|
$kendo-drawer-hover-bg: $kendo-hover-bg !default;
|
|
40243
|
+
/// The text color of the hovered Drawer item.
|
|
40244
|
+
/// @group drawer
|
|
39872
40245
|
$kendo-drawer-hover-text: $kendo-hover-text !default;
|
|
39873
40246
|
|
|
40247
|
+
/// The background color of the focused Drawer item.
|
|
40248
|
+
/// @group drawer
|
|
39874
40249
|
$kendo-drawer-focus-bg: $kendo-hover-bg !default;
|
|
40250
|
+
/// The box shadow of the focused Drawer item.
|
|
40251
|
+
/// @group drawer
|
|
39875
40252
|
$kendo-drawer-focus-shadow: none !default;
|
|
39876
40253
|
|
|
40254
|
+
/// The background color of the selected Drawer item.
|
|
40255
|
+
/// @group drawer
|
|
39877
40256
|
$kendo-drawer-selected-bg: null !default;
|
|
40257
|
+
/// The text color of the selected Drawer item.
|
|
40258
|
+
/// @group drawer
|
|
39878
40259
|
$kendo-drawer-selected-text: $kendo-color-secondary !default;
|
|
40260
|
+
|
|
40261
|
+
/// The background color of the selected and hovered Drawer item.
|
|
40262
|
+
/// @group drawer
|
|
39879
40263
|
$kendo-drawer-selected-hover-bg: $kendo-hover-bg !default;
|
|
40264
|
+
/// The text color of the selected and hovered Drawer item.
|
|
40265
|
+
/// @group drawer
|
|
39880
40266
|
$kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
39881
40267
|
|
|
39882
40268
|
// #endregion
|
|
@@ -39884,15 +40270,20 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
39884
40270
|
// #region @import "@progress/kendo-theme-default/scss/drawer/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/drawer/_layout.scss
|
|
39885
40271
|
@mixin kendo-drawer--layout-base() {
|
|
39886
40272
|
|
|
40273
|
+
// Container
|
|
39887
40274
|
.k-drawer-container {
|
|
39888
40275
|
display: flex;
|
|
39889
40276
|
flex-flow: row nowrap;
|
|
39890
40277
|
align-items: flex-start;
|
|
39891
40278
|
}
|
|
40279
|
+
|
|
39892
40280
|
kendo-drawer.k-drawer,
|
|
39893
40281
|
kendo-drawer .k-drawer-wrapper {
|
|
39894
40282
|
transition: none;
|
|
39895
40283
|
}
|
|
40284
|
+
|
|
40285
|
+
|
|
40286
|
+
// Drawer
|
|
39896
40287
|
.k-drawer {
|
|
39897
40288
|
height: 100%;
|
|
39898
40289
|
max-width: 100%;
|
|
@@ -39917,41 +40308,38 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
39917
40308
|
box-sizing: border-box;
|
|
39918
40309
|
}
|
|
39919
40310
|
|
|
39920
|
-
// Borders
|
|
39921
40311
|
.k-drawer-mini &.k-drawer-start,
|
|
39922
|
-
.k-drawer-expanded &.k-drawer-start
|
|
39923
|
-
|
|
39924
|
-
.k-drawer-left.k-drawer-expanded & {
|
|
39925
|
-
border-right-width: $kendo-drawer-border-width;
|
|
40312
|
+
.k-drawer-expanded &.k-drawer-start {
|
|
40313
|
+
border-inline-end-width: $kendo-drawer-border-width;
|
|
39926
40314
|
}
|
|
40315
|
+
|
|
39927
40316
|
.k-drawer-mini &.k-drawer-end,
|
|
39928
|
-
.k-drawer-expanded &.k-drawer-end
|
|
39929
|
-
|
|
39930
|
-
.k-drawer-right.k-drawer-expanded & {
|
|
39931
|
-
border-left-width: $kendo-drawer-border-width;
|
|
40317
|
+
.k-drawer-expanded &.k-drawer-end {
|
|
40318
|
+
border-inline-start-width: $kendo-drawer-border-width;
|
|
39932
40319
|
}
|
|
39933
40320
|
|
|
40321
|
+
|
|
39934
40322
|
// Position
|
|
39935
|
-
&.k-drawer-start
|
|
39936
|
-
.k-drawer-left & {
|
|
40323
|
+
&.k-drawer-start {
|
|
39937
40324
|
top: 0;
|
|
39938
|
-
|
|
40325
|
+
inset-inline-start: 0;
|
|
39939
40326
|
}
|
|
39940
|
-
&.k-drawer-end
|
|
39941
|
-
.k-drawer-right & {
|
|
40327
|
+
&.k-drawer-end {
|
|
39942
40328
|
top: 0;
|
|
39943
|
-
|
|
40329
|
+
inset-inline-end: 0;
|
|
39944
40330
|
}
|
|
39945
40331
|
}
|
|
40332
|
+
|
|
40333
|
+
|
|
40334
|
+
// Content
|
|
39946
40335
|
.k-drawer-content {
|
|
39947
40336
|
flex: 1 1 auto;
|
|
39948
40337
|
overflow: auto;
|
|
39949
40338
|
}
|
|
39950
40339
|
|
|
39951
40340
|
|
|
39952
|
-
// Overlay
|
|
40341
|
+
// Overlay
|
|
39953
40342
|
.k-drawer-overlay {
|
|
39954
|
-
|
|
39955
40343
|
.k-drawer {
|
|
39956
40344
|
max-width: 80vw; // limit width
|
|
39957
40345
|
position: fixed;
|
|
@@ -39965,7 +40353,6 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
39965
40353
|
&.k-drawer-expanded > .k-overlay {
|
|
39966
40354
|
display: block;
|
|
39967
40355
|
}
|
|
39968
|
-
|
|
39969
40356
|
}
|
|
39970
40357
|
|
|
39971
40358
|
|
|
@@ -39980,13 +40367,9 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
39980
40367
|
align-self: stretch;
|
|
39981
40368
|
}
|
|
39982
40369
|
|
|
39983
|
-
|
|
39984
|
-
|
|
39985
|
-
.k-drawer.k-drawer-end,
|
|
39986
|
-
&.k-drawer-right .k-drawer {
|
|
39987
|
-
order: 1;
|
|
40370
|
+
&:has(.k-drawer.k-drawer-end) {
|
|
40371
|
+
flex-direction: row-reverse;
|
|
39988
40372
|
}
|
|
39989
|
-
|
|
39990
40373
|
}
|
|
39991
40374
|
|
|
39992
40375
|
|
|
@@ -40005,8 +40388,7 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
40005
40388
|
border-radius: $kendo-drawer-scrollbar-radius;
|
|
40006
40389
|
}
|
|
40007
40390
|
}
|
|
40008
|
-
.k-drawer-items
|
|
40009
|
-
.k-drawer-items ul {
|
|
40391
|
+
.k-drawer-items {
|
|
40010
40392
|
margin: 0;
|
|
40011
40393
|
padding: 0;
|
|
40012
40394
|
list-style: none;
|
|
@@ -40069,61 +40451,18 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
|
|
|
40069
40451
|
}
|
|
40070
40452
|
}
|
|
40071
40453
|
}
|
|
40454
|
+
|
|
40455
|
+
|
|
40456
|
+
// Separator
|
|
40072
40457
|
.k-drawer-separator {
|
|
40073
40458
|
padding: 0;
|
|
40074
40459
|
height: 1px;
|
|
40075
40460
|
}
|
|
40076
40461
|
|
|
40077
40462
|
|
|
40078
|
-
|
|
40079
40463
|
// Mini mode
|
|
40080
|
-
.k-drawer-mini {
|
|
40081
|
-
|
|
40082
|
-
.k-drawer-wrapper {
|
|
40083
|
-
width: $kendo-drawer-mini-initial-width;
|
|
40084
|
-
}
|
|
40085
|
-
|
|
40086
|
-
}
|
|
40087
|
-
|
|
40088
|
-
|
|
40089
|
-
.k-rtl,
|
|
40090
|
-
[dir="rtl"] {
|
|
40091
|
-
|
|
40092
|
-
// Borders
|
|
40093
|
-
&.k-drawer-mini .k-drawer-start,
|
|
40094
|
-
.k-drawer-mini .k-drawer-start,
|
|
40095
|
-
.k-drawer-expanded .k-drawer-start,
|
|
40096
|
-
&.k-drawer-expanded .k-drawer-start {
|
|
40097
|
-
border-left-width: $kendo-drawer-border-width;
|
|
40098
|
-
border-right-width: 0;
|
|
40099
|
-
}
|
|
40100
|
-
&.k-drawer-mini .k-drawer-end,
|
|
40101
|
-
.k-drawer-mini .k-drawer-end,
|
|
40102
|
-
&.k-drawer-expanded .k-drawer-end
|
|
40103
|
-
.k-drawer-expanded .k-drawer-end {
|
|
40104
|
-
border-left-width: 0;
|
|
40105
|
-
border-right-width: $kendo-drawer-border-width;
|
|
40106
|
-
}
|
|
40107
|
-
|
|
40108
|
-
// Position
|
|
40109
|
-
&.k-drawer-overlay .k-drawer-start,
|
|
40110
|
-
.k-drawer-overlay .k-drawer-start {
|
|
40111
|
-
left: auto;
|
|
40112
|
-
right: 0;
|
|
40113
|
-
}
|
|
40114
|
-
&.k-drawer-overlay .k-drawer-end,
|
|
40115
|
-
.k-drawer-overlay .k-drawer-end {
|
|
40116
|
-
left: 0;
|
|
40117
|
-
right: auto;
|
|
40118
|
-
}
|
|
40119
|
-
|
|
40120
|
-
// Order
|
|
40121
|
-
.k-drawer-left.k-drawer-push .k-drawer {
|
|
40122
|
-
order: 1;
|
|
40123
|
-
}
|
|
40124
|
-
.k-drawer-right.k-drawer-push .k-drawer {
|
|
40125
|
-
order: 0;
|
|
40126
|
-
}
|
|
40464
|
+
.k-drawer-mini .k-drawer-wrapper {
|
|
40465
|
+
width: $kendo-drawer-mini-initial-width;
|
|
40127
40466
|
}
|
|
40128
40467
|
}
|
|
40129
40468
|
|
|
@@ -45153,109 +45492,275 @@ $_kendo-module-meta: (
|
|
|
45153
45492
|
// #region @import "./_variables.scss"; -> scss/panelbar/_variables.scss
|
|
45154
45493
|
// Panelbar
|
|
45155
45494
|
|
|
45495
|
+
/// The horizontal padding of the PanelBar.
|
|
45496
|
+
/// @group panelbar
|
|
45156
45497
|
$kendo-panelbar-padding-x: 0px !default;
|
|
45498
|
+
/// The vertical padding of the PanelBar.
|
|
45499
|
+
/// @group panelbar
|
|
45157
45500
|
$kendo-panelbar-padding-y: 0px !default;
|
|
45501
|
+
/// The font family of the PanelBar.
|
|
45502
|
+
/// @group panelbar
|
|
45158
45503
|
$kendo-panelbar-font-family: $kendo-font-family !default;
|
|
45504
|
+
/// The font size of the PanelBar.
|
|
45505
|
+
/// @group panelbar
|
|
45159
45506
|
$kendo-panelbar-font-size: $kendo-font-size-md !default;
|
|
45507
|
+
/// The line height of the PanelBar.
|
|
45508
|
+
/// @group panelbar
|
|
45160
45509
|
$kendo-panelbar-line-height: k-math-div( 20, 14 ) !default;
|
|
45510
|
+
/// The width of the border around the PanelBar.
|
|
45511
|
+
/// @group panelbar
|
|
45161
45512
|
$kendo-panelbar-border-width: 1px !default;
|
|
45513
|
+
/// The border style around the the PanelBar.
|
|
45514
|
+
/// @group panelbar
|
|
45162
45515
|
$kendo-panelbar-border-style: solid !default;
|
|
45516
|
+
/// The width of the border around the PanelBar items.
|
|
45517
|
+
/// @group panelbar
|
|
45163
45518
|
$kendo-panelbar-item-border-width: 1px !default;
|
|
45519
|
+
/// The style of the border around the PanelBar items.
|
|
45520
|
+
/// @group panelbar
|
|
45164
45521
|
$kendo-panelbar-item-border-style: solid !default;
|
|
45165
45522
|
|
|
45523
|
+
/// The horizontal padding of the PanelBar header.
|
|
45524
|
+
/// @group panelbar
|
|
45166
45525
|
$kendo-panelbar-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
45526
|
+
/// The vertical padding of the PanelBar header.
|
|
45527
|
+
/// @group panelbar
|
|
45167
45528
|
$kendo-panelbar-header-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
45168
45529
|
|
|
45530
|
+
/// The horizontal padding of the PanelBar items.
|
|
45531
|
+
/// @group panelbar
|
|
45169
45532
|
$kendo-panelbar-item-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
45533
|
+
/// The vertical padding of the PanelBar items.
|
|
45534
|
+
/// @group panelbar
|
|
45170
45535
|
$kendo-panelbar-item-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
45171
45536
|
|
|
45537
|
+
/// The maximum nesting of the PanelBar items.
|
|
45538
|
+
/// @group panelbar
|
|
45172
45539
|
$kendo-panelbar-item-level-count: 4 !default;
|
|
45173
45540
|
|
|
45541
|
+
/// The background color of the PanelBar.
|
|
45542
|
+
/// @group panelbar
|
|
45174
45543
|
$kendo-panelbar-bg: $kendo-component-bg !default;
|
|
45544
|
+
/// The text color of the PanelBar.
|
|
45545
|
+
/// @group panelbar
|
|
45175
45546
|
$kendo-panelbar-text: $kendo-component-text !default;
|
|
45547
|
+
/// The border color of the PanelBar.
|
|
45548
|
+
/// @group panelbar
|
|
45176
45549
|
$kendo-panelbar-border: $kendo-component-border !default;
|
|
45177
45550
|
|
|
45551
|
+
/// The background color of the PanelBar header.
|
|
45552
|
+
/// @group panelbar
|
|
45178
45553
|
$kendo-panelbar-header-bg: $kendo-panelbar-bg !default;
|
|
45554
|
+
/// The text color of the PanelBar header.
|
|
45555
|
+
/// @group panelbar
|
|
45179
45556
|
$kendo-panelbar-header-text: $kendo-link-text !default;
|
|
45557
|
+
/// The border color of the PanelBar header.
|
|
45558
|
+
/// @group panelbar
|
|
45180
45559
|
$kendo-panelbar-header-border: null !default;
|
|
45560
|
+
/// The gradient of the PanelBar header.
|
|
45561
|
+
/// @group panelbar
|
|
45181
45562
|
$kendo-panelbar-header-gradient: null !default;
|
|
45182
45563
|
|
|
45564
|
+
/// The background color of the hovered PanelBar header.
|
|
45565
|
+
/// @group panelbar
|
|
45183
45566
|
$kendo-panelbar-header-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-header-bg, .5 )) !default;
|
|
45567
|
+
/// The text color of the hovered PanelBar header.
|
|
45568
|
+
/// @group panelbar
|
|
45184
45569
|
$kendo-panelbar-header-hover-text: null !default;
|
|
45570
|
+
/// The border color of the hovered PanelBar header.
|
|
45571
|
+
/// @group panelbar
|
|
45185
45572
|
$kendo-panelbar-header-hover-border: null !default;
|
|
45573
|
+
/// The gradient of the hovered PanelBar header.
|
|
45574
|
+
/// @group panelbar
|
|
45186
45575
|
$kendo-panelbar-header-hover-gradient: null !default;
|
|
45187
45576
|
|
|
45577
|
+
/// The background color of the focused PanelBar header.
|
|
45578
|
+
/// @group panelbar
|
|
45188
45579
|
$kendo-panelbar-header-focus-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-panelbar-header-bg, 1.5 )) !default;
|
|
45580
|
+
/// The text color of the focused PanelBar header.
|
|
45581
|
+
/// @group panelbar
|
|
45189
45582
|
$kendo-panelbar-header-focus-text: null !default;
|
|
45583
|
+
/// The border color of the focused PanelBar header.
|
|
45584
|
+
/// @group panelbar
|
|
45190
45585
|
$kendo-panelbar-header-focus-border: null !default;
|
|
45586
|
+
/// The gradient of the focused PanelBar header.
|
|
45587
|
+
/// @group panelbar
|
|
45191
45588
|
$kendo-panelbar-header-focus-gradient: null !default;
|
|
45589
|
+
/// The shadow of the focused PanelBar header.
|
|
45590
|
+
/// @group panelbar
|
|
45192
45591
|
$kendo-panelbar-header-focus-shadow: null !default;
|
|
45193
45592
|
|
|
45593
|
+
/// The background color of the focused and hovered PanelBar header.
|
|
45594
|
+
/// @group panelbar
|
|
45194
45595
|
$kendo-panelbar-header-hover-focus-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-panelbar-header-bg, 2 )) !default;
|
|
45596
|
+
/// The text color of the focused and hovered PanelBar header.
|
|
45597
|
+
/// @group panelbar
|
|
45195
45598
|
$kendo-panelbar-header-hover-focus-text: null !default;
|
|
45599
|
+
/// The border color of the focused and hovered PanelBar header.
|
|
45600
|
+
/// @group panelbar
|
|
45196
45601
|
$kendo-panelbar-header-hover-focus-border: null !default;
|
|
45602
|
+
/// The gradient of the focused and hovered PanelBar header.
|
|
45603
|
+
/// @group panelbar
|
|
45197
45604
|
$kendo-panelbar-header-hover-focus-gradient: null !default;
|
|
45198
45605
|
|
|
45606
|
+
/// The background color of the selected PanelBar header.
|
|
45607
|
+
/// @group panelbar
|
|
45199
45608
|
$kendo-panelbar-header-selected-bg: $kendo-selected-bg !default;
|
|
45609
|
+
/// The text color of the selected PanelBar header.
|
|
45610
|
+
/// @group panelbar
|
|
45200
45611
|
$kendo-panelbar-header-selected-text: $kendo-selected-text !default;
|
|
45612
|
+
/// The border color of the selected PanelBar header.
|
|
45613
|
+
/// @group panelbar
|
|
45201
45614
|
$kendo-panelbar-header-selected-border: null !default;
|
|
45615
|
+
/// The gradient of the selected PanelBar header.
|
|
45616
|
+
/// @group panelbar
|
|
45202
45617
|
$kendo-panelbar-header-selected-gradient: null !default;
|
|
45203
45618
|
|
|
45619
|
+
/// The background color of the selected and hovered PanelBar header.
|
|
45620
|
+
/// @group panelbar
|
|
45204
45621
|
$kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( secondary-hover ), k-try-tint($kendo-panelbar-header-selected-bg, .95)) !default;
|
|
45622
|
+
/// The text color of the selected and hovered PanelBar header.
|
|
45623
|
+
/// @group panelbar
|
|
45205
45624
|
$kendo-panelbar-header-selected-hover-text: null !default;
|
|
45625
|
+
/// The border color of the selected and hovered PanelBar header.
|
|
45626
|
+
/// @group panelbar
|
|
45206
45627
|
$kendo-panelbar-header-selected-hover-border: null !default;
|
|
45628
|
+
/// The gradient of the selected and hovered PanelBar header.
|
|
45629
|
+
/// @group panelbar
|
|
45207
45630
|
$kendo-panelbar-header-selected-hover-gradient: null !default;
|
|
45208
45631
|
|
|
45632
|
+
/// The background color of the selected and focused PanelBar header.
|
|
45633
|
+
/// @group panelbar
|
|
45209
45634
|
$kendo-panelbar-header-selected-focus-bg: if($kendo-enable-color-system, k-color( secondary-active ), k-try-tint($kendo-panelbar-header-selected-bg, 3)) !default;
|
|
45635
|
+
/// The text color of the selected and focused PanelBar header.
|
|
45636
|
+
/// @group panelbar
|
|
45210
45637
|
$kendo-panelbar-header-selected-focus-text: null !default;
|
|
45638
|
+
/// The border color of the selected and focused PanelBar header.
|
|
45639
|
+
/// @group panelbar
|
|
45211
45640
|
$kendo-panelbar-header-selected-focus-border: null !default;
|
|
45641
|
+
/// The gradient of the selected and focused PanelBar header.
|
|
45642
|
+
/// @group panelbar
|
|
45212
45643
|
$kendo-panelbar-header-selected-focus-gradient: null !default;
|
|
45213
45644
|
|
|
45645
|
+
/// The background color of the selected, hovered and focused PanelBar header.
|
|
45646
|
+
/// @group panelbar
|
|
45214
45647
|
$kendo-panelbar-header-selected-hover-focus-bg: if($kendo-enable-color-system, k-color( secondary-active ), k-try-tint($kendo-panelbar-header-selected-bg, 3.95)) !default;
|
|
45648
|
+
/// The text color of the selected, hovered and focused PanelBar header.
|
|
45649
|
+
/// @group panelbar
|
|
45215
45650
|
$kendo-panelbar-header-selected-hover-focus-text: null !default;
|
|
45651
|
+
/// The border color of the selected, hovered and focused PanelBar header.
|
|
45652
|
+
/// @group panelbar
|
|
45216
45653
|
$kendo-panelbar-header-selected-hover-focus-border: null !default;
|
|
45654
|
+
/// The gradient of the selected, hovered and focused PanelBar header.
|
|
45655
|
+
/// @group panelbar
|
|
45217
45656
|
$kendo-panelbar-header-selected-hover-focus-gradient: null !default;
|
|
45218
45657
|
|
|
45219
45658
|
|
|
45659
|
+
/// The background color of the hovered PanelBar items.
|
|
45660
|
+
/// @group panelbar
|
|
45220
45661
|
$kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-bg, .5 )) !default;
|
|
45662
|
+
/// The text color of the hovered PanelBar items.
|
|
45663
|
+
/// @group panelbar
|
|
45221
45664
|
$kendo-panelbar-item-hover-text: null !default;
|
|
45665
|
+
/// The border color of the hovered PanelBar items.
|
|
45666
|
+
/// @group panelbar
|
|
45222
45667
|
$kendo-panelbar-item-hover-border: null !default;
|
|
45668
|
+
/// The gradient of the hovered PanelBar items.
|
|
45669
|
+
/// @group panelbar
|
|
45223
45670
|
$kendo-panelbar-item-hover-gradient: null !default;
|
|
45224
45671
|
|
|
45672
|
+
/// The background color of the focused PanelBar items.
|
|
45673
|
+
/// @group panelbar
|
|
45225
45674
|
$kendo-panelbar-item-focus-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-panelbar-header-bg, 1.5 )) !default;
|
|
45675
|
+
/// The text color of the focused PanelBar items.
|
|
45676
|
+
/// @group panelbar
|
|
45226
45677
|
$kendo-panelbar-item-focus-text: null !default;
|
|
45678
|
+
/// The border color of the focused PanelBar items.
|
|
45679
|
+
/// @group panelbar
|
|
45227
45680
|
$kendo-panelbar-item-focus-border: null !default;
|
|
45681
|
+
/// The gradient of the focused PanelBar items.
|
|
45682
|
+
/// @group panelbar
|
|
45228
45683
|
$kendo-panelbar-item-focus-gradient: null !default;
|
|
45684
|
+
/// The box shadow of the focused PanelBar items.
|
|
45685
|
+
/// @group panelbar
|
|
45229
45686
|
$kendo-panelbar-item-focus-shadow: null !default;
|
|
45230
45687
|
|
|
45688
|
+
/// The background color of the focused and hovered PanelBar items.
|
|
45689
|
+
/// @group panelbar
|
|
45231
45690
|
$kendo-panelbar-item-hover-focus-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-panelbar-header-bg, 2 )) !default;
|
|
45691
|
+
/// The text color of the focused and hovered PanelBar items.
|
|
45692
|
+
/// @group panelbar
|
|
45232
45693
|
$kendo-panelbar-item-hover-focus-text: null !default;
|
|
45694
|
+
/// The border color of the focused and hovered PanelBar items.
|
|
45695
|
+
/// @group panelbar
|
|
45233
45696
|
$kendo-panelbar-item-hover-focus-border: null !default;
|
|
45697
|
+
/// The gradient of the focused and hovered PanelBar items.
|
|
45698
|
+
/// @group panelbar
|
|
45234
45699
|
$kendo-panelbar-item-hover-focus-gradient: null !default;
|
|
45235
45700
|
|
|
45701
|
+
/// The background color of the selected PanelBar items.
|
|
45702
|
+
/// @group panelbar
|
|
45236
45703
|
$kendo-panelbar-item-selected-bg: $kendo-selected-bg !default;
|
|
45704
|
+
/// The text color of the selected PanelBar items.
|
|
45705
|
+
/// @group panelbar
|
|
45237
45706
|
$kendo-panelbar-item-selected-text: $kendo-selected-text !default;
|
|
45707
|
+
/// The border color of the selected PanelBar items.
|
|
45708
|
+
/// @group panelbar
|
|
45238
45709
|
$kendo-panelbar-item-selected-border: null !default;
|
|
45710
|
+
/// The gradient of the selected PanelBar items.
|
|
45711
|
+
/// @group panelbar
|
|
45239
45712
|
$kendo-panelbar-item-selected-gradient: null !default;
|
|
45240
45713
|
|
|
45714
|
+
/// The background color of the selected and hovered PanelBar items.
|
|
45715
|
+
/// @group panelbar
|
|
45241
45716
|
$kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( secondary-hover ), k-try-tint($kendo-panelbar-item-selected-bg, .95)) !default;
|
|
45717
|
+
/// The text color of the selected and hovered PanelBar items.
|
|
45718
|
+
/// @group panelbar
|
|
45242
45719
|
$kendo-panelbar-item-selected-hover-text: null !default;
|
|
45720
|
+
/// The border color of the selected and hovered PanelBar items.
|
|
45721
|
+
/// @group panelbar
|
|
45243
45722
|
$kendo-panelbar-item-selected-hover-border: null !default;
|
|
45723
|
+
/// The gradient of the selected and hovered PanelBar items.
|
|
45724
|
+
/// @group panelbar
|
|
45244
45725
|
$kendo-panelbar-item-selected-hover-gradient: null !default;
|
|
45245
45726
|
|
|
45727
|
+
/// The background color of the selected and focused PanelBar items.
|
|
45728
|
+
/// @group panelbar
|
|
45246
45729
|
$kendo-panelbar-item-selected-focus-bg: if($kendo-enable-color-system, k-color( secondary-active ), k-try-tint($kendo-panelbar-item-selected-bg, 3)) !default;
|
|
45730
|
+
/// The text color of the selected and focused PanelBar items.
|
|
45731
|
+
/// @group panelbar
|
|
45247
45732
|
$kendo-panelbar-item-selected-focus-text: null !default;
|
|
45733
|
+
/// The border color of the selected and focused PanelBar items.
|
|
45734
|
+
/// @group panelbar
|
|
45248
45735
|
$kendo-panelbar-item-selected-focus-border: null !default;
|
|
45736
|
+
/// The gradient of the selected and focused PanelBar items.
|
|
45737
|
+
/// @group panelbar
|
|
45249
45738
|
$kendo-panelbar-item-selected-focus-gradient: null !default;
|
|
45250
45739
|
|
|
45740
|
+
/// The background color of the selected, hovered and focused PanelBar items.
|
|
45741
|
+
/// @group panelbar
|
|
45251
45742
|
$kendo-panelbar-item-selected-hover-focus-bg: if($kendo-enable-color-system, k-color( secondary-active ), k-try-tint($kendo-panelbar-item-selected-bg, 3.95)) !default;
|
|
45743
|
+
/// The text color of the selected, hovered and focused PanelBar items.
|
|
45744
|
+
/// @group panelbar
|
|
45252
45745
|
$kendo-panelbar-item-selected-hover-focus-text: null !default;
|
|
45746
|
+
/// The border color of the selected, hovered and focused PanelBar items.
|
|
45747
|
+
/// @group panelbar
|
|
45253
45748
|
$kendo-panelbar-item-selected-hover-focus-border: null !default;
|
|
45749
|
+
/// The gradient of the selected, hovered and focused PanelBar items.
|
|
45750
|
+
/// @group panelbar
|
|
45254
45751
|
$kendo-panelbar-item-selected-hover-focus-gradient: null !default;
|
|
45255
45752
|
|
|
45753
|
+
/// The background color of the expanded PanelBar header.
|
|
45754
|
+
/// @group panelbar
|
|
45256
45755
|
$kendo-panelbar-header-expanded-bg: null !default;
|
|
45756
|
+
/// The text color of the expanded PanelBar header.
|
|
45757
|
+
/// @group panelbar
|
|
45257
45758
|
$kendo-panelbar-header-expanded-text: null !default;
|
|
45759
|
+
/// The border color of the expanded PanelBar header.
|
|
45760
|
+
/// @group panelbar
|
|
45258
45761
|
$kendo-panelbar-header-expanded-border: null !default;
|
|
45762
|
+
/// The gradient of the expanded PanelBar header.
|
|
45763
|
+
/// @group panelbar
|
|
45259
45764
|
$kendo-panelbar-header-expanded-gradient: null !default;
|
|
45260
45765
|
|
|
45261
45766
|
// #endregion
|
|
@@ -45288,7 +45793,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45288
45793
|
|
|
45289
45794
|
|
|
45290
45795
|
// Root
|
|
45291
|
-
> .k-item,
|
|
45292
45796
|
> .k-panelbar-header {
|
|
45293
45797
|
// TODO
|
|
45294
45798
|
border-width: 0;
|
|
@@ -45314,14 +45818,12 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45314
45818
|
transition: $kendo-transition;
|
|
45315
45819
|
}
|
|
45316
45820
|
}
|
|
45317
|
-
> .k-item + .k-item,
|
|
45318
45821
|
> .k-panelbar-header + .k-panelbar-header {
|
|
45319
45822
|
border-top-width: $kendo-panelbar-item-border-width;
|
|
45320
45823
|
}
|
|
45321
45824
|
|
|
45322
45825
|
|
|
45323
45826
|
// Sub
|
|
45324
|
-
.k-group,
|
|
45325
45827
|
.k-panelbar-group {
|
|
45326
45828
|
margin: 0;
|
|
45327
45829
|
padding: 0;
|
|
@@ -45331,7 +45833,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45331
45833
|
background-color: transparent;
|
|
45332
45834
|
list-style: none;
|
|
45333
45835
|
}
|
|
45334
|
-
.k-group > .k-item,
|
|
45335
45836
|
.k-panelbar-group > .k-panelbar-item {
|
|
45336
45837
|
display: block;
|
|
45337
45838
|
|
|
@@ -45378,8 +45879,8 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45378
45879
|
.k-panelbar-toggle {
|
|
45379
45880
|
margin-inline-start: auto;
|
|
45380
45881
|
}
|
|
45381
|
-
.k-group .k-panelbar-expand,
|
|
45382
|
-
.k-group .k-panelbar-collapse,
|
|
45882
|
+
.k-panelbar-group .k-panelbar-expand,
|
|
45883
|
+
.k-panelbar-group .k-panelbar-collapse,
|
|
45383
45884
|
.k-panelbar-group .k-panelbar-toggle {
|
|
45384
45885
|
margin-inline-end: calc( #{$kendo-panelbar-header-padding-x} - #{$kendo-panelbar-item-padding-x} );
|
|
45385
45886
|
}
|
|
@@ -45388,7 +45889,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45388
45889
|
.k-rtl &,
|
|
45389
45890
|
&.k-rtl,
|
|
45390
45891
|
&[dir = "rtl"] {
|
|
45391
|
-
.k-group > .k-item,
|
|
45392
45892
|
.k-panelbar-group > .k-panelbar-item {
|
|
45393
45893
|
// Hierarchy items
|
|
45394
45894
|
@for $i from 1 through $kendo-panelbar-item-level-count {
|
|
@@ -45433,7 +45933,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45433
45933
|
|
|
45434
45934
|
|
|
45435
45935
|
// Root
|
|
45436
|
-
> .k-item,
|
|
45437
45936
|
> .k-panelbar-header {
|
|
45438
45937
|
|
|
45439
45938
|
&.k-expanded.k-level-0 > .k-link {
|
|
@@ -45545,12 +46044,9 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45545
46044
|
|
|
45546
46045
|
|
|
45547
46046
|
// Sub
|
|
45548
|
-
.k-group,
|
|
45549
46047
|
.k-panelbar-group {
|
|
45550
46048
|
|
|
45551
46049
|
// Hover
|
|
45552
|
-
> .k-item > .k-link:hover,
|
|
45553
|
-
> .k-item > .k-link.k-hover,
|
|
45554
46050
|
> .k-panelbar-item > .k-link:hover,
|
|
45555
46051
|
> .k-panelbar-item > .k-link.k-hover {
|
|
45556
46052
|
@include fill(
|
|
@@ -45562,8 +46058,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45562
46058
|
}
|
|
45563
46059
|
|
|
45564
46060
|
// Focus
|
|
45565
|
-
> .k-item > .k-link:focus,
|
|
45566
|
-
> .k-item > .k-link.k-focus,
|
|
45567
46061
|
> .k-panelbar-item > .k-link:focus,
|
|
45568
46062
|
> .k-panelbar-item > .k-link.k-focus {
|
|
45569
46063
|
@include fill(
|
|
@@ -45576,8 +46070,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45576
46070
|
}
|
|
45577
46071
|
|
|
45578
46072
|
// Focus & Hover
|
|
45579
|
-
> .k-item > .k-link:focus:hover,
|
|
45580
|
-
> .k-item > .k-link.k-focus.k-hover,
|
|
45581
46073
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
45582
46074
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
45583
46075
|
@include fill(
|
|
@@ -45589,7 +46081,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45589
46081
|
}
|
|
45590
46082
|
|
|
45591
46083
|
// Selected
|
|
45592
|
-
> .k-item > .k-link.k-selected,
|
|
45593
46084
|
> .k-panelbar-item > .k-link.k-selected {
|
|
45594
46085
|
@include fill(
|
|
45595
46086
|
$kendo-panelbar-item-selected-text,
|
|
@@ -45600,8 +46091,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45600
46091
|
}
|
|
45601
46092
|
|
|
45602
46093
|
// Selected Hover
|
|
45603
|
-
> .k-item > .k-link.k-selected:hover,
|
|
45604
|
-
> .k-item > .k-link.k-selected.k-hover,
|
|
45605
46094
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
45606
46095
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
45607
46096
|
@include fill(
|
|
@@ -45613,8 +46102,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45613
46102
|
}
|
|
45614
46103
|
|
|
45615
46104
|
// Selected Focus
|
|
45616
|
-
> .k-item > .k-link.k-selected:focus,
|
|
45617
|
-
> .k-item > .k-link.k-selected.k-focus,
|
|
45618
46105
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
45619
46106
|
> .k-panelbar-item > .k-link.k-selected.k-focus {
|
|
45620
46107
|
@include fill(
|
|
@@ -45626,8 +46113,6 @@ $kendo-panelbar-header-expanded-gradient: null !default;
|
|
|
45626
46113
|
}
|
|
45627
46114
|
|
|
45628
46115
|
// Selected Focus & Hover
|
|
45629
|
-
> .k-item > .k-link.k-selected:focus:hover,
|
|
45630
|
-
> .k-item > .k-link.k-selected.k-focus.k-hover,
|
|
45631
46116
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
45632
46117
|
> .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
|
|
45633
46118
|
@include fill(
|