Skip to content

Commit

Permalink
Explicitly ask when reconciling transactions on manual import
Browse files Browse the repository at this point in the history
- Added import preview in transaction import list
- Added checkboxes to selectively prevent merging transactions
  • Loading branch information
Wizmaster committed May 18, 2024
1 parent 1fc7c99 commit 07fe953
Show file tree
Hide file tree
Showing 10 changed files with 616 additions and 105 deletions.
11 changes: 11 additions & 0 deletions packages/desktop-client/src/components/forms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,17 @@ export const Checkbox = (props: CheckboxProps) => {
content: ' ',
},
},
':disabled': {
border: '1px solid ' + theme.buttonNormalDisabledBorder,
backgroundColor: theme.buttonNormalDisabledBorder,
},
':checked:disabled': {
border: '1px solid ' + theme.buttonNormalDisabledBorder,
backgroundColor: theme.buttonNormalDisabledBorder,
'::after': {
backgroundColor: theme.buttonNormalDisabledBorder,
},
},
'&.focus-visible:focus': {
'::before': {
position: 'absolute',
Expand Down

0 comments on commit 07fe953

Please sign in to comment.