From ef58752db8996016dbd32a89dd8b549ec806946f Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Sat, 20 Sep 2014 18:35:26 +0200 Subject: [PATCH 1/5] [ticket/13082] Replace float by text-align PHPBB3-13082 --- phpBB/adm/style/acp_logs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/adm/style/acp_logs.html b/phpBB/adm/style/acp_logs.html index 4f67f46e24..291fc23e25 100644 --- a/phpBB/adm/style/acp_logs.html +++ b/phpBB/adm/style/acp_logs.html @@ -8,7 +8,7 @@
-
+
{L_SEARCH_KEYWORDS}{L_COLON}  
From ace3b806a9d6d9a10ebe35cdadede2472b7f9fec Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Sat, 20 Sep 2014 20:35:14 +0200 Subject: [PATCH 2/5] [ticket/13082] move style to css file PHPBB3-13082 --- phpBB/adm/style/acp_logs.html | 2 +- phpBB/adm/style/admin.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/phpBB/adm/style/acp_logs.html b/phpBB/adm/style/acp_logs.html index 291fc23e25..9e8eb24ea0 100644 --- a/phpBB/adm/style/acp_logs.html +++ b/phpBB/adm/style/acp_logs.html @@ -8,7 +8,7 @@ -
+
{L_SEARCH_KEYWORDS}{L_COLON}  
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index b83750875a..3a51515d2d 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -109,6 +109,10 @@ hr { text-align: center; } +.text-left { + text-align: left; +} + .small { font-size: 0.85em; } From 6851ff8fabbb6888a3a731f7fe1603c5fd0c68f6 Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Sun, 21 Sep 2014 00:07:39 +0200 Subject: [PATCH 3/5] [ticket/13082] Join classes PHPBB3-13082 --- phpBB/adm/style/acp_logs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/adm/style/acp_logs.html b/phpBB/adm/style/acp_logs.html index 9e8eb24ea0..37e08bafca 100644 --- a/phpBB/adm/style/acp_logs.html +++ b/phpBB/adm/style/acp_logs.html @@ -8,7 +8,7 @@ -
+
{L_SEARCH_KEYWORDS}{L_COLON}  
From 9f981a774149499b2a8e42421a861781bd1b5dc7 Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Sun, 21 Sep 2014 10:03:48 +0200 Subject: [PATCH 4/5] [ticket/13082] Repair fix PHPBB3-13082 --- phpBB/adm/style/acp_logs.html | 2 +- phpBB/adm/style/admin.css | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/phpBB/adm/style/acp_logs.html b/phpBB/adm/style/acp_logs.html index 37e08bafca..76ea801de0 100644 --- a/phpBB/adm/style/acp_logs.html +++ b/phpBB/adm/style/acp_logs.html @@ -8,7 +8,7 @@ -
+ diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 3a51515d2d..b03cb0ba24 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -109,8 +109,12 @@ hr { text-align: center; } -.text-left { - text-align: left; +.search-box { + float: left; +} + +.rtl .search-box { + float: right; } .small { @@ -1777,6 +1781,7 @@ li.pagination ul { margin: 10px 0; color: #FFFFFF; text-align: center; + clear: both; } .success { From fb610f99df53ad39cddf349190aaf4df0432e6c8 Mon Sep 17 00:00:00 2001 From: hanakin Date: Tue, 23 Sep 2014 17:24:26 +0200 Subject: [PATCH 5/5] [ticket/12889] Fix multiple select lists PHPBB3-12889 --- phpBB/styles/prosilver/theme/forms.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index cbdeab11f9..5ac5e5cfd1 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -129,6 +129,10 @@ dd select { width: auto; } +dd select[multiple] { + width: 100%; +} + dd textarea { width: 85%; }