@jupyterlab/nbconvert-css 4.2.0-beta.1 → 4.2.0-beta.2
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.
- package/package.json +8 -8
- package/style/index.css +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.2.0-beta.
|
|
3
|
+
"version": "4.2.0-beta.2",
|
|
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.
|
|
35
|
-
"@jupyterlab/apputils": "^4.3.0-beta.
|
|
36
|
-
"@jupyterlab/cells": "^4.2.0-beta.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.2.0-beta.
|
|
38
|
-
"@jupyterlab/notebook": "^4.2.0-beta.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.2.0-beta.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.2.0-beta.
|
|
34
|
+
"@jupyterlab/application": "^4.2.0-beta.2",
|
|
35
|
+
"@jupyterlab/apputils": "^4.3.0-beta.2",
|
|
36
|
+
"@jupyterlab/cells": "^4.2.0-beta.2",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.2.0-beta.2",
|
|
38
|
+
"@jupyterlab/notebook": "^4.2.0-beta.2",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.2.0-beta.2",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.2.0-beta.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -2919,6 +2919,11 @@ a:hover {
|
|
|
2919
2919
|
}
|
|
2920
2920
|
|
|
2921
2921
|
/* Styles for ui-components */
|
|
2922
|
+
.jp-FilterBox {
|
|
2923
|
+
--design-unit: 3;
|
|
2924
|
+
--density: 0;
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2922
2927
|
.jp-Button {
|
|
2923
2928
|
color: var(--jp-ui-font-color2);
|
|
2924
2929
|
border-radius: var(--jp-border-radius);
|
|
@@ -5310,6 +5315,10 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5310
5315
|
display: none;
|
|
5311
5316
|
}
|
|
5312
5317
|
|
|
5318
|
+
.jp-FileBrowser-toolbar > .jp-FileBrowser-filterBox {
|
|
5319
|
+
width: 100%;
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5313
5322
|
.jp-Open-Dialog > .jp-FileBrowser {
|
|
5314
5323
|
min-height: 200px;
|
|
5315
5324
|
}
|
|
@@ -5351,11 +5360,11 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5351
5360
|
}
|
|
5352
5361
|
|
|
5353
5362
|
.jp-DirListing-headerItem.jp-id-name {
|
|
5354
|
-
flex: 1
|
|
5363
|
+
flex: 1 1 126px;
|
|
5355
5364
|
}
|
|
5356
5365
|
|
|
5357
5366
|
.jp-DirListing-headerItem.jp-id-modified {
|
|
5358
|
-
flex:
|
|
5367
|
+
flex: 1 0 70px;
|
|
5359
5368
|
border-left: var(--jp-border-width) solid var(--jp-border-color2);
|
|
5360
5369
|
text-align: right;
|
|
5361
5370
|
}
|
|
@@ -5483,7 +5492,7 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5483
5492
|
}
|
|
5484
5493
|
|
|
5485
5494
|
.jp-DirListing-itemText {
|
|
5486
|
-
flex: 1
|
|
5495
|
+
flex: 1 1 106px;
|
|
5487
5496
|
white-space: nowrap;
|
|
5488
5497
|
overflow: hidden;
|
|
5489
5498
|
text-overflow: ellipsis;
|
|
@@ -5508,7 +5517,7 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5508
5517
|
}
|
|
5509
5518
|
|
|
5510
5519
|
.jp-DirListing-itemModified {
|
|
5511
|
-
flex:
|
|
5520
|
+
flex: 1 0 83px;
|
|
5512
5521
|
text-align: right;
|
|
5513
5522
|
}
|
|
5514
5523
|
|