mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
66 lines
861 B
SCSS
66 lines
861 B
SCSS
$item-input-padding: 6px 0 5px 0px;
|
|
|
|
ion-input {
|
|
display: block;
|
|
}
|
|
|
|
focus-holder input {
|
|
position: fixed;
|
|
top: 1px;
|
|
width: 9px;
|
|
left: -9999px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.scroll-padding.scroll-padding .scroll-content {
|
|
padding-bottom: 1000px;
|
|
}
|
|
|
|
.item.input {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.item.input input,
|
|
.item.input textarea {
|
|
flex: 1;
|
|
}
|
|
|
|
.item.input textarea {
|
|
padding-top: 9px;
|
|
}
|
|
|
|
.item .item-content label.input-label {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/*ion-input {
|
|
display: block;
|
|
|
|
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.item-label {
|
|
padding: $item-input-padding;
|
|
}
|
|
|
|
input, textarea {
|
|
width: 100%;
|
|
//font-size: 1.6rem;
|
|
|
|
border-radius: 0;
|
|
|
|
flex: 1 220px;
|
|
@include appearance(none);
|
|
|
|
margin: 0;
|
|
padding-right: 24px;
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
*/
|