mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
Merge branch '3.3.x'
This commit is contained in:
@@ -34,7 +34,9 @@
|
||||
{% for recipient in to_recipient %}
|
||||
<li>
|
||||
{% if not S_EDIT_POST %}
|
||||
<input type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]" value="x" class="button1 button button-form-bold">
|
||||
<button type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]">
|
||||
{{ Icon('font', 'xmark', lang('REMOVE'), true, 'c-warning-icon') }}
|
||||
</button>
|
||||
{% endif %}
|
||||
{% if recipient.IS_GROUP %}
|
||||
<a href="{{ recipient.U_VIEW }}" style="color: {{ recipient.COLOUR }}"><strong>{{ recipient.NAME }}</strong></a>
|
||||
@@ -57,7 +59,9 @@
|
||||
{% for recipient in bcc_recipient %}
|
||||
<li>
|
||||
{% if not S_EDIT_POST %}
|
||||
<input type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]" value="x" class="button1 button button-form-bold">
|
||||
<button type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]">
|
||||
{{ Icon('font', 'xmark', lang('REMOVE'), true, 'c-warning-icon') }}
|
||||
</button>
|
||||
{% endif %}
|
||||
{% if recipient.IS_GROUP %}
|
||||
<a href="{{ recipient.U_VIEW }}" style="color: {{ recipient.COLOUR }}"><strong>{{ recipient.NAME }}</strong></a>
|
||||
@@ -90,14 +94,16 @@
|
||||
<ul class="recipients">
|
||||
{% for recipient in to_recipient %}
|
||||
<li>
|
||||
{% if not S_EDIT_POST %}
|
||||
<button type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]">
|
||||
{{ Icon('font', 'xmark', lang('REMOVE'), true, 'c-warning-icon') }}
|
||||
</button>
|
||||
{% endif %}
|
||||
{% if recipient.IS_GROUP %}
|
||||
<a href="{{ recipient.U_VIEW }}"><strong>{{ recipient.NAME }}</strong></a>
|
||||
{% else %}
|
||||
{{ recipient.NAME_FULL }}
|
||||
{% endif %}
|
||||
{% if not S_EDIT_POST %}
|
||||
<input type="submit" name="remove_{{ recipient.TYPE }}[{{ recipient.UG_ID }}]" value="x" class="button1 button button-form-bold">
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
@@ -867,12 +867,6 @@ fieldset.fields1 dd.recipients {
|
||||
margin-left: 11px;
|
||||
}
|
||||
|
||||
fieldset.fields1 ul.recipients input.button2 {
|
||||
font-size: 12px;
|
||||
margin-right: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
fieldset.fields1 dl.pmlist > dt {
|
||||
width: auto !important;
|
||||
}
|
||||
|
Reference in New Issue
Block a user