
Originally Posted by
DClark
The best way to learn is by reading online what each bit of css code does, and then changing it bit by bit to see what the changes were.
That's my approach with most things... read, break, fix. On that note... I had to make some adjustments to my unread flag.
Original:
Code:
#mailboxlist li.unread {
font-weight: bold;
}
My adjustments:
Code:
#mailboxlist li.unread > a,
#mailboxlist li.droptarget li.unread {
font-weight: bold;
height: 22px;
background: url("images/icons/unread1.png") center right no-repeat;
}
I found that I needed to add that droptarget selector otherwise it would destroy the threaded folder list whenever a top level folder had a new message. Seems to work fine now... Just adds the unread icon to the right side of the folder column.