From 92eb99d907ce01085643d982b886bfd26d9259ea Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Tue, 19 Aug 2014 20:43:50 +1000 Subject: [PATCH] go.tools/dashboard: fix various small UI issues - stop time column from wrapping, - fix pagination on front page, - left-align pagination buttons. LGTM=dvyukov R=dvyukov, golang-codereviews CC=golang-codereviews https://golang.org/cl/126410043 --- dashboard/app/build/ui.html | 8 +++++--- dashboard/app/static/style.css | 3 +-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/dashboard/app/build/ui.html b/dashboard/app/build/ui.html index a3cd1a02..96fa6ea7 100644 --- a/dashboard/app/build/ui.html +++ b/dashboard/app/build/ui.html @@ -122,9 +122,11 @@ {{with $.Pagination}}
- newer - older - latest +
{{end}} diff --git a/dashboard/app/static/style.css b/dashboard/app/static/style.css index 858adea1..47415135 100644 --- a/dashboard/app/static/style.css +++ b/dashboard/app/static/style.css @@ -186,7 +186,7 @@ table thead tr { font-size: 83%; } -.build .desc, .build .date, .build .user { +.build .desc, .build .time, .build .user { white-space: nowrap; } @@ -205,7 +205,6 @@ table thead tr { /* pagination */ .paginate nav { - text-align: center; padding: 0.5em; margin: 10px 0; }