@jupyterlab/nbconvert-css 4.4.0-beta.2 → 4.4.0-rc.0

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 +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.4.0-beta.2",
3
+ "version": "4.4.0-rc.0",
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.4.0-beta.2",
35
- "@jupyterlab/apputils": "^4.5.0-beta.2",
36
- "@jupyterlab/cells": "^4.4.0-beta.2",
37
- "@jupyterlab/codemirror": "^4.4.0-beta.2",
38
- "@jupyterlab/notebook": "^4.4.0-beta.2",
39
- "@jupyterlab/outputarea": "^4.4.0-beta.2",
40
- "@jupyterlab/rendermime": "^4.4.0-beta.2"
34
+ "@jupyterlab/application": "^4.4.0-rc.0",
35
+ "@jupyterlab/apputils": "^4.5.0-rc.0",
36
+ "@jupyterlab/cells": "^4.4.0-rc.0",
37
+ "@jupyterlab/codemirror": "^4.4.0-rc.0",
38
+ "@jupyterlab/notebook": "^4.4.0-rc.0",
39
+ "@jupyterlab/outputarea": "^4.4.0-rc.0",
40
+ "@jupyterlab/rendermime": "^4.4.0-rc.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -3610,6 +3610,9 @@ button.jp-ToolbarButtonComponent > span {
3610
3610
  width: 100%;
3611
3611
  height: 100%;
3612
3612
  background: var(--jp-dialog-background);
3613
+ /* stylelint-disable */
3614
+ container-type: inline-size;
3615
+ /* stylelint-enable */
3613
3616
  }
3614
3617
 
3615
3618
  .jp-Dialog-content {
@@ -3748,6 +3751,16 @@ button.jp-Dialog-close-button {
3748
3751
  margin-right: 12px;
3749
3752
  }
3750
3753
 
3754
+ /* stylelint-disable */
3755
+ @container (max-width: 560px) {
3756
+ /* stylelint-enable */
3757
+ .jp-Dialog-footer {
3758
+ flex-direction: column;
3759
+ align-items: center;
3760
+ gap: 7px;
3761
+ }
3762
+ }
3763
+
3751
3764
  /*
3752
3765
  * Copyright (c) Jupyter Development Team.
3753
3766
  * Distributed under the terms of the Modified BSD License.