Disable CLIN fields via a config option

This commit is contained in:
George Drummond
2019-01-03 15:12:51 -05:00
parent 7a7f8914c8
commit 99f34fe45a
7 changed files with 59 additions and 7 deletions

View File

@@ -108,6 +108,15 @@
}
}
.usa-input__coming-soon {
@include h5;
font-weight: normal;
@include line-max;
color: $color-gray-medium;
}
input,
textarea,
select,
@@ -348,3 +357,17 @@ select {
}
}
}
.input--disabled {
color: $color-gray-lighter;
input[disabled] {
border-color: $color-gray-lighter;
cursor: not-allowed;
&:hover {
border-color: $color-gray-lighter !important;
box-shadow: none;
}
}
}