-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(FlowsList): Toggle all flows visibility
Currently, there's no meechanism to toggle all flows visibility. This commit enables that functionality by adding a top `Eye` icon to show or hide all flows. fix: #1655
- Loading branch information
Showing
12 changed files
with
227 additions
and
71 deletions.
There are no files selected for viewing
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
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
17 changes: 11 additions & 6 deletions
17
packages/ui/src/components/Visualization/ContextToolbar/Flows/FlowsList.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,9 +1,14 @@ | ||
/* This is to make the last two columns (Edit and Delete) to be the same width */ | ||
table.flows-list-table { | ||
& thead tr { | ||
vertical-align: middle; | ||
} | ||
|
||
/* Select the last two td elements from each tr */ | ||
/* This is to make the last two columns (Edit and Delete) to be the same width */ | ||
|
||
table.flows-list-table tr td:last-child, | ||
table.flows-list-table tr td:nth-last-child(2) { | ||
width: 1%; | ||
white-space: nowrap; | ||
/* Select the last two td elements from each tr */ | ||
& tr td:last-child, | ||
& tr td:nth-last-child(2) { | ||
width: 1%; | ||
white-space: nowrap; | ||
} | ||
} |
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
Oops, something went wrong.