mirror of https://github.com/zulip/zulip.git
css: Cleanup CSS for sidebars.
This fixes a handful of minor issues: * Non-uniform padding for the right sidebar unread count bubbles. * Weird vertical positioning of unread counts in the right sidebar due to a slightly off line height. * Missing padding between long stream names and the unread count for the stream. * Removes a duplicate border-radius command in the left sidebar CSS.
This commit is contained in:
parent
d0f5ae38cc
commit
593201a107
|
@ -177,7 +177,6 @@ li.active-sub-filter {
|
|||
line-height: 12px;
|
||||
background: hsl(105, 2%, 50%);
|
||||
padding: 1px 4px;
|
||||
border-radius: 0px;
|
||||
color: hsl(0, 0%, 100%);
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
|
@ -316,6 +315,7 @@ ul.filters li.out_of_home_view li.muted_topic {
|
|||
line-height: 1.1;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
#stream_filters .subscription_block.stream-with-count {
|
||||
|
|
|
@ -129,16 +129,16 @@
|
|||
|
||||
.user_sidebar_entry .count,
|
||||
.group-pms-sidebar-entry .count {
|
||||
padding: 1px 4px;
|
||||
padding: 1px 4px 1px 4px;
|
||||
background: hsl(105, 2%, 50%);
|
||||
border-radius: 0px;
|
||||
color: hsl(0, 0%, 100%);
|
||||
font-size: 12px;
|
||||
line-height: 13px;
|
||||
line-height: 12px;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0.6px;
|
||||
position: relative;
|
||||
top: 3.5px;
|
||||
top: 3px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue