diff options
Diffstat (limited to 'phpBB/styles/subsilver2/template')
3 files changed, 14 insertions, 13 deletions
diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index 0882f5c97d..0d3e727ecd 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -132,7 +132,7 @@ function marklist(id, name, state) {$STYLESHEETS} </head> -<body class="{S_CONTENT_DIRECTION}"> +<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}"> <!-- EVENT overall_header_body_before --> diff --git a/phpBB/styles/subsilver2/template/simple_header.html b/phpBB/styles/subsilver2/template/simple_header.html index 85528e6769..37a33415e9 100644 --- a/phpBB/styles/subsilver2/template/simple_header.html +++ b/phpBB/styles/subsilver2/template/simple_header.html @@ -11,7 +11,7 @@ <link rel="stylesheet" href="{T_STYLESHEET_LANG_LINK}" type="text/css" /> </head> -<body class="{S_CONTENT_DIRECTION}"> +<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}"> <!-- EVENT simple_header_body_before --> <a name="top"></a> <div id="wrapcentre"> diff --git a/phpBB/styles/subsilver2/template/ucp_profile_autologin_keys.html b/phpBB/styles/subsilver2/template/ucp_profile_autologin_keys.html index 1dab9acb9c..3f63319b59 100644 --- a/phpBB/styles/subsilver2/template/ucp_profile_autologin_keys.html +++ b/phpBB/styles/subsilver2/template/ucp_profile_autologin_keys.html @@ -2,15 +2,12 @@ <table class="tablebg" width="100%" cellspacing="1"> <tr> - <th colspan="4" valign="middle">{L_TITLE}</th> + <th colspan="4">{L_TITLE}</th> </tr> -<!-- IF .errors --> + +<!-- IF ERROR --> <tr> - <td class="row3" colspan="2" align="center"><span class="gensmall error"> - <!-- BEGIN errors --> - {errors} <br /> - <!-- END errors --> - </td> + <td class="row3" colspan="4" align="center"><span class="genmed error">{ERROR}</span></td> </tr> <!-- ENDIF --> @@ -18,17 +15,17 @@ <td colspan="4" class="row1">{L_PROFILE_AUTOLOGIN_KEYS}</td> </tr> <tr> - <th>{L_MARK}</th> <th>{L_LOGIN_KEY}</th> <th>{L_IP}</th> <th>{L_LOGIN_TIME}</th> + <th>{L_MARK}</th> </tr> <!-- BEGIN sessions --> <!-- IF sessions.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> - <td class="genmed" style="text-align: center"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}"/></td> <td class="genmed"><label for="{sessions.KEY}">{sessions.KEY}</label></td> <td class="genmed" style="text-align: center">{sessions.IP}</td> <td class="genmed" style="text-align: center">{sessions.LOGIN_TIME}</td> + <td class="genmed" style="text-align: center"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}"/></td> </tr> <!-- BEGINELSE --> <tr> @@ -38,12 +35,16 @@ <!-- IF .sessions --> <tr> - <td class="cat" colspan="4" align="center"> - {S_HIDDEN_FIELDS}<input class="btnmain" type="submit" name="submit" value="{L_DELETE}" /> + <td class="cat" colspan="4" align="{S_CONTENT_FLOW_END}"> + {S_HIDDEN_FIELDS}<input class="btnlite" type="submit" name="submit" value="{L_DELETE_MARKED}" /> {S_FORM_TOKEN} </td> </tr> <!-- ENDIF --> </table> +<!-- IF .sessions --> + <div class="gensmall" style="float: {S_CONTENT_FLOW_END}; padding-top: 2px;"><b><a href="#" onclick="marklist('ucp', 'keys', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('ucp', 'keys', false); return false;">{L_UNMARK_ALL}</a></b></div> +<!-- ENDIF --> + <!-- INCLUDE ucp_footer.html --> |