From 1be1a06281dccada078a2a51e8b483811af8f596 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 29 Mar 2024 15:02:10 +0100 Subject: all: refactor stats Add ability for each package to create and export own stats. Each stat is self-contained, describes how it should be presented, and there is not need to copy them from one package to another. Stats also keep historical data and allow building graphs over time. --- pkg/html/pages/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkg/html') diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index 156bf61ba..9ec565616 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -180,14 +180,14 @@ table td, table th { } .list_table .stat_name { - width: 150pt; - max-width: 150pt; + width: 180pt; + max-width: 180pt; font-family: monospace; } .list_table .stat_value { - width: 120pt; - max-width: 120pt; + width: 200pt; + max-width: 200pt; font-family: monospace; } -- cgit mrf-deployment