Could we get the dev tracker UI cleaned up a bit

Could we get the dev tracker UI cleaned up a bit

in Forum and Website Bugs

Posted by: Foors Arontala.4731

Foors Arontala.4731

In its current state the Dev Tracker is pretty hard to read. There is quite a bit of not so useful information as well as useful information truncation. I made some simple css changes to your dev tracker using a chrome plugin to make it readable. I have included a screenshot of what it looks like.

here are the modifications I made:
removed name of poster, reply count, read count
moved the post to the right
moved the title to the left
allowed for the full title to display

The title change is really important because it is the only thing on that page that gives context to the post… adding the original post to the dev tracker would be better… or having the devs quote the part of the original post that they are responding to would be even better yet.

here is the css used.
.creator {
display: none;
}

.replies {
display: none;
}

.views {
display: none;
}

.post {
float: right;
}

.tracker_topic {
max-width: 100%;
}

Attachments:

Could we get the dev tracker UI cleaned up a bit

in Forum and Website Bugs

Posted by: CC Dalmarus.8397

CC Dalmarus.8397

Community Coordinator

Thanks for the feedback, Foors Arontala.