@jupyterlab/nbconvert-css 4.5.5 → 4.5.6

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 +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.5.5",
3
+ "version": "4.5.6",
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.5",
35
- "@jupyterlab/apputils": "^4.6.5",
36
- "@jupyterlab/cells": "^4.5.5",
37
- "@jupyterlab/codemirror": "^4.5.5",
38
- "@jupyterlab/notebook": "^4.5.5",
39
- "@jupyterlab/outputarea": "^4.5.5",
40
- "@jupyterlab/rendermime": "^4.5.5"
34
+ "@jupyterlab/application": "^4.5.6",
35
+ "@jupyterlab/apputils": "^4.6.6",
36
+ "@jupyterlab/cells": "^4.5.6",
37
+ "@jupyterlab/codemirror": "^4.5.6",
38
+ "@jupyterlab/notebook": "^4.5.6",
39
+ "@jupyterlab/outputarea": "^4.5.6",
40
+ "@jupyterlab/rendermime": "^4.5.6"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -3303,6 +3303,11 @@ button.jp-ToolbarButtonComponent > span {
3303
3303
  flex-direction: row;
3304
3304
  }
3305
3305
 
3306
+ .jp-StatusBar-GroupItem:focus-visible {
3307
+ outline: 2px solid var(--accent-fill-focus, var(--jp-brand-color1));
3308
+ outline-offset: -1px;
3309
+ }
3310
+
3306
3311
  .jp-Statusbar-ProgressCircle > svg {
3307
3312
  display: block;
3308
3313
  margin: 0 auto;
@@ -7223,6 +7228,13 @@ cell outputs.
7223
7228
 
7224
7229
  .jp-Notebook .jp-Cell {
7225
7230
  overflow: visible;
7231
+
7232
+ /* Prevent scroll anchoring to inactive cells */
7233
+ overflow-anchor: none;
7234
+ }
7235
+
7236
+ .jp-Notebook .jp-Cell.jp-mod-active {
7237
+ overflow-anchor: auto;
7226
7238
  }
7227
7239
 
7228
7240
  .jp-Notebook .jp-Cell .jp-InputPrompt {