Spaces:
Sleeping
Sleeping
File size: 976 Bytes
34a7685 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
.tabulator {
font-family: Courier New !important;
font-weight: normal !important;
font-size: 12px !important;
}
.tabulator-cell {
overflow: visible !important;
}
.image-zoom-viewer {
display: inline-block;
overflow: visible;
z-index: 1000;
}
.image-zoom-viewer::after {
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.image-zoom-viewer:hover::after {
pointer-events: all;
}
/* When hovering over the container, scale its child (the SVG) */
.tabulator-cell:hover .image-zoom-viewer svg {
padding: 3px;
position: absolute;
background-color: rgba(250, 250, 250, 0.854);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.618);
border-radius: 3px;
transform: scale(3); /* Scale up the SVG */
transition: transform 0.3s ease;
pointer-events: none; /* Prevents the SVG from blocking mouse interactions */
z-index: 1000;
}
|