@jupyterlab/nbconvert-css 4.2.0-alpha.2 → 4.2.0-beta.1

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 +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.2.0-alpha.2",
3
+ "version": "4.2.0-beta.1",
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.2.0-alpha.2",
35
- "@jupyterlab/apputils": "^4.3.0-alpha.2",
36
- "@jupyterlab/cells": "^4.2.0-alpha.2",
37
- "@jupyterlab/codemirror": "^4.2.0-alpha.2",
38
- "@jupyterlab/notebook": "^4.2.0-alpha.2",
39
- "@jupyterlab/outputarea": "^4.2.0-alpha.2",
40
- "@jupyterlab/rendermime": "^4.2.0-alpha.2"
34
+ "@jupyterlab/application": "^4.2.0-beta.1",
35
+ "@jupyterlab/apputils": "^4.3.0-beta.1",
36
+ "@jupyterlab/cells": "^4.2.0-beta.1",
37
+ "@jupyterlab/codemirror": "^4.2.0-beta.1",
38
+ "@jupyterlab/notebook": "^4.2.0-beta.1",
39
+ "@jupyterlab/outputarea": "^4.2.0-beta.1",
40
+ "@jupyterlab/rendermime": "^4.2.0-beta.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -2272,6 +2272,11 @@ button.jp-ArrayOperationsButton.jp-mod-styled:disabled {
2272
2272
  font-size: var(--jp-ui-font-size0);
2273
2273
  }
2274
2274
 
2275
+ .lm-AccordionPanel .jp-AccordionPanel-title:focus-visible {
2276
+ outline: 4px solid var(--jp-accept-color-active, var(--jp-brand-color1));
2277
+ outline-offset: -1px;
2278
+ }
2279
+
2275
2280
  .jp-AccordionPanel-title {
2276
2281
  cursor: pointer;
2277
2282
  user-select: none;
@@ -5051,6 +5056,11 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
5051
5056
  /* Changed to auto to autogrow */
5052
5057
  }
5053
5058
 
5059
+ /* Suppress automatic focus indicator outline */
5060
+ .cm-editor.cm-focused {
5061
+ outline: unset;
5062
+ }
5063
+
5054
5064
  .cm-editor pre {
5055
5065
  padding: 0 var(--jp-code-padding);
5056
5066
  }