mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12613] Remove responsive linklist from memberlist
PHPBB3-12613
This commit is contained in:
parent
7c527adee8
commit
f17eee19de
4 changed files with 56 additions and 57 deletions
|
@ -13,7 +13,6 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_GROUP -->
|
<!-- IF S_SHOW_GROUP -->
|
||||||
|
|
||||||
<h2 class="group-title"<!-- IF GROUP_COLOR --> style="color:#{GROUP_COLOR};"<!-- ENDIF -->>{GROUP_NAME}</h2>
|
<h2 class="group-title"<!-- IF GROUP_COLOR --> style="color:#{GROUP_COLOR};"<!-- ENDIF -->>{GROUP_NAME}</h2>
|
||||||
<p>{GROUP_DESC} {GROUP_TYPE}</p>
|
<p>{GROUP_DESC} {GROUP_TYPE}</p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -21,36 +20,30 @@
|
||||||
<!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF -->
|
<!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF -->
|
||||||
<!-- IF GROUP_RANK -->{GROUP_RANK}<!-- ENDIF -->
|
<!-- IF GROUP_RANK -->{GROUP_RANK}<!-- ENDIF -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<!-- ELSE -->
|
<!-- ELSE -->
|
||||||
<h2 class="solo">{PAGE_TITLE}<!-- IF SEARCH_WORDS -->{L_COLON} <a href="{U_SEARCH_WORDS}">{SEARCH_WORDS}</a><!-- ENDIF --></h2>
|
<h2 class="solo">{PAGE_TITLE}<!-- IF SEARCH_WORDS -->{L_COLON} <a href="{U_SEARCH_WORDS}">{SEARCH_WORDS}</a><!-- ENDIF --></h2>
|
||||||
|
|
||||||
<div class="panel">
|
<div class="action-bar">
|
||||||
<div class="inner">
|
<div class="member-search panel">
|
||||||
|
|
||||||
<ul class="linklist wrap">
|
|
||||||
<li>
|
|
||||||
<!-- IF U_FIND_MEMBER and not S_SEARCH_USER --><a href="{U_FIND_MEMBER}" id="member_search" data-alt-text="{LA_HIDE_MEMBER_SEARCH}">{L_FIND_USERNAME}</a> • <!-- ELSEIF S_SEARCH_USER and U_HIDE_FIND_MEMBER and not S_IN_SEARCH_POPUP --><a href="{U_HIDE_FIND_MEMBER}" id="member_search" data-alt-text="{LA_FIND_USERNAME}">{L_HIDE_MEMBER_SEARCH}</a> • <!-- ENDIF -->
|
<!-- IF U_FIND_MEMBER and not S_SEARCH_USER --><a href="{U_FIND_MEMBER}" id="member_search" data-alt-text="{LA_HIDE_MEMBER_SEARCH}">{L_FIND_USERNAME}</a> • <!-- ELSEIF S_SEARCH_USER and U_HIDE_FIND_MEMBER and not S_IN_SEARCH_POPUP --><a href="{U_HIDE_FIND_MEMBER}" id="member_search" data-alt-text="{LA_FIND_USERNAME}">{L_HIDE_MEMBER_SEARCH}</a> • <!-- ENDIF -->
|
||||||
<strong style="font-size: 0.95em;">
|
<strong>
|
||||||
<!-- BEGIN first_char -->
|
<!-- BEGIN first_char -->
|
||||||
<a href="{first_char.U_SORT}">{first_char.DESC}</a>
|
<a href="{first_char.U_SORT}">{first_char.DESC}</a>
|
||||||
<!-- END first_char -->
|
<!-- END first_char -->
|
||||||
</strong>
|
</strong>
|
||||||
</li>
|
</div>
|
||||||
<li class="rightside pagination">
|
|
||||||
|
<div class="pagination">
|
||||||
{TOTAL_USERS}
|
{TOTAL_USERS}
|
||||||
<!-- IF .pagination -->
|
<!-- IF .pagination -->
|
||||||
•
|
|
||||||
<!-- INCLUDE pagination.html -->
|
<!-- INCLUDE pagination.html -->
|
||||||
<!-- ELSE -->
|
<!-- ELSE -->
|
||||||
{PAGE_NUMBER}
|
• {PAGE_NUMBER}
|
||||||
|
<!-- ENDIF -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_LEADERS_SET or not S_SHOW_GROUP or not .memberrow -->
|
<!-- IF S_LEADERS_SET or not S_SHOW_GROUP or not .memberrow -->
|
||||||
<div class="forumbg forumbg-table">
|
<div class="forumbg forumbg-table">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
|
@ -258,6 +258,10 @@
|
||||||
width: 99%; /* fix for IE6 */
|
width: 99%; /* fix for IE6 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl .member-search {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* links.css
|
* links.css
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -802,6 +802,35 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||||
margin-left: 0 !important;
|
margin-left: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Action-bars (container for post/reply buttons, pagination, etc.)
|
||||||
|
---------------------------------------- */
|
||||||
|
.topic-actions {
|
||||||
|
margin-bottom: 3px;
|
||||||
|
font-size: 1.1em;
|
||||||
|
height: 28px;
|
||||||
|
min-height: 28px;
|
||||||
|
}
|
||||||
|
div[class].topic-actions {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-actions:after {
|
||||||
|
clear: both;
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-bar {
|
||||||
|
font-size: 11px;
|
||||||
|
margin: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-bar:after {
|
||||||
|
clear: both;
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/* Pagination
|
/* Pagination
|
||||||
---------------------------------------- */
|
---------------------------------------- */
|
||||||
.pagination {
|
.pagination {
|
||||||
|
@ -876,16 +905,6 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||||
.pagination li.next a:hover { background-position: -50px -18px; }
|
.pagination li.next a:hover { background-position: -50px -18px; }
|
||||||
.pagination li.previous a:hover { background-position: -30px -18px; }
|
.pagination li.previous a:hover { background-position: -30px -18px; }
|
||||||
|
|
||||||
/* Memberlist search */
|
|
||||||
li.pagination {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
li.pagination > ul {
|
|
||||||
margin-top: -2px;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pagination in viewforum for multipage topics */
|
/* Pagination in viewforum for multipage topics */
|
||||||
.row .pagination {
|
.row .pagination {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -1084,6 +1103,16 @@ form > p.post-notice strong {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.member-search {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
padding: 6px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.member-search strong {
|
||||||
|
font-size: 0.95em;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-extended {
|
.dropdown-extended {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -226,33 +226,6 @@ dd.option {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Container for post/reply buttons and pagination */
|
|
||||||
.topic-actions {
|
|
||||||
margin-bottom: 3px;
|
|
||||||
font-size: 1.1em;
|
|
||||||
height: 28px;
|
|
||||||
min-height: 28px;
|
|
||||||
}
|
|
||||||
div[class].topic-actions {
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topic-actions:after {
|
|
||||||
clear: both;
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action-bar {
|
|
||||||
margin: 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.action-bar:after {
|
|
||||||
clear: both;
|
|
||||||
content: '';
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Post body styles
|
/* Post body styles
|
||||||
----------------------------------------*/
|
----------------------------------------*/
|
||||||
.postbody {
|
.postbody {
|
||||||
|
|
Loading…
Add table
Reference in a new issue