From 6db27c7953364b0e9316ff96d9d8becc80016ab6 Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Mon, 9 Feb 2026 02:01:29 +0100 Subject: [PATCH] konfig --- config/current.ver | 2 +- public/assets/js/bridge/table-builder.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/config/current.ver b/config/current.ver index bab6a90..7da1aa7 100755 --- a/config/current.ver +++ b/config/current.ver @@ -1 +1 @@ -1.2.89 \ No newline at end of file +1.2.90 \ No newline at end of file diff --git a/public/assets/js/bridge/table-builder.js b/public/assets/js/bridge/table-builder.js index b0bb11b..2c1fd73 100755 --- a/public/assets/js/bridge/table-builder.js +++ b/public/assets/js/bridge/table-builder.js @@ -140,9 +140,10 @@ container.style.display = 'flex'; container.style.flexDirection = 'column'; container.style.gap = '12px'; - container.style.minWidth = '280px'; - container.style.maxWidth = '360px'; + container.style.minWidth = '320px'; + container.style.maxWidth = '520px'; container.style.width = '100%'; + container.style.boxSizing = 'border-box'; const label = document.createElement('label'); label.textContent = 'Anzahl Zeilen'; @@ -151,6 +152,7 @@ label.style.display = 'flex'; label.style.flexDirection = 'column'; label.style.gap = '6px'; + label.style.width = '100%'; const input = document.createElement('input'); input.type = 'number'; @@ -173,6 +175,7 @@ colLabel.style.display = 'flex'; colLabel.style.flexDirection = 'column'; colLabel.style.gap = '6px'; + colLabel.style.width = '100%'; const colInput = document.createElement('input'); colInput.type = 'number';