diff --git a/contrib/js/backlink.js b/contrib/js/backlink.js index 702ed8c..efbee50 100644 --- a/contrib/js/backlink.js +++ b/contrib/js/backlink.js @@ -140,7 +140,7 @@ DynReply.prototype.show = function() { console.log("show dynreply"); this.update(); this.elem.style.display = 'inline'; - this.elem.style.position = "absolute"; + this.elem.style.position = "fixed"; this.elem.style.right = "0px"; this.elem.style.top = "25px"; } diff --git a/contrib/static/nntpchan.js b/contrib/static/nntpchan.js index 0a01e9a..f73b929 100644 --- a/contrib/static/nntpchan.js +++ b/contrib/static/nntpchan.js @@ -20,7 +20,7 @@ var elem=document.createElement("div");elem.setAttribute("id","postform_containe elem=document.createElement("input");elem.setAttribute("name","subject");elem.setAttribute("value","");var submit=document.createElement("input");submit.setAttribute("type","submit");submit.setAttribute("value","reply");submit.setAttribute("class","button");table_insert_row(tbody,document.createTextNode("Subject"),[elem,submit]);elem=document.createElement("textarea");elem.setAttribute("id","postform_message");elem.setAttribute("name","message");elem.setAttribute("cols","40");elem.setAttribute("rows","5");table_insert_row(tbody,document.createTextNode("Comment"),[elem]);elem=document.createElement("input");elem.setAttribute("class","postform_attachment");elem.setAttribute("id","postform_attachments");elem.setAttribute("type","file");elem.setAttribute("name","attachment_uploaded");elem.setAttribute("multiple","multiple");table_insert_row(tbody,document.createTextNode("Files"),[elem]);elem=document.createElement("input");elem.setAttribute("type","checkbox");elem.setAttribute("name","dubs");table_insert_row(tbody,document.createTextNode("Get Dubs"),[elem]);elem=document.createElement("img");elem.setAttribute("id","captcha_img");elem.alt="captcha";table_insert_row(tbody,document.createTextNode("Captcha"),[elem]);elem=document.createElement("input");elem.name="captcha";elem.autocomplete="off";table_insert_row(tbody,document.createTextNode("Name"),[elem]) table.appendChild(tbody);this.form.appendChild(table);this.elem.appendChild(this.form);document.body.appendChild(this.elem);this.board=null;this.roothash=null;this.prefix=null;} DynReply.prototype.update=function(){if(this.prefix){this.updateCaptcha();if(this.board&&this.roothash){var ref=document.getElementById("postform_reference");ref.value=this.roothash;this.form.action=this.prefix+"post/"+this.board;}}} -DynReply.prototype.show=function(){console.log("show dynreply");this.update();this.elem.style.display='inline';this.elem.style.position="absolute";this.elem.style.right="0px";this.elem.style.top="25px";} +DynReply.prototype.show=function(){console.log("show dynreply");this.update();this.elem.style.display='inline';this.elem.style.position="fixed";this.elem.style.right="0px";this.elem.style.top="25px";} DynReply.prototype.updateCaptcha=function(){if(this.prefix){var captcha_img=document.getElementById("captcha_img");captcha_img.src=this.prefix+"captcha/img";}} DynReply.prototype.setPrefix=function(prefix){this.prefix=prefix;} DynReply.prototype.hide=function(){this.elem.style.display='none';} diff --git a/contrib/static/site.css b/contrib/static/site.css index 3c84cea..baffe65 100644 --- a/contrib/static/site.css +++ b/contrib/static/site.css @@ -26,7 +26,7 @@ section { padding: 10px; } -.hover > div > .post , .notfound-hover { +.hover > div > .post , .notfound-hover #postform_container { background-color: #D6DAF0; box-shadow: 0 0 10px rgba(0,0,0,0.55); } @@ -109,8 +109,7 @@ table tbody tr:nth-of-type( even ) { padding-left: 4px; } - -#postform_container tr { +tr { background-color: transparent!important; }