-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
343b369
commit 92d182d
Showing
44 changed files
with
326 additions
and
240 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
import { IconButton, styled, type IconButtonProps } from '@mui/material'; | ||
|
||
const StyledIconButton = styled(IconButton)` | ||
color: ${({ theme }) => theme.palette.text.primary}; | ||
transition: ${({ theme }) => theme.transitions.create(['color', 'transform'])}; | ||
export const IconButtonNoRipple = styled(({ ...props }: Omit<IconButtonProps, 'disableRipple' | 'color'>) => ( | ||
<IconButton disableRipple size="small" {...props} /> | ||
))` | ||
color: ${({ theme: { palette } }) => palette.text.primary}; | ||
transition: ${({ theme: { transitions } }) => | ||
transitions.create(['color', 'transform'], { easing: 'cubic-bezier(0, 1, 0.32, 1.28)' })}; | ||
&:hover { | ||
color: ${({ theme }) => theme.palette.primary.main}; | ||
color: ${({ theme: { palette } }) => palette.primary.main}; | ||
} | ||
&:active { | ||
transform: scale(0.9); | ||
} | ||
`; | ||
|
||
export function IconButtonNoRipple({ ...props }: Omit<IconButtonProps, 'disableRipple' | 'color'>) { | ||
return <StyledIconButton disableRipple size="small" {...props} />; | ||
} | ||
` as typeof IconButton; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
import { Box, LinearProgress, type BoxProps } from '@mui/material'; | ||
import { Box, LinearProgress, styled, type BoxProps } from '@mui/material'; | ||
|
||
export const LinerLoading = ({ sx }: BoxProps) => ( | ||
<Box | ||
sx={{ | ||
...sx, | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'stretch', | ||
flexDirection: 'column' | ||
}} | ||
> | ||
const StyledBox = styled(Box)` | ||
display: flex; | ||
justify-content: center; | ||
align-items: stretch; | ||
flex-direction: column; | ||
` as typeof Box; | ||
|
||
export const LinerLoading = ({ ...props }: BoxProps) => ( | ||
<StyledBox {...props}> | ||
<LinearProgress /> | ||
</Box> | ||
</StyledBox> | ||
); |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { alpha, Paper as MuiPaper, styled } from '@mui/material'; | ||
|
||
export const Paper = styled(MuiPaper)` | ||
background-color: ${({ theme: { palette } }) => alpha(palette.primary.main, 0.08)}; | ||
backdrop-filter: unset; | ||
` as typeof MuiPaper; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack, styled } from '@mui/material'; | ||
|
||
export const Row = styled(Stack)` | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: flex-start; | ||
width: 100%; | ||
` as typeof Stack; |
2 changes: 1 addition & 1 deletion
2
packages/launcher/src/components/SEAConfigForm/CheckboxItem.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
File renamed without changes.
This file was deleted.
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
Oops, something went wrong.