From 3598bcd2c1d62b83dc7bb72d73ba777db6b8b6e0 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Sun, 26 May 2024 22:56:16 -0400 Subject: [PATCH] Improve layout of copy buttons in environment panel Don't overflow single line of text items. --- webroot/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/webroot/css/style.css b/webroot/css/style.css index ce5224b4..e294e96d 100644 --- a/webroot/css/style.css +++ b/webroot/css/style.css @@ -277,6 +277,15 @@ strong { text-align: left; } +/* Override styles in cake's default css */ +.c-debug-table .cake-debug-string { + margin-right: 48px; +} +/* correct height to fit with environment panel */ +.c-debug-table .cake-debug-copy { + padding: 5px 6px; +} + .c-debug-table .duplicate-route td { background: var(--duplicate-route); }