Commit e1902451 authored by jiangzijing's avatar jiangzijing

feat:查看日志细节调整

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