diff --git a/docs/en_US/images/dashboard_stat.png b/docs/en_US/images/dashboard_stat.png index 3e326f71a..bab60c069 100644 Binary files a/docs/en_US/images/dashboard_stat.png and b/docs/en_US/images/dashboard_stat.png differ diff --git a/docs/en_US/images/debug_error_message.png b/docs/en_US/images/debug_error_message.png index 0c1b455e4..970fc242e 100644 Binary files a/docs/en_US/images/debug_error_message.png and b/docs/en_US/images/debug_error_message.png differ diff --git a/docs/en_US/images/debug_ic_step_in.png b/docs/en_US/images/debug_ic_step_in.png index c1a6c86a1..66dc99e42 100644 Binary files a/docs/en_US/images/debug_ic_step_in.png and b/docs/en_US/images/debug_ic_step_in.png differ diff --git a/docs/en_US/images/debug_main.png b/docs/en_US/images/debug_main.png index acc6ab583..92dda9eb5 100644 Binary files a/docs/en_US/images/debug_main.png and b/docs/en_US/images/debug_main.png differ diff --git a/docs/en_US/images/debug_set_breakpoint.png b/docs/en_US/images/debug_set_breakpoint.png index 4b6e12a77..f1aa582ae 100644 Binary files a/docs/en_US/images/debug_set_breakpoint.png and b/docs/en_US/images/debug_set_breakpoint.png differ diff --git a/docs/en_US/images/debug_stack.png b/docs/en_US/images/debug_stack.png index a834e368f..1e6205f3e 100644 Binary files a/docs/en_US/images/debug_stack.png and b/docs/en_US/images/debug_stack.png differ diff --git a/docs/en_US/images/debug_step_in.png b/docs/en_US/images/debug_step_in.png index c1a6c86a1..b4a1188db 100644 Binary files a/docs/en_US/images/debug_step_in.png and b/docs/en_US/images/debug_step_in.png differ diff --git a/docs/en_US/images/debug_toolbar.png b/docs/en_US/images/debug_toolbar.png index 301e79157..77ee5e4bd 100644 Binary files a/docs/en_US/images/debug_toolbar.png and b/docs/en_US/images/debug_toolbar.png differ diff --git a/docs/en_US/images/processes_details.png b/docs/en_US/images/processes_details.png index 5d5d0e96c..2e24a4523 100644 Binary files a/docs/en_US/images/processes_details.png and b/docs/en_US/images/processes_details.png differ diff --git a/docs/en_US/images/processes_main.png b/docs/en_US/images/processes_main.png index 688b9a49c..0abf764c0 100644 Binary files a/docs/en_US/images/processes_main.png and b/docs/en_US/images/processes_main.png differ diff --git a/docs/en_US/images/query_editing.png b/docs/en_US/images/query_editing.png index 7e757775f..e2e5199aa 100644 Binary files a/docs/en_US/images/query_editing.png and b/docs/en_US/images/query_editing.png differ diff --git a/docs/en_US/images/query_execution.png b/docs/en_US/images/query_execution.png index 05242f6c5..79c423934 100644 Binary files a/docs/en_US/images/query_execution.png and b/docs/en_US/images/query_execution.png differ diff --git a/docs/en_US/images/query_toolbar.png b/docs/en_US/images/query_toolbar.png index 33d123b10..331f383e6 100644 Binary files a/docs/en_US/images/query_toolbar.png and b/docs/en_US/images/query_toolbar.png differ diff --git a/web/pgadmin/dashboard/static/js/Dashboard.jsx b/web/pgadmin/dashboard/static/js/Dashboard.jsx index 1bd891147..7ab23509f 100644 --- a/web/pgadmin/dashboard/static/js/Dashboard.jsx +++ b/web/pgadmin/dashboard/static/js/Dashboard.jsx @@ -17,8 +17,8 @@ import url_for from 'sources/url_for'; import Graphs from './Graphs'; import { Box, Tab, Tabs } from '@mui/material'; import { PgIconButton } from '../../../static/js/components/Buttons'; -import CancelIcon from '@mui/icons-material/Cancel'; -import StopCircleOutlinedIcon from '@mui/icons-material/StopCircleOutlined'; +import BlockRoundedIcon from '@mui/icons-material/BlockRounded'; +import StopRoundedIcon from '@mui/icons-material/StopRounded'; import WelcomeDashboard from './WelcomeDashboard'; import ActiveQuery from './ActiveQuery.ui'; import ServerLog from './ServerLog.ui'; @@ -81,9 +81,6 @@ const Root = styled('div')(({theme}) => ({ height: '100%', display: 'flex', flexDirection: 'column', - '& .Dashboard-terminateButton': { - color: theme.palette.error.main - }, '& .Dashboard-download': { '& .Dashboard-downloadButton': { width: '40px', @@ -133,7 +130,7 @@ function getTerminateCell(pgAdmin, sid, did, canTakeAction, onSuccess) { } + icon={} className='Dashboard-terminateButton' onClick={() => { if ( @@ -198,7 +195,7 @@ function getCancelCell(pgAdmin, sid, did, canTakeAction, onSuccess) { } + icon={} onClick={() => { if (!canTakeAction(row, 'cancel')) return; diff --git a/web/pgadmin/misc/bgprocess/static/js/ProcessDetails.jsx b/web/pgadmin/misc/bgprocess/static/js/ProcessDetails.jsx index dbe17af8c..6f45bec62 100644 --- a/web/pgadmin/misc/bgprocess/static/js/ProcessDetails.jsx +++ b/web/pgadmin/misc/bgprocess/static/js/ProcessDetails.jsx @@ -16,7 +16,7 @@ import PropTypes from 'prop-types'; import { MESSAGE_TYPE, NotifierMessage } from '../../../../static/js/components/FormComponents'; import { BgProcessManagerProcessState } from './BgProcessConstants'; import { DefaultButton, PgIconButton } from '../../../../static/js/components/Buttons'; -import HighlightOffRoundedIcon from '@mui/icons-material/HighlightOffRounded'; +import BlockRoundedIcon from '@mui/icons-material/BlockRounded'; import AccessTimeRoundedIcon from '@mui/icons-material/AccessTimeRounded'; import { useInterval } from '../../../../static/js/custom_hooks'; import getApiInstance from '../../../../static/js/api_instance'; @@ -165,8 +165,8 @@ export default function ProcessDetails({data}) { pgAdmin.Tools.FileManager.openStorageManager(data.current_storage_dir); }} style={{marginRight: '4px'}} />} } className='ProcessDetails-terminateBtn' onClick={onStopProcess}> - Stop Process + startIcon={} className='ProcessDetails-terminateBtn' onClick={onStopProcess}> + End Process diff --git a/web/pgadmin/misc/bgprocess/static/js/Processes.jsx b/web/pgadmin/misc/bgprocess/static/js/Processes.jsx index da6a2ee24..7b2a3b319 100644 --- a/web/pgadmin/misc/bgprocess/static/js/Processes.jsx +++ b/web/pgadmin/misc/bgprocess/static/js/Processes.jsx @@ -14,7 +14,7 @@ import gettext from 'sources/gettext'; import PropTypes from 'prop-types'; import { BgProcessManagerEvents, BgProcessManagerProcessState } from './BgProcessConstants'; import { PgButtonGroup, PgIconButton } from '../../../../static/js/components/Buttons'; -import StopCircleOutlinedIcon from '@mui/icons-material/StopCircleOutlined'; +import BlockRoundedIcon from '@mui/icons-material/BlockRounded'; import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined'; import DeleteIcon from '@mui/icons-material/Delete'; import HelpIcon from '@mui/icons-material/HelpRounded'; @@ -76,7 +76,7 @@ function CancelCell({row}) { } + icon={} className='Processes-stopButton' disabled={row.original.process_state != BgProcessManagerProcessState.PROCESS_STARTED || row.original.server_id != null} @@ -84,8 +84,8 @@ function CancelCell({row}) { e.preventDefault(); pgAdmin.Browser.BgProcessManager.stopProcess(row.original.id); }} - aria-label="Stop Process" - title={gettext('Stop Process')} + aria-label="End Process" + title={gettext('End Process')} > ); } diff --git a/web/pgadmin/tools/debugger/static/js/components/ToolBar.jsx b/web/pgadmin/tools/debugger/static/js/components/ToolBar.jsx index 38a8c0fcf..6f39986f1 100644 --- a/web/pgadmin/tools/debugger/static/js/components/ToolBar.jsx +++ b/web/pgadmin/tools/debugger/static/js/components/ToolBar.jsx @@ -17,7 +17,7 @@ import FormatIndentDecreaseIcon from '@mui/icons-material/FormatIndentDecrease'; import PlayCircleFilledWhiteIcon from '@mui/icons-material/PlayCircleFilledWhite'; import FiberManualRecordIcon from '@mui/icons-material/FiberManualRecord'; import NotInterestedIcon from '@mui/icons-material/NotInterested'; -import StopCircleOutlinedIcon from '@mui/icons-material/StopCircleOutlined'; +import StopRoundedIcon from '@mui/icons-material/StopRounded'; import HelpIcon from '@mui/icons-material/HelpRounded'; import RotateLeftRoundedIcon from '@mui/icons-material/RotateLeftRounded'; @@ -180,7 +180,7 @@ export function ToolBar() { }} /> - } disabled={buttonsDisabled[MENUS.STOP]} onClick={() => { stop(); }} + } disabled={buttonsDisabled[MENUS.STOP]} onClick={() => { stop(); }} shortcut={preferences?.btn_stop} /> diff --git a/web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx b/web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx index 43664535a..0b7eb2149 100644 --- a/web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx +++ b/web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx @@ -13,7 +13,7 @@ import { PgButtonGroup, PgIconButton } from '../../../../../../static/js/compone import FolderRoundedIcon from '@mui/icons-material/FolderRounded'; import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; import SaveRoundedIcon from '@mui/icons-material/SaveRounded'; -import StopCircleOutlinedIcon from '@mui/icons-material/StopCircleOutlined'; +import StopRoundedIcon from '@mui/icons-material/StopRounded'; import PlayArrowRoundedIcon from '@mui/icons-material/PlayArrowRounded'; import { FilterIcon, CommitIcon, RollbackIcon, ExecuteQueryIcon } from '../../../../../../static/js/components/ExternalIcon'; import EditRoundedIcon from '@mui/icons-material/EditRounded'; @@ -535,7 +535,7 @@ export function MainToolBar({containerRef, onFilterClick, onManageMacros, onAddT {label: gettext('100 rows'), value: '100'}, ]} value={limit} onChange={onLimitChange} disabled={buttonsDisabled['limit'] || queryToolCtx.params.is_query_tool} /> - } + } onClick={cancelQuery} disabled={buttonsDisabled['cancel']} shortcut={queryToolPref.btn_cancel_query} /> } onClick={executeScript} disabled={buttonsDisabled['execute']} shortcut={queryToolPref.execute_script}/>