UNPKG

1.58 kBSCSSView Raw
1////
2/// @module menu-button: 菜单按钮
3/// @tag MenuButton
4/// @category component
5/// @family general
6/// @varPrefix $menu-btn-
7/// @classPrefix {prefix}-menu-btn
8////
9
10// menu-button variables
11// --------------------------------------------------
12
13// prefix
14$menu-btn-prefix: ".#{$css-prefix}menu-btn";
15
16/// icon
17/// @namespace statement/disabled
18$menu-btn-disabled-icon-color: $color-text1-1 !default;
19
20/// ghost icon
21$menu-btn-ghost-light-disabled-icon-color: $btn-ghost-light-color-disabled !default;
22
23/// ghost icon
24$menu-btn-ghost-dark-disabled-icon-color: $btn-ghost-dark-color-disabled !default;
25
26/// icon
27/// @namespace statement/normal
28$menu-btn-pure-text-normal-icon-color: $color-text1-2 !default;
29
30/// icon
31/// @namespace statement/normal
32$menu-btn-pure-text-primary-icon-color: $color-white !default;
33
34/// icon
35/// @namespace statement/normal
36$menu-btn-pure-text-secondary-icon-color: $color-brand1-6 !default;
37
38/// icon
39/// @namespace statement/normal
40$menu-btn-text-text-normal-icon-color: $color-text1-4 !default;
41
42/// icon
43/// @namespace statement/primary
44$menu-btn-text-text-primary-icon-color: $color-link-1 !default;
45
46/// icon
47/// @namespace statement/light
48$menu-btn-ghost-light-icon-color: $color-text1-4 !default;
49
50/// icon
51/// @namespace statement/dark
52$menu-btn-ghost-dark-icon-color: $color-white !default;
53
54/// fold icon
55/// @namespace statement/normal
56/// @type icon
57$menu-btn-fold-icon-content: $icon-content-arrow-down !default;
58
59/// unfold icon
60/// @namespace statement/normal
61/// @type icon
62$menu-btn-unfold-icon-content: $icon-reset !default;