Home › Forums › Quform WordPress › CSS Styling > Entry Edit mode > Readonly TEXT Elements
Read-only Text fields are not visually styled to show they are ‘Disabled/non-editable’ when in Admin > Entry Edit mode.
Admin > Entry Edit
The normal and :focus state is the same as editable fields; which suggests functionality these fields don’t have (ie can’t be edited or typed into).
I have adapted your style to create an override you may like to include in your qfb Admin CSSfile for future plugin release.
qfb Admin CSS
Feel free to adjust as you see fit.
/* Fix UI issue for readyonly field */ .qfb-settings input[type=text][readonly]{ background-color:#F8F8F8; cursor: not-allowed; color: #999999; } .qfb-settings input[type=text][readonly]:focus { border: 2px solid #ddd; -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.05); background-color:#eee; box-shadow: 0 0 6px 0 rgba(0,0,0,.05); color: #999999; cursor: not-allowed; }
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.