소스 검색

! Fix alignment of the "Enable post moderation" setting

Signed-off-by: Michael Eshom <[email protected]>
Michael Eshom 11 년 전
부모
커밋
f21dcfa206
1개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. 8 6
      Themes/default/ManagePermissions.template.php

+ 8 - 6
Themes/default/ManagePermissions.template.php

@@ -1073,12 +1073,14 @@ function template_postmod_permissions()
 
 	// First, we have the bit where we can enable or disable this bad boy.
 	echo '
-			<div class="content">
-				<dl class="settings">
-					<dt>', $txt['permissions_post_moderation_enable'], '</dt>
-					<dd><input type="checkbox" name="postmod_active"', !empty($modSettings['postmod_active']) ? ' checked="checked"' : '', ' /></dd>
-				</dl>
-				<hr class="hrcolor clear" />
+			<div class="windowbg2">
+				<div class="content">
+					<dl class="settings">
+						<dt>', $txt['permissions_post_moderation_enable'], '</dt>
+						<dd><input type="checkbox" name="postmod_active"', !empty($modSettings['postmod_active']) ? ' checked="checked"' : '', ' /></dd>
+					</dl>
+					<hr class="hrcolor clear" />
+				</div>
 			</div>';
 
 	// If we're not active, there's a bunch of stuff we don't need to show.