diff --git a/src/annotations/components/AnnotationEditable.tsx b/src/annotations/components/AnnotationEditable.tsx index 52f94cf301..5e1879bd4d 100644 --- a/src/annotations/components/AnnotationEditable.tsx +++ b/src/annotations/components/AnnotationEditable.tsx @@ -1261,7 +1261,6 @@ export default class AnnotationEditable extends React.Component { event.nativeEvent.shiftKey && this.props.shiftSelectItem ) { - console.log('shift select item') this.props.shiftSelectItem() } else { this.props.bulkSelectAnnotation() diff --git a/src/common-ui/components/CheckboxNotInput.tsx b/src/common-ui/components/CheckboxNotInput.tsx index be5ef359d5..783180a0e9 100644 --- a/src/common-ui/components/CheckboxNotInput.tsx +++ b/src/common-ui/components/CheckboxNotInput.tsx @@ -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` diff --git a/src/dashboard-refactor/search-results/components/page-result.tsx b/src/dashboard-refactor/search-results/components/page-result.tsx index 64b5e74d27..acdd54cb92 100644 --- a/src/dashboard-refactor/search-results/components/page-result.tsx +++ b/src/dashboard-refactor/search-results/components/page-result.tsx @@ -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` @@ -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;