Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6a13605
feat: change dark mode default bg
amhsirak Oct 13, 2025
8c5b285
feat: change dark mode bg colors
amhsirak Oct 13, 2025
46c2174
feat: sync dark mode bg navbar
amhsirak Oct 13, 2025
4b28db2
fix: match border bottom
amhsirak Oct 13, 2025
c955ae3
feat: sync dark mode divider bg
amhsirak Oct 13, 2025
87ddfbd
feat: sync dark mode table cell border bottom
amhsirak Oct 13, 2025
d5668e5
feat: inherit bg btn dark mode
amhsirak Oct 13, 2025
44d713f
feat: change dark theme border color paper
amhsirak Oct 13, 2025
f0d808c
fix: match border bottom clr
amhsirak Oct 13, 2025
341602a
feat: inherit bg
amhsirak Oct 13, 2025
72030ee
feat: -rm mt
amhsirak Oct 13, 2025
f0542a4
feat: change card color
amhsirak Oct 13, 2025
ba8a5a1
feat: inherit bg
amhsirak Oct 13, 2025
01b78be
feat: inherit bg
amhsirak Oct 13, 2025
552dc4b
feat: larger logo
amhsirak Oct 13, 2025
a8455a8
feat: larger logo
amhsirak Oct 13, 2025
180e571
feat: change background of recorder in dm
amhsirak Oct 13, 2025
db6e7d6
feat: change bg browser tabs dm
amhsirak Oct 13, 2025
b78a21e
feat: sync bg browser nav dm
amhsirak Oct 13, 2025
1b68ec8
feat: sync bg browser nav dm
amhsirak Oct 13, 2025
c8582c6
feat: sync bg browser nav dm
amhsirak Oct 13, 2025
bdf726d
feat: sync action description box dark mode bg
amhsirak Oct 13, 2025
242c73f
feat: sync action description box dark mode bg
amhsirak Oct 13, 2025
f61daee
feat: remove unwanted textfield capture text sx styles
amhsirak Oct 13, 2025
462dc0e
feat: capture actions box dark mode bg
amhsirak Oct 13, 2025
2707829
feat: sync dark mode bg output preview
amhsirak Oct 13, 2025
6108629
feat: remove unwated styled
amhsirak Oct 13, 2025
da50be7
feat: output preview revamp
amhsirak Oct 13, 2025
60b9659
feat: sync dark mode w cloud
amhsirak Oct 13, 2025
fcf1f68
feat: use divider instead of hr
amhsirak Oct 13, 2025
a3393e1
chore: cleanup unused imports
amhsirak Oct 13, 2025
83abd27
feat: sync dark mode w cloud
amhsirak Oct 13, 2025
51dfffb
feat: sync dark mode w cloud
amhsirak Oct 13, 2025
5d9ee9b
fix: background color override for mui alert dark theme
amhsirak Oct 13, 2025
8204442
fix: missing #
amhsirak Oct 13, 2025
0f771bb
fix: -rm tutorial mode
amhsirak Oct 13, 2025
3f0e252
fix: output preview button
amhsirak Oct 13, 2025
ded47fd
Merge branch 'develop' into v1-dark-mode
amhsirak Oct 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/action/ActionDescriptionBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const CustomBoxContainer = styled.div<CustomBoxContainerProps>`
min-height: 100px;
height: auto;
border-radius: 5px;
background-color: ${({ isDarkMode }) => (isDarkMode ? '#313438' : 'white')};
background-color: ${({ isDarkMode }) => (isDarkMode ? '#1d1c1cff' : 'white')};
color: ${({ isDarkMode }) => (isDarkMode ? 'white' : 'black')};
margin: 80px 13px 25px 13px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
Expand All @@ -31,7 +31,7 @@ const Triangle = styled.div<CustomBoxContainerProps>`
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid ${({ isDarkMode }) => (isDarkMode ? '#313438' : 'white')};
border-bottom: 20px solid ${({ isDarkMode }) => (isDarkMode ? '#1d1c1cff' : 'white')};
`;

const Logo = styled.img`
Expand Down
6 changes: 3 additions & 3 deletions src/components/browser/BrowserNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ import { useThemeMode } from '../../context/theme-provider';
const StyledNavBar = styled.div<{ browserWidth: number; isDarkMode: boolean }>`
display: flex;
padding: 12px 0px;
background-color: ${({ isDarkMode }) => (isDarkMode ? '#2C2F33' : '#f6f6f6')};
background-color: ${({ isDarkMode }) => (isDarkMode ? '#1d1c1cff' : '#f6f6f6')};
width: ${({ browserWidth }) => browserWidth}px;
border-radius: 0px 5px 0px 0px;
`;

const IconButton = styled(NavBarButton) <{ mode: string }>`
background-color: ${({ mode }) => (mode === 'dark' ? '#2C2F33' : '#f6f6f6')};
background-color: ${({ mode }) => (mode === 'dark' ? '#1d1c1cff' : '#f6f6f6')};
transition: background-color 0.3s ease, transform 0.1s ease;
color: ${({ mode }) => (mode === 'dark' ? '#FFFFFF' : '#333')};
cursor: pointer;
&:hover {
background-color: ${({ mode }) => (mode === 'dark' ? '#586069' : '#D0D0D0')};
background-color: ${({ mode }) => (mode === 'dark' ? '#1d1c1cff' : '#D0D0D0')};
}
`;

Expand Down
2 changes: 1 addition & 1 deletion src/components/browser/BrowserTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const BrowserTabs = (
background: 'white',
borderRadius: '5px 5px 0px 0px',
'&.Mui-selected': {
backgroundColor: ` ${isDarkMode ? "#2a2a2a" : "#f5f5f5"}`,
backgroundColor: ` ${isDarkMode ? "#121111ff" : "#f5f5f5"}`,
color: '#ff00c3', // Slightly lighter text when selected
},
}}
Expand Down
6 changes: 3 additions & 3 deletions src/components/dashboard/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import Box from '@mui/material/Box';
import { useNavigate, useLocation } from 'react-router-dom';
import { Paper, Button, useTheme, Modal, Typography, Stack } from "@mui/material";
import { AutoAwesome, VpnKey, Usb, CloudQueue, Description, Favorite, SlowMotionVideo, PlayArrow } from "@mui/icons-material";
import { Paper, Button, useTheme, Modal, Typography, Stack, Divider } from "@mui/material";
import { AutoAwesome, FormatListBulleted, VpnKey, Usb, CloudQueue, Description, Favorite, SlowMotionVideo } from "@mui/icons-material";
import { useTranslation } from 'react-i18next';
import { useGlobalInfoStore } from "../../context/globalInfo";

Expand Down Expand Up @@ -116,7 +116,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
disableRipple={true}
sx={{ justifyContent: 'flex-start', textAlign: 'left', fontSize: 'medium' }} />
</Tabs>
<hr />
<Divider sx={{ borderColor: theme.palette.mode === 'dark' ? "#080808ff" : "" }} />
<Box sx={{ display: 'flex', flexDirection: 'column', textAlign: 'left' }}>
<Button
onClick={() => setDocModalOpen(true)}
Expand Down
4 changes: 2 additions & 2 deletions src/components/dashboard/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -598,11 +598,11 @@ export const NavBar: React.FC<NavBarProps> = ({

const NavBarWrapper = styled.div<{ mode: 'light' | 'dark' }>`
grid-area: navbar;
background-color: ${({ mode }) => (mode === 'dark' ? '#1e2124' : '#ffffff')};
background-color: ${({ mode }) => (mode === 'dark' ? '#000000ff' : '#ffffff')};
padding: 5px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid ${({ mode }) => (mode === 'dark' ? '#333' : '#e0e0e0')};
border-bottom: 1px solid ${({ mode }) => (mode === 'dark' ? '#000000ff' : '#e0e0e0')};
`;

const ProjectName = styled.b<{ mode: 'light' | 'dark' }>`
Expand Down
3 changes: 1 addition & 2 deletions src/components/recorder/RightSidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture

<Box>
{browserSteps.map(step => (
<Box key={step.id} onMouseEnter={() => handleMouseEnter(step.id)} onMouseLeave={() => handleMouseLeave(step.id)} sx={{ padding: '10px', margin: '11px', borderRadius: '5px', position: 'relative', background: isDarkMode ? "#1E2124" : 'white', color: isDarkMode ? "white" : 'black' }}>
<Box key={step.id} onMouseEnter={() => handleMouseEnter(step.id)} onMouseLeave={() => handleMouseLeave(step.id)} sx={{ padding: '10px', margin: '11px', borderRadius: '5px', position: 'relative', background: isDarkMode ? "#1d1c1cff" : 'white', color: isDarkMode ? "white" : 'black' }}>
{
step.type === 'text' && (
<>
Expand All @@ -1080,7 +1080,6 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
</InputAdornment>
)
}}
sx={{ background: isDarkMode ? "#1E2124" : 'white', color: isDarkMode ? "white" : 'black' }}
/>
<TextField
label={t('right_panel.fields.data')}
Expand Down
4 changes: 2 additions & 2 deletions src/components/robot/RecordingsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export const RecordingsTable = ({
<>
<TableContainer component={Paper} sx={{ width: '100%', overflow: 'hidden', marginTop: '15px' }}>
<Table stickyHeader aria-label="sticky table">
<TableHead>
{/* <TableHead> */}
<TableRow>
{columns.map((column) => (
<MemoizedTableCell
Expand All @@ -544,7 +544,7 @@ export const RecordingsTable = ({
</MemoizedTableCell>
))}
</TableRow>
</TableHead>
{/* </TableHead> */}
<TableBody>
{visibleRows.map((row) => (
<TableRowMemoized
Expand Down
172 changes: 0 additions & 172 deletions src/components/robot/RobotDuplicate.tsx

This file was deleted.

Loading