@jupyterlab/nbconvert-css 4.0.0-beta.1 → 4.0.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 +61 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.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.0.0-beta.1",
35
- "@jupyterlab/apputils": "^4.0.0-beta.1",
36
- "@jupyterlab/cells": "^4.0.0-beta.1",
37
- "@jupyterlab/codemirror": "^4.0.0-beta.1",
38
- "@jupyterlab/notebook": "^4.0.0-beta.1",
39
- "@jupyterlab/outputarea": "^4.0.0-beta.1",
40
- "@jupyterlab/rendermime": "^4.0.0-beta.1"
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"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -5006,11 +5006,6 @@ h6:hover .jp-InternalAnchorLink {
5006
5006
  outline: 0;
5007
5007
  }
5008
5008
 
5009
- .jp-DirListing:focus-visible {
5010
- outline: 1px solid var(--jp-brand-color1);
5011
- outline-offset: -2px;
5012
- }
5013
-
5014
5009
  .jp-DirListing-header {
5015
5010
  flex: 0 0 auto;
5016
5011
  display: flex;
@@ -5172,6 +5167,17 @@ h6:hover .jp-InternalAnchorLink {
5172
5167
  user-select: none;
5173
5168
  }
5174
5169
 
5170
+ .jp-DirListing-itemText:focus {
5171
+ outline-width: 2px;
5172
+ outline-color: var(--jp-inverse-layout-color1);
5173
+ outline-style: solid;
5174
+ outline-offset: 1px;
5175
+ }
5176
+
5177
+ .jp-DirListing-item.jp-mod-selected .jp-DirListing-itemText:focus {
5178
+ outline-color: var(--jp-layout-color1);
5179
+ }
5180
+
5175
5181
  .jp-DirListing-itemModified {
5176
5182
  flex: 0 0 125px;
5177
5183
  text-align: right;
@@ -5283,6 +5289,10 @@ h6:hover .jp-InternalAnchorLink {
5283
5289
  -ms-user-select: text;
5284
5290
  }
5285
5291
 
5292
+ .jp-OutputArea .jp-RenderedText {
5293
+ padding-left: 1ch;
5294
+ }
5295
+
5286
5296
  /**
5287
5297
  * Prompt overlay.
5288
5298
  */
@@ -5298,6 +5308,11 @@ h6:hover .jp-InternalAnchorLink {
5298
5308
  .jp-OutputArea-promptOverlay:hover {
5299
5309
  background: var(--jp-layout-color2);
5300
5310
  box-shadow: inset 0 0 1px var(--jp-inverse-layout-color0);
5311
+ cursor: zoom-out;
5312
+ }
5313
+
5314
+ .jp-mod-outputsScrolled .jp-OutputArea-promptOverlay:hover {
5315
+ cursor: zoom-in;
5301
5316
  }
5302
5317
 
5303
5318
  /**
@@ -6232,6 +6247,47 @@ cell outputs.
6232
6247
  margin-right: 12px;
6233
6248
  }
6234
6249
 
6250
+ /*
6251
+ * Copyright (c) Jupyter Development Team.
6252
+ * Distributed under the terms of the Modified BSD License.
6253
+ */
6254
+
6255
+ .jp-Notebook-footer {
6256
+ height: 27px;
6257
+ margin-left: calc(
6258
+ var(--jp-cell-prompt-width) + var(--jp-cell-collapser-width) +
6259
+ var(--jp-cell-padding)
6260
+ );
6261
+ width: calc(
6262
+ 100% -
6263
+ (
6264
+ var(--jp-cell-prompt-width) + var(--jp-cell-collapser-width) +
6265
+ var(--jp-cell-padding) + var(--jp-cell-padding)
6266
+ )
6267
+ );
6268
+ border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
6269
+ color: var(--jp-ui-font-color3);
6270
+ margin-top: 6px;
6271
+ background: none;
6272
+ cursor: pointer;
6273
+ }
6274
+
6275
+ .jp-Notebook-footer:focus {
6276
+ border-color: var(--jp-cell-editor-active-border-color);
6277
+ }
6278
+
6279
+ /* For devices that support hovering, hide footer until hover */
6280
+ @media (hover: hover) {
6281
+ .jp-Notebook-footer {
6282
+ opacity: 0;
6283
+ }
6284
+
6285
+ .jp-Notebook-footer:focus,
6286
+ .jp-Notebook-footer:hover {
6287
+ opacity: 1;
6288
+ }
6289
+ }
6290
+
6235
6291
  /*-----------------------------------------------------------------------------
6236
6292
  | Copyright (c) Jupyter Development Team.
6237
6293
  | Distributed under the terms of the Modified BSD License.