I have the following css entry that I'm accessing via a CSS resource
.form-input-line-cell {
position: absolute;
left: 8px;
top:3px;
bottom: 3px;
font-size: 32px;
text-indent: 8px;
border: solid #d3d3d3 1px;
border-radius: 3px;
color: black;
width: -webkit-calc(100% -16px);
width: calc(100% - 16px);
}
When I view a field using it in the dev tools in firefox, the width properties with calc are not present. I've verified that other changes I make are propagating as expected, so the build is working and I'm looking in the right place. Any ideas?
I