-
Notifications
You must be signed in to change notification settings - Fork 1
/
topic-preview.css
62 lines (62 loc) · 1.25 KB
/
topic-preview.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.post-preview {
position: absolute;
background: white;
border-radius: 5px;
box-shadow: 2px 2px 13px 4px rgba(0, 0, 0, 0.5);
right: 100px;
padding: 10px 15px;
bottom: calc(110%);
z-index: 101;
max-height: 200px;
display: none;
max-width: 400px;
z-index: 10000
}
.wrap-post-preview::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.wrap-post-preview::-webkit-scrollbar-thumb {
background: #666;
border-radius: 20px;
}
.wrap-post-preview::-webkit-scrollbar-track {
background: #ddd;
border-radius: 20px;
}
.post-preview p {
font-size: 14px;
}
.post-preview p:last-of-type {
margin: 0;
}
.wrap-post-preview {
max-height: 160px;
overflow: auto;
padding: 0 0 0 7px;
}
.post-preview li {
border-bottom: 0;
height: max-content !important;
outline: none;
font-size: 10px;
padding: 10px;
border: none;
box-shadow: none;
}
.post-preview .category-item {
outline: none;
border: none;
box-shadow: none;
}
.post-preview .emoji {
width: 23px !important;
height: 23px !important;
}
.post-preview img {
width: auto !important;
height: auto !important;
max-width: 300px !important;
display: inline !important;
border-radius: 0 !important;
}