Files
ionic-framework/src/components/datetime/datetime.md.scss
2017-02-13 14:59:22 -05:00

29 lines
920 B
SCSS

@import "../../themes/ionic.globals.md";
// Material Design DateTime
// --------------------------------------------------
/// @prop - Padding top of the DateTime component
$datetime-md-padding-top: $item-md-padding-top !default;
/// @prop - Padding right of the DateTime component
$datetime-md-padding-right: ($item-md-padding-right / 2) !default;
/// @prop - Padding bottom of the DateTime component
$datetime-md-padding-bottom: $item-md-padding-bottom !default;
/// @prop - Padding left of the DateTime component
$datetime-md-padding-left: $item-md-padding-left !default;
/// @prop - Color of the DateTime placeholder
$datetime-md-placeholder-color: #999 !default;
.datetime-md {
padding: $datetime-md-padding-top $datetime-md-padding-right $datetime-md-padding-bottom $datetime-md-padding-left;
}
.datetime-md .datetime-placeholder {
color: $datetime-md-placeholder-color;
}