From 3cc3edeca4254b8bdff0f45c707f65d4f8f757a2 Mon Sep 17 00:00:00 2001 From: Leo-Andres Hofmann Date: Sun, 11 Jul 2021 20:22:12 +0200 Subject: [PATCH] RRD graphs: Remove padding around graph images The images inherited padding from the general design and have been resized to fit the layout, resulting in blurred graphs. This removes the padding and shows the graphs in full size. Fixes: #12657 Signed-off-by: Leo-Andres Hofmann Reviewed-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- html/html/themes/ipfire/include/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/html/themes/ipfire/include/css/style.css b/html/html/themes/ipfire/include/css/style.css index 2c727a7707..b92f476c4f 100644 --- a/html/html/themes/ipfire/include/css/style.css +++ b/html/html/themes/ipfire/include/css/style.css @@ -359,7 +359,7 @@ div.rrdimage > ul { } div.rrdimage > img { - box-sizing: border-box; + padding: 0; max-width: 100%; min-height: 290px; } -- 2.39.5