@jupyterlab/nbconvert-css 4.5.7 → 4.5.9

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 -3
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.9",
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.9",
35
+ "@jupyterlab/apputils": "^4.6.9",
36
+ "@jupyterlab/cells": "^4.5.9",
37
+ "@jupyterlab/codemirror": "^4.5.9",
38
+ "@jupyterlab/notebook": "^4.5.9",
39
+ "@jupyterlab/outputarea": "^4.5.9",
40
+ "@jupyterlab/rendermime": "^4.5.9"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -2870,7 +2870,6 @@ button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
2870
2870
 
2871
2871
  .jp-Toolbar-responsive-popup.jp-ThemedContainer {
2872
2872
  position: absolute;
2873
- height: fit-content;
2874
2873
  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
2875
2874
  box-shadow: var(--jp-toolbar-box-shadow);
2876
2875
  background: var(--jp-toolbar-background);
@@ -6064,6 +6063,8 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6064
6063
 
6065
6064
  .jp-OutputArea {
6066
6065
  overflow-y: auto;
6066
+ /* stylelint-disable-next-line csstree/validator, property-no-unknown */
6067
+ anchor-scope: --jp-output-area;
6067
6068
  }
6068
6069
 
6069
6070
  .jp-OutputArea-child {
@@ -6071,6 +6072,8 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6071
6072
  flex-direction: row;
6072
6073
  width: 100%;
6073
6074
  overflow: hidden;
6075
+ /* stylelint-disable-next-line csstree/validator, property-no-unknown */
6076
+ anchor-name: --jp-output-area;
6074
6077
  }
6075
6078
 
6076
6079
  .jp-OutputPrompt {
@@ -6118,9 +6121,11 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
6118
6121
 
6119
6122
  .jp-OutputArea-promptOverlay {
6120
6123
  position: absolute;
6121
- top: 0;
6124
+ /* stylelint-disable csstree/validator, function-no-unknown */
6125
+ top: anchor(--jp-output-area top);
6126
+ bottom: anchor(--jp-output-area bottom);
6127
+ /* stylelint-enable csstree/validator, function-no-unknown */
6122
6128
  width: var(--jp-cell-prompt-width);
6123
- height: 100%;
6124
6129
  opacity: 0.5;
6125
6130
  display: flex;
6126
6131
  align-items: center;