removed unnecessary markup from users

v1.18.x
psychobunny 12 years ago
parent 49abff1609
commit ec150d4a4c

@ -1,5 +1,4 @@
<div> <div class="users">
<ul class="nav nav-pills"> <ul class="nav nav-pills">
<li class=''><a href='/users-latest'>Latest Users</a></li> <li class=''><a href='/users-latest'>Latest Users</a></li>
<li class=''><a href='/users-sort-posts'>Top Posters</a></li> <li class=''><a href='/users-sort-posts'>Top Posters</a></li>
@ -18,7 +17,7 @@
</div> </div>
</div> </div>
<ul id="users-container" class="users"> <ul id="users-container" class="users-container">
<!-- BEGIN users --> <!-- BEGIN users -->
<div class="users-box"> <div class="users-box">
<a href="/users/{users.userslug}"> <a href="/users/{users.userslug}">
@ -38,10 +37,10 @@
</div> </div>
<!-- END users --> <!-- END users -->
</ul> </ul>
</div>
<div class="text-center {loadmore_display}"> <div class="text-center {loadmore_display}">
<button id="load-more-users-btn" class="btn btn-primary">Load More</button> <button id="load-more-users-btn" class="btn btn-primary">Load More</button>
</div>
</div> </div>
<script type="text/javascript" src="{relative_path}/src/forum/users.js"></script> <script type="text/javascript" src="{relative_path}/src/forum/users.js"></script>

@ -36,9 +36,6 @@ a:hover, .btn-link:hover, .btn-link:active, .btn-link:focus {
} }
#alert_window { #alert_window {
position: fixed; position: fixed;
right: 20px; right: 20px;
@ -104,5 +101,4 @@ a:hover, .btn-link:hover, .btn-link:active, .btn-link:focus {
.modal { .modal {
overflow-y: hidden; overflow-y: hidden;
} }
//END: FIXES FOR BS3, may need to remove these when we get out of the RC releases //END: FIXES FOR BS3, may need to remove these when we get out of the RC releases

@ -1,23 +1,25 @@
.users {
.users-container {
padding: 0;
}
#users-container { .users-box{
padding: 0; display: inline-block;
} margin-top: 20px;
.users-box{ text-align: center;
display: inline-block; vertical-align: top;
margin-top: 20px; max-width: 104px;
text-align: center; white-space: nowrap;
vertical-align: top; text-overflow: ellipsis;
max-width: 104px; overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
img { img {
width:80px; width:80px;
height:80px; height:80px;
} }
a { a {
margin:5px; margin:5px;
}
} }
} }
Loading…
Cancel
Save