Skip to content

Commit

Permalink
bring back notes background and color
Browse files Browse the repository at this point in the history
  • Loading branch information
blackforestboi committed Jun 14, 2024
1 parent 76ef1c2 commit 2242621
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/annotations/components/AnnotationEditable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,6 @@ export default class AnnotationEditable extends React.Component<Props, State> {
event.nativeEvent.shiftKey &&
this.props.shiftSelectItem
) {
console.log('shift select item')
this.props.shiftSelectItem()
} else {
this.props.bulkSelectAnnotation()
Expand Down
1 change: 1 addition & 0 deletions src/common-ui/components/CheckboxNotInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ const LabelContainer = styled.label<{ zIndex?: number; width: string }>`
width: ${(props) => (props.width ? props.width : '100%')};
cursor: pointer;
z-index: ${(props) => props.zIndex};
user-select: none; // Prevent text selection
`

const InputContainer = styled.input`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,7 @@ const BulkSelectButtonBox = styled.div`
justify-content: center;
width: 28px;
height: 28px;
user-select: none; // Prevent text selection
`

const StyledPageResult = styled.div`
Expand Down Expand Up @@ -1368,6 +1369,9 @@ const NotesCounterTitle = styled.span`
`

const NoteCounter = styled.span`
color: ${(props) => props.theme.colors.black};
background: ${(props) => props.theme.colors.headerGradient};
font-weight: 400;
font-size: 12px;
margin-left: 5px;
Expand Down

0 comments on commit 2242621

Please sign in to comment.