more ui elements updated.

This commit is contained in:
Nathanael Phillips 2020-11-05 09:56:31 -07:00
parent b75aafd3ce
commit e7ec90c944
16 changed files with 688 additions and 9 deletions

View file

@ -7,6 +7,14 @@ input[type="text"], input[type="number"], input[type="password"], input[type="da
&:focus {
border-color: @inputBorderFocus;
}
&::placeholder {
color: @inputTextColor;
opacity: 0.5;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: @inputTextColor;
opacity: 0.5;
}
}
button, input[type="button"], input[type="submit"], input[type="reset"] {
@ -33,4 +41,13 @@ input[type="reset"], button.secondary, button[type="reset"], input[type="button"
background: @buttonSecondaryBackground;
}
}
}
form {
button {
border: none;
}
.notes, .hint {
color: rgba(@bodyFontColor, 0.8);
}
}