diff options
author | Andreas Gohr <andi@splitbrain.org> | 2025-04-09 20:25:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-09 20:25:12 +0200 |
commit | 9688ac62e5d2aaca9a752bba09003a26328b1520 (patch) | |
tree | 2e8ac5f5faf9c0bb8ea2be1286877e19e38ca961 | |
parent | 266d403a4c4bd35ce0c89988fe9b7261e50be933 (diff) | |
parent | f0d0d147d90836a3e26696446231385b5e3f68a8 (diff) | |
download | dokuwiki-9688ac62e5d2aaca9a752bba09003a26328b1520.tar.gz dokuwiki-9688ac62e5d2aaca9a752bba09003a26328b1520.zip |
Merge pull request #4396 from dokuwiki/clip
allow dialogs overflow in y-direction
-rw-r--r-- | lib/tpl/dokuwiki/css/design.less | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tpl/dokuwiki/css/design.less b/lib/tpl/dokuwiki/css/design.less index 2ddd15cdb..e2953275c 100644 --- a/lib/tpl/dokuwiki/css/design.less +++ b/lib/tpl/dokuwiki/css/design.less @@ -299,7 +299,8 @@ form.search { border-radius: 2px; padding: 1.556em 2em 2em; margin-bottom: .5em; - overflow: hidden; + overflow-x: clip; + overflow-y: visible; word-wrap: break-word; } |