aboutsummaryrefslogtreecommitdiff
path: root/public/less
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2017-02-07 17:11:46 -0500
committerUnknwon <u@gogs.io>2017-02-07 17:11:46 -0500
commit0d9e435bfeda7aa93da769030a6fb138c4f3a2df (patch)
treeeaa8d199bb9e2e034854564c2ba586784c4ed319 /public/less
parent9af0dd23dd6afc9b4103a8aeb17e6eba1c649f6c (diff)
IPythonNotebook: CSS adjustment for PR #4070
Diffstat (limited to 'public/less')
-rw-r--r--public/less/_repository.less79
1 files changed, 45 insertions, 34 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less
index 249ce3df..d9e1d4e4 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -252,7 +252,8 @@
}
#ipython-notebook {
- margin-left: 80px;
+ margin-left: 95px;
+ padding-top: 1px;
.nb-notebook {
line-height: 1.5;
@@ -272,23 +273,6 @@
margin-top: 0.5em;
}
- .nb-output table {
- border: 1px solid #000;
- border-collapse: collapse;
- }
-
- .nb-output th {
- font-weight: bold;
- }
-
- .nb-output th, .nb-output td {
- border: 1px solid #000;
- padding: 0.25em;
- text-align: left;
- vertical-align: middle;
- border-collapse: collapse;
- }
-
.nb-cell {
position: relative;
}
@@ -301,18 +285,8 @@
margin: .5em 0;
}
- .nb-output {
- min-height: 1em;
- width: 100%;
- overflow-x: scroll;
- border-right: 1px dotted #CCC;
- }
-
- .nb-output img {
- max-width: 100%;
- }
-
- .nb-output:before, .nb-input:before {
+ .nb-input:before,
+ .nb-output:before {
position: absolute;
font-family: monospace;
color: #999;
@@ -320,12 +294,49 @@
width: 7em;
text-align: right;
}
+ .nb-input {
+ &:before {
+ content: "In [" attr(data-prompt-number) "]:";
+ }
+
+ pre {
+ background-color: #f7f7f7;
+ margin-right: 10px;
+ padding: 5px 10px;
- .nb-input:before {
- content: "In [" attr(data-prompt-number) "]:";
+ code {
+ line-height: 18px;
+ font-size: 14px;
+ }
+ }
}
- .nb-output:before {
- content: "Out [" attr(data-prompt-number) "]:";
+ .nb-output{
+ &:before {
+ content: "Out [" attr(data-prompt-number) "]:";
+ }
+
+ pre {
+ padding: 5px 10px;
+ font-size: 14px;
+ }
+ img {
+ max-width: 100%;
+ }
+ table {
+ border: 1px solid #000;
+ border-collapse: collapse;
+ }
+ th {
+ font-weight: bold;
+ }
+ th,
+ td {
+ border: 1px solid #000;
+ padding: 0.25em;
+ text-align: left;
+ vertical-align: middle;
+ border-collapse: collapse;
+ }
}
.nb-markdown-cell {