Spaces:
Sleeping
Sleeping
File size: 1,073 Bytes
536551b | 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /* OpenSeadragon Navigator Styling */
.navigator {
border: 2px solid #14b8a6 !important;
background-color: rgba(0, 0, 0, 0.5) !important;
}
/* OpenSeadragon Display Region (current view indicator in minimap) */
.displayregion {
border: 2px solid #0d9488 !important;
background-color: rgba(20, 184, 166, 0.2) !important;
}
/* Annotation Canvas Styling */
canvas {
image-rendering: pixelated;
image-rendering: crisp-edges;
}
/* Crosshair cursor for drawing tools */
.crosshair {
cursor: crosshair !important;
}
/* Default cursor */
.viewer-container {
cursor: default;
}
/* Pan cursor */
.pan-cursor {
cursor: grab !important;
}
.pan-cursor:active {
cursor: grabbing !important;
}
/* Smooth transitions */
.openseadragon-canvas {
transition: opacity 0.3s ease-in-out;
}
/* Annotation overlay z-index stacking */
.viewer-controls {
position: relative;
z-index: 30;
}
.annotation-canvas {
position: absolute;
top: 0;
left: 0;
z-index: 40;
}
.osd-navigator {
z-index: 45;
}
|