@jupyterlab/nbconvert-css 4.5.5 → 4.5.7
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 +12 -91
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.7",
|
|
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.5.
|
|
35
|
-
"@jupyterlab/apputils": "^4.6.
|
|
36
|
-
"@jupyterlab/cells": "^4.5.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.5.
|
|
38
|
-
"@jupyterlab/notebook": "^4.5.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.5.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.5.
|
|
34
|
+
"@jupyterlab/application": "^4.5.7",
|
|
35
|
+
"@jupyterlab/apputils": "^4.6.7",
|
|
36
|
+
"@jupyterlab/cells": "^4.5.7",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.5.7",
|
|
38
|
+
"@jupyterlab/notebook": "^4.5.7",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.5.7",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.5.7"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -3303,6 +3303,11 @@ button.jp-ToolbarButtonComponent > span {
|
|
|
3303
3303
|
flex-direction: row;
|
|
3304
3304
|
}
|
|
3305
3305
|
|
|
3306
|
+
.jp-StatusBar-GroupItem:focus-visible {
|
|
3307
|
+
outline: 2px solid var(--accent-fill-focus, var(--jp-brand-color1));
|
|
3308
|
+
outline-offset: -1px;
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3306
3311
|
.jp-Statusbar-ProgressCircle > svg {
|
|
3307
3312
|
display: block;
|
|
3308
3313
|
margin: 0 auto;
|
|
@@ -5522,12 +5527,6 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5522
5527
|
color: var(--jp-search-selected-match-color);
|
|
5523
5528
|
}
|
|
5524
5529
|
|
|
5525
|
-
.cm-trailingspace {
|
|
5526
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAsElEQVQIHQGlAFr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+r3zKmT0/+pk9P/7+r3zAAAAAAAAAAABAAAAAAAAAAA6OPzM+/q9wAAAAAA6OPzMwAAAAAAAAAAAgAAAAAAAAAAGR8NiRQaCgAZIA0AGR8NiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQyoYJ/SY80UAAAAASUVORK5CYII=);
|
|
5527
|
-
background-position: center left;
|
|
5528
|
-
background-repeat: repeat-x;
|
|
5529
|
-
}
|
|
5530
|
-
|
|
5531
5530
|
.jp-CollaboratorCursor-hover {
|
|
5532
5531
|
position: absolute;
|
|
5533
5532
|
z-index: 1;
|
|
@@ -7043,12 +7042,6 @@ cell outputs.
|
|
|
7043
7042
|
display: block;
|
|
7044
7043
|
}
|
|
7045
7044
|
|
|
7046
|
-
.jp-Notebook-ExecutionIndicator-progress-bar {
|
|
7047
|
-
display: flex;
|
|
7048
|
-
justify-content: center;
|
|
7049
|
-
height: 100%;
|
|
7050
|
-
}
|
|
7051
|
-
|
|
7052
7045
|
.jp-Notebook-ExecutionIndicator-jumpButton {
|
|
7053
7046
|
margin-top: 4px;
|
|
7054
7047
|
margin-bottom: 3px;
|
|
@@ -7223,6 +7216,13 @@ cell outputs.
|
|
|
7223
7216
|
|
|
7224
7217
|
.jp-Notebook .jp-Cell {
|
|
7225
7218
|
overflow: visible;
|
|
7219
|
+
|
|
7220
|
+
/* Prevent scroll anchoring to inactive cells */
|
|
7221
|
+
overflow-anchor: none;
|
|
7222
|
+
}
|
|
7223
|
+
|
|
7224
|
+
.jp-Notebook .jp-Cell.jp-mod-active {
|
|
7225
|
+
overflow-anchor: auto;
|
|
7226
7226
|
}
|
|
7227
7227
|
|
|
7228
7228
|
.jp-Notebook .jp-Cell .jp-InputPrompt {
|
|
@@ -7554,85 +7554,6 @@ cell outputs.
|
|
|
7554
7554
|
display: none;
|
|
7555
7555
|
}
|
|
7556
7556
|
|
|
7557
|
-
/*-----------------------------------------------------------------------------
|
|
7558
|
-
| Placeholder
|
|
7559
|
-
|----------------------------------------------------------------------------*/
|
|
7560
|
-
|
|
7561
|
-
.jp-Cell-Placeholder {
|
|
7562
|
-
padding-left: 55px;
|
|
7563
|
-
}
|
|
7564
|
-
|
|
7565
|
-
.jp-Cell-Placeholder-wrapper {
|
|
7566
|
-
background: #fff;
|
|
7567
|
-
border: 1px solid;
|
|
7568
|
-
border-color: #e5e6e9 #dfe0e4 #d0d1d5;
|
|
7569
|
-
border-radius: 4px;
|
|
7570
|
-
-webkit-border-radius: 4px;
|
|
7571
|
-
margin: 10px 15px;
|
|
7572
|
-
}
|
|
7573
|
-
|
|
7574
|
-
.jp-Cell-Placeholder-wrapper-inner {
|
|
7575
|
-
padding: 15px;
|
|
7576
|
-
position: relative;
|
|
7577
|
-
}
|
|
7578
|
-
|
|
7579
|
-
.jp-Cell-Placeholder-wrapper-body {
|
|
7580
|
-
background-repeat: repeat;
|
|
7581
|
-
background-size: 50% auto;
|
|
7582
|
-
}
|
|
7583
|
-
|
|
7584
|
-
.jp-Cell-Placeholder-wrapper-body div {
|
|
7585
|
-
background: #f6f7f8;
|
|
7586
|
-
background-image: -webkit-linear-gradient(
|
|
7587
|
-
left,
|
|
7588
|
-
#f6f7f8 0%,
|
|
7589
|
-
#edeef1 20%,
|
|
7590
|
-
#f6f7f8 40%,
|
|
7591
|
-
#f6f7f8 100%
|
|
7592
|
-
);
|
|
7593
|
-
background-repeat: no-repeat;
|
|
7594
|
-
background-size: 800px 104px;
|
|
7595
|
-
height: 104px;
|
|
7596
|
-
position: absolute;
|
|
7597
|
-
right: 15px;
|
|
7598
|
-
left: 15px;
|
|
7599
|
-
top: 15px;
|
|
7600
|
-
}
|
|
7601
|
-
|
|
7602
|
-
div.jp-Cell-Placeholder-h1 {
|
|
7603
|
-
top: 20px;
|
|
7604
|
-
height: 20px;
|
|
7605
|
-
left: 15px;
|
|
7606
|
-
width: 150px;
|
|
7607
|
-
}
|
|
7608
|
-
|
|
7609
|
-
div.jp-Cell-Placeholder-h2 {
|
|
7610
|
-
left: 15px;
|
|
7611
|
-
top: 50px;
|
|
7612
|
-
height: 10px;
|
|
7613
|
-
width: 100px;
|
|
7614
|
-
}
|
|
7615
|
-
|
|
7616
|
-
div.jp-Cell-Placeholder-content-1,
|
|
7617
|
-
div.jp-Cell-Placeholder-content-2,
|
|
7618
|
-
div.jp-Cell-Placeholder-content-3 {
|
|
7619
|
-
left: 15px;
|
|
7620
|
-
right: 15px;
|
|
7621
|
-
height: 10px;
|
|
7622
|
-
}
|
|
7623
|
-
|
|
7624
|
-
div.jp-Cell-Placeholder-content-1 {
|
|
7625
|
-
top: 100px;
|
|
7626
|
-
}
|
|
7627
|
-
|
|
7628
|
-
div.jp-Cell-Placeholder-content-2 {
|
|
7629
|
-
top: 120px;
|
|
7630
|
-
}
|
|
7631
|
-
|
|
7632
|
-
div.jp-Cell-Placeholder-content-3 {
|
|
7633
|
-
top: 140px;
|
|
7634
|
-
}
|
|
7635
|
-
|
|
7636
7557
|
/*-----------------------------------------------------------------------------
|
|
7637
7558
|
| Virtual scrollbar
|
|
7638
7559
|
|----------------------------------------------------------------------------*/
|