aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorSuhaib Khan <suhebjerk@gmail.com>2014-02-23 00:22:52 +0530
committerCesar G <prototech91@gmail.com>2014-04-23 09:11:39 -0700
commitaa23cf64cae6710f556c8d43528d28cff6d6a775 (patch)
treefe494d3588ff8f6945e410e8b0f81fd65040ea61 /phpBB/styles
parente644c67dcf4a505759533c42e0c511fab93028ae (diff)
downloadforums-aa23cf64cae6710f556c8d43528d28cff6d6a775.tar
forums-aa23cf64cae6710f556c8d43528d28cff6d6a775.tar.gz
forums-aa23cf64cae6710f556c8d43528d28cff6d6a775.tar.bz2
forums-aa23cf64cae6710f556c8d43528d28cff6d6a775.tar.xz
forums-aa23cf64cae6710f556c8d43528d28cff6d6a775.zip
[ticket/10737] Avoid hard-coding table row and use case-insensitive search.
PHPBB3-10737
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/template/memberlist_search.html8
-rw-r--r--phpBB/styles/subsilver2/template/memberlist_search.html9
-rw-r--r--phpBB/styles/subsilver2/theme/stylesheet.css1
3 files changed, 16 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_search.html b/phpBB/styles/prosilver/template/memberlist_search.html
index 15f44bf2e5..e407aed616 100644
--- a/phpBB/styles/prosilver/template/memberlist_search.html
+++ b/phpBB/styles/prosilver/template/memberlist_search.html
@@ -9,7 +9,13 @@
<fieldset class="fields1 column1">
<dl>
<dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
- <dd><input type="text" name="username" id="username" value="{USERNAME}" class="inputbox liveinput" autocomplete="off" /> <table class="table1" id="livesearch"></table></dd>
+ <dd><input type="text" name="username" id="username" value="{USERNAME}" class="inputbox liveinput" autocomplete="off" />
+ <table class="table1 zebra-list" id="livesearch">
+ <tr id="user-search-row-tpl" style="display: none;">
+ <td><a class="user-search-link user-search-name" target='_blank'></a></td>
+ </tr>
+ </table>
+ </dd>
</dl>
<!-- IF S_EMAIL_SEARCH_ALLOWED -->
<dl>
diff --git a/phpBB/styles/subsilver2/template/memberlist_search.html b/phpBB/styles/subsilver2/template/memberlist_search.html
index 5ebff93320..1ee4abccd4 100644
--- a/phpBB/styles/subsilver2/template/memberlist_search.html
+++ b/phpBB/styles/subsilver2/template/memberlist_search.html
@@ -75,7 +75,14 @@
</tr>
<tr>
<td class="row1"><b class="genmed">{L_USERNAME}{L_COLON}</b></td>
- <td class="row2"><input class="post liveinput" type="text" name="username" value="{USERNAME}" autocomplete="off" /> <table class="tablebg" id="livesearch"></table></td>
+ <td class="row2">
+ <input class="post liveinput" type="text" name="username" value="{USERNAME}" autocomplete="off" />
+ <table class="tablebg" id="livesearch">
+ <tr id="user-search-row-tpl" style="display: none;">
+ <td><a class="user-search-link user-search-name" target='_blank'></a></td>
+ </tr>
+ </table>
+ </td>
<!-- IF S_EMAIL_SEARCH_ALLOWED -->
<td class="row1"><b class="genmed">{L_EMAIL}{L_COLON}</b></td>
<td class="row2"><input class="post" type="email" name="email" value="{EMAIL}" /></td>
diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css
index ef18e22ccb..7e112aeb11 100644
--- a/phpBB/styles/subsilver2/theme/stylesheet.css
+++ b/phpBB/styles/subsilver2/theme/stylesheet.css
@@ -708,6 +708,7 @@ pre {
margin: 0px;
position: absolute;
box-shadow: 1px 2px 5px rgb(175,167,167);
+ border-spacing: 0px;
z-index: 999;
overflow: auto;
}