Spaces:
Sleeping
Sleeping
.tabulator { | |
font-family: Courier New ; | |
font-weight: normal ; | |
font-size: 12px ; | |
} | |
.tabulator-cell { | |
overflow: visible ; | |
} | |
.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; | |
} | |