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

Improve hover service #12313

Open
kittaakos opened this issue Mar 15, 2023 · 0 comments
Open

Improve hover service #12313

kittaakos opened this issue Mar 15, 2023 · 0 comments
Labels
ui/ux issues related to user interface / user experience

Comments

@kittaakos
Copy link
Contributor

kittaakos commented Mar 15, 2023

Bug Description:

  1. When there is insufficient space for the hover, Theia calculates a fallback hover position. It does not always work.
hover.mp4
  1. I can make the hover visible, although the cursor is neither over the host nor the target.
theia_hover_01.mp4
  1. Hovering over the popup does not work reliably.
theia_hover_02.mp4
  1. Top calculation logic should count with the status bar height. In other words, do not hover over the status bar.
theia_hover_03.mp4
  1. For the markdown links, styles should be improved:

.theia-hover a {
color: var(--theia-textLink-foreground);
}
.theia-hover a:hover {
color: var(--theia-textLink-active-foreground);
}

.theia-hover a {
    color: var(--theia-textLink-foreground);
    word-wrap: break-word; /* customized */
    cursor: pointer; /* customized */
}

.theia-hover a:hover {
    color: var(--theia-textLink-active-foreground);
    text-decoration: underline; /* customized */
}

Steps to Reproduce:

  1. See the screencasts.

Additional Information

  • Operating System: macOS
  • Theia Version: Theia Blueprint Version 1.35.0 (1.35.0.98)
@kittaakos kittaakos changed the title Improve the fallback position calculation for the hover Improve hover service Mar 17, 2023
@vince-fugnitto vince-fugnitto added the ui/ux issues related to user interface / user experience label Mar 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ui/ux issues related to user interface / user experience
Projects
None yet
Development

No branches or pull requests

2 participants