Skip to content
This repository has been archived by the owner on May 28, 2019. It is now read-only.

Commit

Permalink
Merge branch 'refs/heads/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kelly committed May 10, 2012
2 parents 8685a95 + 1c1846d commit 6db5717
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
3 changes: 2 additions & 1 deletion flicks/base/templates/shared/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
{% if page == items.number %}
<span>{{ page }}</span>
{% else %}
<a href="{{ url|urlparams(page=page, limit=limit) }}">{{ page }}</a>
<a href="{{ url|urlparams(page=page, limit=limit, category=request.GET.get('category'),
region=request.GET.get('region'), search=request.GET.get('search')) }}">{{ page }}</a>
{% endif %}
{% endfor %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion flicks/videos/templates/videos/recent.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends 'base.html' %}
{% from 'shared/macros.html' import paginate, display_search_form, search_results, video_item %}
{% from 'shared/macros.html' import paginate, display_search_form, search_results, video_item with context %}

{% if search %}
{% set title=_('Video Search Results') %}
Expand Down
21 changes: 16 additions & 5 deletions media/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ div.field.agreement label a {
.header-wrapper ul {
display: block;
float: left;
width: 480px;
width: 510px;
}

.social-share {
Expand Down Expand Up @@ -320,9 +320,7 @@ ul.user-actions {
}

html[lang="es"] #header,
html[lang="fr"] #header,
html[lang="ja"] #header,
html[lang="pl"] #header,
html[lang="pt-BR"] #header,
html[lang="tr"] #header {
background-image: url('../img/sub-curtains-mid.png');
Expand Down Expand Up @@ -355,12 +353,22 @@ html[lang="tr"] #header {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
html[lang="fr"] #header,
html[lang="pl"] #header,
html[lang="de"] #header,
html[lang="en-US"] #header{
background-image: url('../img/sub-curtains-mid.png');
height: 86px;
}

html[lang="es"] .header-wrapper ul,
html[lang="fr"] .header-wrapper ul,
html[lang="ja"] .header-wrapper ul,
html[lang="pl"] .header-wrapper ul,
html[lang="pt-BR"] .header-wrapper ul,
html[lang="tr"] .header-wrapper ul {
html[lang="tr"] .header-wrapper ul,
html[lang="de"] .header-wrapper ul,
html[lang="en-US"] .header-wrapper ul {
width: 400px;
}

Expand All @@ -373,7 +381,9 @@ html[lang="tr"] #header {
}

.content-wrapper span.title {
width: 300px;
overflow: hidden;
white-space: nowrap;
width: 230px;
}

.recent section .social-share {
Expand Down Expand Up @@ -912,6 +922,7 @@ body.form #footer {
display: block;
float: left;
font-size: 18px;
line-height: 24px;
margin-right: 8px;
text-decoration: none;
text-transform: uppercase;
Expand Down

0 comments on commit 6db5717

Please sign in to comment.