|
@@ -29,6 +29,7 @@
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
.jp-OutputPrompt {
|
|
|
flex: 0 0 var(--jp-cell-prompt-width);
|
|
|
color: var(--jp-cell-outprompt-font-color);
|
|
@@ -48,6 +49,32 @@
|
|
|
flex-shrink: 1;
|
|
|
height: auto;
|
|
|
overflow-x: auto;
|
|
|
+ user-select: text;
|
|
|
+ -moz-user-select: text;
|
|
|
+ -webkit-user-select: text;
|
|
|
+ -ms-user-select: text;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* pre */
|
|
|
+
|
|
|
+.jp-OutputArea-output pre {
|
|
|
+ border: none;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+ overflow-x: auto;
|
|
|
+ overflow-y: auto;
|
|
|
+ word-break: break-all;
|
|
|
+ word-wrap: break-word;
|
|
|
+ white-space: pre-wrap;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* tables */
|
|
|
+
|
|
|
+.jp-OutputArea-output.jp-RenderedHTMLCommon table {
|
|
|
+ margin-left: 0;
|
|
|
+ margin-right: 0;
|
|
|
}
|
|
|
|
|
|
|