Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix background color in Notebooks with dark themes #222

Merged
merged 1 commit into from
Feb 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyLDAvis/_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<script type="text/javascript" src="{{ ldavis_url }}"></script>
<link rel="stylesheet" type="text/css" href="{{ ldavis_css_url }}">

<div id={{ visid }}></div>
<div id={{ visid }} style="background-color:white;"></div>
<script type="text/javascript">
!function(LDAvis){
new LDAvis("#" + {{ visid }}, {{ vis_json }});
Expand All @@ -39,7 +39,7 @@

<link rel="stylesheet" type="text/css" href="{{ ldavis_css_url }}">

<div id={{ visid }}></div>
<div id={{ visid }} style="background-color:white;"></div>
<script type="text/javascript">

var {{ visid_raw }}_data = {{ vis_json }};
Expand Down Expand Up @@ -67,7 +67,7 @@
<link rel="stylesheet" type="text/css" href="{{ ldavis_css_url }}">


<div id={{ visid }}></div>
<div id={{ visid }} style="background-color:white;"></div>
<script type="text/javascript">

var {{ visid_raw }}_data = {{ vis_json }};
Expand Down