diff options
author | Herbert <github@prinsherbert.nl> | 2017-02-07 22:18:11 +0100 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2017-02-07 16:18:11 -0500 |
commit | 9af0dd23dd6afc9b4103a8aeb17e6eba1c649f6c (patch) | |
tree | 7859855f3bfbdb476b570caa20ff7e4c74f97e1a /public/less | |
parent | 39eb6df769909c91a6a70b8ec1346daf67f54ee6 (diff) |
Ipython notebook support (#4070)
* added marked and notebookjs javascript libraries
* added ipython notebook render support using javascript libraries
* recompiled gogs.css to include ipynb-related css
* removed superflous javascript library files
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 0deef516..249ce3df 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -251,6 +251,95 @@ } } + #ipython-notebook { + margin-left: 80px; + + .nb-notebook { + line-height: 1.5; + } + + .nb-stdout, .nb-stderr { + white-space: pre-wrap; + margin: 1em 0; + padding: 0.1em 0.5em; + } + + .nb-stderr { + background-color: #FAA; + } + + .nb-cell + .nb-cell { + 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; + } + + .nb-raw-cell { + white-space: pre-wrap; + background-color: #f5f2f0; + font-family: Consolas, Monaco, 'Andale Mono', monospace; + padding: 1em; + 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 { + position: absolute; + font-family: monospace; + color: #999; + left: -7.5em; + width: 7em; + text-align: right; + } + + .nb-input:before { + content: "In [" attr(data-prompt-number) "]:"; + } + .nb-output:before { + content: "Out [" attr(data-prompt-number) "]:"; + } + + .nb-markdown-cell { + background-color: #eee; + margin-left: -80px; + padding: 11.5px 10px 19.5px 80px; + } + + // Fix pandas dataframe formatting + div[style="max-height:1000px;max-width:1500px;overflow:auto;"] { + max-height: none !important; + } + } + .plain-text { font-size: 14px; padding: 10px 15px; |