diff options
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_groups_position.html | 4 | ||||
-rw-r--r-- | phpBB/adm/style/admin.css | 18 |
2 files changed, 10 insertions, 12 deletions
diff --git a/phpBB/adm/style/acp_groups_position.html b/phpBB/adm/style/acp_groups_position.html index cf1a7be427..7aa894945a 100644 --- a/phpBB/adm/style/acp_groups_position.html +++ b/phpBB/adm/style/acp_groups_position.html @@ -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> diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index fc565f8713..c411d2d0a2 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -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; } } |