This commit is contained in:
Karen 2011-10-26 01:41:44 +05:30
parent 2a9aab3ef3
commit a0ccbddbb5
3 changed files with 25 additions and 3 deletions

View File

@ -149,7 +149,7 @@ margin-right:6px;
font-weight:bold;}
#contentTab
{padding:6px 18px 10px 6px;
{padding:0px 18px 10px 6px;
clear:both;
height:172px;
overflow:hidden;} /*we may need to do some JAVASCRIPT for this*/

View File

@ -280,6 +280,28 @@ cursor:pointer;
display:block;
}
#prevSearch
{font-size:12px;
color:#f7bd00;
float:left;
margin-bottom: 8px;
cursor:pointer;
font-weight:bold;
text-decoration:none;
margin-top:6px;}
#nextSearch
{font-size:12px;
color:#f7bd00;
cursor:pointer;
font-weight:bold;
float:right;
margin-bottom: 8px;
text-decoration:none;
margin-top:6px;}
#triangleUp
{font-size:12px;
color:#f7bd00;

View File

@ -44,9 +44,9 @@
</form>
{% if page.has_previous or page.has_next %}
<div id="prevNext">
{% if page.has_previous %}<a id="triangleUp" href="?q={{ query }}&amp;page={{ page.previous_page_number }}">Previous</a>{% endif %}
{% if page.has_previous %}<a id="prevSearch" href="?q={{ query }}&amp;page={{ page.previous_page_number }}">Prev</a>{% endif %}
|
{% if page.has_next %}<a id="triangleDown" href="?q={{ query }}&amp;page={{ page.next_page_number }}">Next</a>{% endif %}
{% if page.has_next %}<a id="nextSearch" href="?q={{ query }}&amp;page={{ page.next_page_number }}">Next</a>{% endif %}
</div>
{% endif %}