From 8012bef3931221133d656c22399c4c8ec582e52e Mon Sep 17 00:00:00 2001 From: Alex Bitney Date: Sun, 7 Feb 2016 21:54:55 +0200 Subject: fixed tags display --- src/main/resources/templates/parts/post_form.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/main') diff --git a/src/main/resources/templates/parts/post_form.html b/src/main/resources/templates/parts/post_form.html index a5b9f032..c81152c7 100644 --- a/src/main/resources/templates/parts/post_form.html +++ b/src/main/resources/templates/parts/post_form.html @@ -11,8 +11,8 @@
-
- +
+ sample
@@ -45,16 +45,17 @@ }, 50) }; item.onmouseover = function() { - item.style.fontStyle = "bold"; - item.style.backgroundColor = "#2ba4e3"; + item.style.textDecoration = "underline"; + //item.style.backgroundColor = "#2ba4e3"; }; item.onmouseout = function() { - item.style.fontStyle = ""; - item.style.backgroundColor = template.style.backgroundColor; + item.style.textDecoration = ""; + //item.style.backgroundColor = template.style.backgroundColor; }; }; q(nextItem); mtags.appendChild(nextItem); + mtags.appendChild(document.createTextNode(" ")); } }); newmessage_toggleOpen = function() {} -- cgit v1.2.3