Merge pull request #1037 from jitsi/add-specific-read-only-color

Add specific color for read-only input
This commit is contained in:
Дамян Минков 2016-10-18 14:35:47 -05:00 committed by GitHub
commit d415a15e93
2 changed files with 8 additions and 0 deletions

View File

@ -47,3 +47,10 @@
right: 0;
}
}
/**
* Set a specific color for read only style.
*/
input:read-only {
color: $readOnlyInputColor;
}

View File

@ -36,6 +36,7 @@ $inputBackground: #fff;
$inputBorderColor: #ccc;
$inputColor: #333;
$placeHolderColor: #a7a7a7;
$readOnlyInputColor: #a7a7a7;
$defaultDarkSelectionColor: #ccc;
$buttonFontWeight: 400;
$labelFontWeight: 400;