forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitem.scss
More file actions
96 lines (70 loc) · 1.29 KB
/
item.scss
File metadata and controls
96 lines (70 loc) · 1.29 KB
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
@import "../../globals.core";
// Item
// --------------------------------------------------
// Core structure only, dimensions belong in specific modes
.item {
display: flex;
overflow: hidden;
align-items: center;
justify-content: space-between;
margin: 0;
padding: 0;
width: 100%;
min-height: 4.4rem;
border: 0;
font-weight: normal;
line-height: normal;
text-align: initial;
text-decoration: none;
color: inherit;
}
.item-inner {
display: flex;
overflow: hidden;
flex: 1;
flex-direction: inherit;
align-items: inherit;
align-self: stretch;
margin: 0;
padding: 0;
min-height: inherit;
border: 0;
}
.input-wrapper {
display: flex;
overflow: hidden;
flex: 1;
flex-direction: inherit;
align-items: inherit;
align-self: stretch;
text-overflow: ellipsis;
}
.item[no-lines],
.item[no-lines] .item-inner {
border: 0;
}
ion-item-group {
display: block;
}
ion-item-divider {
z-index: 1000;
display: flex;
overflow: hidden;
align-items: center;
justify-content: space-between;
margin: 0;
padding: 0;
width: 100%;
min-height: 30px;
&[sticky] {
position: sticky;
top: 0;
}
}
[vertical-align-top],
ion-input.item {
align-items: flex-start;
}
@import "item-media";
@import "item-sliding";
@import "item-reorder";