v1.03 - Fix table popups
This commit is contained in:
+12
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user