From bf43469a89bedc81231fba345b2c3c86c2b6424f Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 2 Mar 2019 15:13:24 -0500 Subject: [PATCH 1/3] more --- contrib/static/krane.css | 4 ++++ contrib/templates/placebo/post.mustache | 1 + 2 files changed, 5 insertions(+) diff --git a/contrib/static/krane.css b/contrib/static/krane.css index 405acad..93c449f 100644 --- a/contrib/static/krane.css +++ b/contrib/static/krane.css @@ -550,3 +550,7 @@ background-repeat: repeat; .mod { color: red; } + +.post-link { + float: right; +} diff --git a/contrib/templates/placebo/post.mustache b/contrib/templates/placebo/post.mustache index 5e95a3e..31e760a 100644 --- a/contrib/templates/placebo/post.mustache +++ b/contrib/templates/placebo/post.mustache @@ -57,6 +57,7 @@ var link = document.createElement("a"); link.href = u.toString(); link.innerText = "[Link]"; + link.setAttribute("class", "post-link") e.appendChild(document.createElement("hr")); e.appendChild(link); } From ab6fe44e8d565a6741e96510bc31ca08b7b805b7 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 2 Mar 2019 15:15:00 -0500 Subject: [PATCH 2/3] more --- contrib/static/krane.css | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/static/krane.css b/contrib/static/krane.css index 93c449f..d2ced68 100644 --- a/contrib/static/krane.css +++ b/contrib/static/krane.css @@ -552,5 +552,6 @@ background-repeat: repeat; } .post-link { + font-size: 24pt; float: right; } From 0972f8671412956168a15f66cbee8007004dbeba Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 2 Mar 2019 15:17:47 -0500 Subject: [PATCH 3/3] more --- contrib/templates/placebo/post.mustache | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/templates/placebo/post.mustache b/contrib/templates/placebo/post.mustache index 31e760a..7b3a3d4 100644 --- a/contrib/templates/placebo/post.mustache +++ b/contrib/templates/placebo/post.mustache @@ -57,6 +57,7 @@ var link = document.createElement("a"); link.href = u.toString(); link.innerText = "[Link]"; + link.setAttribute("target", "_blank"); link.setAttribute("class", "post-link") e.appendChild(document.createElement("hr")); e.appendChild(link);