Style disabled text fields in admin pages

This commit is contained in:
Kristina Lim
2018-11-29 04:36:06 +08:00
parent 09b9f968b7
commit f5dc03e118

View File

@@ -0,0 +1,8 @@
.container {
input {
&[readonly] {
background-color: $disabled-light;
cursor: default;
}
}
}