While the small box on https://vutuv.de/{username} shows if a tag has been endorsed right away and who endorsed it on hover, https://vutuv.de/{username}/tags does neither of the things. On top of that, there's a lot of unused space and weird alignment¹.
Current UI
Proposed UI
How does one even get to this tab? I got there from the endorsement notification but I can't find the link on the profile page.
¹ The alignment issue is probably caused by a global CSS rule. Maybe, this can be changed to not be applied to one-column tables.
|
td:last-child { |
|
text-align: right; |
|
} |
- td:last-child {
+ td:not(:first-child):last-child {
text-align: right;
}
While the small box on
https://vutuv.de/{username}shows if a tag has been endorsed right away and who endorsed it on hover,https://vutuv.de/{username}/tagsdoes neither of the things. On top of that, there's a lot of unused space and weird alignment¹.Current UI
Proposed UI
How does one even get to this tab? I got there from the endorsement notification but I can't find the link on the profile page.
¹ The alignment issue is probably caused by a global CSS rule. Maybe, this can be changed to not be applied to one-column tables.
vutuv/assets/css/components.css
Lines 84 to 86 in 27751bd