[Frontend] Fix plot image cutoff on export

The images were being cutoff due to the "top" attribute of .gl-plot
not changing when the buttons were hidden. The buttons are now
hidden by CSS class rather than ng-show, which makes updating the
.gl-plot top attribute easier.
This commit is contained in:
David Hudson
2016-09-05 17:02:04 +09:00
parent 7d13ce0626
commit 35a331f3fd
2 changed files with 13 additions and 2 deletions

View File

@ -43,6 +43,16 @@
top: $btnExportH + $interiorMargin;
}
}
&.hide-l-btn-set {
.s-button.t-export {
@include trans-prop-nice(opacity, 0ms, 0ms);
opacity: 0;
}
.gl-plot {
@include trans-prop-nice(top, $dur: 0ms);
top: 0;
}
}
}
.gl-plot {