-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
63 lines (58 loc) · 1.36 KB
/
Copy pathcontent.css
File metadata and controls
63 lines (58 loc) · 1.36 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
/* Full-page overlay */
#thread-expander-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.55);
z-index: 2147483647; /* on top of everything */
display: none;
align-items: center;
justify-content: center;
}
#thread-expander-overlay.active { display: flex; }
/* Overlay window */
#thread-expander-container {
position: relative;
width: min(1200px, 92vw);
height: min(900px, 88vh);
background: #111;
border-radius: 10px;
box-shadow: 0 20px 60px rgba(0,0,0,0.45);
overflow: hidden;
}
/* The enlarged Thread iframe */
#thread-expander-frame {
width: 100%;
height: 100%;
border: 0;
display: block;
background: #fff;
}
/* Right-aligned row to hold the action button */
.thread-expander-row {
display: flex;
justify-content: flex-end;
gap: 8px;
margin: 6px 0 10px;
}
/* Subtle ghost-style button that inherits page font and uses squared corners */
.thread-expander-button {
display: inline-flex;
align-items: center;
gap: 6px;
background: #f5f7fb;
color: #0b5cff;
border: 1px solid #e5e7eb;
border-radius: 6px;
font-family: inherit;
font-size: 13px;
font-weight: 600;
line-height: 1.2;
padding: 6px 10px;
cursor: pointer;
box-shadow: none;
}
.thread-expander-button:hover {
background: #eaf2ff;
border-color: #d6e4ff;
}
.thread-expander-button .icon { width: 14px; height: 14px; display: inline-block; }