diff --git a/include/custom.css b/include/custom.css index 924a383..da49fc9 100644 --- a/include/custom.css +++ b/include/custom.css @@ -13,6 +13,11 @@ .cursor-pointer {cursor: pointer; } +.wrap-all-words { + word-wrap: break-word; + max-width: 350px; +} + .no-shadow { box-shadow: none!important; border-color: #CCC!important; diff --git a/js/edit-master.js b/js/edit-master.js index 146dac2..4558fef 100644 --- a/js/edit-master.js +++ b/js/edit-master.js @@ -109,7 +109,7 @@ function recreateTable(data) { .append('' + item.id + '') .append('' + item.name + '') .append('' + item.type + '') - .append('' + item.content + '') + .append('' + item.content + '') .append('' + item.priority + '') .append('' + item.ttl + '') .append('') @@ -345,7 +345,7 @@ function addRecord() { .append('' + dataRecv.newId + '') .append('' + data.name + '') .append('' + data.type + '') - .append('' + data.content + '') + .append('' + data.content + '') .append('' + data.prio + '') .append('' + data.ttl + '') .append('')