Jaeger: upstream fix for hovering on log lines (#26426)

* Jaeger: upstream fix for hovering on log lines

* Modify active style to change border color only
This commit is contained in:
Zoltán Bedi 2020-07-20 13:16:02 +02:00 committed by GitHub
parent fba329f3ac
commit 43033ddf74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ export const getStyles = createStyle((theme: Theme) => {
/* The size of the indentGuide is based off of the iconWrapper */ /* The size of the indentGuide is based off of the iconWrapper */
padding-right: calc(0.5rem + 12px); padding-right: calc(0.5rem + 12px);
height: 100%; height: 100%;
border-left: 1px solid transparent; border-left: 3px solid transparent;
display: inline-flex; display: inline-flex;
&::before { &::before {
content: ''; content: '';
@ -53,12 +53,9 @@ export const getStyles = createStyle((theme: Theme) => {
`, `,
indentGuideActive: css` indentGuideActive: css`
label: indentGuideActive; label: indentGuideActive;
padding-right: calc(0.5rem + 11px); border-color: ${autoColor(theme, 'darkgrey')};
border-left: 0px;
&::before { &::before {
content: ''; background-color: transparent;
padding-left: 3px;
background-color: ${autoColor(theme, 'darkgrey')};
} }
`, `,
iconWrapper: css` iconWrapper: css`