all repos — honk @ 70668331f1b95a22027230a81ed971866afa1b39

my fork of honk

move the reply form into the to be replied post
Ted Unangst tedu@tedunangst.com
Sat, 06 Jul 2019 13:48:31 -0400
commit

70668331f1b95a22027230a81ed971866afa1b39

parent

92c1056a9c1db7f4a8c87578a3dad97d675d5365

3 files changed, 24 insertions(+), 12 deletions(-)

jump to
M views/honk.htmlviews/honk.html

@@ -68,7 +68,7 @@ <button onclick="bonk(this, '{{ .Honk.XID }}');">bonk</button>

{{ else }} <button disabled>nope</button> {{ end }} -<button onclick="showhonkform('{{ .Honk.XID }}', '{{ .Honk.Handle }}');">tonk</button> +<button onclick="showhonkform(this, '{{ .Honk.XID }}', '{{ .Honk.Handle }}');">tonk</button> <button onclick="muteit(this, '{{ .Honk.Convoy }}');">mute</button> <button onclick="zonkit(this, '{{ .Honk.XID }}');">zonk</button> </div>
M views/honkform.htmlviews/honkform.html

@@ -1,4 +1,4 @@

-<p> +<p id="honkformhost"> <button onclick="showhonkform(); return false"><a href="/newhonk">it's honking time</a></button> <form id="honkform" action="/honk" method="POST" enctype="multipart/form-data" style="display: none"> <p>

@@ -13,16 +13,23 @@ <input type="submit" value="it's gonna be honked">

<input type="submit" name="preview" value="preview"> </form> <script> -function showhonkform(rid, hname) { +function showhonkform(elem, rid, hname) { var form = document.getElementById("honkform") form.style = "display: block" + if (elem) { + form.remove() + elem.parentElement.insertAdjacentElement('beforebegin', form) + } else { + elem = document.getElementById("honkformhost") + elem.insertAdjacentElement('afterend', form) + } var ridinput = document.getElementById("ridinput") var honknoise = document.getElementById("honknoise") if (rid) { ridinput.value = rid honknoise.value = "@" + hname + " " } - document.getElementById("infobox").scrollIntoView() + //document.getElementById("infobox").scrollIntoView() } function updatedonker() { var el = document.getElementById("donker")
M views/style.cssviews/style.css

@@ -65,7 +65,7 @@ .info div {

margin-top 1em; margin-bottom: 1em; } -.info label, button, form input[type=submit], select { +label, button, form input[type=submit], select { font-size: 16px; font-family: monospace; color: #dde;

@@ -76,10 +76,10 @@ }

button a { text-decoration: none; } -.info form { +form { margin-top: 1em; } -.info textarea { +textarea { padding: 0.5em; font-size: 1em; background: #305;

@@ -90,20 +90,20 @@ margin-bottom: 0.5em;

box-sizing: border-box; max-width: 100%; } -.info input[type="checkbox"] { +input[type="checkbox"] { position: fixed; top: -9999px; } -.info input[type="checkbox"] + span:after { +input[type="checkbox"] + span:after { content: "no"; } -.info input[type="checkbox"]:checked + span:after { +input[type="checkbox"]:checked + span:after { content: "yes"; } -.info input[type="checkbox"]:focus + span:after { +input[type="checkbox"]:focus + span:after { outline: 1px solid #dde; } -.info input[type=file] { +input[type=file] { display: none; }

@@ -118,6 +118,11 @@ padding-left: 1em;

padding-right: 1em; padding-top: 0; } +.honk form { + padding: 1em; + border: 1px solid #dde; +} + .honk a { color: #dde; }