mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
- splits the item min height by mode - removes padding end from the slotted end components in favor of using 16px on the item - updates the icon color to lighter gray (rgb) - removes font size change from text wrapped labels - add list spec test to include MD examples fixes #14799
78 lines
3.2 KiB
SCSS
78 lines
3.2 KiB
SCSS
@import "../../themes/ionic.globals.md";
|
|
@import "../item/item.md.vars";
|
|
|
|
// Material Design Input
|
|
// --------------------------------------------------
|
|
|
|
/// @prop - Font size of the input
|
|
$input-md-font-size: inherit !default;
|
|
|
|
/// @prop - Margin top of the input
|
|
$input-md-padding-top: $item-md-padding-top !default;
|
|
|
|
/// @prop - Margin end of the input
|
|
$input-md-padding-end: 0 !default;
|
|
|
|
/// @prop - Margin bottom of the input
|
|
$input-md-padding-bottom: $item-md-padding-bottom !default;
|
|
|
|
/// @prop - Margin start of the input
|
|
$input-md-padding-start: ($item-md-padding-start / 2) !default;
|
|
|
|
/// @prop - Width of the icon used to clear the input
|
|
$input-md-input-clear-icon-width: 30px !default;
|
|
|
|
/// @prop - Color of the icon used to clear the input
|
|
$input-md-input-clear-icon-color: $text-color-step-400 !default;
|
|
|
|
/// @prop - Icon used to clear the input
|
|
$input-md-input-clear-icon-svg: "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><polygon fill='" + $input-md-input-clear-icon-color + "' points='405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 375.202,405 405,375.202 285.798,256'/></svg>" !default;
|
|
|
|
/// @prop - Size of the icon used to clear the input
|
|
$input-md-input-clear-icon-size: 22px !default;
|
|
|
|
/// @prop - Placeholder Text color of the input
|
|
$input-md-placeholder-color: $placeholder-text-color !default;
|
|
|
|
/// @prop - Show the focus highlight when the input has focus
|
|
$input-md-show-focus-highlight: true !default;
|
|
|
|
/// @prop - Show the valid highlight when it is valid and has a value
|
|
$input-md-show-valid-highlight: $input-md-show-focus-highlight !default;
|
|
|
|
/// @prop - Show the invalid highlight when it is invalid and has value
|
|
$input-md-show-invalid-highlight: $input-md-show-focus-highlight !default;
|
|
|
|
/// @prop - Color of the input highlight
|
|
$input-md-highlight-color: ion-color(primary, base) !default;
|
|
|
|
/// @prop - Color of the input highlight when valid
|
|
$input-md-highlight-color-valid: ion-color(success, base) !default;
|
|
|
|
/// @prop - Color of the input highlight when invalid
|
|
$input-md-highlight-color-invalid: ion-color(danger, base) !default;
|
|
|
|
/// @prop - Padding top of the inset input
|
|
$input-md-inset-padding-top: ($item-md-padding-top / 2) !default;
|
|
|
|
/// @prop - Padding end of the inset input
|
|
$input-md-inset-padding-end: 0 !default;
|
|
|
|
/// @prop - Padding bottom of the inset input
|
|
$input-md-inset-padding-bottom: ($item-md-padding-bottom / 2) !default;
|
|
|
|
/// @prop - Padding start of the inset input
|
|
$input-md-inset-padding-start: ($item-md-padding-start / 2) !default;
|
|
|
|
/// @prop - Margin top of the inset input
|
|
$input-md-inset-margin-top: ($item-md-padding-top / 2) !default;
|
|
|
|
/// @prop - Margin end of the inset input
|
|
$input-md-inset-margin-end: $item-md-padding-end !default;
|
|
|
|
/// @prop - Margin bottom of the inset input
|
|
$input-md-inset-margin-bottom: ($item-md-padding-bottom / 2) !default;
|
|
|
|
/// @prop - Margin start of the inset input
|
|
$input-md-inset-margin-start: $item-md-padding-start !default;
|