mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 21:43:09 +08:00
TraceViewer: fix hard to click to logs icon on long span name (#34303)
This commit is contained in:
@ -46,12 +46,6 @@ const getStyles = createStyle((theme: Theme) => {
|
||||
line-height: 27px;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
&:hover {
|
||||
border-right: 1px solid ${autoColor(theme, '#bbb')};
|
||||
float: left;
|
||||
min-width: calc(100% + 1px);
|
||||
overflow: visible;
|
||||
}
|
||||
`,
|
||||
nameWrapperMatchingFilter: css`
|
||||
label: nameWrapperMatchingFilter;
|
||||
@ -401,6 +395,7 @@ export class UnthemedSpanBarRow extends React.PureComponent<SpanBarRowProps> {
|
||||
<a
|
||||
className={cx(styles.name, { [styles.nameDetailExpanded]: isDetailExpanded })}
|
||||
aria-checked={isDetailExpanded}
|
||||
title={labelDetail}
|
||||
onClick={this._detailToggle}
|
||||
role="switch"
|
||||
style={{ borderColor: color }}
|
||||
|
Reference in New Issue
Block a user