@jupyterlab/nbconvert-css 4.2.0-beta.3 → 4.2.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 +37 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.2.0-beta.3",
3
+ "version": "4.2.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.2.0-beta.3",
35
- "@jupyterlab/apputils": "^4.3.0-beta.3",
36
- "@jupyterlab/cells": "^4.2.0-beta.3",
37
- "@jupyterlab/codemirror": "^4.2.0-beta.3",
38
- "@jupyterlab/notebook": "^4.2.0-beta.3",
39
- "@jupyterlab/outputarea": "^4.2.0-beta.3",
40
- "@jupyterlab/rendermime": "^4.2.0-beta.3"
34
+ "@jupyterlab/application": "^4.2.0",
35
+ "@jupyterlab/apputils": "^4.3.0",
36
+ "@jupyterlab/cells": "^4.2.0",
37
+ "@jupyterlab/codemirror": "^4.2.0",
38
+ "@jupyterlab/notebook": "^4.2.0",
39
+ "@jupyterlab/outputarea": "^4.2.0",
40
+ "@jupyterlab/rendermime": "^4.2.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -3128,6 +3128,8 @@ select {
3128
3128
  }
3129
3129
 
3130
3130
  .jp-StatusBar-HoverItem {
3131
+ border: var(--jp-border-width) solid var(--jp-border-color1);
3132
+ border-radius: var(--jp-border-radius);
3131
3133
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
3132
3134
  }
3133
3135
 
@@ -5367,6 +5369,41 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
5367
5369
  flex: 1 0 70px;
5368
5370
  border-left: var(--jp-border-width) solid var(--jp-border-color2);
5369
5371
  text-align: right;
5372
+ /* stylelint-disable */
5373
+ container-type: inline-size;
5374
+ /* stylelint-enable */
5375
+ }
5376
+
5377
+ /**
5378
+ * Use container queries (not yet supported by our version of stylelint)
5379
+ * to display either a small or large header for the last-modified column.
5380
+ */
5381
+ /* stylelint-disable */
5382
+ @container (max-width: 300px) {
5383
+ /* stylelint-enable */
5384
+ .jp-DirListing-headerItem.jp-id-modified
5385
+ > .jp-DirListing-headerItemText.jp-DirListing-headerItemText-small {
5386
+ display: inline;
5387
+ }
5388
+
5389
+ .jp-DirListing-headerItem.jp-id-modified
5390
+ > .jp-DirListing-headerItemText.jp-DirListing-headerItemText-large {
5391
+ display: none;
5392
+ }
5393
+ }
5394
+
5395
+ /* stylelint-disable */
5396
+ @container (min-width: 300px) {
5397
+ /* stylelint-enable */
5398
+ .jp-DirListing-headerItem.jp-id-modified
5399
+ > .jp-DirListing-headerItemText.jp-DirListing-headerItemText-small {
5400
+ display: none;
5401
+ }
5402
+
5403
+ .jp-DirListing-headerItem.jp-id-modified
5404
+ > .jp-DirListing-headerItemText.jp-DirListing-headerItemText-large {
5405
+ display: inline;
5406
+ }
5370
5407
  }
5371
5408
 
5372
5409
  .jp-DirListing-headerItem.jp-id-filesize {