Merge pull request #1036 from jitsi/fix-placeholder-style
Fixes placeholder color
This commit is contained in:
commit
dcf2d64067
|
@ -45,7 +45,7 @@ input[type='text'], input[type='password'], textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
@include placeholder {
|
@include placeholder {
|
||||||
color: $inputColor;
|
color: $placeHolderColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
|
|
|
@ -35,6 +35,7 @@ $dialogTitleFontWeight: 400;
|
||||||
$inputBackground: #fff;
|
$inputBackground: #fff;
|
||||||
$inputBorderColor: #ccc;
|
$inputBorderColor: #ccc;
|
||||||
$inputColor: #333;
|
$inputColor: #333;
|
||||||
|
$placeHolderColor: #a7a7a7;
|
||||||
$defaultDarkSelectionColor: #ccc;
|
$defaultDarkSelectionColor: #ccc;
|
||||||
$buttonFontWeight: 400;
|
$buttonFontWeight: 400;
|
||||||
$labelFontWeight: 400;
|
$labelFontWeight: 400;
|
||||||
|
|
Loading…
Reference in New Issue