File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed
Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ import Checkmark16 from '../../../../icon/fill/Checkmark16';
77import IconEllipsis from '../../../../icons/general/IconEllipsis' ;
88import Pencil16 from '../../../../icon/line/Pencil16' ;
99import PlainButton from '../../../../components/plain-button' ;
10- import Trash16 from '../../../../icon/fill /Trash16' ;
10+ import Trash16 from '../../../../icon/line /Trash16' ;
1111import X16 from '../../../../icon/fill/X16' ;
1212import { Menu , MenuItem } from '../../../../components/menu' ;
1313import { ACTIVITY_TARGETS } from '../../../common/interactionTargets' ;
1414import { COMMENT_STATUS_OPEN , COMMENT_STATUS_RESOLVED } from '../../../../constants' ;
1515import { bdlGray50 } from '../../../../styles/variables' ;
1616import type { FeedItemStatus } from '../../../../common/types/feed' ;
1717import messages from './messages' ;
18+ import './AnnotationActivityMenu.scss' ;
1819
1920type AnnotationActivityMenuProps = {
2021 canDelete ?: boolean ,
@@ -64,6 +65,7 @@ const AnnotationActivityMenu = ({
6465 < Menu { ...menuProps } >
6566 { canResolve && isResolved && (
6667 < MenuItem
68+ className = "bcs-AnnotationActivityMenu-unresolveAnnotation"
6769 data-resin-itemid = { id }
6870 data-resin-target = { ACTIVITY_TARGETS . ANNOTATION_OPTIONS_UNRESOLVE }
6971 data-testid = "unresolve-annotation-activity"
Original file line number Diff line number Diff line change 1+ @import ' ../../../common/variables' ;
2+
3+ .bcs-AnnotationActivityMenu-unresolveAnnotation path {
4+ fill : $bdl-gray ;
5+ }
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ class Comment extends React.Component<Props, State> {
168168 >
169169 { canResolve && isResolved && (
170170 < MenuItem
171+ className = "bcs-Comment-unresolveComment"
171172 data-resin-target = { ACTIVITY_TARGETS . COMMENT_OPTIONS_EDIT }
172173 data-testid = "unresolve-comment"
173174 onClick = { ( ) => this . handleStatusUpdate ( COMMENT_STATUS_OPEN ) }
Original file line number Diff line number Diff line change 3737 border-top : none ;
3838 }
3939}
40+
41+ .bcs-Comment-unresolveComment path {
42+ fill : $bdl-gray ;
43+ }
Original file line number Diff line number Diff line change 11@import ' ../../../../../styles/variables' ;
22
33.bcs-ActivityStatus {
4- margin-top : 5 * $bdl-grid-unit ;
4+ margin-top : 4 * $bdl-grid-unit ;
55 margin-bottom : 3 * $bdl-grid-unit ;
66}
You can’t perform that action at this time.
0 commit comments