fix: fix tappable area between toolbar buttons (#1893)

fixes #1884

If "disable entire toot area" is on, then the cursor becomes default between the buttons, and clicking does nothing. If it is off (default), then the cursor is always pointer and clicking between the buttons clicks the whole toot.
This commit is contained in:
Nolan Lawson 2020-11-14 17:22:12 -08:00 committed by GitHub
parent 01ba161520
commit 006f0deee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@
display: flex;
align-items: center;
justify-content: center;
pointer-events: auto;
}
:global(.icon-button-svg) {

View File

@ -47,6 +47,7 @@
grid-area: toolbar;
display: flex;
justify-content: space-between;
pointer-events: none;
}
.status-toolbar.status-in-own-thread {
margin-left: 63px; /* offset to align all toolbar items: 48px avatar + 15px margin-right */