@jupyterlab/nbconvert-css 4.5.7 → 4.5.8

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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/style/index.css +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.5.7",
3
+ "version": "4.5.8",
4
4
  "description": "CSS bundle for the JupyterLab nbconvert template",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -31,13 +31,13 @@
31
31
  "watch": "webpack --watch"
32
32
  },
33
33
  "dependencies": {
34
- "@jupyterlab/application": "^4.5.7",
35
- "@jupyterlab/apputils": "^4.6.7",
36
- "@jupyterlab/cells": "^4.5.7",
37
- "@jupyterlab/codemirror": "^4.5.7",
38
- "@jupyterlab/notebook": "^4.5.7",
39
- "@jupyterlab/outputarea": "^4.5.7",
40
- "@jupyterlab/rendermime": "^4.5.7"
34
+ "@jupyterlab/application": "^4.5.8",
35
+ "@jupyterlab/apputils": "^4.6.8",
36
+ "@jupyterlab/cells": "^4.5.8",
37
+ "@jupyterlab/codemirror": "^4.5.8",
38
+ "@jupyterlab/notebook": "^4.5.8",
39
+ "@jupyterlab/outputarea": "^4.5.8",
40
+ "@jupyterlab/rendermime": "^4.5.8"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -6064,6 +6064,8 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6064
6064
 
6065
6065
  .jp-OutputArea {
6066
6066
  overflow-y: auto;
6067
+ /* stylelint-disable-next-line csstree/validator, property-no-unknown */
6068
+ anchor-scope: --jp-output-area;
6067
6069
  }
6068
6070
 
6069
6071
  .jp-OutputArea-child {
@@ -6071,6 +6073,8 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6071
6073
  flex-direction: row;
6072
6074
  width: 100%;
6073
6075
  overflow: hidden;
6076
+ /* stylelint-disable-next-line csstree/validator, property-no-unknown */
6077
+ anchor-name: --jp-output-area;
6074
6078
  }
6075
6079
 
6076
6080
  .jp-OutputPrompt {
@@ -6118,9 +6122,11 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6118
6122
 
6119
6123
  .jp-OutputArea-promptOverlay {
6120
6124
  position: absolute;
6121
- top: 0;
6125
+ /* stylelint-disable csstree/validator, function-no-unknown */
6126
+ top: anchor(--jp-output-area top);
6127
+ bottom: anchor(--jp-output-area bottom);
6128
+ /* stylelint-enable csstree/validator, function-no-unknown */
6122
6129
  width: var(--jp-cell-prompt-width);
6123
- height: 100%;
6124
6130
  opacity: 0.5;
6125
6131
  display: flex;
6126
6132
  align-items: center;