From 9f7e3035d13b286238d878a0baa45cb4c1708cee Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 8 Nov 2021 16:19:40 +0300
Subject: Fix URL
---
wqflask/wqflask/templates/base.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'wqflask')
diff --git a/wqflask/wqflask/templates/base.html b/wqflask/wqflask/templates/base.html
index ab8b644f..6e922f24 100644
--- a/wqflask/wqflask/templates/base.html
+++ b/wqflask/wqflask/templates/base.html
@@ -87,7 +87,7 @@
Systems Genetics PheWAS
Genome Browser
BXD Power Calculator
- Jupyter Notebook Launcher
+ Jupyter Notebook Launcher
Interplanetary File System
--
cgit v1.2.3
From 14f3d5da0de60dea8b0a24f68c2e658d92268e3a Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 8 Nov 2021 16:40:22 +0300
Subject: Add some styling for the Jupyter links
---
wqflask/wqflask/static/new/css/jupyter_notebooks.css | 12 ++++++++++++
wqflask/wqflask/templates/jupyter_notebooks.html | 4 ++++
2 files changed, 16 insertions(+)
create mode 100644 wqflask/wqflask/static/new/css/jupyter_notebooks.css
(limited to 'wqflask')
diff --git a/wqflask/wqflask/static/new/css/jupyter_notebooks.css b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
new file mode 100644
index 00000000..b916f03b
--- /dev/null
+++ b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
@@ -0,0 +1,12 @@
+.jupyter-links .main-link:nth-of-type(2n) {
+ background: #EEEEEE;
+}
+
+.jupyter-links .main-link {
+ font-size: larger;
+ display: block;
+}
+
+.jupyter-links .src-link {
+ font-size: smaller;
+}
diff --git a/wqflask/wqflask/templates/jupyter_notebooks.html b/wqflask/wqflask/templates/jupyter_notebooks.html
index 4dce0f27..da250b2a 100644
--- a/wqflask/wqflask/templates/jupyter_notebooks.html
+++ b/wqflask/wqflask/templates/jupyter_notebooks.html
@@ -4,6 +4,10 @@
Jupyter Notebooks
{%endblock%}
+{%block css%}
+
+{%endblock}
+
{%block content%}
--
cgit v1.2.3
From c63d10c565f82413ae8b5e553b1f00485439530a Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 8 Nov 2021 16:43:50 +0300
Subject: Fix syntax error
---
wqflask/wqflask/templates/jupyter_notebooks.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'wqflask')
diff --git a/wqflask/wqflask/templates/jupyter_notebooks.html b/wqflask/wqflask/templates/jupyter_notebooks.html
index da250b2a..afc95a15 100644
--- a/wqflask/wqflask/templates/jupyter_notebooks.html
+++ b/wqflask/wqflask/templates/jupyter_notebooks.html
@@ -6,7 +6,7 @@ Jupyter Notebooks
{%block css%}
-{%endblock}
+{%endblock%}
{%block content%}
--
cgit v1.2.3
From 5a14bbc53dafd7b85c3e903a3dcb2dab87a6fed2 Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 8 Nov 2021 16:45:05 +0300
Subject: Fix styling of divs
---
wqflask/wqflask/static/new/css/jupyter_notebooks.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'wqflask')
diff --git a/wqflask/wqflask/static/new/css/jupyter_notebooks.css b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
index b916f03b..663d1746 100644
--- a/wqflask/wqflask/static/new/css/jupyter_notebooks.css
+++ b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
@@ -1,4 +1,4 @@
-.jupyter-links .main-link:nth-of-type(2n) {
+.jupyter-links:nth-of-type(2n) {
background: #EEEEEE;
}
--
cgit v1.2.3
From a2f2d89a5fbe720d3c1f1ac9655adca8b2ff503d Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 8 Nov 2021 16:48:32 +0300
Subject: Add some padding
---
wqflask/wqflask/static/new/css/jupyter_notebooks.css | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'wqflask')
diff --git a/wqflask/wqflask/static/new/css/jupyter_notebooks.css b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
index 663d1746..db972a17 100644
--- a/wqflask/wqflask/static/new/css/jupyter_notebooks.css
+++ b/wqflask/wqflask/static/new/css/jupyter_notebooks.css
@@ -1,3 +1,7 @@
+.jupyter-links {
+ padding: 1.5em;
+}
+
.jupyter-links:nth-of-type(2n) {
background: #EEEEEE;
}
--
cgit v1.2.3