diff options
Diffstat (limited to 'src/main/resources/templates/parts/post_form.html')
-rw-r--r-- | src/main/resources/templates/parts/post_form.html | 13 |
1 files changed, 7 insertions, 6 deletions
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 @@ <input type="text" class="tags" name="tags" id="post_tags"/><br/> <input type="submit" class="subm" value="Отправить"/> </div> - <div id="newmessage_tags" style="padding-top: 10pt"> - <span style="display: none; border: 1px solid black; background-color: #1277aa; color: white; padding: 2pt 2pt; font-size: 9pt; margin: 2pt 2pt"> + <div id="newmessage_tags" style="padding-top: 10pt; line-height: 170%;"> + <span style="display: none; background-color: #ddddd5; color: black; padding: 4pt; font-size: 9pt; cursor: pointer"> sample </span> </div> @@ -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() {} |