Skip to content

Commit

Permalink
Merge pull request #703 from madeindjs/WF-131
Browse files Browse the repository at this point in the history
fix(ui): adapt Dataframe bg color when selected - WF-131
  • Loading branch information
ramedina86 authored Dec 18, 2024
2 parents a601681 + a268c55 commit 90e3656
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ui/src/components/core/content/CoreDataframe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,11 @@ onUnmounted(() => {
max-height: 90vh;
}
/* remove the background if the dataframe is being selected in builder mode */
.CoreDataframe.selected .gridContainer {
background: unset;
}
.grid {
margin-bottom: -1px;
position: v-bind("isRowCountMassive ? 'sticky': 'unset'");
Expand Down
5 changes: 5 additions & 0 deletions src/ui/src/components/core/content/CoreDataframeLegacy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,11 @@ onUnmounted(() => {
max-height: 90vh;
}
/* remove the background if the dataframe is being selected in builder mode */
.CoreDataframe.selected .gridContainer {
background: unset;
}
.grid {
margin-bottom: -1px;
position: v-bind("isRowCountMassive ? 'sticky': 'unset'");
Expand Down

0 comments on commit 90e3656

Please sign in to comment.