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:
parent
01ba161520
commit
006f0deee8
|
@ -21,6 +21,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
:global(.icon-button-svg) {
|
:global(.icon-button-svg) {
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
grid-area: toolbar;
|
grid-area: toolbar;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
.status-toolbar.status-in-own-thread {
|
.status-toolbar.status-in-own-thread {
|
||||||
margin-left: 63px; /* offset to align all toolbar items: 48px avatar + 15px margin-right */
|
margin-left: 63px; /* offset to align all toolbar items: 48px avatar + 15px margin-right */
|
||||||
|
|
Loading…
Reference in New Issue