update placeholder text to meet contrast requirement

This commit is contained in:
KDSBrowne 2021-09-03 03:32:47 +00:00
parent 3c4d260206
commit d71f1a8c64
2 changed files with 8 additions and 0 deletions

View File

@ -74,6 +74,12 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
[hidden]:not([hidden="false"]) {
display: none !important;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
color: var(--palette-placeholder-text);
opacity: 1;
}
</style>
<script>
document.addEventListener('gesturestart', function (e) {

View File

@ -1,4 +1,6 @@
:root {
--palette-placeholder-text: #7a7a7a;
--color-white: #FFF;
--color-off-white: #F3F6F9;