Last modified: 2007-09-04 21:00:46 UTC
Currently on the deletion page, a form tag contains an id (deleteconfirm), however, the table inside of the form tag does not, thus making it impossible to modify the contents of the table via user CSS. Namely it would be nice to set the table's background to transparent via user CSS. Would it be possible to have a class or id added to the table?
On some other pages some extra id's would be nice, I agree. However in this particular case, since the table is inside form, you can use: form#deleteconfirm table {background-color:transparent}
That works for me. Thanks!