Make the new team view UI to be properly reactive to the screen size

This commit is contained in:
Joseph Schorr 2014-08-15 21:00:12 -04:00
parent 7d7cca39cc
commit 9a402ab0b1
3 changed files with 16 additions and 3 deletions

View file

@ -2,6 +2,7 @@
<div class="team-view container">
<div class="organization-header" organization="organization" team-name="teamname">
<div ng-show="canEditMembers" class="side-controls">
<div class="hidden-sm hidden-xs">
<button class="btn btn-success" data-trigger="click"
data-title="Add Team Member"
data-content-template="/static/directives/team-view-add.html"
@ -10,6 +11,7 @@
<i class="fa fa-plus"></i>
Add Team Member
</button>
</div>
</div>
</div>
@ -69,6 +71,13 @@
</td>
</tr>
</table>
<div ng-show="canEditMembers">
<div class="visible-xs visible-sm">
<div ng-include="'/static/directives/team-view-add.html'"></div>
</div>
</div>
</div>
</div>
</div>