mirror of https://github.com/zulip/zulip.git
right-sidebar: Fix keyboard shortcuts icon in medium widths.
This fixes a glitch where the keyboard shortcuts icon, which is meant to be a feature of the right sidebar, appears overlapping the "Reply" button. Fixes #13122.
This commit is contained in:
parent
dd67b1b3bb
commit
ef876ff4c7
|
@ -22,6 +22,14 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
#sidebar-keyboard-shortcuts {
|
||||
/* This is supposed to fix this appearing improperly in narrow
|
||||
windows. It's likely the wrong solution; a proper fix likely
|
||||
involves replacing `position: fixed` in #keyboard-icon so that
|
||||
it still appears in the right sidebar overlay. */
|
||||
display: none;
|
||||
}
|
||||
|
||||
.column-right.expanded {
|
||||
display: block;
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue