mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
- remove scss-lint and sass-lint - add stylelint and stylelint-order packages and configuration - update all *.scss files to new syntax fixes #14805
30 lines
1.1 KiB
SCSS
30 lines
1.1 KiB
SCSS
@import "../../themes/ionic.globals.ios";
|
|
@import "../item/item.ios.vars";
|
|
|
|
// iOS Textarea
|
|
// --------------------------------------------------
|
|
|
|
/// @prop - Margin start of the textarea when it is after a label
|
|
$textarea-ios-by-label-margin-start: $item-ios-padding-start !default;
|
|
|
|
/// @prop - Font family of the textarea
|
|
$textarea-ios-font-family: $font-family-base !default;
|
|
|
|
/// @prop - Font size of the textarea
|
|
$textarea-ios-font-size: inherit !default;
|
|
|
|
/// @prop - Margin top of the textarea
|
|
$textarea-ios-padding-top: $item-ios-padding-top !default;
|
|
|
|
/// @prop - Margin end of the textarea
|
|
$textarea-ios-padding-end: ($item-ios-padding-end / 2) !default;
|
|
|
|
/// @prop - Margin bottom of the textarea
|
|
$textarea-ios-padding-bottom: $item-ios-padding-bottom !default;
|
|
|
|
/// @prop - Margin start of the textarea
|
|
$textarea-ios-padding-start: 0 !default;
|
|
|
|
/// @prop - Placeholder text color of the textarea
|
|
$textarea-ios-placeholder-color: $placeholder-text-color !default;
|