Hide value of disabled input in popout

I'm not sure if we want to do this on all fields, so just scoped it here for now.
This commit is contained in:
David Cook
2023-11-29 15:22:06 +11:00
parent 9ce511f69d
commit ccc0c17e04

View File

@@ -130,7 +130,7 @@
font-size: inherit;
font-weight: inherit;
&:not(:focus):not(.changed) {
&:not(:focus):not(.changed):not([disabled]) {
border-color: transparent;
}
}
@@ -341,6 +341,10 @@
.field:last-child {
margin-bottom: 0;
}
input[disabled] {
color: transparent; // hide value completely
}
}
}
}