[ticket/11957] Responsive ACP groups table

PHPBB3-11957
This commit is contained in:
Vjacheslav Trushkin 2013-10-27 01:27:31 +03:00
parent 522d5cc3f4
commit 65ab004f96
2 changed files with 10 additions and 12 deletions

View file

@ -41,7 +41,7 @@
<tr data-down="{legend.U_MOVE_DOWN}" data-up="{legend.U_MOVE_UP}">
<td><strong<!-- IF legend.GROUP_COLOUR --> style="color: {legend.GROUP_COLOUR}"<!-- ENDIF -->>{legend.GROUP_NAME}</strong></td>
<td style="text-align: center;">{legend.GROUP_TYPE}</td>
<td style="vertical-align: top; width: 100px; text-align: right; white-space: nowrap;">
<td class="actions">
<!-- IF legend.S_FIRST_ROW && not legend.S_LAST_ROW -->
<span class="up">{ICON_MOVE_UP_DISABLED}</span>
<span class="down"><a href="{legend.U_MOVE_DOWN}" data-ajax="row_down" data-overlay="false">{ICON_MOVE_DOWN}</a></span>
@ -136,7 +136,7 @@
</td>
<td style="text-align: center;"><!-- IF teampage.GROUP_TYPE -->{teampage.GROUP_TYPE}<!-- ELSE -->-<!-- ENDIF -->
</td></td>
<td style="vertical-align: top; width: 100px; text-align: right; white-space: nowrap;">
<td class="actions">
<!-- IF teampage.S_FIRST_ROW && not teampage.S_LAST_ROW -->
<span class="up">{ICON_MOVE_UP_DISABLED}</span>
<span class="down"><a href="{teampage.U_MOVE_DOWN}" data-ajax="row_down" data-overlay="false">{ICON_MOVE_DOWN}</a></span>

View file

@ -856,21 +856,20 @@ td.name {
color: #BC2A4D;
}
/* Forums list */
/* Specific tables */
table.forums td.folder {
width: 27px;
text-align: center;
}
table.forums td.actions {
table td.actions {
vertical-align: middle;
width: 100px;
text-align: right;
text-align: center;
white-space: nowrap;
}
/* Styles list */
table.styles td.users, table.styles td.actions, table.styles td.mark {
table.styles td.users, table td.mark {
text-align: center;
}
@ -972,7 +971,7 @@ table.styles td.users, table.styles td.actions, table.styles td.mark {
float: right;
}
/* Forums list */
/* Specific tables */
table.responsive.forums td.folder {
float: left;
width: 27px;
@ -993,22 +992,21 @@ table.styles td.users, table.styles td.actions, table.styles td.mark {
margin-right: 35px;
}
table.responsive.forums td.actions {
table.responsive td.actions {
clear: both;
text-align: right !important;
}
.rtl table.responsive.forums td.actions {
.rtl table.responsive td.actions {
text-align: left !important;
}
/* Styles list */
table.responsive.styles tr.responsive-style-row td:first-child {
padding-left: 4px !important;
padding-right: 4px !important;
}
table.responsive.styles td:first-child > dfn, table.responsive.styles td.actions > dfn {
table.responsive.styles td:first-child > dfn, table.responsive td.actions > dfn {
display: none !important;
}
}