diff options
author | Alex Bitney | 2016-02-07 21:54:55 +0200 |
---|---|---|
committer | Alex Bitney | 2016-02-07 21:54:55 +0200 |
commit | 45b3e65ac62a030f997a4cc5131c424e643d7722 (patch) | |
tree | 7d1344129cb017f92ee1b74af036b3710bb6a427 /src/main/resources/templates/parts | |
parent | fce485dcdd3918f1319979505002a156a8b3dd07 (diff) |
fixed tags display
Diffstat (limited to 'src/main/resources/templates/parts')
-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() {} |