1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-14 00:54:08 +02:00

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;
}