-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
69 lines (62 loc) · 2.28 KB
/
content.css
File metadata and controls
69 lines (62 loc) · 2.28 KB
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
60
61
62
63
64
65
66
67
68
69
/* Scoped selection styles */
body.panelat-selection-mode {
cursor: crosshair !important;
}
body.panelat-selection-mode .panelat-highlight-hover {
outline: 3px solid var(--extrapane-theme-color, #00d2ff) !important;
background-color: var(--extrapane-theme-bg, rgba(0, 210, 255, 0.2)) !important;
border-radius: 4px !important;
box-shadow: 0 0 15px 5px var(--extrapane-theme-shadow, rgba(0, 210, 255, 0.5)) !important;
transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
/* Ensure it has a relative position so box-shadow behaves well on inline elements */
position: relative !important;
z-index: 2147483647 !important; /* Max z-index to stay on top */
box-sizing: border-box !important;
}
body.panelat-selection-mode *,
body.extrapane-video-picker-mode * {
/* Prevent interaction with iframes/embeds while in selection mode to avoid losing focus */
pointer-events: auto !important;
}
body.extrapane-video-picker-mode {
cursor: cell !important;
}
body.extrapane-video-picker-mode .panelat-highlight-hover {
outline: 4px dashed var(--extrapane-theme-color, #fbbf24) !important;
background-color: rgba(251, 191, 36, 0.1) !important;
box-shadow: 0 0 20px 8px rgba(251, 191, 36, 0.3) !important;
z-index: 2147483647 !important;
}
body.extrapane-clipping-mode {
cursor: crosshair !important;
user-select: none !important;
}
.extrapane-clipping-overlay {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
background: rgba(0, 0, 0, 0.4) !important;
z-index: 2147483640 !important;
pointer-events: auto !important;
}
.extrapane-clipping-box {
position: fixed !important;
border: 2px solid var(--extrapane-theme-color, #00d2ff) !important;
background: transparent !important;
box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.4) !important;
z-index: 2147483641 !important;
pointer-events: none !important;
}
.extrapane-clipping-info {
position: absolute !important;
bottom: -30px !important;
right: 0 !important;
background: var(--extrapane-theme-color, #00d2ff) !important;
color: white !important;
font-size: 12px !important;
padding: 2px 6px !important;
border-radius: 4px !important;
font-family: sans-serif !important;
}