-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Main Changes - New Settings Menu - Settings tabs now have icons next to them. - A more compact look for the services section. - Application settings are now separated between appearance and behavior - Reset tab now has a message that tells the user to reset if they are having issues - Reset modal now uses a similar style to the modal used for deleting a media from the list. ### Minor Changes - Rounded out all the borders for the advanced media view. ### Bug fixes - Fixed an issue where the username would sometimes not authenticate properly. (Occurred only when username had previously been saved)
- Loading branch information
Showing
25 changed files
with
415 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 16 additions & 15 deletions
31
src/renderer/components/mediaAdvanced/entryInput/notOnList/EntryInputNotOnList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
import { CardContent } from '@mui/material'; | ||
import { Card, CardContent } from '@mui/material'; | ||
import { Divider } from '@mui/joy'; | ||
import AddToList from './AddToList'; | ||
|
||
export default function EntryInputNotOnList() { | ||
return ( | ||
<CardContent | ||
<Card | ||
elevation={0} | ||
sx={{ | ||
overflowY: 'auto', | ||
gridColumn: '2/3', | ||
gridRow: '3/6', | ||
border: '1px solid SteelBlue', | ||
width: '100%', | ||
height: '100%', | ||
gridTemplateColumns: 'repeat(3, 175px)', | ||
gridTemplateRows: 'repeat(4, 73px)', | ||
display: 'flex', | ||
alignItems: 'center', | ||
/* '&:last:child': { | ||
paddingBottom: 0, | ||
}, */ | ||
justifyContent: 'center', | ||
}} | ||
variant="outlined" | ||
> | ||
<AddToList /> | ||
</CardContent> | ||
<CardContent | ||
sx={{ | ||
width: '100%', | ||
height: '100%', | ||
display: 'flex', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
}} | ||
> | ||
<AddToList /> | ||
</CardContent> | ||
</Card> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.