File tree Expand file tree Collapse file tree 7 files changed +25
-20
lines changed Expand file tree Collapse file tree 7 files changed +25
-20
lines changed Original file line number Diff line number Diff line change @@ -313,10 +313,10 @@ export class InputPrompt extends Widget implements IInputPrompt {
313
313
set executionCount ( value : string | null ) {
314
314
this . _executionCount = value ;
315
315
if ( value === null ) {
316
- this . node . textContent = '>_ ' ;
316
+ this . node . textContent = ' ' ;
317
317
} else {
318
- // this.node.textContent = `[${value || ' '}]:`;
319
- this . node . textContent = '>_' ;
318
+ this . node . textContent = `[${ value || ' ' } ]:` ;
319
+ // this.node.textContent = '>_';
320
320
}
321
321
}
322
322
Original file line number Diff line number Diff line change 29
29
.jp-InputPrompt {
30
30
display : table-cell;
31
31
vertical-align : top;
32
- width : var (--jp-cell-prompt-width );
32
+
33
+ /*width: var(--jp-cell-prompt-width);*/
34
+ width : 100% ;
33
35
color : var (--jp-cell-inprompt-font-color );
34
36
font-family : var (--jp-cell-prompt-font-family );
35
- padding : var (--jp-code-padding );
37
+
38
+ /*padding: var(--jp-code-padding);*/
36
39
letter-spacing : var (--jp-cell-prompt-letter-spacing );
37
40
opacity : var (--jp-cell-prompt-opacity );
38
41
line-height : var (--jp-code-line-height );
39
- font-size : var ( --jp-code-font-size ) ;
42
+ font-size : 11 px ;
40
43
border : var (--jp-border-width ) solid transparent;
41
44
42
45
/* Right align prompt text, don't wrap to handle large prompt numbers */
43
- text-align : right ;
46
+ text-align : left ;
44
47
white-space : nowrap;
45
48
overflow : hidden;
46
49
text-overflow : ellipsis;
Original file line number Diff line number Diff line change 18
18
.jp-Cell {
19
19
padding : var (--jp-cell-padding );
20
20
margin : 0 ;
21
- border : none;
22
21
outline : none;
23
22
background : transparent;
24
23
}
114
113
115
114
.jp-MarkdownOutput {
116
115
/*display: table-cell;*/
117
- width : calc (100% - 64px );
116
+
117
+ /*width: calc(100% - 64px);*/
118
+ width : 100% ;
118
119
margin-top : 0 ;
119
120
margin-bottom : 0 ;
120
- padding : 0 16 px ;
121
+ padding : 10 px 6 px ;
121
122
}
122
123
123
124
.jp-MarkdownOutput .jp-RenderedHTMLCommon {
Original file line number Diff line number Diff line change 39
39
}
40
40
41
41
.jp-Notebook {
42
- padding : 10px 100px 10 px 10 px ;
42
+ padding : 10px 100px ;
43
43
outline : none;
44
44
overflow : auto;
45
45
background : var (--jp-layout-color0 );
Original file line number Diff line number Diff line change @@ -870,10 +870,10 @@ export class OutputPrompt extends Widget implements IOutputPrompt {
870
870
set executionCount ( value : nbformat . ExecutionCount ) {
871
871
this . _executionCount = value ;
872
872
if ( value === null ) {
873
- this . node . textContent = '>_ ' ;
873
+ this . node . textContent = 'Output ' ;
874
874
} else {
875
875
// this.node.textContent = `[${value}]:`;
876
- this . node . textContent = '' ;
876
+ this . node . textContent = 'Output ' ;
877
877
}
878
878
}
879
879
Original file line number Diff line number Diff line change 13
13
}
14
14
15
15
.jp-OutputArea-child {
16
- display : table ;
17
- table-layout : fixed ;
16
+ display : flex ;
17
+ flex-direction : column ;
18
18
width : 100% ;
19
19
overflow : hidden;
20
20
}
25
25
width : var (--jp-cell-prompt-width );
26
26
color : var (--jp-cell-outprompt-font-color );
27
27
font-family : var (--jp-cell-prompt-font-family );
28
- padding : var (--jp-code-padding );
28
+ padding : 4px 0 ;
29
+ margin-bottom : var (--jp-code-padding );
29
30
letter-spacing : var (--jp-cell-prompt-letter-spacing );
30
31
line-height : var (--jp-code-line-height );
31
- font-size : var ( --jp-code-font-size ) ;
32
- border : var (--jp-border-width ) solid transparent ;
32
+ font-size : 11 px ;
33
+ border-bottom : var (--jp-border-width ) solid # e0e0e0 ;
33
34
opacity : var (--jp-cell-prompt-opacity );
3
A83E
4
35
35
36
/* Right align prompt text, don't wrap to handle large prompt numbers */
36
- text-align : right ;
37
+ text-align : left ;
37
38
white-space : nowrap;
38
39
overflow : hidden;
39
40
text-overflow : ellipsis;
Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ h6:hover .jp-InternalAnchorLink {
611
611
* code cells.
612
612
*/
613
613
.jp-RenderedHTMLCommon > * : last-child {
614
- margin-bottom : 0.5 em ;
614
+ margin-bottom : 0 ;
615
615
}
616
616
617
617
.jp-mimeType-highlight {
You can’t perform that action at this time.
0 commit comments