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

fix(ui/faculty): increase z-index of tooltip in activity form #136

Merged
merged 1 commit into from
Dec 11, 2023
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
8 changes: 4 additions & 4 deletions src/styles/utilities.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
border-radius: 18px;
position: absolute;
z-index: 1;
z-index: 3;
top: 100%;
left: 0;
width: max-content;
Expand Down Expand Up @@ -55,7 +55,7 @@
border-radius: 2px;
padding: 6px;
position: absolute;
z-index: 1;
z-index: 3;
pointer-events: none;
}

Expand Down Expand Up @@ -109,7 +109,7 @@
border-bottom: 6px solid white;
margin-left: -6px;
margin-top: -2px;
z-index: 1;
z-index: 3;
}

/* The outline of the left-pointing triangle */
Expand All @@ -128,7 +128,7 @@
border-right: 6px solid white;
margin-top: -6px;
margin-right: -0.5px;
z-index: 1;
z-index: 3;
}

.infoTooltip:hover .infoTooltipText {
Expand Down
Loading