From 70073b926702b64ee4c7a15c16c1d8379e86b957 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 2 Mar 2023 16:08:39 +0100 Subject: [PATCH] Fixed scrolling on long content --- powerdnsadmin/templates/domain.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerdnsadmin/templates/domain.html b/powerdnsadmin/templates/domain.html index 026a89b..7421066 100755 --- a/powerdnsadmin/templates/domain.html +++ b/powerdnsadmin/templates/domain.html @@ -148,7 +148,7 @@ table#tbl_records thead th:nth-child(4) { width: 100px; } table#tbl_records tbody td { text-align: center; } table#tbl_records tbody td:nth-child(0n+5), - table#tbl_records tbody td:nth-child(0n+6) { text-align: left; } + table#tbl_records tbody td:nth-child(0n+6) { text-align: left; word-break: break-all; } {% endblock %}