File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ $alert-button-line-height: 20px !default;
15
15
/// @prop - Font size of the alert button
16
16
$alert-button-font-size : 14px !default ;
17
17
18
+ /// @prop - Color of the alert input placeholder
19
+ $alert-input-placeholder-color : #999 !default ;
20
+
18
21
19
22
ion-alert {
20
23
position : absolute ;
@@ -75,7 +78,7 @@ ion-alert input {
75
78
}
76
79
77
80
.alert-input {
78
- @include placeholder ();
81
+ @include placeholder ($alert-input-placeholder-color );
79
82
80
83
padding : 10px 0 ;
81
84
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ $text-input-highlight-color-valid: #32db64 !default;
9
9
/// @prop - Color of the input highlight when invalid
10
10
$text-input-highlight-color-invalid : #f53d3d !default ;
11
11
12
+ /// @prop - Color of the input placeholder
13
+ $text-input-placeholder-color : #999 !default ;
14
+
12
15
13
16
// Input/Textarea Wrapper
14
17
// --------------------------------------------------
@@ -41,7 +44,7 @@ ion-textarea {
41
44
// --------------------------------------------------
42
45
43
46
.text-input {
44
- @include placeholder ();
47
+ @include placeholder ($text-input-placeholder-color );
45
48
@include appearance (none );
46
49
47
50
display : inline-block ;
You can’t perform that action at this time.
0 commit comments