-
Notifications
You must be signed in to change notification settings - Fork 487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
span bar row size fix #599
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -28,7 +28,7 @@ limitations under the License. | |||
/* The size of the indentGuide is based off of the iconWrapper */ | ||||
padding-right: calc(0.5rem + 12px); | ||||
height: 100%; | ||||
border-left: 1px solid transparent; | ||||
border-left: 3px solid transparent; | ||||
display: inline-flex; | ||||
} | ||||
|
||||
|
@@ -39,15 +39,11 @@ limitations under the License. | |||
} | ||||
|
||||
.SpanTreeOffset--indentGuide.is-active { | ||||
/* The size of the indentGuide is based off of the iconWrapper */ | ||||
padding-right: calc(0.5rem + 11px); | ||||
border-left: 0px; | ||||
border-left: 3px solid darkgrey; | ||||
} | ||||
|
||||
.SpanTreeOffset--indentGuide.is-active:before { | ||||
content: ''; | ||||
padding-left: 3px; | ||||
background-color: darkgrey; | ||||
background-color: transparent; | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe a psuedoelement without Please remove this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. padding is a part of element size jaeger-ui/packages/jaeger-ui/src/components/TracePage/TraceTimelineViewer/SpanTreeOffset.css Line 37 in 09d763f
:not(:hover) )
|
||||
} | ||||
|
||||
.SpanTreeOffset--iconWrapper { | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can get away with just
border-color: darkgrey
to avoid reproducing the other two characteristics (3px
andsolid
)