mirror of https://github.com/zulip/zulip.git
parent
a90532e074
commit
0e6078fade
|
@ -27,6 +27,22 @@ label {
|
|||
margin: 0px;
|
||||
}
|
||||
|
||||
.wrapped-table {
|
||||
table-layout: fixed;
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
white-space: -moz-pre-wrap !important;
|
||||
white-space: -webkit-pre-wrap;
|
||||
white-space: -pre-wrap;
|
||||
white-space: -o-pre-wrap;
|
||||
white-space: pre-wrap;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.wrapped-cell {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.table tbody {
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<div id="admin-user-list" class="settings-section">
|
||||
<div class="settings-section-title"><i class="icon-vector-github settings-section-icon"></i>
|
||||
{{t "Bots" }}</div>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-condensed table-striped wrapped-table">
|
||||
<tbody id="admin_bots_table" class="admin_bot_table">
|
||||
<th>{{t "Name" }}</th>
|
||||
<th class="wrapped-cell">{{t "Name" }}</th>
|
||||
<th>{{t "Email" }}</th>
|
||||
<th>{{t "Owner" }}</th>
|
||||
<th>{{t "Actions" }}</th>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<div id="admin-user-list" class="settings-section">
|
||||
<div class="settings-section-title"><i class="icon-vector-user settings-section-icon"></i>
|
||||
{{t "Users" }}</div>
|
||||
<table class="table table-condensed table-striped">
|
||||
<table class="table table-condensed table-striped wrapped-table">
|
||||
<tbody id="admin_users_table" class="admin_user_table">
|
||||
<th>{{t "Name" }}</th>
|
||||
<th class="wrapped-cell">{{t "Name" }}</th>
|
||||
<th>{{t "Email" }}</th>
|
||||
<th>{{t "Actions" }}</th>
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue