1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
@use 'iro-sass/src/index' as iro;
@use '../vars';
@use '../mixins/typography';
@mixin button-variant($variant) {
border-color: iro.props-get((--colors, --#{$variant}, --bg));
background-color: iro.props-get((--colors, --#{$variant}, --bg));
box-shadow: iro.props-get((--colors, --#{$variant}, --shadow));
color: iro.props-get((--colors, --#{$variant}, --label));
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover {
border-color: iro.props-get((--colors, --#{$variant}, --hover, --bg));
background-color: iro.props-get((--colors, --#{$variant}, --hover, --bg));
box-shadow: iro.props-get((--colors, --#{$variant}, --hover, --shadow));
color: iro.props-get((--colors, --#{$variant}, --hover, --label));
}
&:active {
border-color: iro.props-get((--colors, --#{$variant}, --active, --bg));
background-color: iro.props-get((--colors, --#{$variant}, --active, --bg));
box-shadow: iro.props-get((--colors, --#{$variant}, --active, --shadow));
color: iro.props-get((--colors, --#{$variant}, --active, --label));
}
}
@include iro.bem-modifier('outline') {
background-color: transparent;
box-shadow: none;
color: iro.props-get((--colors, --#{$variant}, --outline-label));
}
}
@include iro.props-namespace('button') {
@include iro.props-store((
--dims: (
--padding-x: 1.2rem,
--padding-y: .5rem,
--rounding: 10em,
),
--colors: (
--any: (
--disabled: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg-hi3, $global: true),
--shadow: 0 0 0 0 transparent,
),
--key-focus: (
--bg: transparent,
--label: iro.props-get(--colors --accent --primary-lo2, $global: true),
--border: iro.props-get(--colors --focus --fill, $global: true),
--shadow: iro.props-get(--colors --focus --shadow, $global: true),
),
),
--accent: (
--bg: iro.props-get(--colors --accent --primary, $global: true),
--label: iro.props-get(--colors --accent --primary-fg, $global: true),
--outline-label: iro.props-get(--colors --accent --primary-lo, $global: true),
--shadow: 0 0 0 0 transparent,
--hover: (
--bg: iro.props-get(--colors --accent --primary-lo, $global: true),
--label: iro.props-get(--colors --accent --primary-fg, $global: true),
--shadow: 0 0 0 0 transparent,
),
--active: (
--bg: iro.props-get(--colors --accent --primary-lo2, $global: true),
--label: iro.props-get(--colors --accent --primary-fg, $global: true),
--shadow: 0 0 0 0 transparent,
),
),
--primary: (
--bg: iro.props-get(--colors --fg, $global: true),
--label: iro.props-get(--colors --bg-hi2, $global: true),
--outline-label: iro.props-get(--colors --fg, $global: true),
--shadow: 0 0 0 0 transparent,
--hover: (
--bg: iro.props-get(--colors --fg-lo, $global: true),
--label: iro.props-get(--colors --bg-hi2, $global: true),
--shadow: 0 0 0 0 transparent,
),
--active: (
--bg: iro.props-get(--colors --fg-lo, $global: true),
--label: iro.props-get(--colors --bg-hi2, $global: true),
--shadow: 0 0 0 0 transparent,
),
),
--secondary: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg, $global: true),
--outline-label: iro.props-get(--colors --fg, $global: true),
--shadow: 0 0 0 0 transparent,
--hover: (
--bg: iro.props-get(--colors --obj, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--shadow: 0 0 0 0 transparent,
),
--active: (
--bg: iro.props-get(--colors --obj-lo, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--shadow: 0 0 0 0 transparent,
),
),
),
));
@include iro.bem-object(iro.props-namespace()) {
@include typography.set-font(vars.$font--main, (weight: 500));
display: inline-block;
padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x);
border: 2px solid transparent;
border-radius: iro.props-get(--dims --rounding);
line-height: 1;
text-align: center;
text-decoration: none;
@include iro.bem-modifier('block') {
display: block;
}
@include iro.bem-modifier('native') {
@include iro.bem-modifier('block') {
box-sizing: border-box;
width: 100%;
}
}
@include button-variant('secondary');
@each $mod in ('accent' 'primary') {
@include iro.bem-modifier($mod) {
@include button-variant($mod);
}
}
@include iro.bem-at-theme('keyboard') {
&:focus {
border-color: iro.props-get(--colors --any --key-focus --border);
background-color: iro.props-get(--colors --any --key-focus --bg);
box-shadow: iro.props-get(--colors --any --key-focus --shadow);
color: iro.props-get(--colors --any --key-focus --label);
}
}
@include iro.bem-is('disabled') {
border-color: iro.props-get(--colors --any --disabled --bg);
background-color: iro.props-get(--colors --any --disabled --bg);
box-shadow: iro.props-get(--colors --any --disabled --shadow);
color: iro.props-get(--colors --any --disabled --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover,
&:active {
border-color: iro.props-get(--colors --any --disabled --bg);
background-color: iro.props-get(--colors --any --disabled --bg);
box-shadow: iro.props-get(--colors --any --disabled --shadow);
color: iro.props-get(--colors --any --disabled --label);
}
}
@include iro.bem-modifier('outline') {
background-color: transparent;
box-shadow: none;
}
}
}
}
|