-
Notifications
You must be signed in to change notification settings - Fork 13.5k
/
Copy pathitem.scss
418 lines (319 loc) · 9.99 KB
/
item.scss
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
@import "./item.vars";
// Item
// --------------------------------------------------
:host {
/**
* @prop --background: Background of the item
* @prop --background-activated: Background of the item when pressed. Note: setting this will interfere with the Material Design ripple.
* @prop --background-activated-opacity: Opacity of the item background when pressed
* @prop --background-focused: Background of the item when focused with the tab key
* @prop --background-focused-opacity: Opacity of the item background when focused with the tab key
* @prop --background-hover: Background of the item on hover
* @prop --background-hover-opacity: Opacity of the background of the item on hover
*
* @prop --border-color: Color of the item border
* @prop --border-radius: Radius of the item border
* @prop --border-style: Style of the item border
* @prop --border-width: Width of the item border
*
* @prop --color: Color of the item
* @prop --color-activated: Color of the item when pressed
* @prop --color-focused: Color of the item when focused with the tab key
* @prop --color-hover: Color of the item on hover
*
* @prop --detail-icon-color: Color of the item detail icon
* @prop --detail-icon-opacity: Opacity of the item detail icon
* @prop --detail-icon-font-size: Font size of the item detail icon
*
* @prop --inner-border-width: Width of the item inner border
* @prop --inner-box-shadow: Box shadow of the item inner
* @prop --inner-padding-top: Top padding of the item inner
* @prop --inner-padding-end: Right padding if direction is left-to-right, and left padding if direction is right-to-left of the item inner
* @prop --inner-padding-bottom: Bottom padding of the item inner
* @prop --inner-padding-start: Left padding if direction is left-to-right, and right padding if direction is right-to-left of the item inner
*
* @prop --min-height: Minimum height of the item
*
* @prop --padding-bottom: Bottom padding of the item
* @prop --padding-end: Right padding if direction is left-to-right, and left padding if direction is right-to-left of the item
* @prop --padding-start: Left padding if direction is left-to-right, and right padding if direction is right-to-left of the item
* @prop --padding-top: Top padding of the item
*
* @prop --transition: Transition of the item
*
* @prop --ripple-color: Color of the item ripple effect
*
*/
--border-radius: 0px;
--border-width: 0px;
--border-style: solid;
--padding-top: 0px;
--padding-bottom: 0px;
--padding-end: 0px;
--padding-start: 0px;
--inner-border-width: 0px;
--inner-padding-top: 0px;
--inner-padding-bottom: 0px;
--inner-padding-start: 0px;
--inner-padding-end: 0px;
--inner-box-shadow: none;
--detail-icon-color: initial;
--detail-icon-font-size: 1.25em;
--detail-icon-opacity: 0.25;
--color-activated: var(--color);
--color-focused: var(--color);
--color-hover: var(--color);
--ripple-color: currentColor;
@include font-smoothing();
display: block;
position: relative;
align-items: center;
justify-content: space-between;
outline: none;
color: var(--color);
font-family: $font-family-base;
text-align: initial;
text-decoration: none;
overflow: hidden;
box-sizing: border-box;
}
// Item: Color
// --------------------------------------------------
:host(.ion-color) .item-native {
background: current-color(base);
color: current-color(contrast);
}
:host(.ion-color) .item-native,
:host(.ion-color) .item-inner {
border-color: current-color(shade);
}
// Item: Activated
// --------------------------------------------------
:host(.ion-activated) .item-native {
color: var(--color-activated);
&::after {
background: var(--background-activated);
opacity: var(--background-activated-opacity);
}
}
:host(.ion-color.ion-activated) .item-native {
color: current-color(contrast);
}
// Item: Focused
// --------------------------------------------------
:host(.ion-focused) .item-native {
color: var(--color-focused);
&::after {
background: var(--background-focused);
opacity: var(--background-focused-opacity);
}
}
:host(.ion-color.ion-focused) .item-native {
color: current-color(contrast);
&::after {
background: current-color(contrast);
}
}
// Item: Hover
// --------------------------------------------------
@media (any-hover: hover) {
:host(.ion-activatable:not(.ion-focused):hover) .item-native {
color: var(--color-hover);
&::after {
background: var(--background-hover);
opacity: var(--background-hover-opacity);
}
}
:host(.ion-color.ion-activatable:not(.ion-focused):hover) .item-native {
color: #{current-color(contrast)};
&::after {
background: #{current-color(contrast)};
}
}
}
// Item: Interactive
// --------------------------------------------------
// Inputs and textareas do not need the cursor, but other components like checkbox or toggle do.
:host(.item-control-needs-pointer-cursor) {
cursor: pointer;
}
// Item: Disabled
// --------------------------------------------------
:host(.item-interactive-disabled:not(.item-multiple-inputs)) {
cursor: default;
pointer-events: none;
}
:host(.item-disabled) {
cursor: default;
opacity: 0.3;
pointer-events: none;
}
// Native Item
// --------------------------------------------------
.item-native {
@include border-radius(var(--border-radius));
@include margin(0);
@include padding(var(--padding-top), null, var(--padding-bottom));
@include text-inherit();
/* stylelint-disable */
@include ltr() {
padding-right: var(--padding-end);
padding-left: calc(var(--padding-start) + var(--ion-safe-area-left, 0px));
}
@include rtl() {
padding-right: calc(var(--padding-start) + var(--ion-safe-area-right, 0px));
padding-left: var(--padding-end);
}
/* stylelint-enable */
display: flex;
position: relative;
align-items: inherit;
justify-content: inherit;
width: 100%;
min-height: var(--min-height);
transition: var(--transition);
border-width: var(--border-width);
border-style: var(--border-style);
border-color: var(--border-color);
outline: none;
background: var(--background);
overflow: inherit;
z-index: 1;
box-sizing: border-box;
}
.item-native::-moz-focus-inner {
border: 0;
}
.item-native::after {
@include button-state();
transition: var(--transition);
z-index: -1;
}
button,
a {
cursor: pointer;
user-select: none;
-webkit-user-drag: none;
}
// Inner Item
// --------------------------------------------------
.item-inner {
@include margin(0);
@include padding(var(--inner-padding-top), null, var(--inner-padding-bottom));
/* stylelint-disable */
@include ltr() {
padding-right: calc(var(--ion-safe-area-right, 0px) + var(--inner-padding-end));
padding-left: var(--inner-padding-start);
}
@include rtl() {
padding-right: var(--inner-padding-start);
padding-left: calc(var(--ion-safe-area-left, 0px) + var(--inner-padding-end));
}
/* stylelint-enable */
display: flex;
// This is required to work with an inset highlight
position: relative;
flex: 1;
flex-direction: inherit;
align-items: inherit;
align-self: stretch;
min-height: inherit;
border-width: var(--inner-border-width);
border-style: var(--border-style);
border-color: var(--border-color);
box-shadow: var(--inner-box-shadow);
overflow: inherit;
box-sizing: border-box;
}
// Item Detail Icon
// --------------------------------------------------
.item-detail-icon {
/**
* IonItem applies its own end padding. However,
* all IonIcons have the same bounding box meaning
* there may be white space for narrow icons. As
* a result, the white space gives the appearance
* that there is too much end margin. We move the default
* chevron icon over to account for this extra whitespace.
*/
@include margin(null, -6px, null, calc(var(--inner-padding-end) / 2));
color: var(--detail-icon-color);
font-size: var(--detail-icon-font-size);
opacity: var(--detail-icon-opacity);
}
// Item Slots
// --------------------------------------------------
::slotted(ion-icon) {
font-size: 1.6em;
}
::slotted(ion-button) {
--margin-top: 0;
--margin-bottom: 0;
--margin-start: 0;
--margin-end: 0;
z-index: 1;
}
::slotted(ion-label:not([slot="end"])) {
flex: 1;
// Setting width to min-content allows the label to
// shrink and wrap its text instead of moving to its
// own row if there are slotted elements next to it
width: min-content;
/**
* We allow labels in the default
* slot to grow. However, we do not
* want them to grow indefinitely.
*/
max-width: 100%;
}
// Item Input
// --------------------------------------------------
:host(.item-input) {
align-items: center;
}
.input-wrapper {
display: flex;
// This flex property is required in order to keep
// the label from shrinking when there are wide
// elements next to it
flex: 1;
flex-direction: inherit;
align-items: inherit;
align-self: stretch;
text-overflow: ellipsis;
overflow: inherit;
box-sizing: border-box;
}
:host(.item-label-stacked),
:host(.item-label-floating) {
align-items: start;
}
:host(.item-label-stacked) .input-wrapper,
:host(.item-label-floating) .input-wrapper {
flex: 1;
flex-direction: column;
}
// Item w/ Multiple Inputs
// --------------------------------------------------
// Multiple inputs in an item should have the input
// cover relative to themselves instead of the item
:host(.item-multiple-inputs) ::slotted(ion-checkbox),
:host(.item-multiple-inputs) ::slotted(ion-datetime),
:host(.item-multiple-inputs) ::slotted(ion-radio) {
position: relative;
}
// Item Textarea
// --------------------------------------------------
:host(.item-textarea) {
align-items: stretch;
}
// Item Reorder
// --------------------------------------------------
::slotted(ion-reorder[slot]) {
@include margin(0, null);
}
// Item Button Ripple effect
// --------------------------------------------------
ion-ripple-effect {
color: var(--ripple-color);
}