FIX: AI Helper not visible on iPads (#805)
This commit fixes an issue where the composer AI helper was not visible on iPad in DiscourseHub. This was due to the z-index being different for `reply-control` when Discourse Hub inserts its `footer-nav`
This commit is contained in:
parent
4b21eb7974
commit
513510d6d0
|
@ -606,6 +606,10 @@
|
||||||
z-index: z("mobile-composer");
|
z-index: z("mobile-composer");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html.footer-nav-ipad .fk-d-menu[data-identifier="ai-composer-helper-menu"] {
|
||||||
|
z-index: z("ipad-header-nav") + 1;
|
||||||
|
}
|
||||||
|
|
||||||
.fk-d-toasts:has(.ai-proofread-error-toast) {
|
.fk-d-toasts:has(.ai-proofread-error-toast) {
|
||||||
top: unset;
|
top: unset;
|
||||||
bottom: calc(var(--composer-height) - 5%);
|
bottom: calc(var(--composer-height) - 5%);
|
||||||
|
|
Loading…
Reference in New Issue