From 646afdf84117c50c8216c24ba6ebffece1266b4e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 23 Nov 2018 12:27:22 +0100 Subject: dashboard/app: enlarge stats value column for manager When numbers become large, they may not fit into 100px. --- dashboard/app/static/style.css | 4 ++-- pkg/html/generated.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/app/static/style.css b/dashboard/app/static/style.css index 536cd82ab..6ac90a5f9 100644 --- a/dashboard/app/static/style.css +++ b/dashboard/app/static/style.css @@ -129,8 +129,8 @@ table td, table th { } .list_table .stat_value { - width: 100pt; - max-width: 100pt; + width: 120pt; + max-width: 120pt; font-family: monospace; } diff --git a/pkg/html/generated.go b/pkg/html/generated.go index 7c5157aab..644cbddd9 100644 --- a/pkg/html/generated.go +++ b/pkg/html/generated.go @@ -132,8 +132,8 @@ table td, table th { } .list_table .stat_value { - width: 100pt; - max-width: 100pt; + width: 120pt; + max-width: 120pt; font-family: monospace; } -- cgit mrf-deployment