@@ -5,7 +5,7 @@ import classNames from 'classnames';
5
5
6
6
import { useIntl } from '@edx/frontend-platform/i18n' ;
7
7
import { Avatar , Badge , Icon } from '@edx/paragon' ;
8
- import { Issue , Question } from '@edx/paragon/icons' ;
8
+ import { Question } from '@edx/paragon/icons' ;
9
9
10
10
import { AvatarOutlineAndLabelColors , ThreadType } from '../../../data/constants' ;
11
11
import { AuthorLabel } from '../../common' ;
@@ -41,9 +41,9 @@ export const PostAvatar = React.memo(({
41
41
< div className = { avatarSpacing } >
42
42
{ postType === ThreadType . QUESTION && (
43
43
< Icon
44
- src = { read ? Issue : Question }
45
- className = { classNames ( 'position-absolute bg-white rounded-circle question-icon-size' , {
46
- 'question-icon-position' : fromPostLink ,
44
+ src = { Question }
45
+ className = { classNames ( 'position-absolute rounded-circle question-icon-size' , {
46
+ 'question-icon-position' : fromPostLink , 'bg-white' : ! read , 'bg-light-300' : read ,
47
47
} ) }
48
48
/>
49
49
) }
@@ -52,6 +52,7 @@ export const PostAvatar = React.memo(({
52
52
[ `outline-${ outlineColor } ` ] : outlineColor ,
53
53
'outline-anonymous' : ! outlineColor ,
54
54
'mt-3 ml-2' : postType === ThreadType . QUESTION && fromPostLink ,
55
+ 'mt-2.5' : postType === ThreadType . QUESTION && ! fromPostLink ,
55
56
'avarat-img-position mt-17px' : postType === ThreadType . QUESTION ,
56
57
} ) }
57
58
style = { {
0 commit comments