top left: Add border to starred messages count.

The border makes the alignment look nicer.  Without
a border your eyes plays tricks on you and makes it
seem like numbers are not in the same column.

The border color is the same subtle color as the
backgrounds in others.

Because CSS is annoying, you have to tweak the padding
to make room for the border.

(It should look ok in night mode, too.)
This commit is contained in:
Steve Howell 2019-02-05 22:22:52 +00:00 committed by Tim Abbott
parent 4825479600
commit 3ef9d18baf
1 changed files with 6 additions and 2 deletions

View File

@ -191,10 +191,14 @@ li.active-sub-filter {
/* Starred messaged counts aren't really unread
counts, so we style them differently.
*/
.top_left_starred_messages {
.top_left_starred_messages .count {
background-color: transparent;
border-width: 0;
border-width: 1px;
border-style: solid;
color: inherit;
padding-left: 3px;
padding-right: 3px;
border-color: hsl(105, 2%, 50%);
}
/* These are true "unread" counts. */