Skip to content

Commit

Permalink
Merge pull request #22 from Caleydo/scrollbar-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keckelt authored Mar 23, 2022
2 parents d755771 + f5ee37a commit accb674
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/Taskview/visualizations/DensityPlot.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/scss/components/task/_filter.scss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Taskview/visualizations/DensityPlot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class DensityPlot extends SingleAttributeVisualization {
$schema: 'https://vega.github.io/schema/vega/v5.json',
autosize: {type: 'fit-x', contains: 'padding'},
background: 'white',
padding: {left: 5, top: 0, right: 5, bottom: 5},
padding: {left: 5, top: 0, right: 0, bottom: 5},
height: 300,
style: 'cell',
encode: {update: {cursor: {value: 'text'}}},
Expand Down
3 changes: 2 additions & 1 deletion src/scss/components/task/_filter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@

.vis-container {
display: grid;
grid-template-columns: 1fr 12em;
grid-template-columns: 1fr 14em;
gap: 1em;
grid-template-areas:
"vis controls"
"legend legend";
width: calc(100% - 1em); // save some space for scrollbar

.controls {
grid-area: controls;
Expand Down

0 comments on commit accb674

Please sign in to comment.