jupyterlab-plotly
Version:
The plotly Jupyter extension
28 lines (23 loc) • 466 B
CSS
/**
Copyright (c) Jupyter Development Team.
Distributed under the terms of the Modified BSD License.
*/
/* Add CSS variables to :root */
:root {
--jp-icon-plotly: url('./plotly.svg');
}
/* Base styles */
.jp-RenderedPlotly {
width: 100%;
height: 100%;
padding: 0;
overflow: hidden;
}
/* Document styles */
.jp-MimeDocument .jp-RenderedPlotly {
overflow: hidden;
}
/* Document icon */
.jp-PlotlyIcon {
background-image: var(--jp-icon-plotly);
}