Add missing disabled style to form elements

This commit is contained in:
川崎キヨシ 2019-04-10 14:50:35 +09:00
parent dff974d180
commit 436492986d
5 changed files with 8 additions and 5 deletions

View file

@ -61,7 +61,10 @@ button:active {
transform: translateY(2px);
}
input:disabled {
input:disabled,
select:disabled,
button:disabled,
textarea:disabled {
cursor: not-allowed;
opacity: .5;
}