UNPKG

1.62 kBSCSSView Raw
1@import "../../themes/ionic.globals.md";
2
3// Material Design Select
4// --------------------------------------------------
5
6/// @prop - Padding top of the select
7$select-md-padding-top: $item-md-padding-top !default;
8
9// deprecated
10$select-md-padding-right: ($item-md-padding-end / 2) !default;
11/// @prop - Padding end of the select
12$select-md-padding-end: $select-md-padding-right !default;
13
14/// @prop - Padding bottom of the select
15$select-md-padding-bottom: $item-md-padding-bottom !default;
16
17// deprecated
18$select-md-padding-left: $item-md-padding-start !default;
19/// @prop - Padding start of the select
20$select-md-padding-start: $select-md-padding-left !default;
21
22/// @prop - Color of the select icon
23$select-md-icon-color: #999 !default;
24
25/// @prop - Color of the select placeholder
26$select-md-placeholder-color: $select-md-icon-color !default;
27
28
29.select-md {
30 @include padding($select-md-padding-top, $select-md-padding-end, $select-md-padding-bottom, $select-md-padding-start);
31}
32
33.select-md .select-placeholder {
34 color: $select-md-placeholder-color;
35}
36
37.select-md .item-select ion-label {
38 @include margin-horizontal(0, null);
39}
40
41.select-md .select-icon {
42 position: relative;
43
44 width: 12px;
45 height: 19px;
46}
47
48.select-md .select-icon .select-icon-inner {
49 @include position(50%, null, null, 5px);
50 @include margin(-3px, null, null, null);
51
52 position: absolute;
53
54 width: 0;
55 height: 0;
56
57 border-top: 5px solid;
58 border-right: 5px solid transparent;
59 border-left: 5px solid transparent;
60 color: $select-md-icon-color;
61
62 pointer-events: none;
63}