@progress/kendo-theme-classic 9.1.0-dev.0 → 9.1.0-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 +1 -1
- package/dist/all.scss +209 -129
- package/dist/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +26129 -23915
- package/dist/meta/sassdoc-raw-data.json +1350 -325
- package/dist/meta/variables.json +50 -30
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +6 -6
- package/scss/loader/_variables.scss +0 -4
- package/scss/menu/_variables.scss +138 -43
- package/scss/tabstrip/_variables.scss +4 -1
package/dist/all.scss
CHANGED
|
@@ -21882,10 +21882,6 @@ $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
|
21882
21882
|
/// @group loader
|
|
21883
21883
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
21884
21884
|
|
|
21885
|
-
/// The color of the Loader based on the secondary theme color.
|
|
21886
|
-
/// @group loader
|
|
21887
|
-
$kendo-loader-secondary-bg: #656565 !default;
|
|
21888
|
-
|
|
21889
21885
|
/// The border width of the container panel.
|
|
21890
21886
|
/// @group loader
|
|
21891
21887
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
@@ -22549,11 +22545,7 @@ $kendo-zindex-loading: 100 !default;
|
|
|
22549
22545
|
|
|
22550
22546
|
@each $name, $color in $kendo-theme-colors {
|
|
22551
22547
|
.k-loader-#{$name} {
|
|
22552
|
-
|
|
22553
|
-
color: $kendo-loader-secondary-bg;
|
|
22554
|
-
} @else {
|
|
22555
|
-
color: $color;
|
|
22556
|
-
}
|
|
22548
|
+
color: $color;
|
|
22557
22549
|
}
|
|
22558
22550
|
}
|
|
22559
22551
|
|
|
@@ -22562,13 +22554,6 @@ $kendo-zindex-loading: 100 !default;
|
|
|
22562
22554
|
border-color: $kendo-loader-container-panel-border-color;
|
|
22563
22555
|
}
|
|
22564
22556
|
|
|
22565
|
-
.k-loader-container-inner {
|
|
22566
|
-
.k-text-secondary,
|
|
22567
|
-
.\!k-text-secondary { // stylelint-disable-line
|
|
22568
|
-
color: $kendo-loader-secondary-bg !important; // stylelint-disable-line declaration-no-important
|
|
22569
|
-
}
|
|
22570
|
-
}
|
|
22571
|
-
|
|
22572
22557
|
}
|
|
22573
22558
|
|
|
22574
22559
|
|
|
@@ -23772,174 +23757,269 @@ $_kendo-module-meta: (
|
|
|
23772
23757
|
// #region @import "./_variables.scss"; -> scss/menu/_variables.scss
|
|
23773
23758
|
// Menu
|
|
23774
23759
|
|
|
23775
|
-
|
|
23776
|
-
|
|
23760
|
+
/// The width of the border around the Menu.
|
|
23761
|
+
/// @group menu
|
|
23777
23762
|
$kendo-menu-border-width: 1px !default;
|
|
23763
|
+
/// The font family of the Menu.
|
|
23764
|
+
/// @group menu
|
|
23778
23765
|
$kendo-menu-font-family: var( --kendo-font-family, inherit ) !default;
|
|
23766
|
+
/// The font size of the Menu.
|
|
23767
|
+
/// @group menu
|
|
23779
23768
|
$kendo-menu-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23769
|
+
/// The line height of the Menu used along with $kendo-font-size.
|
|
23770
|
+
/// @group menu
|
|
23780
23771
|
$kendo-menu-line-height: var( --kendo-line-height, normal ) !default;
|
|
23781
23772
|
|
|
23773
|
+
/// The background color of the Menu.
|
|
23774
|
+
/// @group menu
|
|
23782
23775
|
$kendo-menu-bg: $kendo-base-bg !default;
|
|
23776
|
+
/// The text color of the Menu.
|
|
23777
|
+
/// @group menu
|
|
23783
23778
|
$kendo-menu-text: $kendo-base-text !default;
|
|
23779
|
+
/// The border color of the Menu.
|
|
23780
|
+
/// @group menu
|
|
23784
23781
|
$kendo-menu-border: $kendo-base-border !default;
|
|
23782
|
+
/// The background gradient of the Menu.
|
|
23783
|
+
/// @group menu
|
|
23785
23784
|
$kendo-menu-gradient: $kendo-base-gradient !default;
|
|
23786
23785
|
|
|
23786
|
+
|
|
23787
|
+
// Menu item
|
|
23788
|
+
|
|
23789
|
+
/// The horizontal padding of the Menu item.
|
|
23790
|
+
/// @group menu
|
|
23787
23791
|
$kendo-menu-item-padding-x: k-spacing(2) !default;
|
|
23792
|
+
/// The vertical padding of the Menu item.
|
|
23793
|
+
/// @group menu
|
|
23788
23794
|
$kendo-menu-item-padding-y: k-spacing(1) !default;
|
|
23795
|
+
/// The spacing between the Menu items.
|
|
23796
|
+
/// @group menu
|
|
23789
23797
|
$kendo-menu-item-spacing: null !default;
|
|
23798
|
+
/// The spacing between the Menu item text and icons.
|
|
23799
|
+
/// @group menu
|
|
23790
23800
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
23791
23801
|
|
|
23802
|
+
/// The font weight of the selected Menu item.
|
|
23803
|
+
/// @group menu
|
|
23804
|
+
$kendo-menu-item-selected-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
23805
|
+
|
|
23806
|
+
/// The background color of the Menu item.
|
|
23807
|
+
/// @group menu
|
|
23792
23808
|
$kendo-menu-item-bg: null !default;
|
|
23809
|
+
/// The text color of the Menu item.
|
|
23810
|
+
/// @group menu
|
|
23793
23811
|
$kendo-menu-item-text: inherit !default;
|
|
23812
|
+
/// The border color of the Menu item.
|
|
23813
|
+
/// @group menu
|
|
23794
23814
|
$kendo-menu-item-border: null !default;
|
|
23815
|
+
/// The background gradient of the Menu item.
|
|
23816
|
+
/// @group menu
|
|
23795
23817
|
$kendo-menu-item-gradient: null !default;
|
|
23796
23818
|
|
|
23819
|
+
/// The background color of hovered Menu item.
|
|
23820
|
+
/// @group menu
|
|
23797
23821
|
$kendo-menu-item-hover-bg: $kendo-hover-bg !default;
|
|
23822
|
+
/// The text color of hovered Menu item.
|
|
23823
|
+
/// @group menu
|
|
23798
23824
|
$kendo-menu-item-hover-text: $kendo-hover-text !default;
|
|
23825
|
+
/// The border color of hovered Menu item.
|
|
23826
|
+
/// @group menu
|
|
23799
23827
|
$kendo-menu-item-hover-border: $kendo-hover-border !default;
|
|
23828
|
+
/// The background gradient of hovered Menu item.
|
|
23829
|
+
/// @group menu
|
|
23800
23830
|
$kendo-menu-item-hover-gradient: $kendo-hover-gradient !default;
|
|
23801
23831
|
|
|
23802
|
-
|
|
23803
|
-
|
|
23804
|
-
$kendo-menu-item-
|
|
23805
|
-
|
|
23832
|
+
/// The background color of active Menu item.
|
|
23833
|
+
/// @group menu
|
|
23834
|
+
$kendo-menu-item-active-bg: null !default;
|
|
23835
|
+
/// The text color of active Menu item.
|
|
23836
|
+
/// @group menu
|
|
23837
|
+
$kendo-menu-item-active-text: $kendo-component-text !default;
|
|
23838
|
+
/// The border color of active Menu item.
|
|
23839
|
+
/// @group menu
|
|
23840
|
+
$kendo-menu-item-active-border: null !default;
|
|
23841
|
+
/// The background gradient of active Menu item.
|
|
23842
|
+
/// @group menu
|
|
23843
|
+
$kendo-menu-item-active-gradient: null !default;
|
|
23806
23844
|
|
|
23845
|
+
/// The base shadow of focused Menu item.
|
|
23846
|
+
/// @group menu
|
|
23807
23847
|
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( $kendo-menu-text, .25 )) !default;
|
|
23808
23848
|
|
|
23809
|
-
|
|
23849
|
+
/// The background color of selected Menu item.
|
|
23850
|
+
/// @group menu
|
|
23851
|
+
$kendo-menu-item-selected-bg: null !default;
|
|
23852
|
+
/// The text color of selected Menu item.
|
|
23853
|
+
/// @group menu
|
|
23854
|
+
$kendo-menu-item-selected-text: null !default;
|
|
23855
|
+
/// The border color of selected Menu item.
|
|
23856
|
+
/// @group menu
|
|
23857
|
+
$kendo-menu-item-selected-border: null !default;
|
|
23858
|
+
/// The background gradient of selected Menu item.
|
|
23859
|
+
/// @group menu
|
|
23860
|
+
$kendo-menu-item-selected-gradient: null !default;
|
|
23810
23861
|
|
|
23811
|
-
|
|
23812
|
-
|
|
23813
|
-
$kendo-menu-scroll-button-
|
|
23862
|
+
/// The background color of the Menu scroll buttons.
|
|
23863
|
+
/// @group menu
|
|
23864
|
+
$kendo-menu-scroll-button-bg: null !default;
|
|
23865
|
+
/// The text color of the Menu scroll buttons.
|
|
23866
|
+
/// @group menu
|
|
23867
|
+
$kendo-menu-scroll-button-text: $kendo-subtle-text !default;
|
|
23868
|
+
/// The border color of the Menu scroll buttons.
|
|
23869
|
+
/// @group menu
|
|
23870
|
+
$kendo-menu-scroll-button-border: null !default;
|
|
23871
|
+
/// The background gradient of the Menu scroll buttons.
|
|
23872
|
+
/// @group menu
|
|
23814
23873
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
23815
23874
|
|
|
23875
|
+
/// The background color of hovered Menu scroll buttons.
|
|
23876
|
+
/// @group menu
|
|
23816
23877
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
23817
|
-
|
|
23878
|
+
/// The text color of hovered Menu scroll buttons.
|
|
23879
|
+
/// @group menu
|
|
23880
|
+
$kendo-menu-scroll-button-hover-text: $kendo-component-text !default;
|
|
23881
|
+
/// The border color of hovered Menu scroll buttons.
|
|
23882
|
+
/// @group menu
|
|
23818
23883
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
23884
|
+
/// The background gradient of hovered Menu scroll buttons.
|
|
23885
|
+
/// @group menu
|
|
23819
23886
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
23820
23887
|
|
|
23821
23888
|
|
|
23889
|
+
// Menu Separator
|
|
23890
|
+
|
|
23891
|
+
/// The inline margin of the horizontal Menu separator.
|
|
23892
|
+
/// @group menu
|
|
23893
|
+
$kendo-menu-separator-margin-inline: k-spacing(1);
|
|
23894
|
+
/// The block margin of the horizontal Menu separator.
|
|
23895
|
+
/// @group menu
|
|
23896
|
+
$kendo-menu-separator-margin-block: k-spacing(1.5);
|
|
23897
|
+
/// The border color of Menu separator.
|
|
23898
|
+
/// @group menu
|
|
23899
|
+
$kendo-menu-separator-border: if($kendo-enable-color-system, k-color(border), $kendo-component-border) !default;
|
|
23900
|
+
|
|
23901
|
+
|
|
23822
23902
|
// Menu popup
|
|
23823
23903
|
|
|
23824
|
-
///
|
|
23904
|
+
/// The horizontal padding of the Menu popup.
|
|
23825
23905
|
/// @group menu
|
|
23826
23906
|
$kendo-menu-popup-padding-x: null !default;
|
|
23827
23907
|
|
|
23828
|
-
///
|
|
23908
|
+
/// The vertical padding of the Menu popup.
|
|
23829
23909
|
/// @group menu
|
|
23830
23910
|
$kendo-menu-popup-padding-y: null !default;
|
|
23831
23911
|
|
|
23832
|
-
///
|
|
23912
|
+
/// The width of the border around the Menu popup.
|
|
23833
23913
|
/// @group menu
|
|
23834
23914
|
$kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
23835
23915
|
|
|
23836
|
-
///
|
|
23916
|
+
/// The font sizes of the Menu popup.
|
|
23837
23917
|
/// @group menu
|
|
23838
23918
|
$kendo-menu-popup-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23839
23919
|
$kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23840
23920
|
$kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23841
23921
|
$kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
23842
23922
|
|
|
23843
|
-
///
|
|
23923
|
+
/// The line heights used along with $kendo-font-size.
|
|
23844
23924
|
/// @group menu
|
|
23845
23925
|
$kendo-menu-popup-line-height: var( --kendo-line-height, normal ) !default;
|
|
23846
23926
|
$kendo-menu-popup-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
23847
23927
|
$kendo-menu-popup-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
23848
23928
|
$kendo-menu-popup-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
23849
23929
|
|
|
23850
|
-
/// The background of the
|
|
23930
|
+
/// The background color of the Menu popup.
|
|
23851
23931
|
/// @group menu
|
|
23852
23932
|
$kendo-menu-popup-bg: $kendo-popup-bg !default;
|
|
23853
|
-
/// The text color of the
|
|
23933
|
+
/// The text color of the Menu popup.
|
|
23854
23934
|
/// @group menu
|
|
23855
23935
|
$kendo-menu-popup-text: $kendo-popup-text !default;
|
|
23856
|
-
/// The border color of the
|
|
23936
|
+
/// The border color of the Menu popup.
|
|
23857
23937
|
/// @group menu
|
|
23858
23938
|
$kendo-menu-popup-border: $kendo-popup-border !default;
|
|
23859
|
-
/// The background gradient of the
|
|
23939
|
+
/// The background gradient of the Menu popup.
|
|
23860
23940
|
/// @group menu
|
|
23861
23941
|
$kendo-menu-popup-gradient: null !default;
|
|
23862
23942
|
|
|
23863
23943
|
|
|
23864
23944
|
// Menu popup item
|
|
23865
23945
|
|
|
23866
|
-
///
|
|
23946
|
+
/// The horizontal padding of the Menu item in popup.
|
|
23867
23947
|
/// @group menu
|
|
23868
23948
|
$kendo-menu-popup-item-padding-x: k-spacing(2) !default;
|
|
23869
23949
|
$kendo-menu-popup-sm-item-padding-x: k-spacing(2) !default;
|
|
23870
23950
|
$kendo-menu-popup-md-item-padding-x: k-spacing(2) !default;
|
|
23871
23951
|
$kendo-menu-popup-lg-item-padding-x: k-spacing(2) !default;
|
|
23872
23952
|
|
|
23873
|
-
///
|
|
23953
|
+
/// The vertical padding of the Menu item in popup.
|
|
23874
23954
|
/// @group menu
|
|
23875
23955
|
$kendo-menu-popup-item-padding-y: k-spacing(1) !default;
|
|
23876
23956
|
$kendo-menu-popup-sm-item-padding-y: k-spacing(0.5) !default;
|
|
23877
23957
|
$kendo-menu-popup-md-item-padding-y: k-spacing(1) !default;
|
|
23878
23958
|
$kendo-menu-popup-lg-item-padding-y: k-spacing(1.5) !default;
|
|
23879
23959
|
|
|
23880
|
-
/// The end padding of the
|
|
23960
|
+
/// The end padding of the Menu item in popup.
|
|
23881
23961
|
/// @group menu
|
|
23882
23962
|
$kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23883
23963
|
$kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23884
23964
|
$kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23885
23965
|
$kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23886
23966
|
|
|
23887
|
-
/// The start margin of the
|
|
23967
|
+
/// The start margin of the Menu item expand icon.
|
|
23888
23968
|
/// @group menu
|
|
23889
23969
|
$kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
|
|
23890
23970
|
$kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
|
|
23891
23971
|
$kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
|
|
23892
23972
|
|
|
23893
|
-
/// The end margin of the
|
|
23973
|
+
/// The end margin of the Menu item expand icon.
|
|
23894
23974
|
/// @group menu
|
|
23895
23975
|
$kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-sm-item-padding-end} - #{k-math-div( $kendo-menu-popup-sm-item-padding-x, 2 )}) ) !default;
|
|
23896
23976
|
$kendo-menu-popup-md-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-md-item-padding-end} - #{k-math-div( $kendo-menu-popup-md-item-padding-x, 2 )}) ) !default;
|
|
23897
23977
|
$kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-lg-item-padding-end} - #{k-math-div( $kendo-menu-popup-lg-item-padding-x, 2 )}) ) !default;
|
|
23898
23978
|
|
|
23899
|
-
/// The spacing between the
|
|
23979
|
+
/// The spacing between the Menu items in popup.
|
|
23900
23980
|
/// @group menu
|
|
23901
23981
|
$kendo-menu-popup-item-spacing: k-spacing(0) !default;
|
|
23902
23982
|
|
|
23903
|
-
/// The background of the
|
|
23983
|
+
/// The background color of the Menu item in popup.
|
|
23904
23984
|
/// @group menu
|
|
23905
23985
|
$kendo-menu-popup-item-bg: null !default;
|
|
23906
|
-
/// The text color of the
|
|
23986
|
+
/// The text color of the Menu item in popup.
|
|
23907
23987
|
/// @group menu
|
|
23908
23988
|
$kendo-menu-popup-item-text: null !default;
|
|
23909
|
-
/// The border color of the
|
|
23989
|
+
/// The border color of the Menu item in popup.
|
|
23910
23990
|
/// @group menu
|
|
23911
23991
|
$kendo-menu-popup-item-border: null !default;
|
|
23912
|
-
/// The background gradient of the
|
|
23992
|
+
/// The background gradient of the Menu item in popup.
|
|
23913
23993
|
/// @group menu
|
|
23914
23994
|
$kendo-menu-popup-item-gradient: null !default;
|
|
23915
23995
|
|
|
23916
|
-
/// The background of hovered
|
|
23996
|
+
/// The background color of hovered Menu item in popup.
|
|
23917
23997
|
/// @group menu
|
|
23918
23998
|
$kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
|
|
23919
|
-
/// The text color of hovered
|
|
23999
|
+
/// The text color of hovered Menu item in popup.
|
|
23920
24000
|
/// @group menu
|
|
23921
24001
|
$kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
|
|
23922
|
-
/// The border color of hovered
|
|
24002
|
+
/// The border color of hovered Menu item in popup.
|
|
23923
24003
|
/// @group menu
|
|
23924
24004
|
$kendo-menu-popup-item-hover-border: null !default;
|
|
23925
|
-
/// The background gradient of hovered
|
|
24005
|
+
/// The background gradient of hovered Menu item in popup.
|
|
23926
24006
|
/// @group menu
|
|
23927
24007
|
$kendo-menu-popup-item-hover-gradient: null !default;
|
|
23928
24008
|
|
|
23929
|
-
/// The background of
|
|
24009
|
+
/// The background color of active Menu item in popup.
|
|
23930
24010
|
/// @group menu
|
|
23931
|
-
$kendo-menu-popup-item-
|
|
23932
|
-
/// The text color of
|
|
24011
|
+
$kendo-menu-popup-item-active-bg: $kendo-list-item-selected-bg !default;
|
|
24012
|
+
/// The text color of active Menu item in popup.
|
|
23933
24013
|
/// @group menu
|
|
23934
|
-
$kendo-menu-popup-item-
|
|
23935
|
-
/// The border color of
|
|
24014
|
+
$kendo-menu-popup-item-active-text: $kendo-list-item-selected-text !default;
|
|
24015
|
+
/// The border color of active Menu item in popup.
|
|
23936
24016
|
/// @group menu
|
|
23937
|
-
$kendo-menu-popup-item-
|
|
23938
|
-
/// The background gradient of
|
|
24017
|
+
$kendo-menu-popup-item-active-border: null !default;
|
|
24018
|
+
/// The background gradient of active Menu item in popup.
|
|
23939
24019
|
/// @group menu
|
|
23940
|
-
$kendo-menu-popup-item-
|
|
24020
|
+
$kendo-menu-popup-item-active-gradient: null !default;
|
|
23941
24021
|
|
|
23942
|
-
/// The base shadow of focused
|
|
24022
|
+
/// The base shadow of focused Menu item in popup.
|
|
23943
24023
|
/// @group menu
|
|
23944
24024
|
$kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
23945
24025
|
|
|
@@ -23973,7 +24053,6 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23973
24053
|
}
|
|
23974
24054
|
.k-menu { @extend .k-menu-bar !optional; }
|
|
23975
24055
|
|
|
23976
|
-
|
|
23977
24056
|
// Menu item
|
|
23978
24057
|
.k-menu-item {
|
|
23979
24058
|
border-width: 0;
|
|
@@ -23983,6 +24062,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23983
24062
|
flex: none;
|
|
23984
24063
|
position: relative;
|
|
23985
24064
|
user-select: none;
|
|
24065
|
+
|
|
24066
|
+
&.k-selected {
|
|
24067
|
+
font-weight: $kendo-menu-item-selected-font-weight;
|
|
24068
|
+
}
|
|
23986
24069
|
}
|
|
23987
24070
|
.k-menu-item-content {
|
|
23988
24071
|
display: block;
|
|
@@ -24042,8 +24125,8 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24042
24125
|
}
|
|
24043
24126
|
|
|
24044
24127
|
> .k-separator {
|
|
24045
|
-
margin-block:
|
|
24046
|
-
margin-inline: $kendo-menu-separator-
|
|
24128
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
24129
|
+
margin-inline: $kendo-menu-separator-margin-inline;
|
|
24047
24130
|
width: 0;
|
|
24048
24131
|
height: auto;
|
|
24049
24132
|
border-width: 0 0 0 1px;
|
|
@@ -24055,6 +24138,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24055
24138
|
// Orientation -- vertical
|
|
24056
24139
|
.k-menu-vertical {
|
|
24057
24140
|
flex-direction: column;
|
|
24141
|
+
width: 100%;
|
|
24058
24142
|
|
|
24059
24143
|
> .k-menu-item + .k-menu-item {
|
|
24060
24144
|
margin-top: $kendo-menu-item-spacing;
|
|
@@ -24072,12 +24156,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24072
24156
|
}
|
|
24073
24157
|
|
|
24074
24158
|
> .k-separator {
|
|
24075
|
-
margin-block: $kendo-menu-separator-
|
|
24159
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
24076
24160
|
margin-inline: 0;
|
|
24077
24161
|
height: 0;
|
|
24078
24162
|
border-width: 1px 0 0;
|
|
24079
24163
|
border-style: solid;
|
|
24080
|
-
border-color: $kendo-component-border;
|
|
24081
24164
|
display: block;
|
|
24082
24165
|
}
|
|
24083
24166
|
}
|
|
@@ -24098,6 +24181,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24098
24181
|
*::after {
|
|
24099
24182
|
box-sizing: border-box;
|
|
24100
24183
|
}
|
|
24184
|
+
|
|
24185
|
+
.k-menu-item {
|
|
24186
|
+
font-weight: initial;
|
|
24187
|
+
}
|
|
24101
24188
|
}
|
|
24102
24189
|
|
|
24103
24190
|
|
|
@@ -24115,12 +24202,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24115
24202
|
}
|
|
24116
24203
|
|
|
24117
24204
|
.k-separator {
|
|
24118
|
-
margin-block: $kendo-menu-separator-
|
|
24205
|
+
margin-block: $kendo-menu-separator-margin-inline;
|
|
24119
24206
|
margin-inline: 0;
|
|
24120
24207
|
height: 0;
|
|
24121
24208
|
border-width: 1px 0 0;
|
|
24122
24209
|
border-style: solid;
|
|
24123
|
-
border-color: $kendo-component-border;
|
|
24124
24210
|
display: block;
|
|
24125
24211
|
}
|
|
24126
24212
|
}
|
|
@@ -24237,50 +24323,20 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24237
24323
|
margin: 0;
|
|
24238
24324
|
padding: 0;
|
|
24239
24325
|
border: 0;
|
|
24240
|
-
|
|
24326
|
+
display: flex;
|
|
24327
|
+
align-items: center;
|
|
24241
24328
|
|
|
24242
24329
|
.k-menu {
|
|
24243
24330
|
overflow: hidden;
|
|
24244
24331
|
flex-wrap: nowrap;
|
|
24245
24332
|
}
|
|
24333
|
+
}
|
|
24246
24334
|
|
|
24247
|
-
|
|
24248
|
-
|
|
24249
|
-
padding: 0;
|
|
24250
|
-
border-width: 0;
|
|
24251
|
-
border-color: inherit;
|
|
24252
|
-
color: inherit;
|
|
24253
|
-
background: inherit;
|
|
24254
|
-
position: absolute;
|
|
24335
|
+
.k-menu-scroll-wrapper-vertical {
|
|
24336
|
+
flex-direction: column;
|
|
24255
24337
|
|
|
24256
|
-
|
|
24257
|
-
|
|
24258
|
-
inset-inline-start: 0;
|
|
24259
|
-
height: 100%;
|
|
24260
|
-
width: 16px;
|
|
24261
|
-
border-right-width: 1px;
|
|
24262
|
-
}
|
|
24263
|
-
&.k-scroll-right {
|
|
24264
|
-
top: 0;
|
|
24265
|
-
inset-inline-end: 0;
|
|
24266
|
-
height: 100%;
|
|
24267
|
-
width: 16px;
|
|
24268
|
-
border-left-width: 1px;
|
|
24269
|
-
}
|
|
24270
|
-
&.k-scroll-up {
|
|
24271
|
-
top: 0;
|
|
24272
|
-
inset-inline-start: 0;
|
|
24273
|
-
width: 100%;
|
|
24274
|
-
height: 16px;
|
|
24275
|
-
border-bottom-width: 1px;
|
|
24276
|
-
}
|
|
24277
|
-
&.k-scroll-down {
|
|
24278
|
-
bottom: 0;
|
|
24279
|
-
inset-inline-start: 0;
|
|
24280
|
-
width: 100%;
|
|
24281
|
-
height: 16px;
|
|
24282
|
-
border-top-width: 1px;
|
|
24283
|
-
}
|
|
24338
|
+
> .k-menu-scroll-button {
|
|
24339
|
+
width: 100%;
|
|
24284
24340
|
}
|
|
24285
24341
|
}
|
|
24286
24342
|
|
|
@@ -24332,10 +24388,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24332
24388
|
&:active,
|
|
24333
24389
|
&.k-active {
|
|
24334
24390
|
@include fill(
|
|
24335
|
-
$kendo-menu-item-
|
|
24336
|
-
$kendo-menu-item-
|
|
24337
|
-
$kendo-menu-item-
|
|
24338
|
-
$kendo-menu-item-
|
|
24391
|
+
$kendo-menu-item-active-text,
|
|
24392
|
+
$kendo-menu-item-active-bg,
|
|
24393
|
+
$kendo-menu-item-active-border,
|
|
24394
|
+
$kendo-menu-item-active-gradient
|
|
24339
24395
|
);
|
|
24340
24396
|
}
|
|
24341
24397
|
|
|
@@ -24343,6 +24399,21 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24343
24399
|
&.k-focus {
|
|
24344
24400
|
@include focus-indicator( $kendo-menu-item-focus-shadow, true );
|
|
24345
24401
|
}
|
|
24402
|
+
|
|
24403
|
+
&.k-selected {
|
|
24404
|
+
@include fill(
|
|
24405
|
+
$kendo-menu-item-selected-text,
|
|
24406
|
+
$kendo-menu-item-selected-bg,
|
|
24407
|
+
$kendo-menu-item-selected-border,
|
|
24408
|
+
$kendo-menu-item-selected-gradient
|
|
24409
|
+
);
|
|
24410
|
+
}
|
|
24411
|
+
}
|
|
24412
|
+
|
|
24413
|
+
> .k-separator {
|
|
24414
|
+
@include fill(
|
|
24415
|
+
$border: $kendo-menu-separator-border
|
|
24416
|
+
);
|
|
24346
24417
|
}
|
|
24347
24418
|
}
|
|
24348
24419
|
|
|
@@ -24377,10 +24448,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24377
24448
|
&.k-active,
|
|
24378
24449
|
&.k-selected {
|
|
24379
24450
|
@include fill(
|
|
24380
|
-
$kendo-menu-popup-item-
|
|
24381
|
-
$kendo-menu-popup-item-
|
|
24382
|
-
$kendo-menu-popup-item-
|
|
24383
|
-
$kendo-menu-popup-item-
|
|
24451
|
+
$kendo-menu-popup-item-active-text,
|
|
24452
|
+
$kendo-menu-popup-item-active-bg,
|
|
24453
|
+
$kendo-menu-popup-item-active-border,
|
|
24454
|
+
$kendo-menu-popup-item-active-gradient
|
|
24384
24455
|
);
|
|
24385
24456
|
}
|
|
24386
24457
|
}
|
|
@@ -24391,6 +24462,12 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24391
24462
|
@include focus-indicator( $kendo-menu-popup-item-focus-shadow, true );
|
|
24392
24463
|
}
|
|
24393
24464
|
}
|
|
24465
|
+
|
|
24466
|
+
> .k-separator {
|
|
24467
|
+
@include fill(
|
|
24468
|
+
$border: $kendo-menu-separator-border
|
|
24469
|
+
);
|
|
24470
|
+
}
|
|
24394
24471
|
}
|
|
24395
24472
|
|
|
24396
24473
|
|
|
@@ -24919,8 +24996,8 @@ $kendo-toolbar-sizes: (
|
|
|
24919
24996
|
|
|
24920
24997
|
// Selected
|
|
24921
24998
|
&.k-selected {
|
|
24922
|
-
color: $kendo-menu-popup-item-
|
|
24923
|
-
background: $kendo-menu-popup-item-
|
|
24999
|
+
color: $kendo-menu-popup-item-active-text;
|
|
25000
|
+
background: $kendo-menu-popup-item-active-bg;
|
|
24924
25001
|
}
|
|
24925
25002
|
|
|
24926
25003
|
// Disabled state
|
|
@@ -43514,13 +43591,16 @@ $kendo-tabstrip-item-hover-gradient: null !default;
|
|
|
43514
43591
|
$kendo-tabstrip-item-selected-bg: $kendo-component-bg !default;
|
|
43515
43592
|
/// The text color of the selected TabStrip items.
|
|
43516
43593
|
/// @group tabstrip
|
|
43517
|
-
$kendo-tabstrip-item-selected-text: $kendo-
|
|
43594
|
+
$kendo-tabstrip-item-selected-text: $kendo-link-text !default;
|
|
43518
43595
|
/// The border color of the selected TabStrip items.
|
|
43519
43596
|
/// @group tabstrip
|
|
43520
43597
|
$kendo-tabstrip-item-selected-border: $kendo-component-border !default;
|
|
43521
43598
|
/// The gradient of the selected TabStrip items.
|
|
43522
43599
|
/// @group tabstrip
|
|
43523
43600
|
$kendo-tabstrip-item-selected-gradient: false !default;
|
|
43601
|
+
/// The font weight of the selected TabStrip items.
|
|
43602
|
+
/// @group tabstrip
|
|
43603
|
+
$kendo-tabstrip-item-selected-font-weight: null !default;
|
|
43524
43604
|
|
|
43525
43605
|
/// The shadow of the focused TabStrip items.
|
|
43526
43606
|
/// @group tabstrip
|
|
@@ -43655,6 +43735,20 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
43655
43735
|
align-items: stretch;
|
|
43656
43736
|
justify-items: stretch;
|
|
43657
43737
|
outline: 0;
|
|
43738
|
+
|
|
43739
|
+
// Active state
|
|
43740
|
+
&:active,
|
|
43741
|
+
&.k-active,
|
|
43742
|
+
&.k-selected {
|
|
43743
|
+
font-weight: $kendo-tabstrip-item-selected-font-weight;
|
|
43744
|
+
}
|
|
43745
|
+
}
|
|
43746
|
+
|
|
43747
|
+
.k-item-actions {
|
|
43748
|
+
margin: 0;
|
|
43749
|
+
padding: 0;
|
|
43750
|
+
display: flex;
|
|
43751
|
+
flex-direction: row;
|
|
43658
43752
|
}
|
|
43659
43753
|
|
|
43660
43754
|
.k-tab-on-top {
|
|
@@ -43672,6 +43766,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
43672
43766
|
flex-direction: row;
|
|
43673
43767
|
align-content: center;
|
|
43674
43768
|
align-items: center;
|
|
43769
|
+
gap: $kendo-icon-spacing;
|
|
43675
43770
|
}
|
|
43676
43771
|
|
|
43677
43772
|
|
|
@@ -43744,21 +43839,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
|
43744
43839
|
white-space: nowrap;
|
|
43745
43840
|
overflow: hidden;
|
|
43746
43841
|
}
|
|
43747
|
-
|
|
43748
|
-
> .k-button {
|
|
43749
|
-
padding-block: k-spacing(1);
|
|
43750
|
-
padding-inline: k-spacing(1);
|
|
43751
|
-
width: auto;
|
|
43752
|
-
height: auto;
|
|
43753
|
-
flex: none;
|
|
43754
|
-
align-self: stretch;
|
|
43755
|
-
aspect-ratio: auto;
|
|
43756
|
-
|
|
43757
|
-
.k-button-icon {
|
|
43758
|
-
min-width: auto;
|
|
43759
|
-
min-height: auto;
|
|
43760
|
-
}
|
|
43761
|
-
}
|
|
43762
43842
|
}
|
|
43763
43843
|
}
|
|
43764
43844
|
|