Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-03-17 20:00:55 +0300
committerPhil Hughes <me@iamphill.com>2017-03-23 13:52:55 +0300
commit33f26de56bca2c5c2d6a4da29ed2217b8abf1710 (patch)
tree40dbe8be2782c942aa5e83143886051e9052543b /vendor
parentf9ced97a97f5bebec57545fbf611952026bf0d5d (diff)
Loads raw JSON & displays in the component
[ci skip]
Diffstat (limited to 'vendor')
-rw-r--r--vendor/assets/stylesheets/notebooklab.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/assets/stylesheets/notebooklab.css b/vendor/assets/stylesheets/notebooklab.css
new file mode 100644
index 00000000000..0caf729a17f
--- /dev/null
+++ b/vendor/assets/stylesheets/notebooklab.css
@@ -0,0 +1,27 @@
+.cell,
+.input,
+.output {
+ display: flex;
+ width: 100%;
+ margin-bottom: 10px;
+}
+
+.cell:not(.text-cell) {
+ flex-direction: column;
+}
+
+.prompt {
+ padding: 0 10px;
+ min-width: 7em;
+ font-family: monospace;
+}
+
+.cell pre {
+ margin: 0;
+ width: 100%;
+}
+
+.markdown .katex {
+ display: block;
+ text-align: center;
+}