type="text" missing in #edit-fields table
Database management in a single PHP file
Brought to you by:
jakubvrana
Properly styling the edit-fields table is not fully possible since the type="text" HTML declaration is missing from the input fields in this table. Due to this, the CSS style #edit-fields input[type="text"] doesn't works :-(
Also, unique class names like class="edit-fields-field" or class="edit-fields-comment" would be VERY useful to properly style the table with css.
I'm struggling to style the table, since the input fields have automatic widths and I would like to have narrow 'default' inputs and very wide 'comment' inputs.
It is possible to:
Thank you!
These would increase both the source code size and the transferred code size. You can use
input:not([type])to check a missingtypeattribute. Try using:nth-childfor matching the individual fields.