adjust mod report page
This commit is contained in:
parent
9e9c9c509b
commit
ff9b6b51b0
@ -349,7 +349,7 @@ text-align: center;
|
|||||||
border-top: 6px dashed #D49086
|
border-top: 6px dashed #D49086
|
||||||
}
|
}
|
||||||
|
|
||||||
.form_field_input input, .form_field_input textarea {
|
/*.form_field_input input,*/ .form_field_input textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -820,7 +820,7 @@ pre {
|
|||||||
}
|
}
|
||||||
/* desktop resolutions */
|
/* desktop resolutions */
|
||||||
@media screen and (min-width: 960px) {
|
@media screen and (min-width: 960px) {
|
||||||
.container .three.columns { /* this needs to be more specific - inplace for the gallery... */
|
.container .three.columns.media_thumbnail {
|
||||||
width:180px;
|
width:180px;
|
||||||
margin-left:3px;
|
margin-left:3px;
|
||||||
margin-right:3px;
|
margin-right:3px;
|
||||||
@ -828,7 +828,7 @@ pre {
|
|||||||
}
|
}
|
||||||
/* Tablet Portrait size to standard 960 (devices and browsers) */
|
/* Tablet Portrait size to standard 960 (devices and browsers) */
|
||||||
@media only screen and (min-width: 768px) and (max-width: 959px) {
|
@media only screen and (min-width: 768px) and (max-width: 959px) {
|
||||||
.container .three.columns { /* this needs to be more specific - inplace for the gallery... */
|
.container .three.columns.media_thumbnail {
|
||||||
width:147px;
|
width:147px;
|
||||||
margin-left:2px;
|
margin-left:2px;
|
||||||
margin-right:2px;
|
margin-right:2px;
|
||||||
|
@ -26,10 +26,12 @@
|
|||||||
{% if not report %}
|
{% if not report %}
|
||||||
{% trans %}Sorry, no such report found.{% endtrans %}
|
{% trans %}Sorry, no such report found.{% endtrans %}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
<div class="row">
|
||||||
<a href="{{ request.urlgen('mediagoblin.moderation.reports') }}"
|
<a href="{{ request.urlgen('mediagoblin.moderation.reports') }}"
|
||||||
class="return_to_panel button_action"
|
class="return_to_panel button_action"
|
||||||
title="Return to Reports Panel">
|
title="Return to Reports Panel">
|
||||||
{% trans %}Return to Reports Panel{% endtrans %}</a>
|
{% trans %}Return to Reports Panel{% endtrans %}</a>
|
||||||
|
</div>
|
||||||
<h2>{% trans %}Report{% endtrans %} #{{ report.id }}</h2>
|
<h2>{% trans %}Report{% endtrans %} #{{ report.id }}</h2>
|
||||||
{% if report.is_comment_report() and report.comment %}
|
{% if report.is_comment_report() and report.comment %}
|
||||||
|
|
||||||
@ -66,7 +68,7 @@
|
|||||||
{% elif report.is_media_entry_report() and report.media_entry %}
|
{% elif report.is_media_entry_report() and report.media_entry %}
|
||||||
|
|
||||||
{% set media_entry = report.media_entry %}
|
{% set media_entry = report.media_entry %}
|
||||||
<div class="media_thumbnail">
|
<div class="three columns media_thumbnail">
|
||||||
<a href="{{ request.urlgen('mediagoblin.user_pages.media_home',
|
<a href="{{ request.urlgen('mediagoblin.user_pages.media_home',
|
||||||
user=media_entry.get_uploader.username,
|
user=media_entry.get_uploader.username,
|
||||||
media=media_entry.slug_or_id) }}">
|
media=media_entry.slug_or_id) }}">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user