orbeon / orbeon-forms

Orbeon Forms is an open source web forms solution. It includes an XForms engine, the Form Builder web-based form editor, and the Form Runner runtime.
http://www.orbeon.com/
GNU Lesser General Public License v2.1
517 stars 221 forks source link

Don't show placeholders for readonly fields #5372

Open avernet opened 2 years ago

avernet commented 2 years ago

The following CSS does it for the date and phone number fields, and this RFE calls for this CSS to there out-of-the-box, and also done for all the other fields for which we have placeholders.

.xbl-fr-date.xforms-readonly      input::placeholder { visibility: hidden }
.xbl-fr-us-phone .xforms-readonly input::placeholder { visibility: hidden }

+1 from customer

ebruchez commented 2 years ago

Maybe something like this could work in a general way:

input:read-only::placeholder, textarea:read-only::placeholder {
  visibility: hidden;
}