add .table-fluid class
to break the table-layout: fixed in some cases
This commit is contained in:
parent
0db8519cab
commit
8452012af0
2 changed files with 6 additions and 2 deletions
|
@ -22,13 +22,13 @@
|
|||
<% if _.isEmpty(@account_channels): %>
|
||||
<p><%- @T('You have no configured account right now.') %></p>
|
||||
<% else: %>
|
||||
<table class="table table-hover user-list">
|
||||
<table class="table table-hover table-fluid user-list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><%- @T('Inbound') %></th>
|
||||
<th><%- @T('Outbound') %></th>
|
||||
<th><%- @T('Email Adresses') %></th>
|
||||
<th style="width: 20%"><%- @T('Action') %></th>
|
||||
<th><%- @T('Action') %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -548,6 +548,10 @@ table {
|
|||
display: table;
|
||||
}
|
||||
|
||||
.table-fluid {
|
||||
table-layout: auto;
|
||||
}
|
||||
|
||||
.table .table-row {
|
||||
display: table-row;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue