-
Notifications
You must be signed in to change notification settings - Fork 10
/
Bigger Popovers.css
38 lines (32 loc) · 919 Bytes
/
Bigger Popovers.css
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
/*----------------------------------------------------------------
BIGGER POPOVERS
----------------------------------------------------------------*/
div.popover.hover-popover {
border-radius: 10px;
transform: ease-in;
transition: ease-out;
width: 40rem;
background-color: var(--background-primary);
border: 2px solid var(--background-modifier-border) !important;
max-height: 100%; /*used to be: max-height: 100% or min-height: auto*/
}
div.popover.hover-popover .markdown-preview-view {
font-size: 16px !important;
padding-bottom: 2.5rem;
padding-top: 1rem;
}
div.popover.hover-popover .markdown-embed-content .markdown-preview-section {
/*preview margin padding*/
padding: 0rem;
}
.popover.hover-popover .markdown-embed {
height: 25rem;
}
.markdown-embed iframe{
height: 325px;
}
.popover.hover-popover .markdown-embed img{
max-width: 100%;
max-height: auto;
margin: 0em;
}