Commit 50402359 by Apple\Apple

馃拕 style(Logs): Add rounded corners to image view button in MjLogsTable

- Add rounded-full class to "鏌ョ湅鍥剧墖" (View Image) button for consistent UI styling
- All other buttons in both MjLogsTable.js and TaskLogsTable.js already have rounded corners applied
- Ensures uniform button styling across the log tables interface
parent 07f141e8
...@@ -462,7 +462,7 @@ const LogsTable = () => { ...@@ -462,7 +462,7 @@ const LogsTable = () => {
percent={text ? parseInt(text.replace('%', '')) : 0} percent={text ? parseInt(text.replace('%', '')) : 0}
showInfo={true} showInfo={true}
aria-label='drawing progress' aria-label='drawing progress'
style={{ minWidth: '200px' }} style={{ minWidth: '160px' }}
/> />
} }
</div> </div>
...@@ -483,6 +483,7 @@ const LogsTable = () => { ...@@ -483,6 +483,7 @@ const LogsTable = () => {
setModalImageUrl(text); setModalImageUrl(text);
setIsModalOpenurl(true); setIsModalOpenurl(true);
}} }}
className="!rounded-full"
> >
{t('鏌ョ湅鍥剧墖')} {t('鏌ョ湅鍥剧墖')}
</Button> </Button>
......
...@@ -395,7 +395,7 @@ const LogsTable = () => { ...@@ -395,7 +395,7 @@ const LogsTable = () => {
percent={text ? parseInt(text.replace('%', '')) : 0} percent={text ? parseInt(text.replace('%', '')) : 0}
showInfo={true} showInfo={true}
aria-label='task progress' aria-label='task progress'
style={{ minWidth: '200px' }} style={{ minWidth: '160px' }}
/> />
) )
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment