Skip to content

Commit

Permalink
Going with background-transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Mar 28, 2017
1 parent d34e93b commit 8efba3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -210,7 +210,7 @@ class ChartContainer extends React.PureComponent {
render() {
if (this.props.standalone) {
// dom manipulation hack to get rid of the boostrap theme's body background
$('body').addClass('no-background');
$('body').addClass('background-transparent');
return this.renderChart();
}
const queryResponse = this.props.queryResponse;
Expand Down
4 changes: 2 additions & 2 deletions superset/assets/javascripts/explorev2/main.css
Expand Up @@ -31,6 +31,6 @@
box-shadow: none;
}

.no-background {
background: none !important;
.background-transparent {
background-color: transparent !important;
}

0 comments on commit 8efba3b

Please sign in to comment.