mirror of https://github.com/zulip/zulip.git
Change right sidebar unread counts to be rounded.
This changes the right sidebar unread count styling to match the left sidebar styling — in that they all now should have a 4px border radius on the edges of the unread count blocks.
This commit is contained in:
parent
c506a92d05
commit
3d64d190c1
|
@ -137,15 +137,17 @@
|
|||
.user_sidebar_entry .count,
|
||||
.group-pms-sidebar-entry .count {
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
right: 25px;
|
||||
top: 4px;
|
||||
padding: 2px 3px 1px 3px;
|
||||
padding: 2px 4px 1px 4px;
|
||||
background: #80837f;
|
||||
border-radius: 0px;
|
||||
color: #ffffff;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0.6px;
|
||||
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.group-pms-sidebar-entry .count {
|
||||
|
|
Loading…
Reference in New Issue