mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
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:
@@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user