-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpopout.css
More file actions
45 lines (45 loc) · 1.26 KB
/
popout.css
File metadata and controls
45 lines (45 loc) · 1.26 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
popout-header {
display: flex;
border: 3px dashed transparent;
border-radius: 10px;
justify-content: center;
}
popout-contents {
display: none;
width: 400px;
background: var(--overlay-button-bg);
border: 3px solid var(--overlay-button-border);
border-radius: 10px;
padding: 8px;
}
popout-container.popped > popout-contents,
popout-container.contents-hover > popout-contents,
popout-container.header-hover > popout-contents {
display: block;
position: fixed;
z-index: 500;
}
popout-container.contents-hover > popout-header {
border-color: var(--pluto-logs-warn-accent-color);
}
.popout-icon {
--size: 20px;
display: block;
align-self: stretch;
background-size: var(--size) var(--size);
background-repeat: no-repeat;
background-position: center;
width: var(--size);
min-height: var(--size);
filter: var(--image-filters);
}
.popout-icon.popout {
background-image: url(https://cdn.jsdelivr.net/gh/ionic-team/ionicons@5.5.1/src/svg/expand.svg);
}
popout-container.popped .popout {
background-image: url(https://cdn.jsdelivr.net/gh/ionic-team/ionicons@5.5.1/src/svg/contract.svg);
}
popout-container.popped togglereactive-header > .description {
touch-action: none;
user-select: none;
}