-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembedBarStyles.js
More file actions
62 lines (52 loc) · 1.15 KB
/
embedBarStyles.js
File metadata and controls
62 lines (52 loc) · 1.15 KB
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
const embedReactionBarStyles = `<style>
livelike-embed-reaction {
position: absolute;
top: -4rem;
left: 4%
}
span.embed-user-reaction-container.embed-self-user-reaction {
background: #E7E9EA
}
span.embed-user-reaction-container:hover {
background: #E7E9EA
}
span.embed-user-reaction-container.embed-self-user-reaction:hover {
background: white
}
span.embed-user-reaction-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fff;
padding: 4px 8px 4px 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
span.reaction-add-icon.clicked {
margin-right: 8px;
}
.embed-reaction-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 4px !important;
padding: 4px;
border: 1px solid #ccc;
border-radius: 6px;
flex-wrap: nowrap !important;
margin-top: 0px !important;
background-color: #D0D3D5
}
img.embed-user-reaction-img {
width: 26px;
height: 26px;
}
span.embed-user-reaction-count {
font-size: 12px;
margin-left: 0px !important;
margin-top: 2px;
}
</style>`