mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-23 12:52:15 +00:00
Flatten gatherer list
This commit is contained in:
parent
1454c3e8de
commit
065c62e6c9
3 changed files with 9 additions and 3 deletions
|
@ -682,7 +682,7 @@ var Gatherers = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
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">
|
<div className="panel-heading">
|
||||||
<h4 className="panel-title">
|
<h4 className="panel-title">
|
||||||
<a data-toggle="collapse"
|
<a data-toggle="collapse"
|
||||||
|
|
|
@ -14,6 +14,7 @@ html, body {
|
||||||
|
|
||||||
#gathers {
|
#gathers {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
|
border-left: 1px solid #FAFAFA;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gatherer {
|
.gatherer {
|
||||||
|
@ -21,6 +22,11 @@ html, body {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gatherer-panel {
|
||||||
|
border: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
#side-menu {
|
#side-menu {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,8 +47,8 @@
|
||||||
<div class="col-lg-2 hidden-xs">
|
<div class="col-lg-2 hidden-xs">
|
||||||
<ul class="nav" id="side-menu"></ul>
|
<ul class="nav" id="side-menu"></ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-5" id="chatroom"></div>
|
<div class="col-lg-4" id="chatroom"></div>
|
||||||
<div class="col-lg-5" id="gathers"></div>
|
<div class="col-lg-6" id="gathers"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue