Files
Brandy Carney 02da18b311 Merge branch '2.0' into windows-mode
# Conflicts:
#	ionic/components/searchbar/searchbar.ts
2016-02-29 19:02:55 -05:00

70 lines
1.0 KiB
SCSS

@import "../../globals.core";
// Item
// --------------------------------------------------
// Core structure only, dimensions belong in specific modes
.item {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0;
padding: 0;
border: 0;
width: 100%;
min-height: 4.4rem;
overflow: hidden;
text-align: initial;
font-weight: normal;
line-height: normal;
text-decoration: none;
color: inherit;
}
.item-inner {
display: flex;
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
min-height: inherit;
flex: 1;
flex-direction: inherit;
align-items: inherit;
align-self: stretch;
}
.item[no-lines],
.item[no-lines] .item-inner {
border: none;
}
ion-item-group {
display: block;
}
ion-item-divider {
display: block;
min-height: 30px;
width: 100%;
z-index: 1000;
&[sticky] {
position: -webkit-sticky;
position: sticky;
top: 0px;
}
}
[vertical-align-top],
ion-input.item {
align-items: flex-start;
}
@import "item-media";
@import "item-sliding";