@jupyterlab/nbconvert-css 4.0.0-alpha.10 → 4.0.0-alpha.11
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 +7 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.11",
|
|
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-alpha.
|
|
35
|
-
"@jupyterlab/apputils": "^4.0.0-alpha.
|
|
36
|
-
"@jupyterlab/cells": "^4.0.0-alpha.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.0.0-alpha.
|
|
38
|
-
"@jupyterlab/notebook": "^4.0.0-alpha.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.0.0-alpha.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.0.0-alpha.
|
|
34
|
+
"@jupyterlab/application": "^4.0.0-alpha.11",
|
|
35
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.11",
|
|
36
|
+
"@jupyterlab/cells": "^4.0.0-alpha.11",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.0.0-alpha.11",
|
|
38
|
+
"@jupyterlab/notebook": "^4.0.0-alpha.11",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.0.0-alpha.11",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.0.0-alpha.11"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -5372,23 +5372,6 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5372
5372
|
width: 40px;
|
|
5373
5373
|
}
|
|
5374
5374
|
|
|
5375
|
-
.jp-FileBrowser-toolbar
|
|
5376
|
-
.jp-ToolbarButtonComponent[data-command='filebrowser:create-main-launcher'] {
|
|
5377
|
-
width: 72px;
|
|
5378
|
-
background: var(--jp-brand-color1);
|
|
5379
|
-
}
|
|
5380
|
-
|
|
5381
|
-
.jp-FileBrowser-toolbar
|
|
5382
|
-
.jp-ToolbarButtonComponent[data-command='filebrowser:create-main-launcher']:focus-visible {
|
|
5383
|
-
background-color: var(--jp-accept-color-active, var(--jp-brand-color0));
|
|
5384
|
-
}
|
|
5385
|
-
|
|
5386
|
-
.jp-FileBrowser-toolbar
|
|
5387
|
-
.jp-ToolbarButtonComponent[data-command='filebrowser:create-main-launcher']
|
|
5388
|
-
.jp-icon3 {
|
|
5389
|
-
fill: var(--jp-layout-color1);
|
|
5390
|
-
}
|
|
5391
|
-
|
|
5392
5375
|
/*-----------------------------------------------------------------------------
|
|
5393
5376
|
| Other styles
|
|
5394
5377
|
|----------------------------------------------------------------------------*/
|
|
@@ -6303,6 +6286,7 @@ Note: input and output wrappers have "display: block" propery in print mode.
|
|
|
6303
6286
|
.jp-collapseHeadingButton {
|
|
6304
6287
|
display: flex;
|
|
6305
6288
|
min-height: var(--jp-cell-collapser-min-height);
|
|
6289
|
+
font-size: var(--jp-code-font-size);
|
|
6306
6290
|
position: absolute;
|
|
6307
6291
|
background-color: transparent;
|
|
6308
6292
|
background-size: 25px;
|
|
@@ -6331,32 +6315,32 @@ Note: input and output wrappers have "display: block" propery in print mode.
|
|
|
6331
6315
|
Align collapseHeadingButton with cell top header
|
|
6332
6316
|
The font sizes are identical to the ones in packages/rendermime/style/base.css
|
|
6333
6317
|
*/
|
|
6334
|
-
.jp-collapseHeadingButton[data-heading-level='1'] {
|
|
6318
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='1'] {
|
|
6335
6319
|
font-size: var(--jp-content-font-size5);
|
|
6336
6320
|
background-position-y: calc(0.3 * var(--jp-content-font-size5));
|
|
6337
6321
|
}
|
|
6338
6322
|
|
|
6339
|
-
.jp-collapseHeadingButton[data-heading-level='2'] {
|
|
6323
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='2'] {
|
|
6340
6324
|
font-size: var(--jp-content-font-size4);
|
|
6341
6325
|
background-position-y: calc(0.3 * var(--jp-content-font-size4));
|
|
6342
6326
|
}
|
|
6343
6327
|
|
|
6344
|
-
.jp-collapseHeadingButton[data-heading-level='3'] {
|
|
6328
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='3'] {
|
|
6345
6329
|
font-size: var(--jp-content-font-size3);
|
|
6346
6330
|
background-position-y: calc(0.3 * var(--jp-content-font-size3));
|
|
6347
6331
|
}
|
|
6348
6332
|
|
|
6349
|
-
.jp-collapseHeadingButton[data-heading-level='4'] {
|
|
6333
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='4'] {
|
|
6350
6334
|
font-size: var(--jp-content-font-size2);
|
|
6351
6335
|
background-position-y: calc(0.3 * var(--jp-content-font-size2));
|
|
6352
6336
|
}
|
|
6353
6337
|
|
|
6354
|
-
.jp-collapseHeadingButton[data-heading-level='5'] {
|
|
6338
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='5'] {
|
|
6355
6339
|
font-size: var(--jp-content-font-size1);
|
|
6356
6340
|
background-position-y: top;
|
|
6357
6341
|
}
|
|
6358
6342
|
|
|
6359
|
-
.jp-collapseHeadingButton[data-heading-level='6'] {
|
|
6343
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='6'] {
|
|
6360
6344
|
font-size: var(--jp-content-font-size0);
|
|
6361
6345
|
background-position-y: top;
|
|
6362
6346
|
}
|