Replace <nobr> tags with CSS

The <nobr> tag is not allowed in <td> context, and is altogether
deprecated as well. Replace with a span and a CSS class instead.

Reviewed-by: Magnus Hagander
Discussion: https://postgr.es/m/A0228704-7C47-44B8-929B-8BFC02D6CBD7@yesql.se
This commit is contained in:
Daniel Gustafsson
2021-10-13 09:37:23 +02:00
parent 7407f53f22
commit 419fee8b40
2 changed files with 5 additions and 1 deletions

View File

@ -1613,3 +1613,7 @@ table.sponsor-table tbody tr td:nth-child(3) {
top: 8px;
right: 8px;
}
.nobr {
white-space: nowrap;
}