mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-07 10:55:40 +00:00
Fix #602 domain table with long records
This commit is contained in:
parent
65d4acc6c5
commit
d90a20f8da
@ -1,5 +1,6 @@
|
|||||||
.length-break {
|
.length-break {
|
||||||
word-break: break-all !important;
|
word-break: break-all !important;
|
||||||
|
width: 70% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
|
@ -138,7 +138,7 @@
|
|||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
type: 'natural',
|
type: 'natural',
|
||||||
targets: [0, 5]
|
targets: [0, 4]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// hidden column so that we can add new records on top
|
// hidden column so that we can add new records on top
|
||||||
@ -148,7 +148,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
className: "length-break",
|
className: "length-break",
|
||||||
targets: [ 5 ]
|
targets: [ 4, 5 ]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"orderFixed": [[8, 'asc']]
|
"orderFixed": [[8, 'asc']]
|
||||||
|
@ -62,10 +62,10 @@
|
|||||||
<td>
|
<td>
|
||||||
{{ record.ttl }}
|
{{ record.ttl }}
|
||||||
</td>
|
</td>
|
||||||
<td class="length-break">
|
<td>
|
||||||
{{ record.data }}
|
{{ record.data }}
|
||||||
</td>
|
</td>
|
||||||
<td class="length-break">
|
<td>
|
||||||
{{ record.comment }}
|
{{ record.comment }}
|
||||||
</td>
|
</td>
|
||||||
<td width="6%">
|
<td width="6%">
|
||||||
@ -123,7 +123,7 @@
|
|||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
type: 'natural',
|
type: 'natural',
|
||||||
targets: [0, 5]
|
targets: [0, 4]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// hidden column so that we can add new records on top
|
// hidden column so that we can add new records on top
|
||||||
@ -133,7 +133,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
className: "length-break",
|
className: "length-break",
|
||||||
targets: [ 5 ]
|
targets: [ 4, 5 ]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"orderFixed": [[8, 'asc']]
|
"orderFixed": [[8, 'asc']]
|
||||||
|
Loading…
Reference in New Issue
Block a user