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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
@use 'iro-sass/src/index' as iro;
@include iro.props-namespace('action-button') {
@include iro.props-store((
--dims: (
--padding-x: .6rem,
--padding-y: .6rem,
--rounding: 3px,
),
--colors: (
--bg: iro.props-get(--colors --bg-hi, $global: true),
--label: iro.props-get(--colors --fg, $global: true),
--border: iro.props-get(--colors --obj-lo, $global: true),
--shadow: 0 0 0 0 transparent,
--hover: (
--bg: iro.props-get(--colors --bg-hi2, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--border: iro.props-get(--colors --fg-hi2, $global: true),
--shadow: 0 0 0 0 transparent,
),
--active: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--border: iro.props-get(--colors --fg-hi2, $global: true),
--shadow: 0 0 0 0 transparent,
),
--selected: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg, $global: true),
--border: iro.props-get(--colors --fg-hi3, $global: true),
--shadow: 0 0 0 0 transparent,
--hover: (
--label: iro.props-get(--colors --fg-lo, $global: true),
--border: iro.props-get(--colors --fg-hi2, $global: true),
--shadow: 0 0 0 0 transparent,
),
--key-focus: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
),
),
--disabled: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg-hi3, $global: true),
--border: iro.props-get(--colors --obj-hi, $global: true),
--shadow: 0 0 0 0 transparent,
),
--key-focus: (
--bg: iro.props-get(--colors --bg-hi2, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--border: iro.props-get(--colors --focus --fill, $global: true),
--shadow: iro.props-get(--colors --focus --shadow, $global: true),
),
--quiet: (
--label: iro.props-get(--colors --fg, $global: true),
--hover: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
),
--active: (
--bg: iro.props-get(--colors --obj, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
),
--selected: (
--bg: iro.props-get(--colors --obj-hi, $global: true),
--label: iro.props-get(--colors --fg, $global: true),
--hover: (
--label: iro.props-get(--colors --fg-lo, $global: true),
),
--key-focus: (
--bg: iro.props-get(--colors --obj, $global: true),
),
),
--disabled: (
--label: iro.props-get(--colors --fg-hi3, $global: true),
),
--key-focus: (
--bg: iro.props-get(--colors --bg-hi2, $global: true),
--label: iro.props-get(--colors --fg-lo, $global: true),
--border: iro.props-get(--colors --focus --fill, $global: true),
--shadow: iro.props-get(--colors --focus --shadow, $global: true),
),
),
),
));
@include iro.bem-object(iro.props-namespace()) {
display: inline-block;
padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x);
border: 1px solid iro.props-get(--colors --border);
border-radius: iro.props-get(--dims --rounding);
background-color: iro.props-get(--colors --bg);
box-shadow: iro.props-get(--colors --shadow);
color: iro.props-get(--colors --label);
line-height: 1;
text-align: center;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover {
border-color: iro.props-get(--colors --hover --border);
background-color: iro.props-get(--colors --hover --bg);
box-shadow: iro.props-get(--colors --hover --shadow);
color: iro.props-get(--colors --hover --label);
}
&:active {
border-color: iro.props-get(--colors --active --border);
background-color: iro.props-get(--colors --active --bg);
box-shadow: iro.props-get(--colors --active --shadow);
color: iro.props-get(--colors --active --label);
}
}
@include iro.bem-at-theme('keyboard') {
&:focus {
border-color: iro.props-get(--colors --key-focus --border);
background-color: iro.props-get(--colors --key-focus --bg);
box-shadow: inset 0 0 0 1px iro.props-get(--colors --key-focus --border), iro.props-get(--colors --key-focus --shadow);
color: iro.props-get(--colors --key-focus --label);
}
}
@include iro.bem-is('selected') {
border-color: iro.props-get(--colors --selected --border);
background-color: iro.props-get(--colors --selected --bg);
box-shadow: iro.props-get(--colors --selected --shadow);
color: iro.props-get(--colors --selected --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover,
&:active {
border-color: iro.props-get(--colors --selected --hover --border);
background-color: iro.props-get(--colors --selected --bg);
box-shadow: iro.props-get(--colors --selected --hover --shadow);
color: iro.props-get(--colors --selected --hover --label);
}
}
@include iro.bem-at-theme('keyboard') {
&:focus {
border-color: iro.props-get(--colors --key-focus --border);
background-color: iro.props-get(--colors --selected --key-focus --bg);
box-shadow: inset 0 0 0 1px iro.props-get(--colors --key-focus --border), iro.props-get(--colors --key-focus --shadow);
color: iro.props-get(--colors --key-focus --label);
}
}
}
@include iro.bem-modifier('quiet') {
border-color: transparent;
background-color: transparent;
box-shadow: none;
color: iro.props-get(--colors --quiet --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover {
border-color: transparent;
background-color: iro.props-get(--colors --quiet --hover --bg);
box-shadow: none;
color: iro.props-get(--colors --quiet --hover --label);
}
&:active {
border-color: transparent;
background-color: iro.props-get(--colors --quiet --active --bg);
box-shadow: none;
color: iro.props-get(--colors --quiet --active --label);
}
}
@include iro.bem-at-theme('keyboard') {
&:focus {
border-color: iro.props-get(--colors --quiet --key-focus --border);
background-color: iro.props-get(--colors --quiet --key-focus --bg);
box-shadow: inset 0 0 0 1px iro.props-get(--colors --quiet --key-focus --border), iro.props-get(--colors --quiet --key-focus --shadow);
color: iro.props-get(--colors --quiet --key-focus --label);
}
}
@include iro.bem-is('selected') {
border-color: transparent;
background-color: iro.props-get(--colors --quiet --selected --bg);
box-shadow: none;
color: iro.props-get(--colors --quiet --selected --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover,
&:active {
border-color: transparent;
background-color: iro.props-get(--colors --quiet --selected --bg);
box-shadow: none;
color: iro.props-get(--colors --quiet --selected --hover --label);
}
}
@include iro.bem-at-theme('keyboard') {
&:focus {
border-color: iro.props-get(--colors --quiet --key-focus --border);
background-color: iro.props-get(--colors --quiet --selected --key-focus --bg);
box-shadow: inset 0 0 0 1px iro.props-get(--colors --quiet --key-focus --border), iro.props-get(--colors --quiet --key-focus --shadow);
color: iro.props-get(--colors --quiet --key-focus --label);
}
}
}
}
@include iro.bem-is('disabled') {
border-color: iro.props-get(--colors --disabled --border);
background-color: iro.props-get(--colors --disabled --bg);
box-shadow: iro.props-get(--colors --disabled --shadow);
color: iro.props-get(--colors --disabled --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover,
&:active {
border-color: iro.props-get(--colors --disabled --border);
background-color: iro.props-get(--colors --disabled --bg);
box-shadow: iro.props-get(--colors --disabled --shadow);
color: iro.props-get(--colors --disabled --label);
}
}
@include iro.bem-modifier('quiet') {
border-color: transparent;
background-color: transparent;
box-shadow: none;
color: iro.props-get(--colors --quiet --disabled --label);
@include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
&:hover,
&:active {
border-color: transparent;
background-color: transparent;
box-shadow: none;
color: iro.props-get(--colors --quiet --disabled --label);
}
}
@include iro.bem-is('selected') {
background-color: iro.props-get(--colors --quiet --selected --bg);
}
}
}
}
}
|