mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
24 lines
704 B
SCSS
24 lines
704 B
SCSS
|
|
// iOS Text Input
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-list[mode=ios],
|
|
ion-card[mode=ios] {
|
|
|
|
.text-input {
|
|
margin: $item-ios-padding-top ($item-ios-padding-right / 2) $item-ios-padding-bottom ($item-ios-padding-left / 2);
|
|
padding: 0;
|
|
}
|
|
|
|
.item-input[inset] .text-input {
|
|
margin: ($item-ios-padding-top / 2) $item-ios-padding-right ($item-ios-padding-bottom / 2) $item-ios-padding-left;
|
|
padding: ($item-ios-padding-top / 2) ($item-ios-padding-right / 2) ($item-ios-padding-bottom / 2) ($item-ios-padding-left / 2);
|
|
}
|
|
|
|
ion-label {
|
|
margin: $item-ios-padding-top ($item-ios-padding-right / 2) $item-ios-padding-bottom ($item-ios-padding-left / 2);
|
|
}
|
|
|
|
}
|