UNPKG

696 BCSSView Raw
1/*-----------------------------------------------------------------------------
2| Copyright (c) Jupyter Development Team.
3| Distributed under the terms of the Modified BSD License.
4|----------------------------------------------------------------------------*/
5
6.jp-Collapser {
7 flex: 0 0 var(--jp-cell-collapser-width);
8 padding: 0px;
9 margin: 0px;
10 border: none;
11 outline: none;
12 background: transparent;
13 border-radius: var(--jp-border-radius);
14 opacity: 1;
15}
16
17.jp-Collapser-child {
18 display: block;
19 width: 100%;
20 box-sizing: border-box;
21 /* height: 100% doesn't work because the height of its parent is computed from content */
22 position: absolute;
23 top: 0px;
24 bottom: 0px;
25}