Assembly GUI Re-Styling

This commit is contained in:
2025-09-29 00:53:08 -06:00
parent fae00f7675
commit 4fecad3b0d
4 changed files with 8 additions and 218 deletions

View File

@@ -1 +0,0 @@
Test

View File

@@ -1,8 +0,0 @@
# Dynamically get the current user's Desktop path
$desktopPath = "C:\Users\nicole.rappe\Desktop"
# Define the file path relative to the Desktop
$filePath = Join-Path $desktopPath "Canary.txt"
# Write some content into the file
"USER Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8

File diff suppressed because one or more lines are too long

View File

@@ -651,11 +651,12 @@ function ScriptsLikeIsland({
export default function AssemblyList({ onOpenWorkflow, onOpenScript }) { export default function AssemblyList({ onOpenWorkflow, onOpenScript }) {
return ( return (
<Paper sx={{ m: 2, p: 2, bgcolor: '#1e1e1e' }} elevation={2}> <Paper sx={{ m: 2, p: 0, bgcolor: '#1e1e1e' }} elevation={2}>
<Box sx={{ mb: 2 }}> <Box sx={{ p: 2, pb: 1 }}>
<Typography variant="h5" sx={{ color: '#e6edf3', mb: 0.5 }}>Assemblies</Typography> <Typography variant="h6" sx={{ color: '#58a6ff', mb: 0 }}>Assemblies</Typography>
<Typography variant="body2" sx={{ color: '#aaa' }}>Collections of components used to perform various actions upon targeted devices.</Typography> <Typography variant="body2" sx={{ color: '#aaa' }}>Collections of components used to perform various actions upon targeted devices.</Typography>
</Box> </Box>
<Box sx={{ px: 2, pb: 2 }}>
<Box sx={{ display: 'grid', gridTemplateColumns: { xs: '1fr', md: '1.2fr 1fr 1fr' }, gap: 2 }}> <Box sx={{ display: 'grid', gridTemplateColumns: { xs: '1fr', md: '1.2fr 1fr 1fr' }, gap: 2 }}>
{/* Left: Workflows */} {/* Left: Workflows */}
<WorkflowsIsland onOpenWorkflow={onOpenWorkflow} /> <WorkflowsIsland onOpenWorkflow={onOpenWorkflow} />
@@ -680,6 +681,7 @@ export default function AssemblyList({ onOpenWorkflow, onOpenScript }) {
onEdit={(rel) => onOpenScript && onOpenScript(rel, 'ansible')} onEdit={(rel) => onOpenScript && onOpenScript(rel, 'ansible')}
/> />
</Box> </Box>
</Box>
</Paper> </Paper>
); );
} }