Fix port status tooltip alignment
Some checks failed
Build / release (macos-latest) (push) Has been cancelled
Build / release (ubuntu-latest) (push) Has been cancelled
Build / release (windows-latest) (push) Has been cancelled
Windows Smoke Test / windows-smoke (push) Has been cancelled

This commit is contained in:
2026-05-05 22:27:44 +09:00
parent b5c0125bb7
commit 429a3d2284

View File

@@ -3347,8 +3347,8 @@ input:checked + .toggleSwitchSlider:before {
line-height: 1.5; line-height: 1.5;
transition: visibility 0s linear 0.25s, opacity 0.25s ease; transition: visibility 0s linear 0.25s, opacity 0.25s ease;
bottom: calc(100% + 15px); bottom: calc(100% + 15px);
left: 50%; left: 0;
transform: translateX(-50%); transform: none;
box-shadow: 0px 0px 20px rgb(0, 0, 0); box-shadow: 0px 0px 20px rgb(0, 0, 0);
cursor: default; cursor: default;
white-space: normal; white-space: normal;
@@ -3357,9 +3357,8 @@ input:checked + .toggleSwitchSlider:before {
#portStatusTooltip:after { #portStatusTooltip:after {
content: " "; content: " ";
position: absolute; position: absolute;
left: 50%; left: 24px;
top: 100%; top: 100%;
margin-left: -5px;
border-width: 5px; border-width: 5px;
border-style: solid; border-style: solid;
border-color: rgba(0, 0, 0, 0.82) transparent transparent transparent; border-color: rgba(0, 0, 0, 0.82) transparent transparent transparent;