Revert "fix: recorder ui bug "
This commit is contained in:
@@ -534,24 +534,9 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
|
|||||||
const isDarkMode = theme.darkMode;
|
const isDarkMode = theme.darkMode;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Paper sx={{ height: panelHeight, width: 'auto', alignItems: "center", background: 'inherit', overflow: 'hidden' }} id="browser-actions" elevation={0}>
|
<Paper sx={{ height: panelHeight, width: 'auto', alignItems: "center", background: 'inherit' }} id="browser-actions" elevation={0}>
|
||||||
<ActionDescriptionBox isDarkMode={isDarkMode} />
|
<ActionDescriptionBox isDarkMode={isDarkMode} />
|
||||||
<Box
|
<Box display="flex" flexDirection="column" gap={2} style={{ margin: '13px' }}>
|
||||||
display="flex"
|
|
||||||
flexDirection="column"
|
|
||||||
gap={2}
|
|
||||||
style={{ margin: '13px' }}
|
|
||||||
sx={{
|
|
||||||
height: 'calc(100% - 26px)',
|
|
||||||
overflowY: 'auto',
|
|
||||||
overflowX: 'hidden',
|
|
||||||
'&::-webkit-scrollbar': {
|
|
||||||
display: 'none'
|
|
||||||
},
|
|
||||||
msOverflowStyle: 'none',
|
|
||||||
scrollbarWidth: 'none'
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{!isAnyActionActive && (
|
{!isAnyActionActive && (
|
||||||
<>
|
<>
|
||||||
{showCaptureList && (
|
{showCaptureList && (
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
<>
|
<>
|
||||||
<Grid container direction="row" style={{ flexGrow: 1, height: '100%' }}>
|
<Grid container direction="row" style={{ flexGrow: 1, height: '100%' }}>
|
||||||
<Grid item xs={12} md={9} lg={9} style={{ height: '100%', overflow: 'hidden', position: 'relative' }}>
|
<Grid item xs={12} md={9} lg={9} style={{ height: '100%', overflow: 'hidden', position: 'relative' }}>
|
||||||
<div style={{ height: '100%', overflow: 'hidden' }}>
|
<div style={{ height: '100%', overflow: 'auto' }}>
|
||||||
<BrowserContent />
|
<BrowserContent />
|
||||||
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user