@jupyterlab/nbconvert-css 3.3.0-alpha.13 → 3.3.0-alpha.17
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 +10 -10
- package/style/index.css +419 -368
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.3.0-alpha.
|
|
3
|
+
"version": "3.3.0-alpha.17",
|
|
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": "^3.3.0-alpha.
|
|
35
|
-
"@jupyterlab/apputils": "^3.3.0-alpha.
|
|
36
|
-
"@jupyterlab/cells": "^3.3.0-alpha.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.3.0-alpha.
|
|
38
|
-
"@jupyterlab/notebook": "^3.3.0-alpha.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.3.0-alpha.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.3.0-alpha.
|
|
34
|
+
"@jupyterlab/application": "^3.3.0-alpha.17",
|
|
35
|
+
"@jupyterlab/apputils": "^3.3.0-alpha.17",
|
|
36
|
+
"@jupyterlab/cells": "^3.3.0-alpha.17",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.3.0-alpha.17",
|
|
38
|
+
"@jupyterlab/notebook": "^3.3.0-alpha.17",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.3.0-alpha.17",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.3.0-alpha.17"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"null-loader": "^4.0.0",
|
|
47
47
|
"rimraf": "~3.0.0",
|
|
48
48
|
"url-loader": "~4.1.0",
|
|
49
|
-
"webpack": "^5.
|
|
50
|
-
"webpack-cli": "^4.
|
|
49
|
+
"webpack": "^5.41.1",
|
|
50
|
+
"webpack-cli": "^4.1.0"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
package/style/index.css
CHANGED
|
@@ -228,13 +228,6 @@
|
|
|
228
228
|
display: none !important;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
-
.lm-AccordionPanel[data-orientation="horizontal"] > .lm-AccordionPanel-title {
|
|
232
|
-
/* Title is rotated for horizontal accordion panel using CSS */
|
|
233
|
-
display: block;
|
|
234
|
-
transform-origin: top left;
|
|
235
|
-
transform: rotate(-90deg) translate(-100%);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
231
|
/*-----------------------------------------------------------------------------
|
|
239
232
|
| Copyright (c) Jupyter Development Team.
|
|
240
233
|
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
|
@@ -9299,37 +9292,6 @@ span.bp3-popover-target{
|
|
|
9299
9292
|
| Distributed under the terms of the Modified BSD License.
|
|
9300
9293
|
|----------------------------------------------------------------------------*/
|
|
9301
9294
|
|
|
9302
|
-
.jp-Collapse {
|
|
9303
|
-
display: flex;
|
|
9304
|
-
flex-direction: column;
|
|
9305
|
-
align-items: stretch;
|
|
9306
|
-
border-top: 1px solid var(--jp-border-color2);
|
|
9307
|
-
border-bottom: 1px solid var(--jp-border-color2);
|
|
9308
|
-
}
|
|
9309
|
-
|
|
9310
|
-
.jp-Collapse-header {
|
|
9311
|
-
padding: 1px 12px;
|
|
9312
|
-
color: var(--jp-ui-font-color1);
|
|
9313
|
-
background-color: var(--jp-layout-color1);
|
|
9314
|
-
font-size: var(--jp-ui-font-size2);
|
|
9315
|
-
}
|
|
9316
|
-
|
|
9317
|
-
.jp-Collapse-header:hover {
|
|
9318
|
-
background-color: var(--jp-layout-color2);
|
|
9319
|
-
}
|
|
9320
|
-
|
|
9321
|
-
.jp-Collapse-contents {
|
|
9322
|
-
padding: 0px 12px 0px 12px;
|
|
9323
|
-
background-color: var(--jp-layout-color1);
|
|
9324
|
-
color: var(--jp-ui-font-color1);
|
|
9325
|
-
overflow: auto;
|
|
9326
|
-
}
|
|
9327
|
-
|
|
9328
|
-
/*-----------------------------------------------------------------------------
|
|
9329
|
-
| Copyright (c) Jupyter Development Team.
|
|
9330
|
-
| Distributed under the terms of the Modified BSD License.
|
|
9331
|
-
|----------------------------------------------------------------------------*/
|
|
9332
|
-
|
|
9333
9295
|
/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */
|
|
9334
9296
|
|
|
9335
9297
|
/**
|
|
@@ -10225,210 +10187,6 @@ span.bp3-popover-target{
|
|
|
10225
10187
|
| Distributed under the terms of the Modified BSD License.
|
|
10226
10188
|
|----------------------------------------------------------------------------*/
|
|
10227
10189
|
|
|
10228
|
-
.jp-IFrame {
|
|
10229
|
-
width: 100%;
|
|
10230
|
-
height: 100%;
|
|
10231
|
-
}
|
|
10232
|
-
|
|
10233
|
-
.jp-IFrame > iframe {
|
|
10234
|
-
border: none;
|
|
10235
|
-
}
|
|
10236
|
-
|
|
10237
|
-
/*
|
|
10238
|
-
When drag events occur, `p-mod-override-cursor` is added to the body.
|
|
10239
|
-
Because iframes steal all cursor events, the following two rules are necessary
|
|
10240
|
-
to suppress pointer events while resize drags are occurring. There may be a
|
|
10241
|
-
better solution to this problem.
|
|
10242
|
-
*/
|
|
10243
|
-
body.lm-mod-override-cursor .jp-IFrame {
|
|
10244
|
-
position: relative;
|
|
10245
|
-
}
|
|
10246
|
-
|
|
10247
|
-
body.lm-mod-override-cursor .jp-IFrame:before {
|
|
10248
|
-
content: '';
|
|
10249
|
-
position: absolute;
|
|
10250
|
-
top: 0;
|
|
10251
|
-
left: 0;
|
|
10252
|
-
right: 0;
|
|
10253
|
-
bottom: 0;
|
|
10254
|
-
background: transparent;
|
|
10255
|
-
}
|
|
10256
|
-
|
|
10257
|
-
/*-----------------------------------------------------------------------------
|
|
10258
|
-
| Copyright (c) 2017, Jupyter Development Team.
|
|
10259
|
-
|
|
|
10260
|
-
| Distributed under the terms of the Modified BSD License.
|
|
10261
|
-
|----------------------------------------------------------------------------*/
|
|
10262
|
-
|
|
10263
|
-
.jp-Spinner {
|
|
10264
|
-
position: absolute;
|
|
10265
|
-
display: flex;
|
|
10266
|
-
justify-content: center;
|
|
10267
|
-
align-items: center;
|
|
10268
|
-
z-index: 10;
|
|
10269
|
-
left: 0;
|
|
10270
|
-
top: 0;
|
|
10271
|
-
width: 100%;
|
|
10272
|
-
height: 100%;
|
|
10273
|
-
background: var(--jp-layout-color0);
|
|
10274
|
-
outline: none;
|
|
10275
|
-
}
|
|
10276
|
-
|
|
10277
|
-
.jp-SpinnerContent {
|
|
10278
|
-
font-size: 10px;
|
|
10279
|
-
margin: 50px auto;
|
|
10280
|
-
text-indent: -9999em;
|
|
10281
|
-
width: 3em;
|
|
10282
|
-
height: 3em;
|
|
10283
|
-
border-radius: 50%;
|
|
10284
|
-
background: var(--jp-brand-color3);
|
|
10285
|
-
background: linear-gradient(
|
|
10286
|
-
to right,
|
|
10287
|
-
#f37626 10%,
|
|
10288
|
-
rgba(255, 255, 255, 0) 42%
|
|
10289
|
-
);
|
|
10290
|
-
position: relative;
|
|
10291
|
-
animation: load3 1s infinite linear, fadeIn 1s;
|
|
10292
|
-
}
|
|
10293
|
-
|
|
10294
|
-
.jp-SpinnerContent:before {
|
|
10295
|
-
width: 50%;
|
|
10296
|
-
height: 50%;
|
|
10297
|
-
background: #f37626;
|
|
10298
|
-
border-radius: 100% 0 0 0;
|
|
10299
|
-
position: absolute;
|
|
10300
|
-
top: 0;
|
|
10301
|
-
left: 0;
|
|
10302
|
-
content: '';
|
|
10303
|
-
}
|
|
10304
|
-
|
|
10305
|
-
.jp-SpinnerContent:after {
|
|
10306
|
-
background: var(--jp-layout-color0);
|
|
10307
|
-
width: 75%;
|
|
10308
|
-
height: 75%;
|
|
10309
|
-
border-radius: 50%;
|
|
10310
|
-
content: '';
|
|
10311
|
-
margin: auto;
|
|
10312
|
-
position: absolute;
|
|
10313
|
-
top: 0;
|
|
10314
|
-
left: 0;
|
|
10315
|
-
bottom: 0;
|
|
10316
|
-
right: 0;
|
|
10317
|
-
}
|
|
10318
|
-
|
|
10319
|
-
@keyframes fadeIn {
|
|
10320
|
-
0% {
|
|
10321
|
-
opacity: 0;
|
|
10322
|
-
}
|
|
10323
|
-
100% {
|
|
10324
|
-
opacity: 1;
|
|
10325
|
-
}
|
|
10326
|
-
}
|
|
10327
|
-
|
|
10328
|
-
@keyframes load3 {
|
|
10329
|
-
0% {
|
|
10330
|
-
transform: rotate(0deg);
|
|
10331
|
-
}
|
|
10332
|
-
100% {
|
|
10333
|
-
transform: rotate(360deg);
|
|
10334
|
-
}
|
|
10335
|
-
}
|
|
10336
|
-
|
|
10337
|
-
/*-----------------------------------------------------------------------------
|
|
10338
|
-
| Copyright (c) 2014-2017, Jupyter Development Team.
|
|
10339
|
-
|
|
|
10340
|
-
| Distributed under the terms of the Modified BSD License.
|
|
10341
|
-
|----------------------------------------------------------------------------*/
|
|
10342
|
-
|
|
10343
|
-
button.jp-mod-styled {
|
|
10344
|
-
font-size: var(--jp-ui-font-size1);
|
|
10345
|
-
color: var(--jp-ui-font-color0);
|
|
10346
|
-
border: none;
|
|
10347
|
-
box-sizing: border-box;
|
|
10348
|
-
text-align: center;
|
|
10349
|
-
line-height: 32px;
|
|
10350
|
-
height: 32px;
|
|
10351
|
-
padding: 0px 12px;
|
|
10352
|
-
letter-spacing: 0.8px;
|
|
10353
|
-
outline: none;
|
|
10354
|
-
appearance: none;
|
|
10355
|
-
-webkit-appearance: none;
|
|
10356
|
-
-moz-appearance: none;
|
|
10357
|
-
}
|
|
10358
|
-
|
|
10359
|
-
input.jp-mod-styled {
|
|
10360
|
-
background: var(--jp-input-background);
|
|
10361
|
-
height: 28px;
|
|
10362
|
-
box-sizing: border-box;
|
|
10363
|
-
border: var(--jp-border-width) solid var(--jp-border-color1);
|
|
10364
|
-
padding-left: 7px;
|
|
10365
|
-
padding-right: 7px;
|
|
10366
|
-
font-size: var(--jp-ui-font-size2);
|
|
10367
|
-
color: var(--jp-ui-font-color0);
|
|
10368
|
-
outline: none;
|
|
10369
|
-
appearance: none;
|
|
10370
|
-
-webkit-appearance: none;
|
|
10371
|
-
-moz-appearance: none;
|
|
10372
|
-
}
|
|
10373
|
-
|
|
10374
|
-
input[type='checkbox'].jp-mod-styled {
|
|
10375
|
-
appearance: checkbox;
|
|
10376
|
-
-webkit-appearance: checkbox;
|
|
10377
|
-
-moz-appearance: checkbox;
|
|
10378
|
-
height: auto;
|
|
10379
|
-
}
|
|
10380
|
-
|
|
10381
|
-
input.jp-mod-styled:focus {
|
|
10382
|
-
border: var(--jp-border-width) solid var(--md-blue-500);
|
|
10383
|
-
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
10384
|
-
}
|
|
10385
|
-
|
|
10386
|
-
.jp-select-wrapper {
|
|
10387
|
-
display: flex;
|
|
10388
|
-
position: relative;
|
|
10389
|
-
flex-direction: column;
|
|
10390
|
-
padding: 1px;
|
|
10391
|
-
background-color: var(--jp-layout-color1);
|
|
10392
|
-
height: 28px;
|
|
10393
|
-
box-sizing: border-box;
|
|
10394
|
-
margin-bottom: 12px;
|
|
10395
|
-
}
|
|
10396
|
-
|
|
10397
|
-
.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {
|
|
10398
|
-
border: var(--jp-border-width) solid var(--jp-input-active-border-color);
|
|
10399
|
-
box-shadow: var(--jp-input-box-shadow);
|
|
10400
|
-
background-color: var(--jp-input-active-background);
|
|
10401
|
-
}
|
|
10402
|
-
|
|
10403
|
-
select.jp-mod-styled:hover {
|
|
10404
|
-
background-color: var(--jp-layout-color1);
|
|
10405
|
-
cursor: pointer;
|
|
10406
|
-
color: var(--jp-ui-font-color0);
|
|
10407
|
-
background-color: var(--jp-input-hover-background);
|
|
10408
|
-
box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
|
|
10409
|
-
}
|
|
10410
|
-
|
|
10411
|
-
select.jp-mod-styled {
|
|
10412
|
-
flex: 1 1 auto;
|
|
10413
|
-
height: 32px;
|
|
10414
|
-
width: 100%;
|
|
10415
|
-
font-size: var(--jp-ui-font-size2);
|
|
10416
|
-
background: var(--jp-input-background);
|
|
10417
|
-
color: var(--jp-ui-font-color0);
|
|
10418
|
-
padding: 0 25px 0 8px;
|
|
10419
|
-
border: var(--jp-border-width) solid var(--jp-input-border-color);
|
|
10420
|
-
border-radius: 0px;
|
|
10421
|
-
outline: none;
|
|
10422
|
-
appearance: none;
|
|
10423
|
-
-webkit-appearance: none;
|
|
10424
|
-
-moz-appearance: none;
|
|
10425
|
-
}
|
|
10426
|
-
|
|
10427
|
-
/*-----------------------------------------------------------------------------
|
|
10428
|
-
| Copyright (c) Jupyter Development Team.
|
|
10429
|
-
| Distributed under the terms of the Modified BSD License.
|
|
10430
|
-
|----------------------------------------------------------------------------*/
|
|
10431
|
-
|
|
10432
10190
|
.jp-switch {
|
|
10433
10191
|
display: flex;
|
|
10434
10192
|
align-items: center;
|
|
@@ -10483,131 +10241,15 @@ select.jp-mod-styled {
|
|
|
10483
10241
|
}
|
|
10484
10242
|
|
|
10485
10243
|
/*-----------------------------------------------------------------------------
|
|
10486
|
-
| Copyright (c)
|
|
10487
|
-
|
|
|
10244
|
+
| Copyright (c) Jupyter Development Team.
|
|
10488
10245
|
| Distributed under the terms of the Modified BSD License.
|
|
10489
10246
|
|----------------------------------------------------------------------------*/
|
|
10490
10247
|
|
|
10491
|
-
|
|
10492
|
-
|
|
10493
|
-
|
|
10494
|
-
|
|
10495
|
-
|
|
10496
|
-
|
|
10497
|
-
.jp-Toolbar {
|
|
10498
|
-
color: var(--jp-ui-font-color1);
|
|
10499
|
-
flex: 0 0 auto;
|
|
10500
|
-
display: flex;
|
|
10501
|
-
flex-direction: row;
|
|
10502
|
-
border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
|
|
10503
|
-
box-shadow: var(--jp-toolbar-box-shadow);
|
|
10504
|
-
background: var(--jp-toolbar-background);
|
|
10505
|
-
min-height: var(--jp-toolbar-micro-height);
|
|
10506
|
-
padding: 2px;
|
|
10507
|
-
z-index: 1;
|
|
10508
|
-
overflow-x: hidden;
|
|
10509
|
-
}
|
|
10510
|
-
|
|
10511
|
-
/* Toolbar items */
|
|
10512
|
-
|
|
10513
|
-
.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {
|
|
10514
|
-
flex-grow: 1;
|
|
10515
|
-
flex-shrink: 1;
|
|
10516
|
-
}
|
|
10517
|
-
|
|
10518
|
-
.jp-Toolbar-item.jp-Toolbar-kernelStatus {
|
|
10519
|
-
display: inline-block;
|
|
10520
|
-
width: 32px;
|
|
10521
|
-
background-repeat: no-repeat;
|
|
10522
|
-
background-position: center;
|
|
10523
|
-
background-size: 16px;
|
|
10524
|
-
}
|
|
10525
|
-
|
|
10526
|
-
.jp-Toolbar > .jp-Toolbar-item {
|
|
10527
|
-
flex: 0 0 auto;
|
|
10528
|
-
display: flex;
|
|
10529
|
-
padding-left: 1px;
|
|
10530
|
-
padding-right: 1px;
|
|
10531
|
-
font-size: var(--jp-ui-font-size1);
|
|
10532
|
-
line-height: var(--jp-private-toolbar-height);
|
|
10533
|
-
height: 100%;
|
|
10534
|
-
}
|
|
10535
|
-
|
|
10536
|
-
/* Toolbar buttons */
|
|
10537
|
-
|
|
10538
|
-
/* This is the div we use to wrap the react component into a Widget */
|
|
10539
|
-
div.jp-ToolbarButton {
|
|
10540
|
-
color: transparent;
|
|
10541
|
-
border: none;
|
|
10542
|
-
box-sizing: border-box;
|
|
10543
|
-
outline: none;
|
|
10544
|
-
appearance: none;
|
|
10545
|
-
-webkit-appearance: none;
|
|
10546
|
-
-moz-appearance: none;
|
|
10547
|
-
padding: 0px;
|
|
10548
|
-
margin: 0px;
|
|
10549
|
-
}
|
|
10550
|
-
|
|
10551
|
-
button.jp-ToolbarButtonComponent {
|
|
10552
|
-
background: var(--jp-layout-color1);
|
|
10553
|
-
border: none;
|
|
10554
|
-
box-sizing: border-box;
|
|
10555
|
-
outline: none;
|
|
10556
|
-
appearance: none;
|
|
10557
|
-
-webkit-appearance: none;
|
|
10558
|
-
-moz-appearance: none;
|
|
10559
|
-
padding: 0px 6px;
|
|
10560
|
-
margin: 0px;
|
|
10561
|
-
height: 24px;
|
|
10562
|
-
border-radius: var(--jp-border-radius);
|
|
10563
|
-
display: flex;
|
|
10564
|
-
align-items: center;
|
|
10565
|
-
text-align: center;
|
|
10566
|
-
font-size: 14px;
|
|
10567
|
-
min-width: unset;
|
|
10568
|
-
min-height: unset;
|
|
10569
|
-
}
|
|
10570
|
-
|
|
10571
|
-
button.jp-ToolbarButtonComponent:disabled {
|
|
10572
|
-
opacity: 0.4;
|
|
10573
|
-
}
|
|
10574
|
-
|
|
10575
|
-
button.jp-ToolbarButtonComponent span {
|
|
10576
|
-
padding: 0px;
|
|
10577
|
-
flex: 0 0 auto;
|
|
10578
|
-
}
|
|
10579
|
-
|
|
10580
|
-
button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
|
|
10581
|
-
font-size: var(--jp-ui-font-size1);
|
|
10582
|
-
line-height: 100%;
|
|
10583
|
-
padding-left: 2px;
|
|
10584
|
-
color: var(--jp-ui-font-color1);
|
|
10585
|
-
}
|
|
10586
|
-
|
|
10587
|
-
#jp-main-dock-panel[data-mode='single-document']
|
|
10588
|
-
.jp-MainAreaWidget
|
|
10589
|
-
> .jp-Toolbar.jp-Toolbar-micro {
|
|
10590
|
-
padding: 0;
|
|
10591
|
-
min-height: 0;
|
|
10592
|
-
}
|
|
10593
|
-
|
|
10594
|
-
#jp-main-dock-panel[data-mode='single-document']
|
|
10595
|
-
.jp-MainAreaWidget
|
|
10596
|
-
> .jp-Toolbar {
|
|
10597
|
-
border: none;
|
|
10598
|
-
box-shadow: none;
|
|
10599
|
-
}
|
|
10600
|
-
|
|
10601
|
-
/*-----------------------------------------------------------------------------
|
|
10602
|
-
| Copyright (c) Jupyter Development Team.
|
|
10603
|
-
| Distributed under the terms of the Modified BSD License.
|
|
10604
|
-
|----------------------------------------------------------------------------*/
|
|
10605
|
-
|
|
10606
|
-
/* Sibling imports */
|
|
10607
|
-
|
|
10608
|
-
/* Override Blueprint's _reset.scss styles */
|
|
10609
|
-
html {
|
|
10610
|
-
box-sizing: unset;
|
|
10248
|
+
/* Sibling imports */
|
|
10249
|
+
|
|
10250
|
+
/* Override Blueprint's _reset.scss styles */
|
|
10251
|
+
html {
|
|
10252
|
+
box-sizing: unset;
|
|
10611
10253
|
}
|
|
10612
10254
|
|
|
10613
10255
|
*,
|
|
@@ -10735,6 +10377,37 @@ select {
|
|
|
10735
10377
|
| Distributed under the terms of the Modified BSD License.
|
|
10736
10378
|
|----------------------------------------------------------------------------*/
|
|
10737
10379
|
|
|
10380
|
+
.jp-Collapse {
|
|
10381
|
+
display: flex;
|
|
10382
|
+
flex-direction: column;
|
|
10383
|
+
align-items: stretch;
|
|
10384
|
+
border-top: 1px solid var(--jp-border-color2);
|
|
10385
|
+
border-bottom: 1px solid var(--jp-border-color2);
|
|
10386
|
+
}
|
|
10387
|
+
|
|
10388
|
+
.jp-Collapse-header {
|
|
10389
|
+
padding: 1px 12px;
|
|
10390
|
+
color: var(--jp-ui-font-color1);
|
|
10391
|
+
background-color: var(--jp-layout-color1);
|
|
10392
|
+
font-size: var(--jp-ui-font-size2);
|
|
10393
|
+
}
|
|
10394
|
+
|
|
10395
|
+
.jp-Collapse-header:hover {
|
|
10396
|
+
background-color: var(--jp-layout-color2);
|
|
10397
|
+
}
|
|
10398
|
+
|
|
10399
|
+
.jp-Collapse-contents {
|
|
10400
|
+
padding: 0px 12px 0px 12px;
|
|
10401
|
+
background-color: var(--jp-layout-color1);
|
|
10402
|
+
color: var(--jp-ui-font-color1);
|
|
10403
|
+
overflow: auto;
|
|
10404
|
+
}
|
|
10405
|
+
|
|
10406
|
+
/*-----------------------------------------------------------------------------
|
|
10407
|
+
| Copyright (c) Jupyter Development Team.
|
|
10408
|
+
| Distributed under the terms of the Modified BSD License.
|
|
10409
|
+
|----------------------------------------------------------------------------*/
|
|
10410
|
+
|
|
10738
10411
|
/*-----------------------------------------------------------------------------
|
|
10739
10412
|
| Variables
|
|
10740
10413
|
|----------------------------------------------------------------------------*/
|
|
@@ -11009,8 +10682,7 @@ select {
|
|
|
11009
10682
|
margin-left: auto;
|
|
11010
10683
|
margin-right: auto;
|
|
11011
10684
|
background: var(--jp-layout-color1);
|
|
11012
|
-
padding: 24px;
|
|
11013
|
-
padding-bottom: 12px;
|
|
10685
|
+
padding: 24px 24px 12px 24px;
|
|
11014
10686
|
min-width: 300px;
|
|
11015
10687
|
min-height: 150px;
|
|
11016
10688
|
max-width: 1000px;
|
|
@@ -11026,6 +10698,10 @@ select {
|
|
|
11026
10698
|
resize: both;
|
|
11027
10699
|
}
|
|
11028
10700
|
|
|
10701
|
+
.jp-Dialog-content.jp-Dialog-content-small {
|
|
10702
|
+
max-width: 500px;
|
|
10703
|
+
}
|
|
10704
|
+
|
|
11029
10705
|
.jp-Dialog-button {
|
|
11030
10706
|
overflow: visible;
|
|
11031
10707
|
}
|
|
@@ -11040,6 +10716,25 @@ button.jp-Dialog-button:focus::-moz-focus-inner {
|
|
|
11040
10716
|
border: 0;
|
|
11041
10717
|
}
|
|
11042
10718
|
|
|
10719
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-accept:focus,
|
|
10720
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-warn:focus,
|
|
10721
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-reject:focus {
|
|
10722
|
+
outline-offset: 4px;
|
|
10723
|
+
-moz-outline-radius: 0px;
|
|
10724
|
+
}
|
|
10725
|
+
|
|
10726
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-accept:focus {
|
|
10727
|
+
outline: 1px solid var(--md-blue-700);
|
|
10728
|
+
}
|
|
10729
|
+
|
|
10730
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-warn:focus {
|
|
10731
|
+
outline: 1px solid var(--md-red-600);
|
|
10732
|
+
}
|
|
10733
|
+
|
|
10734
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-reject:focus {
|
|
10735
|
+
outline: 1px solid var(--md-grey-700);
|
|
10736
|
+
}
|
|
10737
|
+
|
|
11043
10738
|
button.jp-Dialog-close-button {
|
|
11044
10739
|
padding: 0;
|
|
11045
10740
|
height: 100%;
|
|
@@ -11113,6 +10808,40 @@ button.jp-Dialog-close-button {
|
|
|
11113
10808
|
display: none;
|
|
11114
10809
|
}
|
|
11115
10810
|
|
|
10811
|
+
/*-----------------------------------------------------------------------------
|
|
10812
|
+
| Copyright (c) Jupyter Development Team.
|
|
10813
|
+
| Distributed under the terms of the Modified BSD License.
|
|
10814
|
+
|----------------------------------------------------------------------------*/
|
|
10815
|
+
|
|
10816
|
+
.jp-IFrame {
|
|
10817
|
+
width: 100%;
|
|
10818
|
+
height: 100%;
|
|
10819
|
+
}
|
|
10820
|
+
|
|
10821
|
+
.jp-IFrame > iframe {
|
|
10822
|
+
border: none;
|
|
10823
|
+
}
|
|
10824
|
+
|
|
10825
|
+
/*
|
|
10826
|
+
When drag events occur, `p-mod-override-cursor` is added to the body.
|
|
10827
|
+
Because iframes steal all cursor events, the following two rules are necessary
|
|
10828
|
+
to suppress pointer events while resize drags are occurring. There may be a
|
|
10829
|
+
better solution to this problem.
|
|
10830
|
+
*/
|
|
10831
|
+
body.lm-mod-override-cursor .jp-IFrame {
|
|
10832
|
+
position: relative;
|
|
10833
|
+
}
|
|
10834
|
+
|
|
10835
|
+
body.lm-mod-override-cursor .jp-IFrame:before {
|
|
10836
|
+
content: '';
|
|
10837
|
+
position: absolute;
|
|
10838
|
+
top: 0;
|
|
10839
|
+
left: 0;
|
|
10840
|
+
right: 0;
|
|
10841
|
+
bottom: 0;
|
|
10842
|
+
background: transparent;
|
|
10843
|
+
}
|
|
10844
|
+
|
|
11116
10845
|
.jp-Input-Boolean-Dialog {
|
|
11117
10846
|
flex-direction: row-reverse;
|
|
11118
10847
|
align-items: end;
|
|
@@ -11428,6 +11157,304 @@ button.jp-Dialog-close-button {
|
|
|
11428
11157
|
--md-blue-grey-900: #263238;
|
|
11429
11158
|
}
|
|
11430
11159
|
|
|
11160
|
+
/*-----------------------------------------------------------------------------
|
|
11161
|
+
| Copyright (c) 2017, Jupyter Development Team.
|
|
11162
|
+
|
|
|
11163
|
+
| Distributed under the terms of the Modified BSD License.
|
|
11164
|
+
|----------------------------------------------------------------------------*/
|
|
11165
|
+
|
|
11166
|
+
.jp-Spinner {
|
|
11167
|
+
position: absolute;
|
|
11168
|
+
display: flex;
|
|
11169
|
+
justify-content: center;
|
|
11170
|
+
align-items: center;
|
|
11171
|
+
z-index: 10;
|
|
11172
|
+
left: 0;
|
|
11173
|
+
top: 0;
|
|
11174
|
+
width: 100%;
|
|
11175
|
+
height: 100%;
|
|
11176
|
+
background: var(--jp-layout-color0);
|
|
11177
|
+
outline: none;
|
|
11178
|
+
}
|
|
11179
|
+
|
|
11180
|
+
.jp-SpinnerContent {
|
|
11181
|
+
font-size: 10px;
|
|
11182
|
+
margin: 50px auto;
|
|
11183
|
+
text-indent: -9999em;
|
|
11184
|
+
width: 3em;
|
|
11185
|
+
height: 3em;
|
|
11186
|
+
border-radius: 50%;
|
|
11187
|
+
background: var(--jp-brand-color3);
|
|
11188
|
+
background: linear-gradient(
|
|
11189
|
+
to right,
|
|
11190
|
+
#f37626 10%,
|
|
11191
|
+
rgba(255, 255, 255, 0) 42%
|
|
11192
|
+
);
|
|
11193
|
+
position: relative;
|
|
11194
|
+
animation: load3 1s infinite linear, fadeIn 1s;
|
|
11195
|
+
}
|
|
11196
|
+
|
|
11197
|
+
.jp-SpinnerContent:before {
|
|
11198
|
+
width: 50%;
|
|
11199
|
+
height: 50%;
|
|
11200
|
+
background: #f37626;
|
|
11201
|
+
border-radius: 100% 0 0 0;
|
|
11202
|
+
position: absolute;
|
|
11203
|
+
top: 0;
|
|
11204
|
+
left: 0;
|
|
11205
|
+
content: '';
|
|
11206
|
+
}
|
|
11207
|
+
|
|
11208
|
+
.jp-SpinnerContent:after {
|
|
11209
|
+
background: var(--jp-layout-color0);
|
|
11210
|
+
width: 75%;
|
|
11211
|
+
height: 75%;
|
|
11212
|
+
border-radius: 50%;
|
|
11213
|
+
content: '';
|
|
11214
|
+
margin: auto;
|
|
11215
|
+
position: absolute;
|
|
11216
|
+
top: 0;
|
|
11217
|
+
left: 0;
|
|
11218
|
+
bottom: 0;
|
|
11219
|
+
right: 0;
|
|
11220
|
+
}
|
|
11221
|
+
|
|
11222
|
+
@keyframes fadeIn {
|
|
11223
|
+
0% {
|
|
11224
|
+
opacity: 0;
|
|
11225
|
+
}
|
|
11226
|
+
100% {
|
|
11227
|
+
opacity: 1;
|
|
11228
|
+
}
|
|
11229
|
+
}
|
|
11230
|
+
|
|
11231
|
+
@keyframes load3 {
|
|
11232
|
+
0% {
|
|
11233
|
+
transform: rotate(0deg);
|
|
11234
|
+
}
|
|
11235
|
+
100% {
|
|
11236
|
+
transform: rotate(360deg);
|
|
11237
|
+
}
|
|
11238
|
+
}
|
|
11239
|
+
|
|
11240
|
+
/*-----------------------------------------------------------------------------
|
|
11241
|
+
| Copyright (c) 2014-2017, Jupyter Development Team.
|
|
11242
|
+
|
|
|
11243
|
+
| Distributed under the terms of the Modified BSD License.
|
|
11244
|
+
|----------------------------------------------------------------------------*/
|
|
11245
|
+
|
|
11246
|
+
button.jp-mod-styled {
|
|
11247
|
+
font-size: var(--jp-ui-font-size1);
|
|
11248
|
+
color: var(--jp-ui-font-color0);
|
|
11249
|
+
border: none;
|
|
11250
|
+
box-sizing: border-box;
|
|
11251
|
+
text-align: center;
|
|
11252
|
+
line-height: 32px;
|
|
11253
|
+
height: 32px;
|
|
11254
|
+
padding: 0px 12px;
|
|
11255
|
+
letter-spacing: 0.8px;
|
|
11256
|
+
outline: none;
|
|
11257
|
+
appearance: none;
|
|
11258
|
+
-webkit-appearance: none;
|
|
11259
|
+
-moz-appearance: none;
|
|
11260
|
+
}
|
|
11261
|
+
|
|
11262
|
+
input.jp-mod-styled {
|
|
11263
|
+
background: var(--jp-input-background);
|
|
11264
|
+
height: 28px;
|
|
11265
|
+
box-sizing: border-box;
|
|
11266
|
+
border: var(--jp-border-width) solid var(--jp-border-color1);
|
|
11267
|
+
padding-left: 7px;
|
|
11268
|
+
padding-right: 7px;
|
|
11269
|
+
font-size: var(--jp-ui-font-size2);
|
|
11270
|
+
color: var(--jp-ui-font-color0);
|
|
11271
|
+
outline: none;
|
|
11272
|
+
appearance: none;
|
|
11273
|
+
-webkit-appearance: none;
|
|
11274
|
+
-moz-appearance: none;
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
input[type='checkbox'].jp-mod-styled {
|
|
11278
|
+
appearance: checkbox;
|
|
11279
|
+
-webkit-appearance: checkbox;
|
|
11280
|
+
-moz-appearance: checkbox;
|
|
11281
|
+
height: auto;
|
|
11282
|
+
}
|
|
11283
|
+
|
|
11284
|
+
input.jp-mod-styled:focus {
|
|
11285
|
+
border: var(--jp-border-width) solid var(--md-blue-500);
|
|
11286
|
+
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
11287
|
+
}
|
|
11288
|
+
|
|
11289
|
+
.jp-FileDialog-Checkbox {
|
|
11290
|
+
margin-top: 35px;
|
|
11291
|
+
display: flex;
|
|
11292
|
+
flex-direction: row;
|
|
11293
|
+
align-items: end;
|
|
11294
|
+
width: 100%;
|
|
11295
|
+
}
|
|
11296
|
+
|
|
11297
|
+
.jp-FileDialog-Checkbox > label {
|
|
11298
|
+
flex: 1 1 auto;
|
|
11299
|
+
}
|
|
11300
|
+
|
|
11301
|
+
.jp-select-wrapper {
|
|
11302
|
+
display: flex;
|
|
11303
|
+
position: relative;
|
|
11304
|
+
flex-direction: column;
|
|
11305
|
+
padding: 1px;
|
|
11306
|
+
background-color: var(--jp-layout-color1);
|
|
11307
|
+
height: 28px;
|
|
11308
|
+
box-sizing: border-box;
|
|
11309
|
+
margin-bottom: 12px;
|
|
11310
|
+
}
|
|
11311
|
+
|
|
11312
|
+
.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {
|
|
11313
|
+
border: var(--jp-border-width) solid var(--jp-input-active-border-color);
|
|
11314
|
+
box-shadow: var(--jp-input-box-shadow);
|
|
11315
|
+
background-color: var(--jp-input-active-background);
|
|
11316
|
+
}
|
|
11317
|
+
|
|
11318
|
+
select.jp-mod-styled:hover {
|
|
11319
|
+
background-color: var(--jp-layout-color1);
|
|
11320
|
+
cursor: pointer;
|
|
11321
|
+
color: var(--jp-ui-font-color0);
|
|
11322
|
+
background-color: var(--jp-input-hover-background);
|
|
11323
|
+
box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
|
|
11324
|
+
}
|
|
11325
|
+
|
|
11326
|
+
select.jp-mod-styled {
|
|
11327
|
+
flex: 1 1 auto;
|
|
11328
|
+
height: 32px;
|
|
11329
|
+
width: 100%;
|
|
11330
|
+
font-size: var(--jp-ui-font-size2);
|
|
11331
|
+
background: var(--jp-input-background);
|
|
11332
|
+
color: var(--jp-ui-font-color0);
|
|
11333
|
+
padding: 0 25px 0 8px;
|
|
11334
|
+
border: var(--jp-border-width) solid var(--jp-input-border-color);
|
|
11335
|
+
border-radius: 0px;
|
|
11336
|
+
outline: none;
|
|
11337
|
+
appearance: none;
|
|
11338
|
+
-webkit-appearance: none;
|
|
11339
|
+
-moz-appearance: none;
|
|
11340
|
+
}
|
|
11341
|
+
|
|
11342
|
+
/*-----------------------------------------------------------------------------
|
|
11343
|
+
| Copyright (c) 2014-2016, Jupyter Development Team.
|
|
11344
|
+
|
|
|
11345
|
+
| Distributed under the terms of the Modified BSD License.
|
|
11346
|
+
|----------------------------------------------------------------------------*/
|
|
11347
|
+
|
|
11348
|
+
:root {
|
|
11349
|
+
--jp-private-toolbar-height: calc(
|
|
11350
|
+
28px + var(--jp-border-width)
|
|
11351
|
+
); /* leave 28px for content */
|
|
11352
|
+
}
|
|
11353
|
+
|
|
11354
|
+
.jp-Toolbar {
|
|
11355
|
+
color: var(--jp-ui-font-color1);
|
|
11356
|
+
flex: 0 0 auto;
|
|
11357
|
+
display: flex;
|
|
11358
|
+
flex-direction: row;
|
|
11359
|
+
border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
|
|
11360
|
+
box-shadow: var(--jp-toolbar-box-shadow);
|
|
11361
|
+
background: var(--jp-toolbar-background);
|
|
11362
|
+
min-height: var(--jp-toolbar-micro-height);
|
|
11363
|
+
padding: 2px;
|
|
11364
|
+
z-index: 1;
|
|
11365
|
+
overflow-x: hidden;
|
|
11366
|
+
}
|
|
11367
|
+
|
|
11368
|
+
/* Toolbar items */
|
|
11369
|
+
|
|
11370
|
+
.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {
|
|
11371
|
+
flex-grow: 1;
|
|
11372
|
+
flex-shrink: 1;
|
|
11373
|
+
}
|
|
11374
|
+
|
|
11375
|
+
.jp-Toolbar-item.jp-Toolbar-kernelStatus {
|
|
11376
|
+
display: inline-block;
|
|
11377
|
+
width: 32px;
|
|
11378
|
+
background-repeat: no-repeat;
|
|
11379
|
+
background-position: center;
|
|
11380
|
+
background-size: 16px;
|
|
11381
|
+
}
|
|
11382
|
+
|
|
11383
|
+
.jp-Toolbar > .jp-Toolbar-item {
|
|
11384
|
+
flex: 0 0 auto;
|
|
11385
|
+
display: flex;
|
|
11386
|
+
padding-left: 1px;
|
|
11387
|
+
padding-right: 1px;
|
|
11388
|
+
font-size: var(--jp-ui-font-size1);
|
|
11389
|
+
line-height: var(--jp-private-toolbar-height);
|
|
11390
|
+
height: 100%;
|
|
11391
|
+
}
|
|
11392
|
+
|
|
11393
|
+
/* Toolbar buttons */
|
|
11394
|
+
|
|
11395
|
+
/* This is the div we use to wrap the react component into a Widget */
|
|
11396
|
+
div.jp-ToolbarButton {
|
|
11397
|
+
color: transparent;
|
|
11398
|
+
border: none;
|
|
11399
|
+
box-sizing: border-box;
|
|
11400
|
+
outline: none;
|
|
11401
|
+
appearance: none;
|
|
11402
|
+
-webkit-appearance: none;
|
|
11403
|
+
-moz-appearance: none;
|
|
11404
|
+
padding: 0px;
|
|
11405
|
+
margin: 0px;
|
|
11406
|
+
}
|
|
11407
|
+
|
|
11408
|
+
button.jp-ToolbarButtonComponent {
|
|
11409
|
+
background: var(--jp-layout-color1);
|
|
11410
|
+
border: none;
|
|
11411
|
+
box-sizing: border-box;
|
|
11412
|
+
outline: none;
|
|
11413
|
+
appearance: none;
|
|
11414
|
+
-webkit-appearance: none;
|
|
11415
|
+
-moz-appearance: none;
|
|
11416
|
+
padding: 0px 6px;
|
|
11417
|
+
margin: 0px;
|
|
11418
|
+
height: 24px;
|
|
11419
|
+
border-radius: var(--jp-border-radius);
|
|
11420
|
+
display: flex;
|
|
11421
|
+
align-items: center;
|
|
11422
|
+
text-align: center;
|
|
11423
|
+
font-size: 14px;
|
|
11424
|
+
min-width: unset;
|
|
11425
|
+
min-height: unset;
|
|
11426
|
+
}
|
|
11427
|
+
|
|
11428
|
+
button.jp-ToolbarButtonComponent:disabled {
|
|
11429
|
+
opacity: 0.4;
|
|
11430
|
+
}
|
|
11431
|
+
|
|
11432
|
+
button.jp-ToolbarButtonComponent span {
|
|
11433
|
+
padding: 0px;
|
|
11434
|
+
flex: 0 0 auto;
|
|
11435
|
+
}
|
|
11436
|
+
|
|
11437
|
+
button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
|
|
11438
|
+
font-size: var(--jp-ui-font-size1);
|
|
11439
|
+
line-height: 100%;
|
|
11440
|
+
padding-left: 2px;
|
|
11441
|
+
color: var(--jp-ui-font-color1);
|
|
11442
|
+
}
|
|
11443
|
+
|
|
11444
|
+
#jp-main-dock-panel[data-mode='single-document']
|
|
11445
|
+
.jp-MainAreaWidget
|
|
11446
|
+
> .jp-Toolbar.jp-Toolbar-micro {
|
|
11447
|
+
padding: 0;
|
|
11448
|
+
min-height: 0;
|
|
11449
|
+
}
|
|
11450
|
+
|
|
11451
|
+
#jp-main-dock-panel[data-mode='single-document']
|
|
11452
|
+
.jp-MainAreaWidget
|
|
11453
|
+
> .jp-Toolbar {
|
|
11454
|
+
border: none;
|
|
11455
|
+
box-shadow: none;
|
|
11456
|
+
}
|
|
11457
|
+
|
|
11431
11458
|
/*-----------------------------------------------------------------------------
|
|
11432
11459
|
| Copyright (c) 2014-2017, Jupyter Development Team.
|
|
11433
11460
|
|
|
|
@@ -13539,11 +13566,28 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13539
13566
|
|
|
13540
13567
|
.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {
|
|
13541
13568
|
overflow-y: auto;
|
|
13542
|
-
max-height:
|
|
13543
|
-
box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
|
|
13569
|
+
max-height: 24em;
|
|
13544
13570
|
margin-left: var(--jp-private-cell-scrolling-output-offset);
|
|
13545
13571
|
}
|
|
13546
13572
|
|
|
13573
|
+
.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea::after {
|
|
13574
|
+
content: ' ';
|
|
13575
|
+
box-shadow: inset 0 0 6px 2px rgb(0 0 0 / 30%);
|
|
13576
|
+
width: 100%;
|
|
13577
|
+
height: 100%;
|
|
13578
|
+
position: sticky;
|
|
13579
|
+
bottom: 0;
|
|
13580
|
+
top: 0;
|
|
13581
|
+
margin-top: -50%;
|
|
13582
|
+
float: left;
|
|
13583
|
+
display: block;
|
|
13584
|
+
pointer-events: none;
|
|
13585
|
+
}
|
|
13586
|
+
|
|
13587
|
+
.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-child {
|
|
13588
|
+
padding-top: 6px;
|
|
13589
|
+
}
|
|
13590
|
+
|
|
13547
13591
|
.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {
|
|
13548
13592
|
flex: 0 0
|
|
13549
13593
|
calc(
|
|
@@ -13964,6 +14008,13 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13964
14008
|
--jp-side-by-side-resized-cell: var(--jp-side-by-side-output-size);
|
|
13965
14009
|
}
|
|
13966
14010
|
|
|
14011
|
+
.jp-mod-sideBySide.jp-Notebook .jp-Notebook-cell {
|
|
14012
|
+
margin-top: 3em;
|
|
14013
|
+
margin-bottom: 3em;
|
|
14014
|
+
margin-left: 5%;
|
|
14015
|
+
margin-right: 5%;
|
|
14016
|
+
}
|
|
14017
|
+
|
|
13967
14018
|
.jp-mod-sideBySide.jp-Notebook .jp-CodeCell {
|
|
13968
14019
|
display: grid;
|
|
13969
14020
|
grid-template-columns: minmax(0, 1fr) min-content minmax(
|