Commit e1902451 authored by jiangzijing's avatar jiangzijing

feat:查看日志细节调整

parent eb05ae40
......@@ -19,7 +19,7 @@ const theme = createTheme({
styleOverrides: {
tooltip: {
backgroundColor: "rgba(7, 19, 38, .8)",
padding:'8px 12px',
padding:'8px 16px',
color: "#fff",
},
arrow: {
......
......@@ -125,7 +125,7 @@ const LogView = (props: LogViewProps) => {
<div
className={style.leftButton}
onClick={leftClick}
style={{ color: leftButtonColor }}
style={{ color: leftButtonColor, cursor: leftButtonColor === '#585D62' ? 'default' : 'pointer' }}
>
<ChevronLeftIcon />
</div>
......@@ -136,6 +136,7 @@ const LogView = (props: LogViewProps) => {
title={item.logName}
placement="bottom"
arrow={false}
enterDelay={1000}
>
<div
key={index}
......@@ -155,7 +156,7 @@ const LogView = (props: LogViewProps) => {
<div
className={style.rightButton}
onClick={rightClick}
style={{ color: rightButtonColor }}
style={{ color: rightButtonColor, cursor: rightButtonColor === '#585D62' ? 'default' : 'pointer' }}
>
<ChevronRightIcon />
</div>
......
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 to comment