@jupyterlab/nbconvert-css 4.0.0-rc.0 → 4.0.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 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.0.0-rc.0",
3
+ "version": "4.0.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.0.0-rc.0",
35
- "@jupyterlab/apputils": "^4.0.0-rc.0",
36
- "@jupyterlab/cells": "^4.0.0-rc.0",
37
- "@jupyterlab/codemirror": "^4.0.0-rc.0",
38
- "@jupyterlab/notebook": "^4.0.0-rc.0",
39
- "@jupyterlab/outputarea": "^4.0.0-rc.0",
40
- "@jupyterlab/rendermime": "^4.0.0-rc.0"
34
+ "@jupyterlab/application": "^4.0.0",
35
+ "@jupyterlab/apputils": "^4.0.0",
36
+ "@jupyterlab/cells": "^4.0.0",
37
+ "@jupyterlab/codemirror": "^4.0.0",
38
+ "@jupyterlab/notebook": "^4.0.0",
39
+ "@jupyterlab/outputarea": "^4.0.0",
40
+ "@jupyterlab/rendermime": "^4.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -2667,6 +2667,8 @@ button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
2667
2667
 
2668
2668
  .jp-WindowedPanel-window {
2669
2669
  position: absolute;
2670
+ left: 0;
2671
+ right: 0;
2670
2672
  overflow: visible;
2671
2673
  }
2672
2674
 
@@ -2801,7 +2803,7 @@ input::placeholder {
2801
2803
 
2802
2804
  .jp-InputGroupAction {
2803
2805
  position: absolute;
2804
- top: 0;
2806
+ bottom: 1px;
2805
2807
  right: 0;
2806
2808
  padding: 6px;
2807
2809
  }
@@ -4796,24 +4798,28 @@ h6:hover .jp-InternalAnchorLink {
4796
4798
 
4797
4799
  .cm-searching,
4798
4800
  .cm-searching span {
4801
+ /* `.cm-searching span`: we need to override syntax highlighting */
4799
4802
  background-color: var(--jp-search-unselected-match-background-color);
4800
4803
  color: var(--jp-search-unselected-match-color);
4801
4804
  }
4802
4805
 
4803
- .cm-content .cm-searching::selection,
4804
- .cm-content .cm-searching span::selection {
4806
+ .cm-searching::selection,
4807
+ .cm-searching span::selection {
4805
4808
  background-color: var(--jp-search-unselected-match-background-color);
4806
4809
  color: var(--jp-search-unselected-match-color);
4807
4810
  }
4808
4811
 
4809
- .jp-current-match .cm-searching,
4810
- .jp-current-match .cm-searching span {
4812
+ .jp-current-match > .cm-searching,
4813
+ .jp-current-match > .cm-searching span,
4814
+ .cm-searching > .jp-current-match,
4815
+ .cm-searching > .jp-current-match span {
4811
4816
  background-color: var(--jp-search-selected-match-background-color);
4812
4817
  color: var(--jp-search-selected-match-color);
4813
4818
  }
4814
4819
 
4815
- .cm-content .jp-current-match .cm-searching::selection,
4816
- .cm-content .jp-current-match .cm-searching span::selection {
4820
+ .jp-current-match > .cm-searching::selection,
4821
+ .cm-searching > .jp-current-match::selection,
4822
+ .jp-current-match > .cm-searching span::selection {
4817
4823
  background-color: var(--jp-search-selected-match-background-color);
4818
4824
  color: var(--jp-search-selected-match-color);
4819
4825
  }