-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
30 lines (27 loc) · 721 Bytes
/
styles.css
File metadata and controls
30 lines (27 loc) · 721 Bytes
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
#pdf-image-overlay {
position: fixed !important;
z-index: 9999 !important;
pointer-events: auto !important;
user-select: none !important;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
background: transparent;
}
#pdf-image-overlay img {
display: block !important;
max-width: none !important;
pointer-events: auto !important;
}
#pdf-image-overlay .resize-handle {
position: absolute !important;
bottom: 0 !important;
right: 0 !important;
width: 10px !important;
height: 10px !important;
background-color: #007bff !important;
cursor: se-resize !important;
pointer-events: auto !important;
}
/* Ensure overlay is visible on top of PDF viewer */
embed[type="application/pdf"] {
z-index: 1;
}