Files

37 lines
948 B
SCSS

@import "../../globals.ios";
@import "./text-input";
// iOS Text Input
// --------------------------------------------------
$text-input-ios-background-color: $list-ios-background-color !default;
// Default Input
// --------------------------------------------------
.item-input {
margin: $item-ios-padding-top ($item-ios-padding-right / 2) $item-ios-padding-bottom 0;
padding: 0;
background-color: $text-input-ios-background-color;
}
// Inset Input
// --------------------------------------------------
.inset-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);
}
// Stacked & Floating Inputs
// --------------------------------------------------
.stacked-input,
.floating-input {
margin-top: 8px;
margin-bottom: 8px;
}