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:
Dinesh 2019-09-30 12:32:47 -05:00 committed by Tim Abbott
parent dd67b1b3bb
commit ef876ff4c7
1 changed files with 8 additions and 0 deletions

View File

@ -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;