TraceViewer: fix hard to click to logs icon on long span name (#34303)

This commit is contained in:
Zoltán Bedi
2021-05-19 13:38:14 +02:00
committed by GitHub
parent 060dccdbf5
commit 97cf00ab33

View File

@ -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 }}