Skip to content

Commit 96e8577

Browse files
committed
Add shadow to cells
1 parent 5952653 commit 96e8577

File tree

1 file changed

+30
-0
lines changed
  • packages/notebook-extension/style

1 file changed

+30
-0
lines changed

packages/notebook-extension/style/base.css

+30
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ body[data-notebook='notebooks']
2727
body[data-notebook='notebooks'] .jp-Notebook > *:first-child {
2828
padding-top: var(--jp-notebook-padding-offset);
2929
margin-top: var(--jp-notebook-toolbar-margin-bottom);
30+
box-shadow: 0px 0px 12px 1px rgb(87 87 87 / 20%);
3031
}
3132

3233
body[data-notebook='notebooks'] .jp-Notebook {
@@ -44,13 +45,42 @@ body[data-notebook='notebooks'] .jp-Notebook {
4445
body[data-notebook='notebooks'] .jp-Notebook.jp-mod-scrollPastEnd::after {
4546
background: var(--jp-layout-color0);
4647
min-height: var(--jp-notebook-padding);
48+
box-shadow: 0px 0px 12px 1px rgb(87 87 87 / 20%);
49+
}
50+
51+
body[data-notebook='notebooks']
52+
.jp-Notebook
53+
.jp-Notebook-cell:not(:first-child)::after,
54+
body[data-notebook='notebooks']
55+
.jp-Notebook
56+
.jp-Notebook-cell:not(:first-child)::before {
57+
content: ' ';
58+
height: 100%;
59+
position: absolute;
60+
top: 0;
61+
width: 11px;
62+
}
63+
64+
body[data-notebook='notebooks']
65+
.jp-Notebook
66+
.jp-Notebook-cell:not(:first-child)::before {
67+
box-shadow: -11px 0 11px -11px rgb(87 87 87 / 20%) inset;
68+
left: -11px;
69+
}
70+
71+
body[data-notebook='notebooks']
72+
.jp-Notebook
73+
.jp-Notebook-cell:not(:first-child)::after {
74+
box-shadow: 12px 0 11px -11px rgb(87 87 87 / 20%) inset;
75+
right: -11px;
4776
}
4877

4978
/* Cell toolbar adjustements */
5079

5180
body[data-notebook='notebooks'] .jp-cell-toolbar {
5281
background: unset;
5382
top: unset;
83+
box-shadow: unset;
5484
}
5585

5686
@media only screen and (max-width: 760px) {

0 commit comments

Comments
 (0)