add .table-fluid class

to break the table-layout: fixed in some cases
This commit is contained in:
Felix Niklas 2015-09-08 10:21:59 +02:00
parent 0db8519cab
commit 8452012af0
2 changed files with 6 additions and 2 deletions

View file

@ -22,13 +22,13 @@
<% if _.isEmpty(@account_channels): %> <% if _.isEmpty(@account_channels): %>
<p><%- @T('You have no configured account right now.') %></p> <p><%- @T('You have no configured account right now.') %></p>
<% else: %> <% else: %>
<table class="table table-hover user-list"> <table class="table table-hover table-fluid user-list">
<thead> <thead>
<tr> <tr>
<th><%- @T('Inbound') %></th> <th><%- @T('Inbound') %></th>
<th><%- @T('Outbound') %></th> <th><%- @T('Outbound') %></th>
<th><%- @T('Email Adresses') %></th> <th><%- @T('Email Adresses') %></th>
<th style="width: 20%"><%- @T('Action') %></th> <th><%- @T('Action') %></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View file

@ -548,6 +548,10 @@ table {
display: table; display: table;
} }
.table-fluid {
table-layout: auto;
}
.table .table-row { .table .table-row {
display: table-row; display: table-row;
} }