@progress/kendo-theme-classic 9.1.0-dev.1 → 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 +189 -97
- 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 +25629 -23415
- package/dist/meta/sassdoc-raw-data.json +1167 -142
- package/dist/meta/variables.json +45 -25
- 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/menu/_variables.scss +138 -43
package/dist/all.scss
CHANGED
|
@@ -23757,174 +23757,269 @@ $_kendo-module-meta: (
|
|
|
23757
23757
|
// #region @import "./_variables.scss"; -> scss/menu/_variables.scss
|
|
23758
23758
|
// Menu
|
|
23759
23759
|
|
|
23760
|
-
|
|
23761
|
-
|
|
23760
|
+
/// The width of the border around the Menu.
|
|
23761
|
+
/// @group menu
|
|
23762
23762
|
$kendo-menu-border-width: 1px !default;
|
|
23763
|
+
/// The font family of the Menu.
|
|
23764
|
+
/// @group menu
|
|
23763
23765
|
$kendo-menu-font-family: var( --kendo-font-family, inherit ) !default;
|
|
23766
|
+
/// The font size of the Menu.
|
|
23767
|
+
/// @group menu
|
|
23764
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
|
|
23765
23771
|
$kendo-menu-line-height: var( --kendo-line-height, normal ) !default;
|
|
23766
23772
|
|
|
23773
|
+
/// The background color of the Menu.
|
|
23774
|
+
/// @group menu
|
|
23767
23775
|
$kendo-menu-bg: $kendo-base-bg !default;
|
|
23776
|
+
/// The text color of the Menu.
|
|
23777
|
+
/// @group menu
|
|
23768
23778
|
$kendo-menu-text: $kendo-base-text !default;
|
|
23779
|
+
/// The border color of the Menu.
|
|
23780
|
+
/// @group menu
|
|
23769
23781
|
$kendo-menu-border: $kendo-base-border !default;
|
|
23782
|
+
/// The background gradient of the Menu.
|
|
23783
|
+
/// @group menu
|
|
23770
23784
|
$kendo-menu-gradient: $kendo-base-gradient !default;
|
|
23771
23785
|
|
|
23786
|
+
|
|
23787
|
+
// Menu item
|
|
23788
|
+
|
|
23789
|
+
/// The horizontal padding of the Menu item.
|
|
23790
|
+
/// @group menu
|
|
23772
23791
|
$kendo-menu-item-padding-x: k-spacing(2) !default;
|
|
23792
|
+
/// The vertical padding of the Menu item.
|
|
23793
|
+
/// @group menu
|
|
23773
23794
|
$kendo-menu-item-padding-y: k-spacing(1) !default;
|
|
23795
|
+
/// The spacing between the Menu items.
|
|
23796
|
+
/// @group menu
|
|
23774
23797
|
$kendo-menu-item-spacing: null !default;
|
|
23798
|
+
/// The spacing between the Menu item text and icons.
|
|
23799
|
+
/// @group menu
|
|
23775
23800
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
23776
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
|
|
23777
23808
|
$kendo-menu-item-bg: null !default;
|
|
23809
|
+
/// The text color of the Menu item.
|
|
23810
|
+
/// @group menu
|
|
23778
23811
|
$kendo-menu-item-text: inherit !default;
|
|
23812
|
+
/// The border color of the Menu item.
|
|
23813
|
+
/// @group menu
|
|
23779
23814
|
$kendo-menu-item-border: null !default;
|
|
23815
|
+
/// The background gradient of the Menu item.
|
|
23816
|
+
/// @group menu
|
|
23780
23817
|
$kendo-menu-item-gradient: null !default;
|
|
23781
23818
|
|
|
23819
|
+
/// The background color of hovered Menu item.
|
|
23820
|
+
/// @group menu
|
|
23782
23821
|
$kendo-menu-item-hover-bg: $kendo-hover-bg !default;
|
|
23822
|
+
/// The text color of hovered Menu item.
|
|
23823
|
+
/// @group menu
|
|
23783
23824
|
$kendo-menu-item-hover-text: $kendo-hover-text !default;
|
|
23825
|
+
/// The border color of hovered Menu item.
|
|
23826
|
+
/// @group menu
|
|
23784
23827
|
$kendo-menu-item-hover-border: $kendo-hover-border !default;
|
|
23828
|
+
/// The background gradient of hovered Menu item.
|
|
23829
|
+
/// @group menu
|
|
23785
23830
|
$kendo-menu-item-hover-gradient: $kendo-hover-gradient !default;
|
|
23786
23831
|
|
|
23787
|
-
|
|
23788
|
-
|
|
23789
|
-
$kendo-menu-item-
|
|
23790
|
-
|
|
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;
|
|
23791
23844
|
|
|
23845
|
+
/// The base shadow of focused Menu item.
|
|
23846
|
+
/// @group menu
|
|
23792
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;
|
|
23793
23848
|
|
|
23794
|
-
|
|
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;
|
|
23795
23861
|
|
|
23796
|
-
|
|
23797
|
-
|
|
23798
|
-
$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
|
|
23799
23873
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
23800
23874
|
|
|
23875
|
+
/// The background color of hovered Menu scroll buttons.
|
|
23876
|
+
/// @group menu
|
|
23801
23877
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
23802
|
-
|
|
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
|
|
23803
23883
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
23884
|
+
/// The background gradient of hovered Menu scroll buttons.
|
|
23885
|
+
/// @group menu
|
|
23804
23886
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
23805
23887
|
|
|
23806
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
|
+
|
|
23807
23902
|
// Menu popup
|
|
23808
23903
|
|
|
23809
|
-
///
|
|
23904
|
+
/// The horizontal padding of the Menu popup.
|
|
23810
23905
|
/// @group menu
|
|
23811
23906
|
$kendo-menu-popup-padding-x: null !default;
|
|
23812
23907
|
|
|
23813
|
-
///
|
|
23908
|
+
/// The vertical padding of the Menu popup.
|
|
23814
23909
|
/// @group menu
|
|
23815
23910
|
$kendo-menu-popup-padding-y: null !default;
|
|
23816
23911
|
|
|
23817
|
-
///
|
|
23912
|
+
/// The width of the border around the Menu popup.
|
|
23818
23913
|
/// @group menu
|
|
23819
23914
|
$kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
23820
23915
|
|
|
23821
|
-
///
|
|
23916
|
+
/// The font sizes of the Menu popup.
|
|
23822
23917
|
/// @group menu
|
|
23823
23918
|
$kendo-menu-popup-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23824
23919
|
$kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23825
23920
|
$kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23826
23921
|
$kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
23827
23922
|
|
|
23828
|
-
///
|
|
23923
|
+
/// The line heights used along with $kendo-font-size.
|
|
23829
23924
|
/// @group menu
|
|
23830
23925
|
$kendo-menu-popup-line-height: var( --kendo-line-height, normal ) !default;
|
|
23831
23926
|
$kendo-menu-popup-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
23832
23927
|
$kendo-menu-popup-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
23833
23928
|
$kendo-menu-popup-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
23834
23929
|
|
|
23835
|
-
/// The background of the
|
|
23930
|
+
/// The background color of the Menu popup.
|
|
23836
23931
|
/// @group menu
|
|
23837
23932
|
$kendo-menu-popup-bg: $kendo-popup-bg !default;
|
|
23838
|
-
/// The text color of the
|
|
23933
|
+
/// The text color of the Menu popup.
|
|
23839
23934
|
/// @group menu
|
|
23840
23935
|
$kendo-menu-popup-text: $kendo-popup-text !default;
|
|
23841
|
-
/// The border color of the
|
|
23936
|
+
/// The border color of the Menu popup.
|
|
23842
23937
|
/// @group menu
|
|
23843
23938
|
$kendo-menu-popup-border: $kendo-popup-border !default;
|
|
23844
|
-
/// The background gradient of the
|
|
23939
|
+
/// The background gradient of the Menu popup.
|
|
23845
23940
|
/// @group menu
|
|
23846
23941
|
$kendo-menu-popup-gradient: null !default;
|
|
23847
23942
|
|
|
23848
23943
|
|
|
23849
23944
|
// Menu popup item
|
|
23850
23945
|
|
|
23851
|
-
///
|
|
23946
|
+
/// The horizontal padding of the Menu item in popup.
|
|
23852
23947
|
/// @group menu
|
|
23853
23948
|
$kendo-menu-popup-item-padding-x: k-spacing(2) !default;
|
|
23854
23949
|
$kendo-menu-popup-sm-item-padding-x: k-spacing(2) !default;
|
|
23855
23950
|
$kendo-menu-popup-md-item-padding-x: k-spacing(2) !default;
|
|
23856
23951
|
$kendo-menu-popup-lg-item-padding-x: k-spacing(2) !default;
|
|
23857
23952
|
|
|
23858
|
-
///
|
|
23953
|
+
/// The vertical padding of the Menu item in popup.
|
|
23859
23954
|
/// @group menu
|
|
23860
23955
|
$kendo-menu-popup-item-padding-y: k-spacing(1) !default;
|
|
23861
23956
|
$kendo-menu-popup-sm-item-padding-y: k-spacing(0.5) !default;
|
|
23862
23957
|
$kendo-menu-popup-md-item-padding-y: k-spacing(1) !default;
|
|
23863
23958
|
$kendo-menu-popup-lg-item-padding-y: k-spacing(1.5) !default;
|
|
23864
23959
|
|
|
23865
|
-
/// The end padding of the
|
|
23960
|
+
/// The end padding of the Menu item in popup.
|
|
23866
23961
|
/// @group menu
|
|
23867
23962
|
$kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23868
23963
|
$kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23869
23964
|
$kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23870
23965
|
$kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
23871
23966
|
|
|
23872
|
-
/// The start margin of the
|
|
23967
|
+
/// The start margin of the Menu item expand icon.
|
|
23873
23968
|
/// @group menu
|
|
23874
23969
|
$kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
|
|
23875
23970
|
$kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
|
|
23876
23971
|
$kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
|
|
23877
23972
|
|
|
23878
|
-
/// The end margin of the
|
|
23973
|
+
/// The end margin of the Menu item expand icon.
|
|
23879
23974
|
/// @group menu
|
|
23880
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;
|
|
23881
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;
|
|
23882
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;
|
|
23883
23978
|
|
|
23884
|
-
/// The spacing between the
|
|
23979
|
+
/// The spacing between the Menu items in popup.
|
|
23885
23980
|
/// @group menu
|
|
23886
23981
|
$kendo-menu-popup-item-spacing: k-spacing(0) !default;
|
|
23887
23982
|
|
|
23888
|
-
/// The background of the
|
|
23983
|
+
/// The background color of the Menu item in popup.
|
|
23889
23984
|
/// @group menu
|
|
23890
23985
|
$kendo-menu-popup-item-bg: null !default;
|
|
23891
|
-
/// The text color of the
|
|
23986
|
+
/// The text color of the Menu item in popup.
|
|
23892
23987
|
/// @group menu
|
|
23893
23988
|
$kendo-menu-popup-item-text: null !default;
|
|
23894
|
-
/// The border color of the
|
|
23989
|
+
/// The border color of the Menu item in popup.
|
|
23895
23990
|
/// @group menu
|
|
23896
23991
|
$kendo-menu-popup-item-border: null !default;
|
|
23897
|
-
/// The background gradient of the
|
|
23992
|
+
/// The background gradient of the Menu item in popup.
|
|
23898
23993
|
/// @group menu
|
|
23899
23994
|
$kendo-menu-popup-item-gradient: null !default;
|
|
23900
23995
|
|
|
23901
|
-
/// The background of hovered
|
|
23996
|
+
/// The background color of hovered Menu item in popup.
|
|
23902
23997
|
/// @group menu
|
|
23903
23998
|
$kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
|
|
23904
|
-
/// The text color of hovered
|
|
23999
|
+
/// The text color of hovered Menu item in popup.
|
|
23905
24000
|
/// @group menu
|
|
23906
24001
|
$kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
|
|
23907
|
-
/// The border color of hovered
|
|
24002
|
+
/// The border color of hovered Menu item in popup.
|
|
23908
24003
|
/// @group menu
|
|
23909
24004
|
$kendo-menu-popup-item-hover-border: null !default;
|
|
23910
|
-
/// The background gradient of hovered
|
|
24005
|
+
/// The background gradient of hovered Menu item in popup.
|
|
23911
24006
|
/// @group menu
|
|
23912
24007
|
$kendo-menu-popup-item-hover-gradient: null !default;
|
|
23913
24008
|
|
|
23914
|
-
/// The background of
|
|
24009
|
+
/// The background color of active Menu item in popup.
|
|
23915
24010
|
/// @group menu
|
|
23916
|
-
$kendo-menu-popup-item-
|
|
23917
|
-
/// 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.
|
|
23918
24013
|
/// @group menu
|
|
23919
|
-
$kendo-menu-popup-item-
|
|
23920
|
-
/// 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.
|
|
23921
24016
|
/// @group menu
|
|
23922
|
-
$kendo-menu-popup-item-
|
|
23923
|
-
/// The background gradient of
|
|
24017
|
+
$kendo-menu-popup-item-active-border: null !default;
|
|
24018
|
+
/// The background gradient of active Menu item in popup.
|
|
23924
24019
|
/// @group menu
|
|
23925
|
-
$kendo-menu-popup-item-
|
|
24020
|
+
$kendo-menu-popup-item-active-gradient: null !default;
|
|
23926
24021
|
|
|
23927
|
-
/// The base shadow of focused
|
|
24022
|
+
/// The base shadow of focused Menu item in popup.
|
|
23928
24023
|
/// @group menu
|
|
23929
24024
|
$kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
23930
24025
|
|
|
@@ -23958,7 +24053,6 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23958
24053
|
}
|
|
23959
24054
|
.k-menu { @extend .k-menu-bar !optional; }
|
|
23960
24055
|
|
|
23961
|
-
|
|
23962
24056
|
// Menu item
|
|
23963
24057
|
.k-menu-item {
|
|
23964
24058
|
border-width: 0;
|
|
@@ -23968,6 +24062,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
23968
24062
|
flex: none;
|
|
23969
24063
|
position: relative;
|
|
23970
24064
|
user-select: none;
|
|
24065
|
+
|
|
24066
|
+
&.k-selected {
|
|
24067
|
+
font-weight: $kendo-menu-item-selected-font-weight;
|
|
24068
|
+
}
|
|
23971
24069
|
}
|
|
23972
24070
|
.k-menu-item-content {
|
|
23973
24071
|
display: block;
|
|
@@ -24027,8 +24125,8 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24027
24125
|
}
|
|
24028
24126
|
|
|
24029
24127
|
> .k-separator {
|
|
24030
|
-
margin-block:
|
|
24031
|
-
margin-inline: $kendo-menu-separator-
|
|
24128
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
24129
|
+
margin-inline: $kendo-menu-separator-margin-inline;
|
|
24032
24130
|
width: 0;
|
|
24033
24131
|
height: auto;
|
|
24034
24132
|
border-width: 0 0 0 1px;
|
|
@@ -24040,6 +24138,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24040
24138
|
// Orientation -- vertical
|
|
24041
24139
|
.k-menu-vertical {
|
|
24042
24140
|
flex-direction: column;
|
|
24141
|
+
width: 100%;
|
|
24043
24142
|
|
|
24044
24143
|
> .k-menu-item + .k-menu-item {
|
|
24045
24144
|
margin-top: $kendo-menu-item-spacing;
|
|
@@ -24057,12 +24156,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24057
24156
|
}
|
|
24058
24157
|
|
|
24059
24158
|
> .k-separator {
|
|
24060
|
-
margin-block: $kendo-menu-separator-
|
|
24159
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
24061
24160
|
margin-inline: 0;
|
|
24062
24161
|
height: 0;
|
|
24063
24162
|
border-width: 1px 0 0;
|
|
24064
24163
|
border-style: solid;
|
|
24065
|
-
border-color: $kendo-component-border;
|
|
24066
24164
|
display: block;
|
|
24067
24165
|
}
|
|
24068
24166
|
}
|
|
@@ -24083,6 +24181,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24083
24181
|
*::after {
|
|
24084
24182
|
box-sizing: border-box;
|
|
24085
24183
|
}
|
|
24184
|
+
|
|
24185
|
+
.k-menu-item {
|
|
24186
|
+
font-weight: initial;
|
|
24187
|
+
}
|
|
24086
24188
|
}
|
|
24087
24189
|
|
|
24088
24190
|
|
|
@@ -24100,12 +24202,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24100
24202
|
}
|
|
24101
24203
|
|
|
24102
24204
|
.k-separator {
|
|
24103
|
-
margin-block: $kendo-menu-separator-
|
|
24205
|
+
margin-block: $kendo-menu-separator-margin-inline;
|
|
24104
24206
|
margin-inline: 0;
|
|
24105
24207
|
height: 0;
|
|
24106
24208
|
border-width: 1px 0 0;
|
|
24107
24209
|
border-style: solid;
|
|
24108
|
-
border-color: $kendo-component-border;
|
|
24109
24210
|
display: block;
|
|
24110
24211
|
}
|
|
24111
24212
|
}
|
|
@@ -24222,50 +24323,20 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24222
24323
|
margin: 0;
|
|
24223
24324
|
padding: 0;
|
|
24224
24325
|
border: 0;
|
|
24225
|
-
|
|
24326
|
+
display: flex;
|
|
24327
|
+
align-items: center;
|
|
24226
24328
|
|
|
24227
24329
|
.k-menu {
|
|
24228
24330
|
overflow: hidden;
|
|
24229
24331
|
flex-wrap: nowrap;
|
|
24230
24332
|
}
|
|
24333
|
+
}
|
|
24231
24334
|
|
|
24232
|
-
|
|
24233
|
-
|
|
24234
|
-
padding: 0;
|
|
24235
|
-
border-width: 0;
|
|
24236
|
-
border-color: inherit;
|
|
24237
|
-
color: inherit;
|
|
24238
|
-
background: inherit;
|
|
24239
|
-
position: absolute;
|
|
24335
|
+
.k-menu-scroll-wrapper-vertical {
|
|
24336
|
+
flex-direction: column;
|
|
24240
24337
|
|
|
24241
|
-
|
|
24242
|
-
|
|
24243
|
-
inset-inline-start: 0;
|
|
24244
|
-
height: 100%;
|
|
24245
|
-
width: 16px;
|
|
24246
|
-
border-right-width: 1px;
|
|
24247
|
-
}
|
|
24248
|
-
&.k-scroll-right {
|
|
24249
|
-
top: 0;
|
|
24250
|
-
inset-inline-end: 0;
|
|
24251
|
-
height: 100%;
|
|
24252
|
-
width: 16px;
|
|
24253
|
-
border-left-width: 1px;
|
|
24254
|
-
}
|
|
24255
|
-
&.k-scroll-up {
|
|
24256
|
-
top: 0;
|
|
24257
|
-
inset-inline-start: 0;
|
|
24258
|
-
width: 100%;
|
|
24259
|
-
height: 16px;
|
|
24260
|
-
border-bottom-width: 1px;
|
|
24261
|
-
}
|
|
24262
|
-
&.k-scroll-down {
|
|
24263
|
-
bottom: 0;
|
|
24264
|
-
inset-inline-start: 0;
|
|
24265
|
-
width: 100%;
|
|
24266
|
-
height: 16px;
|
|
24267
|
-
border-top-width: 1px;
|
|
24268
|
-
}
|
|
24338
|
+
> .k-menu-scroll-button {
|
|
24339
|
+
width: 100%;
|
|
24269
24340
|
}
|
|
24270
24341
|
}
|
|
24271
24342
|
|
|
@@ -24317,10 +24388,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24317
24388
|
&:active,
|
|
24318
24389
|
&.k-active {
|
|
24319
24390
|
@include fill(
|
|
24320
|
-
$kendo-menu-item-
|
|
24321
|
-
$kendo-menu-item-
|
|
24322
|
-
$kendo-menu-item-
|
|
24323
|
-
$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
|
|
24324
24395
|
);
|
|
24325
24396
|
}
|
|
24326
24397
|
|
|
@@ -24328,6 +24399,21 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24328
24399
|
&.k-focus {
|
|
24329
24400
|
@include focus-indicator( $kendo-menu-item-focus-shadow, true );
|
|
24330
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
|
+
);
|
|
24331
24417
|
}
|
|
24332
24418
|
}
|
|
24333
24419
|
|
|
@@ -24362,10 +24448,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24362
24448
|
&.k-active,
|
|
24363
24449
|
&.k-selected {
|
|
24364
24450
|
@include fill(
|
|
24365
|
-
$kendo-menu-popup-item-
|
|
24366
|
-
$kendo-menu-popup-item-
|
|
24367
|
-
$kendo-menu-popup-item-
|
|
24368
|
-
$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
|
|
24369
24455
|
);
|
|
24370
24456
|
}
|
|
24371
24457
|
}
|
|
@@ -24376,6 +24462,12 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
24376
24462
|
@include focus-indicator( $kendo-menu-popup-item-focus-shadow, true );
|
|
24377
24463
|
}
|
|
24378
24464
|
}
|
|
24465
|
+
|
|
24466
|
+
> .k-separator {
|
|
24467
|
+
@include fill(
|
|
24468
|
+
$border: $kendo-menu-separator-border
|
|
24469
|
+
);
|
|
24470
|
+
}
|
|
24379
24471
|
}
|
|
24380
24472
|
|
|
24381
24473
|
|
|
@@ -24904,8 +24996,8 @@ $kendo-toolbar-sizes: (
|
|
|
24904
24996
|
|
|
24905
24997
|
// Selected
|
|
24906
24998
|
&.k-selected {
|
|
24907
|
-
color: $kendo-menu-popup-item-
|
|
24908
|
-
background: $kendo-menu-popup-item-
|
|
24999
|
+
color: $kendo-menu-popup-item-active-text;
|
|
25000
|
+
background: $kendo-menu-popup-item-active-bg;
|
|
24909
25001
|
}
|
|
24910
25002
|
|
|
24911
25003
|
// Disabled state
|