mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
29 lines
920 B
SCSS
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;
|
|
}
|