Merge pull request #1037 from jitsi/add-specific-read-only-color
Add specific color for read-only input
This commit is contained in:
commit
d415a15e93
|
@ -47,3 +47,10 @@
|
|||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a specific color for read only style.
|
||||
*/
|
||||
input:read-only {
|
||||
color: $readOnlyInputColor;
|
||||
}
|
|
@ -36,6 +36,7 @@ $inputBackground: #fff;
|
|||
$inputBorderColor: #ccc;
|
||||
$inputColor: #333;
|
||||
$placeHolderColor: #a7a7a7;
|
||||
$readOnlyInputColor: #a7a7a7;
|
||||
$defaultDarkSelectionColor: #ccc;
|
||||
$buttonFontWeight: 400;
|
||||
$labelFontWeight: 400;
|
||||
|
|
Loading…
Reference in New Issue