@progress/kendo-theme-bootstrap 9.1.0-dev.1 → 9.1.0-dev.3
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 +192 -97
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +28742 -26528
- package/dist/meta/sassdoc-raw-data.json +1167 -142
- package/dist/meta/variables.json +46 -18
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +6 -6
- package/scss/menu/_variables.scss +141 -43
package/dist/all.scss
CHANGED
|
@@ -25851,172 +25851,270 @@ $_kendo-module-meta: (
|
|
|
25851
25851
|
// Component
|
|
25852
25852
|
// #region @import "./_variables.scss"; -> scss/menu/_variables.scss
|
|
25853
25853
|
// Menu
|
|
25854
|
+
|
|
25855
|
+
/// The width of the border around the Menu.
|
|
25856
|
+
/// @group menu
|
|
25854
25857
|
$kendo-menu-border-width: 0px !default;
|
|
25858
|
+
|
|
25859
|
+
/// The font family of the Menu.
|
|
25860
|
+
/// @group menu
|
|
25855
25861
|
$kendo-menu-font-family: var( --kendo-font-family, inherit ) !default;
|
|
25862
|
+
/// The font size of the Menu.
|
|
25863
|
+
/// @group menu
|
|
25856
25864
|
$kendo-menu-font-size: var( --kendo-font-size, inherit ) !default;
|
|
25865
|
+
/// The line height of the Menu used along with $kendo-font-size.
|
|
25866
|
+
/// @group menu
|
|
25857
25867
|
$kendo-menu-line-height: var( --kendo-line-height, normal ) !default;
|
|
25858
25868
|
|
|
25859
|
-
|
|
25869
|
+
/// The background color of the Menu.
|
|
25870
|
+
/// @group menu
|
|
25871
|
+
$kendo-menu-bg: transparent !default;
|
|
25872
|
+
/// The text color of the Menu
|
|
25873
|
+
/// @group menu
|
|
25860
25874
|
$kendo-menu-text: $kendo-component-header-text !default;
|
|
25875
|
+
/// The border color of the Menu.
|
|
25876
|
+
/// @group menu
|
|
25861
25877
|
$kendo-menu-border: $kendo-component-header-border !default;
|
|
25878
|
+
/// The background gradient of the Menu.
|
|
25879
|
+
/// @group menu
|
|
25862
25880
|
$kendo-menu-gradient: null !default;
|
|
25863
25881
|
|
|
25882
|
+
// Menu item
|
|
25883
|
+
|
|
25884
|
+
/// The horizontal padding of the Menu item.
|
|
25885
|
+
/// @group menu
|
|
25864
25886
|
$kendo-menu-item-padding-x: k-spacing(2) !default;
|
|
25887
|
+
/// The vertical padding of the Menu item.
|
|
25888
|
+
/// @group menu
|
|
25865
25889
|
$kendo-menu-item-padding-y: k-spacing(2) !default;
|
|
25890
|
+
/// The spacing between the Menu items.
|
|
25891
|
+
/// @group menu
|
|
25866
25892
|
$kendo-menu-item-spacing: k-spacing(0) !default;
|
|
25893
|
+
/// The spacing between the Menu item text and icons.
|
|
25894
|
+
/// @group menu
|
|
25867
25895
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
25868
25896
|
|
|
25897
|
+
/// The font weight of the selected Menu item.
|
|
25898
|
+
/// @group menu
|
|
25899
|
+
$kendo-menu-item-selected-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
25900
|
+
|
|
25901
|
+
/// The background color of the Menu item.
|
|
25902
|
+
/// @group menu
|
|
25869
25903
|
$kendo-menu-item-bg: null !default;
|
|
25870
|
-
|
|
25904
|
+
/// The text color of the Menu item.
|
|
25905
|
+
/// @group menu
|
|
25906
|
+
$kendo-menu-item-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 76%, transparent), rgba( $kendo-menu-text, .76 )) !default;
|
|
25907
|
+
/// The border color of the Menu item.
|
|
25908
|
+
/// @group menu
|
|
25871
25909
|
$kendo-menu-item-border: null !default;
|
|
25910
|
+
/// The background gradient of the Menu item.
|
|
25911
|
+
/// @group menu
|
|
25872
25912
|
$kendo-menu-item-gradient: null !default;
|
|
25873
25913
|
|
|
25914
|
+
/// The background color of hovered Menu item.
|
|
25915
|
+
/// @group menu
|
|
25874
25916
|
$kendo-menu-item-hover-bg: null !default;
|
|
25875
|
-
|
|
25917
|
+
/// The text color of hovered Menu item.
|
|
25918
|
+
/// @group menu
|
|
25919
|
+
$kendo-menu-item-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 93%, transparent), rgba( $kendo-menu-text, .93 )) !default;
|
|
25920
|
+
/// The border color of hovered Menu item.
|
|
25921
|
+
/// @group menu
|
|
25876
25922
|
$kendo-menu-item-hover-border: null !default;
|
|
25923
|
+
/// The background gradient of hovered Menu item.
|
|
25924
|
+
/// @group menu
|
|
25877
25925
|
$kendo-menu-item-hover-gradient: null !default;
|
|
25878
25926
|
|
|
25879
|
-
|
|
25880
|
-
|
|
25881
|
-
$kendo-menu-item-
|
|
25882
|
-
|
|
25927
|
+
/// The background color of active Menu item.
|
|
25928
|
+
/// @group menu
|
|
25929
|
+
$kendo-menu-item-active-bg: null !default;
|
|
25930
|
+
/// The text color of active Menu item.
|
|
25931
|
+
/// @group menu
|
|
25932
|
+
$kendo-menu-item-active-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 100%, transparent), rgba( $kendo-menu-text, 1 )) !default;
|
|
25933
|
+
/// The border color of active Menu item.
|
|
25934
|
+
/// @group menu
|
|
25935
|
+
$kendo-menu-item-active-border: null !default;
|
|
25936
|
+
/// The background gradient of active Menu item.
|
|
25937
|
+
/// @group menu
|
|
25938
|
+
$kendo-menu-item-active-gradient: null !default;
|
|
25883
25939
|
|
|
25940
|
+
/// The base shadow of focused Menu item.
|
|
25941
|
+
/// @group menu
|
|
25884
25942
|
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-menu-text, .15 )) !default;
|
|
25885
25943
|
|
|
25886
|
-
|
|
25944
|
+
/// The background color of selected Menu item.
|
|
25945
|
+
/// @group menu
|
|
25946
|
+
$kendo-menu-item-selected-bg: null !default;
|
|
25947
|
+
/// The text color of selected Menu item.
|
|
25948
|
+
/// @group menu
|
|
25949
|
+
$kendo-menu-item-selected-text: null !default;
|
|
25950
|
+
/// The border color of selected Menu item.
|
|
25951
|
+
/// @group menu
|
|
25952
|
+
$kendo-menu-item-selected-border: null !default;
|
|
25953
|
+
/// The background gradient of selected Menu item.
|
|
25954
|
+
/// @group menu
|
|
25955
|
+
$kendo-menu-item-selected-gradient: null !default;
|
|
25887
25956
|
|
|
25957
|
+
/// The background color of the Menu scroll buttons.
|
|
25958
|
+
/// @group menu
|
|
25888
25959
|
$kendo-menu-scroll-button-bg: $kendo-menu-bg !default;
|
|
25960
|
+
/// The text color of the Menu scroll buttons.
|
|
25961
|
+
/// @group menu
|
|
25889
25962
|
$kendo-menu-scroll-button-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
|
|
25963
|
+
/// The border color of the Menu scroll buttons.
|
|
25964
|
+
/// @group menu
|
|
25890
25965
|
$kendo-menu-scroll-button-border: $kendo-menu-border !default;
|
|
25966
|
+
/// The background gradient of the Menu scroll buttons.
|
|
25967
|
+
/// @group menu
|
|
25891
25968
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
25892
25969
|
|
|
25970
|
+
/// The background color of hovered Menu scroll buttons.
|
|
25971
|
+
/// @group menu
|
|
25893
25972
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
25973
|
+
/// The text color of hovered Menu scroll buttons.
|
|
25974
|
+
/// @group menu
|
|
25894
25975
|
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
|
|
25976
|
+
/// The border color of hovered Menu scroll buttons.
|
|
25977
|
+
/// @group menu
|
|
25895
25978
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
25979
|
+
/// The background gradient of hovered Menu scroll buttons.
|
|
25980
|
+
/// @group menu
|
|
25896
25981
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
25897
25982
|
|
|
25898
25983
|
|
|
25984
|
+
// Menu Separator
|
|
25985
|
+
|
|
25986
|
+
/// The inline margin of the horizontal Menu separator.
|
|
25987
|
+
/// @group menu
|
|
25988
|
+
$kendo-menu-separator-margin-inline: k-spacing(1);
|
|
25989
|
+
/// The block margin of the horizontal Menu separator.
|
|
25990
|
+
/// @group menu
|
|
25991
|
+
$kendo-menu-separator-margin-block: k-spacing(2);;
|
|
25992
|
+
/// The border color of Menu separator.
|
|
25993
|
+
/// @group menu
|
|
25994
|
+
$kendo-menu-separator-border: if($kendo-enable-color-system, k-color(border), $kendo-component-border) !default;
|
|
25995
|
+
|
|
25996
|
+
|
|
25899
25997
|
// Menu popup
|
|
25900
25998
|
|
|
25901
|
-
///
|
|
25999
|
+
/// The horizontal padding of the Menu popup.
|
|
25902
26000
|
/// @group menu
|
|
25903
26001
|
$kendo-menu-popup-padding-x: null !default;
|
|
25904
26002
|
|
|
25905
|
-
///
|
|
26003
|
+
/// The vertical padding of the Menu popup.
|
|
25906
26004
|
/// @group menu
|
|
25907
26005
|
$kendo-menu-popup-padding-y: null !default;
|
|
25908
26006
|
|
|
25909
|
-
///
|
|
26007
|
+
/// The width of the border around the Menu popup.
|
|
25910
26008
|
/// @group menu
|
|
25911
26009
|
$kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
25912
26010
|
|
|
25913
|
-
///
|
|
26011
|
+
/// The font sizes of the Menu popup.
|
|
25914
26012
|
/// @group menu
|
|
25915
|
-
$kendo-menu-popup-font-size: var( --kendo-font-size, inherit )
|
|
25916
|
-
$kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit )
|
|
25917
|
-
$kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit )
|
|
26013
|
+
$kendo-menu-popup-font-size: var( --kendo-font-size, inherit ) !default;
|
|
26014
|
+
$kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
26015
|
+
$kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
25918
26016
|
$kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
25919
26017
|
|
|
25920
|
-
///
|
|
26018
|
+
/// The line heights used along with $kendo-font-size.
|
|
25921
26019
|
/// @group menu
|
|
25922
26020
|
$kendo-menu-popup-line-height: var( --kendo-line-height, normal ) !default;
|
|
25923
26021
|
$kendo-menu-popup-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
25924
26022
|
$kendo-menu-popup-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
25925
26023
|
$kendo-menu-popup-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
25926
26024
|
|
|
25927
|
-
/// The background of the
|
|
26025
|
+
/// The background color of the Menu popup.
|
|
25928
26026
|
/// @group menu
|
|
25929
26027
|
$kendo-menu-popup-bg: $kendo-popup-bg !default;
|
|
25930
|
-
/// The text color of the
|
|
26028
|
+
/// The text color of the Menu popup.
|
|
25931
26029
|
/// @group menu
|
|
25932
26030
|
$kendo-menu-popup-text: $kendo-popup-text !default;
|
|
25933
|
-
/// The border color of the
|
|
26031
|
+
/// The border color of the Menu popup.
|
|
25934
26032
|
/// @group menu
|
|
25935
26033
|
$kendo-menu-popup-border: $kendo-popup-border !default;
|
|
25936
|
-
/// The background gradient of the
|
|
26034
|
+
/// The background gradient of the Menu popup.
|
|
25937
26035
|
/// @group menu
|
|
25938
26036
|
$kendo-menu-popup-gradient: null !default;
|
|
25939
26037
|
|
|
25940
26038
|
|
|
25941
26039
|
// Menu popup item
|
|
25942
26040
|
|
|
25943
|
-
///
|
|
26041
|
+
/// The horizontal padding of the Menu item in popup.
|
|
25944
26042
|
/// @group menu
|
|
25945
26043
|
$kendo-menu-popup-item-padding-x: k-spacing(4) !default;
|
|
25946
26044
|
$kendo-menu-popup-sm-item-padding-x: k-spacing(4) !default;
|
|
25947
26045
|
$kendo-menu-popup-md-item-padding-x: k-spacing(4) !default;
|
|
25948
26046
|
$kendo-menu-popup-lg-item-padding-x: k-spacing(4) !default;
|
|
25949
26047
|
|
|
25950
|
-
///
|
|
26048
|
+
/// The vertical padding of the Menu item in popup.
|
|
25951
26049
|
/// @group menu
|
|
25952
26050
|
$kendo-menu-popup-item-padding-y: k-spacing(1) !default;
|
|
25953
26051
|
$kendo-menu-popup-sm-item-padding-y: k-spacing(0.5) !default;
|
|
25954
26052
|
$kendo-menu-popup-md-item-padding-y: k-spacing(1) !default;
|
|
25955
26053
|
$kendo-menu-popup-lg-item-padding-y: k-spacing(1.5) !default;
|
|
25956
26054
|
|
|
25957
|
-
/// The end padding of the
|
|
26055
|
+
/// The end padding of the Menu item in popup.
|
|
25958
26056
|
/// @group menu
|
|
25959
26057
|
$kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
25960
26058
|
$kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
25961
26059
|
$kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
25962
26060
|
$kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
25963
26061
|
|
|
25964
|
-
/// The start margin of the
|
|
26062
|
+
/// The start margin of the Menu item expand icon.
|
|
25965
26063
|
/// @group menu
|
|
25966
26064
|
$kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
|
|
25967
26065
|
$kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
|
|
25968
26066
|
$kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
|
|
25969
26067
|
|
|
25970
|
-
/// The end margin of the
|
|
26068
|
+
/// The end margin of the Menu item expand icon.
|
|
25971
26069
|
/// @group menu
|
|
25972
26070
|
$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;
|
|
25973
26071
|
$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;
|
|
25974
26072
|
$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;
|
|
25975
26073
|
|
|
25976
|
-
/// The spacing between the
|
|
26074
|
+
/// The spacing between the Menu items in popup.
|
|
25977
26075
|
/// @group menu
|
|
25978
26076
|
$kendo-menu-popup-item-spacing: k-spacing(0) !default;
|
|
25979
26077
|
|
|
25980
|
-
/// The background of the
|
|
26078
|
+
/// The background color of the Menu item in popup.
|
|
25981
26079
|
/// @group menu
|
|
25982
26080
|
$kendo-menu-popup-item-bg: null !default;
|
|
25983
|
-
/// The text color of the
|
|
26081
|
+
/// The text color of the Menu item in popup.
|
|
25984
26082
|
/// @group menu
|
|
25985
26083
|
$kendo-menu-popup-item-text: null !default;
|
|
25986
|
-
/// The border color of the
|
|
26084
|
+
/// The border color of the Menu item in popup.
|
|
25987
26085
|
/// @group menu
|
|
25988
26086
|
$kendo-menu-popup-item-border: null !default;
|
|
25989
|
-
/// The background gradient of the
|
|
26087
|
+
/// The background gradient of the Menu item in popup.
|
|
25990
26088
|
/// @group menu
|
|
25991
26089
|
$kendo-menu-popup-item-gradient: null !default;
|
|
25992
26090
|
|
|
25993
|
-
/// The background of hovered
|
|
26091
|
+
/// The background color of hovered Menu item in popup.
|
|
25994
26092
|
/// @group menu
|
|
25995
26093
|
$kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
|
|
25996
|
-
/// The text color of hovered
|
|
26094
|
+
/// The text color of hovered Menu item in popup.
|
|
25997
26095
|
/// @group menu
|
|
25998
26096
|
$kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
|
|
25999
|
-
/// The border color of hovered
|
|
26097
|
+
/// The border color of hovered Menu item in popup.
|
|
26000
26098
|
/// @group menu
|
|
26001
26099
|
$kendo-menu-popup-item-hover-border: null !default;
|
|
26002
|
-
/// The background gradient of hovered
|
|
26100
|
+
/// The background gradient of hovered Menu item in popup.
|
|
26003
26101
|
/// @group menu
|
|
26004
26102
|
$kendo-menu-popup-item-hover-gradient: null !default;
|
|
26005
26103
|
|
|
26006
|
-
/// The background of
|
|
26104
|
+
/// The background color of active Menu item in popup.
|
|
26007
26105
|
/// @group menu
|
|
26008
|
-
$kendo-menu-popup-item-
|
|
26009
|
-
/// The text color of
|
|
26106
|
+
$kendo-menu-popup-item-active-bg: $kendo-list-item-selected-bg !default;
|
|
26107
|
+
/// The text color of active Menu item in popup.
|
|
26010
26108
|
/// @group menu
|
|
26011
|
-
$kendo-menu-popup-item-
|
|
26012
|
-
/// The border color of
|
|
26109
|
+
$kendo-menu-popup-item-active-text: $kendo-list-item-selected-text !default;
|
|
26110
|
+
/// The border color of active Menu item in popup.
|
|
26013
26111
|
/// @group menu
|
|
26014
|
-
$kendo-menu-popup-item-
|
|
26015
|
-
/// The background gradient of
|
|
26112
|
+
$kendo-menu-popup-item-active-border: null !default;
|
|
26113
|
+
/// The background gradient of active Menu item in popup.
|
|
26016
26114
|
/// @group menu
|
|
26017
|
-
$kendo-menu-popup-item-
|
|
26115
|
+
$kendo-menu-popup-item-active-gradient: null !default;
|
|
26018
26116
|
|
|
26019
|
-
/// The base shadow of focused
|
|
26117
|
+
/// The base shadow of focused Menu item in popup.
|
|
26020
26118
|
/// @group menu
|
|
26021
26119
|
$kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
26022
26120
|
|
|
@@ -26050,7 +26148,6 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26050
26148
|
}
|
|
26051
26149
|
.k-menu { @extend .k-menu-bar !optional; }
|
|
26052
26150
|
|
|
26053
|
-
|
|
26054
26151
|
// Menu item
|
|
26055
26152
|
.k-menu-item {
|
|
26056
26153
|
border-width: 0;
|
|
@@ -26060,6 +26157,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26060
26157
|
flex: none;
|
|
26061
26158
|
position: relative;
|
|
26062
26159
|
user-select: none;
|
|
26160
|
+
|
|
26161
|
+
&.k-selected {
|
|
26162
|
+
font-weight: $kendo-menu-item-selected-font-weight;
|
|
26163
|
+
}
|
|
26063
26164
|
}
|
|
26064
26165
|
.k-menu-item-content {
|
|
26065
26166
|
display: block;
|
|
@@ -26119,8 +26220,8 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26119
26220
|
}
|
|
26120
26221
|
|
|
26121
26222
|
> .k-separator {
|
|
26122
|
-
margin-block:
|
|
26123
|
-
margin-inline: $kendo-menu-separator-
|
|
26223
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
26224
|
+
margin-inline: $kendo-menu-separator-margin-inline;
|
|
26124
26225
|
width: 0;
|
|
26125
26226
|
height: auto;
|
|
26126
26227
|
border-width: 0 0 0 1px;
|
|
@@ -26132,6 +26233,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26132
26233
|
// Orientation -- vertical
|
|
26133
26234
|
.k-menu-vertical {
|
|
26134
26235
|
flex-direction: column;
|
|
26236
|
+
width: 100%;
|
|
26135
26237
|
|
|
26136
26238
|
> .k-menu-item + .k-menu-item {
|
|
26137
26239
|
margin-top: $kendo-menu-item-spacing;
|
|
@@ -26149,12 +26251,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26149
26251
|
}
|
|
26150
26252
|
|
|
26151
26253
|
> .k-separator {
|
|
26152
|
-
margin-block: $kendo-menu-separator-
|
|
26254
|
+
margin-block: $kendo-menu-separator-margin-block;
|
|
26153
26255
|
margin-inline: 0;
|
|
26154
26256
|
height: 0;
|
|
26155
26257
|
border-width: 1px 0 0;
|
|
26156
26258
|
border-style: solid;
|
|
26157
|
-
border-color: $kendo-component-border;
|
|
26158
26259
|
display: block;
|
|
26159
26260
|
}
|
|
26160
26261
|
}
|
|
@@ -26175,6 +26276,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26175
26276
|
*::after {
|
|
26176
26277
|
box-sizing: border-box;
|
|
26177
26278
|
}
|
|
26279
|
+
|
|
26280
|
+
.k-menu-item {
|
|
26281
|
+
font-weight: initial;
|
|
26282
|
+
}
|
|
26178
26283
|
}
|
|
26179
26284
|
|
|
26180
26285
|
|
|
@@ -26192,12 +26297,11 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26192
26297
|
}
|
|
26193
26298
|
|
|
26194
26299
|
.k-separator {
|
|
26195
|
-
margin-block: $kendo-menu-separator-
|
|
26300
|
+
margin-block: $kendo-menu-separator-margin-inline;
|
|
26196
26301
|
margin-inline: 0;
|
|
26197
26302
|
height: 0;
|
|
26198
26303
|
border-width: 1px 0 0;
|
|
26199
26304
|
border-style: solid;
|
|
26200
|
-
border-color: $kendo-component-border;
|
|
26201
26305
|
display: block;
|
|
26202
26306
|
}
|
|
26203
26307
|
}
|
|
@@ -26314,50 +26418,20 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26314
26418
|
margin: 0;
|
|
26315
26419
|
padding: 0;
|
|
26316
26420
|
border: 0;
|
|
26317
|
-
|
|
26421
|
+
display: flex;
|
|
26422
|
+
align-items: center;
|
|
26318
26423
|
|
|
26319
26424
|
.k-menu {
|
|
26320
26425
|
overflow: hidden;
|
|
26321
26426
|
flex-wrap: nowrap;
|
|
26322
26427
|
}
|
|
26428
|
+
}
|
|
26323
26429
|
|
|
26324
|
-
|
|
26325
|
-
|
|
26326
|
-
padding: 0;
|
|
26327
|
-
border-width: 0;
|
|
26328
|
-
border-color: inherit;
|
|
26329
|
-
color: inherit;
|
|
26330
|
-
background: inherit;
|
|
26331
|
-
position: absolute;
|
|
26430
|
+
.k-menu-scroll-wrapper-vertical {
|
|
26431
|
+
flex-direction: column;
|
|
26332
26432
|
|
|
26333
|
-
|
|
26334
|
-
|
|
26335
|
-
inset-inline-start: 0;
|
|
26336
|
-
height: 100%;
|
|
26337
|
-
width: 16px;
|
|
26338
|
-
border-right-width: 1px;
|
|
26339
|
-
}
|
|
26340
|
-
&.k-scroll-right {
|
|
26341
|
-
top: 0;
|
|
26342
|
-
inset-inline-end: 0;
|
|
26343
|
-
height: 100%;
|
|
26344
|
-
width: 16px;
|
|
26345
|
-
border-left-width: 1px;
|
|
26346
|
-
}
|
|
26347
|
-
&.k-scroll-up {
|
|
26348
|
-
top: 0;
|
|
26349
|
-
inset-inline-start: 0;
|
|
26350
|
-
width: 100%;
|
|
26351
|
-
height: 16px;
|
|
26352
|
-
border-bottom-width: 1px;
|
|
26353
|
-
}
|
|
26354
|
-
&.k-scroll-down {
|
|
26355
|
-
bottom: 0;
|
|
26356
|
-
inset-inline-start: 0;
|
|
26357
|
-
width: 100%;
|
|
26358
|
-
height: 16px;
|
|
26359
|
-
border-top-width: 1px;
|
|
26360
|
-
}
|
|
26433
|
+
> .k-menu-scroll-button {
|
|
26434
|
+
width: 100%;
|
|
26361
26435
|
}
|
|
26362
26436
|
}
|
|
26363
26437
|
|
|
@@ -26438,10 +26512,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26438
26512
|
&:active,
|
|
26439
26513
|
&.k-active {
|
|
26440
26514
|
@include fill(
|
|
26441
|
-
$kendo-menu-item-
|
|
26442
|
-
$kendo-menu-item-
|
|
26443
|
-
$kendo-menu-item-
|
|
26444
|
-
$kendo-menu-item-
|
|
26515
|
+
$kendo-menu-item-active-text,
|
|
26516
|
+
$kendo-menu-item-active-bg,
|
|
26517
|
+
$kendo-menu-item-active-border,
|
|
26518
|
+
$kendo-menu-item-active-gradient
|
|
26445
26519
|
);
|
|
26446
26520
|
}
|
|
26447
26521
|
|
|
@@ -26449,6 +26523,21 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26449
26523
|
&.k-focus {
|
|
26450
26524
|
@include focus-indicator( $kendo-menu-item-focus-shadow, true );
|
|
26451
26525
|
}
|
|
26526
|
+
|
|
26527
|
+
&.k-selected {
|
|
26528
|
+
@include fill(
|
|
26529
|
+
$kendo-menu-item-selected-text,
|
|
26530
|
+
$kendo-menu-item-selected-bg,
|
|
26531
|
+
$kendo-menu-item-selected-border,
|
|
26532
|
+
$kendo-menu-item-selected-gradient
|
|
26533
|
+
);
|
|
26534
|
+
}
|
|
26535
|
+
}
|
|
26536
|
+
|
|
26537
|
+
> .k-separator {
|
|
26538
|
+
@include fill(
|
|
26539
|
+
$border: $kendo-menu-separator-border
|
|
26540
|
+
);
|
|
26452
26541
|
}
|
|
26453
26542
|
}
|
|
26454
26543
|
|
|
@@ -26483,10 +26572,10 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26483
26572
|
&.k-active,
|
|
26484
26573
|
&.k-selected {
|
|
26485
26574
|
@include fill(
|
|
26486
|
-
$kendo-menu-popup-item-
|
|
26487
|
-
$kendo-menu-popup-item-
|
|
26488
|
-
$kendo-menu-popup-item-
|
|
26489
|
-
$kendo-menu-popup-item-
|
|
26575
|
+
$kendo-menu-popup-item-active-text,
|
|
26576
|
+
$kendo-menu-popup-item-active-bg,
|
|
26577
|
+
$kendo-menu-popup-item-active-border,
|
|
26578
|
+
$kendo-menu-popup-item-active-gradient
|
|
26490
26579
|
);
|
|
26491
26580
|
}
|
|
26492
26581
|
}
|
|
@@ -26497,6 +26586,12 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
26497
26586
|
@include focus-indicator( $kendo-menu-popup-item-focus-shadow, true );
|
|
26498
26587
|
}
|
|
26499
26588
|
}
|
|
26589
|
+
|
|
26590
|
+
> .k-separator {
|
|
26591
|
+
@include fill(
|
|
26592
|
+
$border: $kendo-menu-separator-border
|
|
26593
|
+
);
|
|
26594
|
+
}
|
|
26500
26595
|
}
|
|
26501
26596
|
|
|
26502
26597
|
|
|
@@ -27025,8 +27120,8 @@ $kendo-toolbar-sizes: (
|
|
|
27025
27120
|
|
|
27026
27121
|
// Selected
|
|
27027
27122
|
&.k-selected {
|
|
27028
|
-
color: $kendo-menu-popup-item-
|
|
27029
|
-
background: $kendo-menu-popup-item-
|
|
27123
|
+
color: $kendo-menu-popup-item-active-text;
|
|
27124
|
+
background: $kendo-menu-popup-item-active-bg;
|
|
27030
27125
|
}
|
|
27031
27126
|
|
|
27032
27127
|
// Disabled state
|