Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speech Bubble Is Broken #6

Open
elrindir opened this issue Apr 20, 2024 · 3 comments
Open

Speech Bubble Is Broken #6

elrindir opened this issue Apr 20, 2024 · 3 comments

Comments

@elrindir
Copy link

Has anybody else noticed, that Gemmy can't talk anymore since some time now?
The speech bubble is not showing. Not even when clicking on him :/

Tested in a Sandbox vault with Obsidian v1.5.12 Desktop.

image

@jbro34
Copy link

jbro34 commented Jun 5, 2024

Were you able to get this working? I installed Gemmy yesterday and he isn't talking at all.

@AYelland
Copy link

Were you able to get this working? I installed Gemmy yesterday and he isn't talking at all.

Same here.

@colintedford
Copy link

Just rediscovered this. Here is a CSS-based partial fix courtesy of Karpiklaa:

I think the plugin is not up to date anymore with Obsidian. It seems to use tooltip that would generate with javascript directly from the aria-label properties?

So the fix is not handling the mouseover to disable the message, such I have seen in the code. But just in case you want a quick fix with CSS:

:root {
        --gemmy-size: 80px;
}

.gemmy-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
}

.gemmy-container img {
        width: var(--gemmy-size);
        height: var(--gemmy-size);
        border-radius: var(--gemmy-size);
}

.gemmy-container[aria-label]::before {
        --background-modifier-message: #FFFFCB;
        content: attr(aria-label);
        color: #202020;
        font-size: var(--font-ui-medium);
        border-radius: 20px;
        padding: var(--size-4-3) var(--size-4-6);
        width: 150px;
        background: var(--background-modifier-message);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants