Flatten gatherer list

This commit is contained in:
Chris Blanchard 2015-09-14 23:44:43 +01:00
parent 1454c3e8de
commit 065c62e6c9
3 changed files with 9 additions and 3 deletions

View File

@ -682,7 +682,7 @@ var Gatherers = React.createClass({
}
return (
<div className="panel panel-success" key={gatherer.user.id} data-userid={gatherer.user.id}>
<div className="panel panel-success gatherer-panel" key={gatherer.user.id} data-userid={gatherer.user.id}>
<div className="panel-heading">
<h4 className="panel-title">
<a data-toggle="collapse"

View File

@ -14,6 +14,7 @@ html, body {
#gathers {
margin-top: 1em;
border-left: 1px solid #FAFAFA;
}
.gatherer {
@ -21,6 +22,11 @@ html, body {
padding: 0px;
}
.gatherer-panel {
border: none;
box-shadow: none;
}
#side-menu {
margin-top: 1em;
}

View File

@ -47,8 +47,8 @@
<div class="col-lg-2 hidden-xs">
<ul class="nav" id="side-menu"></ul>
</div>
<div class="col-lg-5" id="chatroom"></div>
<div class="col-lg-5" id="gathers"></div>
<div class="col-lg-4" id="chatroom"></div>
<div class="col-lg-6" id="gathers"></div>
</div>
</div>
</div>