From 45b3e65ac62a030f997a4cc5131c424e643d7722 Mon Sep 17 00:00:00 2001 From: Alex Bitney Date: Sun, 7 Feb 2016 21:54:55 +0200 Subject: fixed tags display --- deps/com.juick.server | 2 +- src/main/resources/templates/parts/post_form.html | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/deps/com.juick.server b/deps/com.juick.server index 164b17fa..322b18df 160000 --- a/deps/com.juick.server +++ b/deps/com.juick.server @@ -1 +1 @@ -Subproject commit 164b17fa61f049ea1ffab155f3dffd0c7ba9f033 +Subproject commit 322b18df46eb596ac8db8dc6fd6c544ddf69f8f6 diff --git a/src/main/resources/templates/parts/post_form.html b/src/main/resources/templates/parts/post_form.html index 56184f55..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