-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: setup the success state for the spans waterfall model
- Loading branch information
1 parent
5da2b39
commit ef97148
Showing
7 changed files
with
129 additions
and
26 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
frontend/src/container/TraceWaterfall/TraceWaterfall.styles.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.trace-waterfall { | ||
height: 70vh; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 38 additions & 1 deletion
39
frontend/src/container/TraceWaterfall/TraceWaterfallStates/Success/Success.styles.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,39 @@ | ||
.span-item { | ||
.success-cotent { | ||
width: 100%; | ||
height: 100%; | ||
|
||
.span-item { | ||
display: flex; | ||
flex-direction: column; | ||
width: fit-content; | ||
|
||
&.vertical-connector { | ||
border-left: 1px solid #d9d9d9; | ||
} | ||
|
||
.horizontal-connector { | ||
border: 1px solid #d9d9d9; | ||
} | ||
|
||
.first-row { | ||
display: flex; | ||
align-items: center; | ||
|
||
.collapse-uncollapse-button { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 22px; | ||
width: 30px; | ||
padding: 0px; | ||
margin-right: 10px; | ||
} | ||
} | ||
|
||
.second-row { | ||
display: flex; | ||
padding-left: 5px; | ||
border-left: 1px solid #d9d9d9; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
.trace-layout { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 25px; | ||
|
||
.flame-graph { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 40vh; | ||
border: 1px solid #d9d9d9; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters