Skip to content

added tooltip bubble for project name #175

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

Merged
merged 2 commits into from
Jul 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ <h3 id="scrumHelperHeading" class="text-3xl font-semibold cursor-pointer">Scrum

<div id="reportSection" class="tab-content">
<div>
<h4>Your Project Name</h4>
<h4>Your Project Name<span class="tooltip-container ml-2">
<i class="fa fa-question-circle question-icon"></i>
<span class="tooltip-bubble">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Consider improving tooltip accessibility for screen readers.

Use ARIA attributes like aria-label or aria-describedby, and ensure tooltip content is accessible via keyboard focus to support screen reader users.

This is the name that appears in the subject line of your email, followed by timestamp.
</span>
</span> </h4>
<input id="projectName" type="text"
class="w-full border-2 border-gray-200 bg-gray-200 rounded-xl text-gray-800 p-2 my-2"
placeholder="Enter your project name">
Expand Down