-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy paththumbnails.css
More file actions
36 lines (30 loc) · 714 Bytes
/
thumbnails.css
File metadata and controls
36 lines (30 loc) · 714 Bytes
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
.media-file-full-screen-preview {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
z-index: 1;
display: flex;
}
.media-file-full-screen-preview img {
max-width: 95%;
max-height: 95%;
margin: auto;
z-index: 100;
cursor: zoom-out;
}
.media-file-thumbnail-in-cell {
background: white;
margin-top: 3px;
display: table; // to make it fit the image it contains
width: auto;
}
.media-file-thumbnail-in-cell img {
max-width: 240px;
}
.media-file-thumbnail-in-cell img:hover {
opacity: .7;
cursor: zoom-in;
}