You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
/*-----------------------------------------------------------------------------
|
|
| Copyright (c) Jupyter Development Team.
|
|
| Distributed under the terms of the Modified BSD License.
|
|
|
|
|
| Adapted from JupyterLab's packages/application/style/sidepanel.css.
|
|
|----------------------------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
| Variables
|
|
|----------------------------------------------------------------------------*/
|
|
|
|
:root {
|
|
--jp-private-sidebar-tab-width: 32px;
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
| SideBar
|
|
|----------------------------------------------------------------------------*/
|
|
|
|
/* Left */
|
|
|
|
/* Right */
|
|
|
|
/* Stack panels */
|
|
|
|
#jp-left-stack > .lm-Widget,
|
|
#jp-right-stack > .lm-Widget {
|
|
min-width: var(--jp-sidebar-min-width);
|
|
}
|
|
|
|
#jp-right-stack {
|
|
border-left: var(--jp-border-width) solid var(--jp-border-color1);
|
|
}
|
|
|
|
#jp-left-stack {
|
|
border-right: var(--jp-border-width) solid var(--jp-border-color1);
|
|
}
|