-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🪟🎉 Connector builder: Add copy to/from stream buttons (#20816)
Adds buttons to copy pagination and slicing settings between streams
- Loading branch information
Joe Reuter
authored
Jan 5, 2023
1 parent
26053ef
commit 6c692bc
Showing
9 changed files
with
237 additions
and
13 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
32 changes: 32 additions & 0 deletions
32
airbyte-webapp/src/components/connectorBuilder/Builder/BuilderCard.module.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,13 +1,45 @@ | ||
@use "scss/variables"; | ||
@use "scss/colors"; | ||
|
||
.card { | ||
padding: variables.$spacing-xl; | ||
display: flex; | ||
flex-direction: column; | ||
gap: variables.$spacing-xl; | ||
position: relative; | ||
} | ||
|
||
.toggleContainer { | ||
display: flex; | ||
gap: variables.$spacing-md; | ||
} | ||
|
||
.copyButtonContainer { | ||
position: absolute; | ||
right: -50px; | ||
top: 0; | ||
display: flex; | ||
flex-direction: column; | ||
gap: variables.$spacing-md; | ||
} | ||
|
||
.modalStreamListContainer { | ||
display: flex; | ||
flex-direction: column; | ||
gap: variables.$spacing-md; | ||
align-items: stretch; | ||
} | ||
|
||
.streamItem { | ||
border-radius: variables.$border-radius-sm; | ||
padding: variables.$spacing-md; | ||
border: none; | ||
background: none; | ||
display: block; | ||
text-align: left; | ||
|
||
&:hover { | ||
cursor: pointer; | ||
background: colors.$grey-50; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,7 @@ $controlButtonWidth: 24px; | |
background-color: colors.$red; | ||
} | ||
} | ||
|
||
.multiStreams { | ||
padding-right: 50px; | ||
} |
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
Oops, something went wrong.