Fix edge case where settings/admin page sidebar would be incorrectly hidden (#17580)

local
Claire 2 years ago committed by GitHub
parent 1abf0f9000
commit 00b45b967e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      app/javascript/packs/public.js
  2. 4
      app/javascript/styles/mastodon/admin.scss

@ -276,13 +276,7 @@ function main() {
});
delegate(document, '.sidebar__toggle__icon', 'click', () => {
const target = document.querySelector('.sidebar ul');
if (target.style.display === 'block') {
target.style.display = 'none';
} else {
target.style.display = 'block';
}
document.querySelector('.sidebar ul').classList.toggle('visible');
});
// Empty the honeypot fields in JS in case something like an extension

@ -322,6 +322,10 @@ $content-width: 840px;
& > ul {
display: none;
&.visible {
display: block;
}
}
ul a,

Loading…
Cancel
Save