blob: 3c25563919fd5667ed465111372bc40f1b123019 (
plain) (
blame)
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
|
.attachment {
background-color: #424242;
}
/* Full attachment */
.show-full-attachment {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #000000AF;
z-index: 2;
}
.show-full-attachment > * {
max-height: 100vh;
max-width: 100vw;
}
.attachment-download {
max-width: 420px !important;
background-color: var(--card-bg);
text-decoration: none;
color: inherit;
}
|