GenFBDD / app /panel.css
libokj's picture
Initial commit GenFBDD
9439b9b
raw
history blame
934 Bytes
.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;
}