From 1110893702a810ce362fdf8249c82cdfdc586977 Mon Sep 17 00:00:00 2001 From: Kouya Heika Date: Mon, 19 Jan 2026 23:06:27 -0600 Subject: [PATCH] Replace history dialog style with new popout one Signed-off-by: Kouya Heika --- core/style.css | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/core/style.css b/core/style.css index 704b1a8..1baef85 100644 --- a/core/style.css +++ b/core/style.css @@ -179,26 +179,28 @@ body > div.overlay .dialog table:not(.titlebox) { overflow: auto; } -body > div.overlay div.dialog.historylist { - display: flex; - flex-direction: column; - max-width: 500px; - max-height: 90%; +body > div._wdialog[name="history"] { + width: 500px; } -body > div.overlay div.dialog.historylist .history-view { +body > div._wdialog[name="history"] .history-view { background: var(--history-background); padding: 4px; margin: 4px; border: 1px solid var(--history-border-color); overflow: auto; font-family: monospace; + max-height: 400px; } -body > div.overlay div.dialog.historylist select { - width: 100%; - margin: 2px 0px; +body > div._wdialog[name="history"] div.wdropdown { + padding: 0px 2px; } +body > div._wdialog[name="history"] div.wdropdown.active button { padding-bottom: 2px; } +body > div._wdialog[name="history"] button { + width: 100%; +} + .history-view div { border-bottom: 1px dashed var(--history-border-color); white-space: break-spaces;