@jupyterlab/nbconvert-css 4.3.0 → 4.3.2

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.3.0",
3
+ "version": "4.3.2",
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.3.0",
35
- "@jupyterlab/apputils": "^4.4.0",
36
- "@jupyterlab/cells": "^4.3.0",
37
- "@jupyterlab/codemirror": "^4.3.0",
38
- "@jupyterlab/notebook": "^4.3.0",
39
- "@jupyterlab/outputarea": "^4.3.0",
40
- "@jupyterlab/rendermime": "^4.3.0"
34
+ "@jupyterlab/application": "^4.3.2",
35
+ "@jupyterlab/apputils": "^4.4.2",
36
+ "@jupyterlab/cells": "^4.3.2",
37
+ "@jupyterlab/codemirror": "^4.3.2",
38
+ "@jupyterlab/notebook": "^4.3.2",
39
+ "@jupyterlab/outputarea": "^4.3.2",
40
+ "@jupyterlab/rendermime": "^4.3.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -6997,6 +6997,7 @@ cell outputs.
6997
6997
  flex: 0 0 auto;
6998
6998
  min-width: 36px;
6999
6999
  color: var(--jp-cell-inprompt-font-color);
7000
+ opacity: 0.5;
7000
7001
  padding: var(--jp-code-padding);
7001
7002
  padding-left: 12px;
7002
7003
  font-family: var(--jp-cell-prompt-font-family);
@@ -7014,7 +7015,13 @@ cell outputs.
7014
7015
  top: 8px;
7015
7016
  left: 8px;
7016
7017
  background: var(--jp-layout-color2);
7017
- border: var(--jp-border-width) solid var(--jp-input-border-color);
7018
+ border-width: var(--jp-border-width);
7019
+ border-style: solid;
7020
+ border-color: color-mix(
7021
+ in srgb,
7022
+ var(--jp-input-border-color) 20%,
7023
+ transparent
7024
+ );
7018
7025
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
7019
7026
  }
7020
7027