mirror of https://github.com/zulip/zulip.git
Add lightbox media queries.
Add media queries to hide the image actions if on mobile (probably unnecessary to have), and make the image description (name, author) close to full width.
This commit is contained in:
parent
162ee29aee
commit
3494fa0635
|
@ -145,3 +145,13 @@
|
||||||
#overlay .clear-float {
|
#overlay .clear-float {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 450px) {
|
||||||
|
#overlay .image-actions {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#overlay .image-description {
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue