File tree 5 files changed +20
-11
lines changed
5 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 4.7.2 " ,
2
+ "version" : " 4.7.3 " ,
3
3
"license" : " MIT" ,
4
4
"main" : " dist/index.js" ,
5
5
"typings" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ const styles = stylesheet.create({
49
49
backgroundColor : 'var(--epr-hover-bg-color)' ,
50
50
// @ts -ignore
51
51
':after' : {
52
- backgroundPositionY : '-20px'
52
+ backgroundPositionY : '-20px' ,
53
+ transform : 'scale(1.2)'
53
54
}
54
55
} ,
55
56
':focus' : {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export function Reactions() {
40
40
unified = { reaction }
41
41
showVariations = { false }
42
42
className = { cx ( styles . emojiButton ) }
43
- round
43
+ noBackground
44
44
/>
45
45
</ li >
46
46
) ) }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ type ClickableEmojiButtonProps = Readonly<{
17
17
children : React . ReactNode ;
18
18
hasVariations : boolean ;
19
19
unified ?: string ;
20
- round ?: boolean ;
20
+ noBackground ?: boolean ;
21
21
className ?: string ;
22
22
} > ;
23
23
@@ -30,7 +30,7 @@ export function ClickableEmojiButton({
30
30
hasVariations,
31
31
children,
32
32
className,
33
- round = false
33
+ noBackground = false
34
34
} : ClickableEmojiButtonProps ) {
35
35
return (
36
36
< Button
@@ -42,7 +42,7 @@ export function ClickableEmojiButton({
42
42
[ ClassNames . visible ] : ! hidden && ! hiddenOnSearch
43
43
} ,
44
44
! ! ( hasVariations && showVariations ) && styles . hasVariations ,
45
- round && styles . round ,
45
+ noBackground && styles . noBackground ,
46
46
className
47
47
) }
48
48
data-unified = { unified }
@@ -76,8 +76,16 @@ const styles = stylesheet.create({
76
76
backgroundColor : 'var(--epr-focus-bg-color)'
77
77
}
78
78
} ,
79
- round : {
80
- borderRadius : '50%'
79
+ noBackground : {
80
+ background : 'none' ,
81
+ ':hover' : {
82
+ backgroundColor : 'transparent' ,
83
+ background : 'none'
84
+ } ,
85
+ ':focus' : {
86
+ backgroundColor : 'transparent' ,
87
+ background : 'none'
88
+ }
81
89
} ,
82
90
hasVariations : {
83
91
'.' : ClassNames . emojiHasVariations ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ type ClickableEmojiProps = Readonly<
14
14
hiddenOnSearch ?: boolean ;
15
15
emoji : DataEmoji ;
16
16
className ?: string ;
17
- round ?: boolean ;
17
+ noBackground ?: boolean ;
18
18
}
19
19
> ;
20
20
@@ -29,7 +29,7 @@ export function ClickableEmoji({
29
29
lazyLoad,
30
30
getEmojiUrl,
31
31
className,
32
- round = false
32
+ noBackground = false
33
33
} : ClickableEmojiProps ) {
34
34
const hasVariations = emojiHasVariations ( emoji ) ;
35
35
@@ -41,7 +41,7 @@ export function ClickableEmoji({
41
41
hiddenOnSearch = { hiddenOnSearch }
42
42
emojiNames = { emojiNames ( emoji ) }
43
43
unified = { unified }
44
- round = { round }
44
+ noBackground = { noBackground }
45
45
>
46
46
< ViewOnlyEmoji
47
47
unified = { unified }
You can’t perform that action at this time.
0 commit comments