browsers without javascript can also vote now, opens a new window... but at least it's the same window every time. (thanks blackbart)
padding around "+" and "-" made larger so that it's easier to click. (thanks blackbart)
This commit is contained in:
parent
85e41c8c79
commit
2157b47737
10
Changelog
Normal file
10
Changelog
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
10-15-04
|
||||||
|
* browsers without javascript can also vote now,
|
||||||
|
opens a new window... but at least it's the
|
||||||
|
same window every time. (thanks blackbart)
|
||||||
|
|
||||||
|
* padding around "+" and "-" made larger so that
|
||||||
|
it's easier to click. (thanks blackbart)
|
||||||
|
|
||||||
|
10-14-04
|
||||||
|
* inital release
|
@ -2,9 +2,17 @@
|
|||||||
<div class="quote-header">
|
<div class="quote-header">
|
||||||
<span><a href="?action=show&id=${KWOTE_ID}">#${KWOTE_ID}</a></span>
|
<span><a href="?action=show&id=${KWOTE_ID}">#${KWOTE_ID}</a></span>
|
||||||
<span class="vote-controls">
|
<span class="vote-controls">
|
||||||
<a href="javascript:vote(${KWOTE_ID},'hate');" id="hate${KWOTE_ID}">-</a>
|
<a href="?action=hate&kid=${KWOTE_ID}"
|
||||||
|
onclick="vote(${KWOTE_ID},'hate'); return false;"
|
||||||
|
id="hate${KWOTE_ID}"
|
||||||
|
target="kwotevote"
|
||||||
|
>-</a>
|
||||||
<span id="rating${KWOTE_ID}">${KWOTE_RATING}</span>
|
<span id="rating${KWOTE_ID}">${KWOTE_RATING}</span>
|
||||||
<a href="javascript:vote(${KWOTE_ID},'love');" id="love${KWOTE_ID}">+</a>
|
<a href="?action=love&kid=${KWOTE_ID}"
|
||||||
|
onclick="vote(${KWOTE_ID},'love'); return false"
|
||||||
|
id="love${KWOTE_ID}"
|
||||||
|
target="kwotevote"
|
||||||
|
>+</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="quote-content">
|
<div class="quote-content">
|
||||||
|
@ -72,6 +72,12 @@ a:hover, a:active
|
|||||||
right: 0px;
|
right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make those little - + signs easier to click */
|
||||||
|
.vote-controls a
|
||||||
|
{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
.quote-content
|
.quote-content
|
||||||
{
|
{
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
Loading…
Reference in New Issue
Block a user