From f7b51337c55f88f19f8b9406b64e7d03150efa2c Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Thu, 3 May 2007 14:29:22 +0000 Subject: some language-specific adjustements fix prune users (adding the list of users to the confirmation page) tried to fix the show/hide trigger in ACP by not using width: auto; (which gets somehow inherited to each other element) git-svn-id: file:///svn/phpbb/trunk@7455 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/style/acp_main.html | 4 ++-- phpBB/adm/style/acp_permissions.html | 23 +++++++++++++---------- phpBB/adm/style/confirm_body.html | 2 +- phpBB/adm/style/confirm_body_prune.html | 30 ++++++++++++++++++++++++++++++ phpBB/adm/style/overall_header.html | 23 ++++++++++++----------- 5 files changed, 58 insertions(+), 24 deletions(-) create mode 100644 phpBB/adm/style/confirm_body_prune.html (limited to 'phpBB/adm/style') diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 7d29a43070..6b96a3e418 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -94,14 +94,14 @@
-
+

 
-
+

 
diff --git a/phpBB/adm/style/acp_permissions.html b/phpBB/adm/style/acp_permissions.html index 22bc012377..7d752c250c 100644 --- a/phpBB/adm/style/acp_permissions.html +++ b/phpBB/adm/style/acp_permissions.html @@ -17,7 +17,7 @@

{L_EXPLAIN}

-

{L_FORUMS}: {FORUM_NAMES}

+

{L_FORUMS}: {FORUM_NAMES}

@@ -32,11 +32,12 @@
  {L_ALL_FORUMS}
- -
+

{S_HIDDEN_FIELDS} +

+
@@ -52,11 +53,12 @@
- -
+

{S_HIDDEN_FIELDS} +

+
@@ -75,11 +77,11 @@
[ {L_FIND_USERNAME} ]
 {L_SELECT_ANONYMOUS}
- -
+

{S_HIDDEN_FIELDS} +

@@ -94,11 +96,12 @@
- -
+

{S_HIDDEN_FIELDS} +

+
@@ -106,7 +109,7 @@
- +

{L_USERS}

diff --git a/phpBB/adm/style/confirm_body.html b/phpBB/adm/style/confirm_body.html index 6c1894e748..2fbb1a60d7 100644 --- a/phpBB/adm/style/confirm_body.html +++ b/phpBB/adm/style/confirm_body.html @@ -3,7 +3,7 @@
-

{MESSAGE_TITLE}

+

{MESSAGE_TITLE}

{MESSAGE_TEXT}

{S_HIDDEN_FIELDS} diff --git a/phpBB/adm/style/confirm_body_prune.html b/phpBB/adm/style/confirm_body_prune.html new file mode 100644 index 0000000000..9481386231 --- /dev/null +++ b/phpBB/adm/style/confirm_body_prune.html @@ -0,0 +1,30 @@ + + + + +
+

{MESSAGE_TITLE}

+

{MESSAGE_TEXT}

+ + {S_HIDDEN_FIELDS} + +
+   + +
+ +

{L_PRUNE_USERS_LIST}

+

{L_PRUNE_USERS_LIST_DEACTIVATE}

{L_PRUNE_USERS_LIST_DELETE}

+ +
+ + » {users.USERNAME} [{L_USER_ADMIN}]
+ + +

+ +
+ + + + diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html index 9024c08577..d75d89ab13 100644 --- a/phpBB/adm/style/overall_header.html +++ b/phpBB/adm/style/overall_header.html @@ -120,32 +120,33 @@ function switch_menu() var menu = document.getElementById('menu'); var main = document.getElementById('main'); var toggle = document.getElementById('toggle'); - var handle = document.getElementById('toggle-handle'); + var handle = document.getElementById('toggle-handle'); - switch(menu_state) - { - //hidden + switch (menu_state) + { + // hide case 'shown': - main.style.width = 'auto'; - menu.style.display = 'none'; + main.style.width = '93%'; menu_state = 'hidden'; + menu.style.display = 'none'; toggle.style.left = '0'; toggle.style.width = '20px'; handle.style.backgroundImage = 'url(images/toggle.gif)'; handle.style.backgroundPosition = '100% 50%'; handle.style.backgroundRepeat = 'no-repeat'; - break; - //shown + break; + + // show case 'hidden': main.style.width = '76%'; - menu.style.display = 'block'; menu_state = 'shown'; + menu.style.display = 'block'; toggle.style.left = '15%'; toggle.style.width = '5%'; handle.style.backgroundImage = 'url(images/toggle.gif)'; handle.style.backgroundPosition = '0% 50%'; - handle.style.backgroundRepeat = 'no-repeat'; - break; + handle.style.backgroundRepeat = 'no-repeat'; + break; } } -- cgit v1.2.1