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
|
@ -46,4 +46,11 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a specific color for read only style.
|
||||||
|
*/
|
||||||
|
input:read-only {
|
||||||
|
color: $readOnlyInputColor;
|
||||||
}
|
}
|
|
@ -36,6 +36,7 @@ $inputBackground: #fff;
|
||||||
$inputBorderColor: #ccc;
|
$inputBorderColor: #ccc;
|
||||||
$inputColor: #333;
|
$inputColor: #333;
|
||||||
$placeHolderColor: #a7a7a7;
|
$placeHolderColor: #a7a7a7;
|
||||||
|
$readOnlyInputColor: #a7a7a7;
|
||||||
$defaultDarkSelectionColor: #ccc;
|
$defaultDarkSelectionColor: #ccc;
|
||||||
$buttonFontWeight: 400;
|
$buttonFontWeight: 400;
|
||||||
$labelFontWeight: 400;
|
$labelFontWeight: 400;
|
||||||
|
|
Loading…
Reference in New Issue