mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 12:25:31 +00:00
Fix check name wrapping in the "Assign Checks to Integration" dialog
This commit is contained in:
parent
a779ffd365
commit
312c53c2b3
2 changed files with 18 additions and 1 deletions
|
@ -1,7 +1,23 @@
|
|||
#checks-modal .modal-header {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.channel-checks-table > tbody > tr > th {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.channel-checks-table td:first-child, .channel-checks-table th:first-child {
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
.channel-checks-table td:nth-child(2) {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.channel-checks-table td:nth-child(3) {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.channel-checks-table .unnamed {
|
||||
color: #999;
|
||||
font-style: italic;
|
||||
|
|
|
@ -17,9 +17,10 @@
|
|||
type="checkbox"
|
||||
class="toggle" />
|
||||
</th>
|
||||
<th class="check-all-cell" colspan="2">
|
||||
<th class="check-all-cell">
|
||||
Select / Unselect All
|
||||
</th>
|
||||
<th>UUID</th>
|
||||
</tr>
|
||||
{% for check in checks %}
|
||||
<tr>
|
||||
|
|
Loading…
Add table
Reference in a new issue