@jupyter-notebook/notebook-extension 7.0.0-alpha.4 → 7.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/style/base.css +46 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/notebook-extension",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.5",
|
|
4
4
|
"description": "Jupyter Notebook - Notebook Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyter/notebook",
|
|
6
6
|
"bugs": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"watch": "tsc -b --watch"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@jupyter-notebook/application": "^7.0.0-alpha.
|
|
42
|
+
"@jupyter-notebook/application": "^7.0.0-alpha.5",
|
|
43
43
|
"@jupyterlab/application": "^4.0.0-alpha.10",
|
|
44
44
|
"@jupyterlab/apputils": "^4.0.0-alpha.10",
|
|
45
45
|
"@jupyterlab/cells": "^4.0.0-alpha.10",
|
package/style/base.css
CHANGED
|
@@ -29,6 +29,23 @@ body[data-notebook='notebooks'] .jp-Notebook > *:first-child {
|
|
|
29
29
|
margin-top: var(--jp-notebook-toolbar-margin-bottom);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
+
body[data-notebook='notebooks'] .jp-Notebook > *:first-child:not(:last-child) {
|
|
33
|
+
box-shadow: 0px 0px 12px 1px rgb(87 87 87 / 20%);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
body[data-notebook='notebooks']
|
|
37
|
+
.jp-Notebook
|
|
38
|
+
> *:first-child:last-child::before {
|
|
39
|
+
content: '';
|
|
40
|
+
position: absolute;
|
|
41
|
+
top: 0;
|
|
42
|
+
bottom: 0;
|
|
43
|
+
left: 0;
|
|
44
|
+
right: 0;
|
|
45
|
+
box-shadow: 0px 0px 12px 1px rgb(87 87 87 / 20%);
|
|
46
|
+
margin-bottom: -11px;
|
|
47
|
+
}
|
|
48
|
+
|
|
32
49
|
body[data-notebook='notebooks'] .jp-Notebook {
|
|
33
50
|
padding-top: unset;
|
|
34
51
|
padding-bottom: unset;
|
|
@@ -44,6 +61,34 @@ body[data-notebook='notebooks'] .jp-Notebook {
|
|
|
44
61
|
body[data-notebook='notebooks'] .jp-Notebook.jp-mod-scrollPastEnd::after {
|
|
45
62
|
background: var(--jp-layout-color0);
|
|
46
63
|
min-height: var(--jp-notebook-padding);
|
|
64
|
+
box-shadow: 0px 0px 12px 1px rgb(87 87 87 / 20%);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
body[data-notebook='notebooks']
|
|
68
|
+
.jp-Notebook
|
|
69
|
+
.jp-Notebook-cell:not(:first-child)::after,
|
|
70
|
+
body[data-notebook='notebooks']
|
|
71
|
+
.jp-Notebook
|
|
72
|
+
.jp-Notebook-cell:not(:first-child)::before {
|
|
73
|
+
content: ' ';
|
|
74
|
+
height: 100%;
|
|
75
|
+
position: absolute;
|
|
76
|
+
top: 0;
|
|
77
|
+
width: 11px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
body[data-notebook='notebooks']
|
|
81
|
+
.jp-Notebook
|
|
82
|
+
.jp-Notebook-cell:not(:first-child)::before {
|
|
83
|
+
box-shadow: -11px 0 11px -11px rgb(87 87 87 / 20%) inset;
|
|
84
|
+
left: -11px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
body[data-notebook='notebooks']
|
|
88
|
+
.jp-Notebook
|
|
89
|
+
.jp-Notebook-cell:not(:first-child)::after {
|
|
90
|
+
box-shadow: 12px 0 11px -11px rgb(87 87 87 / 20%) inset;
|
|
91
|
+
right: -11px;
|
|
47
92
|
}
|
|
48
93
|
|
|
49
94
|
/* Cell toolbar adjustements */
|
|
@@ -51,6 +96,7 @@ body[data-notebook='notebooks'] .jp-Notebook.jp-mod-scrollPastEnd::after {
|
|
|
51
96
|
body[data-notebook='notebooks'] .jp-cell-toolbar {
|
|
52
97
|
background: unset;
|
|
53
98
|
top: unset;
|
|
99
|
+
box-shadow: unset;
|
|
54
100
|
}
|
|
55
101
|
|
|
56
102
|
@media only screen and (max-width: 760px) {
|