@jupyterlab/nbconvert-css 4.2.0-alpha.0 → 4.2.0-alpha.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 +55 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.2.0-alpha.
|
|
3
|
+
"version": "4.2.0-alpha.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-alpha.
|
|
35
|
-
"@jupyterlab/apputils": "^4.3.0-alpha.
|
|
36
|
-
"@jupyterlab/cells": "^4.2.0-alpha.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.2.0-alpha.
|
|
38
|
-
"@jupyterlab/notebook": "^4.2.0-alpha.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.2.0-alpha.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.2.0-alpha.
|
|
34
|
+
"@jupyterlab/application": "^4.2.0-alpha.2",
|
|
35
|
+
"@jupyterlab/apputils": "^4.3.0-alpha.2",
|
|
36
|
+
"@jupyterlab/cells": "^4.2.0-alpha.2",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.2.0-alpha.2",
|
|
38
|
+
"@jupyterlab/notebook": "^4.2.0-alpha.2",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.2.0-alpha.2",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.2.0-alpha.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -1639,7 +1639,7 @@
|
|
|
1639
1639
|
splash, the splash icon can loose theming. To prevent that, we set a
|
|
1640
1640
|
default for its color variable */
|
|
1641
1641
|
:root {
|
|
1642
|
-
--jp-warn-color0: var(--md-orange-700);
|
|
1642
|
+
--jp-warn-color0: var(--md-orange-700, #f57c00);
|
|
1643
1643
|
}
|
|
1644
1644
|
|
|
1645
1645
|
/* not sure what to do with this one, used in filebrowser listing */
|
|
@@ -2034,9 +2034,9 @@ body.lm-mod-override-cursor .jp-IFrame::before {
|
|
|
2034
2034
|
.jp-FormGroup-content fieldset input:focus,
|
|
2035
2035
|
.jp-FormGroup-content fieldset select:focus {
|
|
2036
2036
|
-moz-outline-radius: unset;
|
|
2037
|
-
outline: var(--jp-border-width) solid var(--md-blue-500);
|
|
2037
|
+
outline: var(--jp-border-width) solid var(--md-blue-500, #2196f3);
|
|
2038
2038
|
outline-offset: -1px;
|
|
2039
|
-
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
2039
|
+
box-shadow: inset 0 0 4px var(--md-blue-300, #64b5f6);
|
|
2040
2040
|
}
|
|
2041
2041
|
|
|
2042
2042
|
.jp-FormGroup-content fieldset input:hover:not(:focus),
|
|
@@ -2448,8 +2448,8 @@ input[type='checkbox'].jp-mod-styled {
|
|
|
2448
2448
|
}
|
|
2449
2449
|
|
|
2450
2450
|
input.jp-mod-styled:focus {
|
|
2451
|
-
border: var(--jp-border-width) solid var(--md-blue-500);
|
|
2452
|
-
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
2451
|
+
border: var(--jp-border-width) solid var(--md-blue-500, #2196f3);
|
|
2452
|
+
box-shadow: inset 0 0 4px var(--md-blue-300, #64b5f6);
|
|
2453
2453
|
}
|
|
2454
2454
|
|
|
2455
2455
|
input[type='checkbox'].jp-mod-styled:focus-visible {
|
|
@@ -2751,6 +2751,10 @@ button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
|
|
|
2751
2751
|
font-family: var(--jp-ui-font-family);
|
|
2752
2752
|
}
|
|
2753
2753
|
|
|
2754
|
+
.jp-Toolbar .jp-ToolbarButtonComponent {
|
|
2755
|
+
color: var(--jp-ui-font-color1);
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2754
2758
|
.jp-ToolbarButtonComponent::part(content) {
|
|
2755
2759
|
display: flex;
|
|
2756
2760
|
align-items: center;
|
|
@@ -3493,6 +3497,10 @@ select {
|
|
|
3493
3497
|
overflow: visible;
|
|
3494
3498
|
}
|
|
3495
3499
|
|
|
3500
|
+
button.jp-Dialog-button:disabled {
|
|
3501
|
+
opacity: 0.6;
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3496
3504
|
button.jp-Dialog-button:focus {
|
|
3497
3505
|
outline: 1px solid var(--jp-brand-color1);
|
|
3498
3506
|
outline-offset: 4px;
|
|
@@ -3519,7 +3527,7 @@ button.jp-Dialog-button.jp-mod-styled.jp-mod-warn:focus {
|
|
|
3519
3527
|
}
|
|
3520
3528
|
|
|
3521
3529
|
button.jp-Dialog-button.jp-mod-styled.jp-mod-reject:focus {
|
|
3522
|
-
outline: 1px solid var(--jp-reject-color-normal, var(--md-grey-600));
|
|
3530
|
+
outline: 1px solid var(--jp-reject-color-normal, var(--md-grey-600, #757575));
|
|
3523
3531
|
}
|
|
3524
3532
|
|
|
3525
3533
|
button.jp-Dialog-close-button {
|
|
@@ -3606,6 +3614,23 @@ button.jp-Dialog-close-button {
|
|
|
3606
3614
|
flex: 1 1 auto;
|
|
3607
3615
|
}
|
|
3608
3616
|
|
|
3617
|
+
.jp-InputDialog-inputWrapper {
|
|
3618
|
+
display: flex;
|
|
3619
|
+
align-items: baseline;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
.jp-InputDialog-inputWrapper > input.jp-mod-styled:invalid {
|
|
3623
|
+
border-color: var(--jp-error-color0);
|
|
3624
|
+
background: var(--jp-error-color3);
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
.jp-InputDialog-inputWrapper
|
|
3628
|
+
> input[required].jp-mod-styled:invalid:placeholder-shown {
|
|
3629
|
+
/* Do not show invalid style when placeholder is shown */
|
|
3630
|
+
border-color: unset;
|
|
3631
|
+
background: unset;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3609
3634
|
/*-----------------------------------------------------------------------------
|
|
3610
3635
|
| Copyright (c) Jupyter Development Team.
|
|
3611
3636
|
| Distributed under the terms of the Modified BSD License.
|
|
@@ -4505,7 +4530,7 @@ button.jp-Dialog-close-button {
|
|
|
4505
4530
|
a.jp-InternalAnchorLink {
|
|
4506
4531
|
visibility: hidden;
|
|
4507
4532
|
margin-left: 8px;
|
|
4508
|
-
color: var(--md-blue-800);
|
|
4533
|
+
color: var(--md-blue-800, #1565c0);
|
|
4509
4534
|
}
|
|
4510
4535
|
|
|
4511
4536
|
h1:hover .jp-InternalAnchorLink,
|
|
@@ -4650,8 +4675,8 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4650
4675
|
}
|
|
4651
4676
|
|
|
4652
4677
|
.jp-lineFormWrapperFocusWithin {
|
|
4653
|
-
border: var(--jp-border-width) solid var(--md-blue-500);
|
|
4654
|
-
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
4678
|
+
border: var(--jp-border-width) solid var(--md-blue-500, #2196f3);
|
|
4679
|
+
box-shadow: inset 0 0 4px var(--md-blue-300, #64b5f6);
|
|
4655
4680
|
}
|
|
4656
4681
|
|
|
4657
4682
|
.jp-lineFormInput {
|
|
@@ -4754,11 +4779,16 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4754
4779
|
outline: 0;
|
|
4755
4780
|
}
|
|
4756
4781
|
|
|
4757
|
-
.jp-DocumentSearch-
|
|
4782
|
+
.jp-DocumentSearch-button-wrapper:disabled > .jp-DocumentSearch-button-content {
|
|
4783
|
+
opacity: 0.6;
|
|
4784
|
+
cursor: not-allowed;
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
.jp-DocumentSearch-overlay button:not(:disabled):hover {
|
|
4758
4788
|
background-color: var(--jp-layout-color2);
|
|
4759
4789
|
}
|
|
4760
4790
|
|
|
4761
|
-
.jp-DocumentSearch-overlay button:active {
|
|
4791
|
+
.jp-DocumentSearch-overlay button:not(:disabled):active {
|
|
4762
4792
|
background-color: var(--jp-layout-color3);
|
|
4763
4793
|
}
|
|
4764
4794
|
|
|
@@ -4875,11 +4905,11 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4875
4905
|
margin: 1px 5px 2px;
|
|
4876
4906
|
}
|
|
4877
4907
|
|
|
4878
|
-
.jp-DocumentSearch-up-down-button:hover {
|
|
4908
|
+
button:not(:disabled) > .jp-DocumentSearch-up-down-button:hover {
|
|
4879
4909
|
background-color: var(--jp-layout-color2);
|
|
4880
4910
|
}
|
|
4881
4911
|
|
|
4882
|
-
.jp-DocumentSearch-up-down-button:active {
|
|
4912
|
+
button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
4883
4913
|
background-color: var(--jp-layout-color3);
|
|
4884
4914
|
}
|
|
4885
4915
|
|
|
@@ -5091,8 +5121,9 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5091
5121
|
}
|
|
5092
5122
|
|
|
5093
5123
|
.jp-current-match > .cm-searching::selection,
|
|
5124
|
+
.jp-current-match > .cm-searching span::selection,
|
|
5094
5125
|
.cm-searching > .jp-current-match::selection,
|
|
5095
|
-
.
|
|
5126
|
+
.cm-searching > .jp-current-match span::selection {
|
|
5096
5127
|
background-color: var(--jp-search-selected-match-background-color);
|
|
5097
5128
|
color: var(--jp-search-selected-match-color);
|
|
5098
5129
|
}
|
|
@@ -5182,11 +5213,6 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5182
5213
|
--jp-private-filebrowser-button-width: 48px;
|
|
5183
5214
|
}
|
|
5184
5215
|
|
|
5185
|
-
/*-----------------------------------------------------------------------------
|
|
5186
|
-
| Copyright (c) Jupyter Development Team.
|
|
5187
|
-
| Distributed under the terms of the Modified BSD License.
|
|
5188
|
-
|----------------------------------------------------------------------------*/
|
|
5189
|
-
|
|
5190
5216
|
.jp-FileBrowser .jp-SidePanel-content {
|
|
5191
5217
|
display: flex;
|
|
5192
5218
|
flex-direction: column;
|
|
@@ -5274,6 +5300,14 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5274
5300
|
display: none;
|
|
5275
5301
|
}
|
|
5276
5302
|
|
|
5303
|
+
.jp-Open-Dialog > .jp-FileBrowser {
|
|
5304
|
+
min-height: 200px;
|
|
5305
|
+
}
|
|
5306
|
+
|
|
5307
|
+
.jp-Open-Dialog-label {
|
|
5308
|
+
overflow: visible;
|
|
5309
|
+
}
|
|
5310
|
+
|
|
5277
5311
|
/*-----------------------------------------------------------------------------
|
|
5278
5312
|
| DirListing
|
|
5279
5313
|
|----------------------------------------------------------------------------*/
|
|
@@ -6656,8 +6690,8 @@ cell outputs.
|
|
|
6656
6690
|
--jp-side-by-side-resized-cell: var(--jp-side-by-side-output-size);
|
|
6657
6691
|
--jp-private-notebook-dragImage-width: 304px;
|
|
6658
6692
|
--jp-private-notebook-dragImage-height: 36px;
|
|
6659
|
-
--jp-private-notebook-selected-color: var(--md-blue-400);
|
|
6660
|
-
--jp-private-notebook-active-color: var(--md-green-400);
|
|
6693
|
+
--jp-private-notebook-selected-color: var(--md-blue-400, #42a5f5);
|
|
6694
|
+
--jp-private-notebook-active-color: var(--md-green-400, #66bb6a);
|
|
6661
6695
|
}
|
|
6662
6696
|
|
|
6663
6697
|
/*-----------------------------------------------------------------------------
|