From dad60045b60d7a622bb23d34d808fc1d03a91b90 Mon Sep 17 00:00:00 2001 From: Suhaib Khan Date: Thu, 6 Feb 2014 18:32:59 +0530 Subject: [ticket/10737] Adding username suggestions in "Find a member" using AJAX PHPBB3-10737 --- phpBB/styles/prosilver/theme/common.css | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 3d5a0a433d..c8eb5da9a6 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -940,6 +940,17 @@ li.pagination ul { z-index: 51; } +/* Live search box */ +#livesearch { + width: 30%; + margin: 0px; + position: absolute; + background-color: #12A3EB; + box-shadow: 1px 2px 5px rgb(175,167,167); + z-index: 999; + overflow: auto; +} + /* Miscellaneous styles ---------------------------------------- */ #forum-permissions { -- cgit v1.2.1 From 652f787abd937fe8254edc1a7f9f2fd6d7114c09 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Tue, 8 Apr 2014 03:53:08 -0700 Subject: [ticket/10737] Use dropdown for search results container. PHPBB3-10737 --- phpBB/styles/prosilver/theme/common.css | 15 ++++----------- phpBB/styles/prosilver/theme/forms.css | 2 +- 2 files changed, 5 insertions(+), 12 deletions(-) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index c8eb5da9a6..e4da028855 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -472,6 +472,10 @@ ul.linklist.bulletin li.no-bulletin:before { padding: 9px 0 0; } +.dropdown.live-search { + top: auto; +} + .dropdown-container.topic-tools { float: left; } @@ -940,17 +944,6 @@ li.pagination ul { z-index: 51; } -/* Live search box */ -#livesearch { - width: 30%; - margin: 0px; - position: absolute; - background-color: #12A3EB; - box-shadow: 1px 2px 5px rgb(175,167,167); - z-index: 999; - overflow: auto; -} - /* Miscellaneous styles ---------------------------------------- */ #forum-permissions { diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index 88f2bd65c5..0c0a3e5ca9 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -96,7 +96,7 @@ fieldset.fields1 div { } /* Set it back to 0px for the reCaptcha divs: PHPBB3-9587 */ -fieldset.fields1 #recaptcha_widget_div div { +fieldset.fields1 #recaptcha_widget_div div, fieldset.fields1 .live-search div { margin-bottom: 0; } -- cgit v1.2.1