@jupyterlab/nbconvert-css 4.4.0-beta.0 → 4.4.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 +187 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.4.0-beta.
|
|
3
|
+
"version": "4.4.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.4.0-beta.
|
|
35
|
-
"@jupyterlab/apputils": "^4.5.0-beta.
|
|
36
|
-
"@jupyterlab/cells": "^4.4.0-beta.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.4.0-beta.
|
|
38
|
-
"@jupyterlab/notebook": "^4.4.0-beta.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.4.0-beta.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.4.0-beta.
|
|
34
|
+
"@jupyterlab/application": "^4.4.0-beta.2",
|
|
35
|
+
"@jupyterlab/apputils": "^4.5.0-beta.2",
|
|
36
|
+
"@jupyterlab/cells": "^4.4.0-beta.2",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.4.0-beta.2",
|
|
38
|
+
"@jupyterlab/notebook": "^4.4.0-beta.2",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.4.0-beta.2",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.4.0-beta.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -3717,6 +3717,8 @@ button.jp-Dialog-close-button {
|
|
|
3717
3717
|
|
|
3718
3718
|
.jp-Dialog-checkbox {
|
|
3719
3719
|
padding-right: 5px;
|
|
3720
|
+
display: flex;
|
|
3721
|
+
align-items: center;
|
|
3720
3722
|
}
|
|
3721
3723
|
|
|
3722
3724
|
.jp-Dialog-spacer {
|
|
@@ -3783,6 +3785,191 @@ button.jp-Dialog-close-button {
|
|
|
3783
3785
|
| Distributed under the terms of the Modified BSD License.
|
|
3784
3786
|
|----------------------------------------------------------------------------*/
|
|
3785
3787
|
|
|
3788
|
+
/* licenses */
|
|
3789
|
+
.jp-Licenses {
|
|
3790
|
+
display: flex;
|
|
3791
|
+
flex-direction: row;
|
|
3792
|
+
align-items: stretch;
|
|
3793
|
+
background-color: var(--jp-layout-color0);
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
.jp-Licenses-FormArea {
|
|
3797
|
+
display: flex;
|
|
3798
|
+
flex-direction: column;
|
|
3799
|
+
min-width: calc(10 * var(--jp-ui-font-size1));
|
|
3800
|
+
width: calc(18 * var(--jp-ui-font-size1));
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
.jp-Licenses .lm-SplitPanel-handle:hover {
|
|
3804
|
+
background-color: var(--jp-brand-color2);
|
|
3805
|
+
}
|
|
3806
|
+
|
|
3807
|
+
/* filters */
|
|
3808
|
+
.jp-Licenses-Filters {
|
|
3809
|
+
padding: var(--jp-ui-font-size1) calc(var(--jp-ui-font-size1) / 2) 0
|
|
3810
|
+
var(--jp-ui-font-size1);
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
.jp-Licenses-Filters label {
|
|
3814
|
+
display: block;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
.jp-Licenses-Filters-title {
|
|
3818
|
+
font-weight: 600;
|
|
3819
|
+
text-transform: uppercase;
|
|
3820
|
+
letter-spacing: 1px;
|
|
3821
|
+
font-size: var(--jp-ui-font-size0);
|
|
3822
|
+
color: var(--jp-ui-font-color0);
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
.jp-RenderedHTMLCommon.jp-Licenses-Filters ul,
|
|
3826
|
+
.jp-RenderedHTMLCommon.jp-Licenses-Filters li {
|
|
3827
|
+
list-style: none;
|
|
3828
|
+
color: var(--jp-ui-font-color0);
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
.jp-Licenses-Filters input {
|
|
3832
|
+
width: 100%;
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
.jp-RenderedHTMLCommon.jp-Licenses-Filters ul {
|
|
3836
|
+
padding: 0 0 var(--jp-ui-font-size1) 0;
|
|
3837
|
+
margin: 0;
|
|
3838
|
+
padding-bottom: var(--jp-ui-font-size1);
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
/* bundles */
|
|
3842
|
+
.jp-Licenses-Bundles {
|
|
3843
|
+
background-color: var(--jp-layout-color2);
|
|
3844
|
+
overflow-y: auto;
|
|
3845
|
+
flex: 1;
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3848
|
+
.jp-Licenses-Bundles .lm-TabBar-content {
|
|
3849
|
+
width: 100%;
|
|
3850
|
+
}
|
|
3851
|
+
|
|
3852
|
+
.jp-Licenses-Bundles .lm-TabBar-tab {
|
|
3853
|
+
padding: calc(var(--jp-ui-font-size1) / 2);
|
|
3854
|
+
background-color: var(--jp-layout-color1);
|
|
3855
|
+
color: var(--jp-ui-font-color1);
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
.jp-Licenses-Bundles .lm-TabBar-tabLabel {
|
|
3859
|
+
text-overflow: ellipsis;
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
.jp-Licenses-Bundles .lm-TabBar-tab label {
|
|
3863
|
+
background-color: var(--jp-layout-color2);
|
|
3864
|
+
border-radius: var(--jp-ui-font-size1);
|
|
3865
|
+
width: calc(2.5 * var(--jp-ui-font-size1));
|
|
3866
|
+
padding: 0 calc(var(--jp-ui-font-size1) / 2);
|
|
3867
|
+
text-align: center;
|
|
3868
|
+
margin-left: calc(var(--jp-ui-font-size1) / 2);
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
.jp-Licenses-Bundles .lm-TabBar-tab.lm-mod-current {
|
|
3872
|
+
background-color: var(--jp-brand-color1);
|
|
3873
|
+
color: #fff;
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
.jp-Licenses-Bundles .lm-TabBar-tab.lm-mod-current label {
|
|
3877
|
+
background-color: #fff;
|
|
3878
|
+
color: var(--jp-brand-color1);
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
/* license grid */
|
|
3882
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon {
|
|
3883
|
+
min-width: calc(var(--jp-ui-font-size1) * 10);
|
|
3884
|
+
display: flex;
|
|
3885
|
+
flex-direction: column;
|
|
3886
|
+
padding: 0;
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon form {
|
|
3890
|
+
flex: 1;
|
|
3891
|
+
display: flex;
|
|
3892
|
+
flex-direction: column;
|
|
3893
|
+
overflow-y: scroll;
|
|
3894
|
+
margin: 0;
|
|
3895
|
+
padding: 0;
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
.jp-RenderedHTMLCommon.jp-Licenses-Grid table {
|
|
3899
|
+
flex: 1;
|
|
3900
|
+
max-width: 100%;
|
|
3901
|
+
border: solid var(--jp-border-width) var(--jp-border-color2);
|
|
3902
|
+
border-top: 0;
|
|
3903
|
+
border-bottom: 0;
|
|
3904
|
+
margin: 0;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon td,
|
|
3908
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon th {
|
|
3909
|
+
text-align: left;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.jp-Licenses-Grid td:nth-child(1) {
|
|
3913
|
+
max-width: calc(2 * var(--jp-ui-font-size1));
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
.jp-Licenses-Grid label {
|
|
3917
|
+
width: 100%;
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
.jp-Licenses .jp-Licenses-Grid.jp-RenderedHTMLCommon code {
|
|
3921
|
+
background-color: transparent;
|
|
3922
|
+
padding: 0;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon tr.jp-mod-selected {
|
|
3926
|
+
background-color: var(--jp-brand-color1);
|
|
3927
|
+
color: #fff;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.jp-Licenses-Grid.jp-RenderedHTMLCommon .jp-mod-selected code {
|
|
3931
|
+
color: #fff;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
/* license text */
|
|
3935
|
+
.jp-Licenses-Text {
|
|
3936
|
+
min-width: calc(10 * var(--jp-ui-font-size1));
|
|
3937
|
+
padding: 0 0 0 var(--jp-ui-font-size1);
|
|
3938
|
+
display: flex;
|
|
3939
|
+
flex-direction: column;
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.jp-Licenses-Text h1 {
|
|
3943
|
+
flex: initial;
|
|
3944
|
+
margin-bottom: 0;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
.jp-Licenses-Text h1:empty {
|
|
3948
|
+
display: none;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.jp-Licenses-Text blockquote {
|
|
3952
|
+
flex: initial;
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
.jp-Licenses-Text.jp-RenderedHTMLCommon code {
|
|
3956
|
+
overflow-wrap: anywhere;
|
|
3957
|
+
overflow-y: auto;
|
|
3958
|
+
flex: 1;
|
|
3959
|
+
padding-right: var(--jp-ui-font-size1);
|
|
3960
|
+
margin-bottom: 0;
|
|
3961
|
+
padding-bottom: var(--jp-ui-font-size1);
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.jp-Licenses-Text code:empty {
|
|
3965
|
+
display: none;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
/*-----------------------------------------------------------------------------
|
|
3969
|
+
| Copyright (c) Jupyter Development Team.
|
|
3970
|
+
| Distributed under the terms of the Modified BSD License.
|
|
3971
|
+
|----------------------------------------------------------------------------*/
|
|
3972
|
+
|
|
3786
3973
|
.jp-MainAreaWidget > :focus {
|
|
3787
3974
|
outline: none;
|
|
3788
3975
|
}
|