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