v1.03 - Fix table popups

This commit is contained in:
fraxle
2026-05-16 16:15:19 +01:00
parent 6dab145e90
commit a92a437b37
3 changed files with 1724 additions and 52 deletions
+12 -2
View File
@@ -575,7 +575,7 @@
padding: 14px 16px 16px;
pointer-events: all;
}
/* Arrow points DOWN toward the column header */
/* Arrow points DOWN toward the column header (default — popup is above the th) */
.col-info-popup::after {
content: '';
position: absolute;
@@ -586,7 +586,17 @@
background: #fffcf2;
border-right: 1.5px solid #c9b08a;
border-bottom: 1.5px solid #c9b08a;
transform: rotate(45deg);
transform: translateX(-50%) rotate(45deg);
}
/* Arrow points UP toward the column header (popup is below the th) */
.col-info-popup.col-info-popup--below::after {
bottom: auto;
top: -7px;
border-right: none;
border-bottom: none;
border-left: 1.5px solid #c9b08a;
border-top: 1.5px solid #c9b08a;
transform: translateX(-50%) rotate(45deg);
}
.col-info-title {
display: block;