diff options
author | Christopher Baines <mail@cbaines.net> | 2023-07-21 15:22:40 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-21 15:22:40 +0100 |
commit | 1def9d7b707349ee34ff9e47756ead257ac3c157 (patch) | |
tree | bd292c8bae7ef8615f047a836450d515dfe4e06e /guix-qa-frontpage | |
parent | 3b2a165c4bee446771780e80071bd05bd6eb827b (diff) | |
download | qa-frontpage-1def9d7b707349ee34ff9e47756ead257ac3c157.tar qa-frontpage-1def9d7b707349ee34ff9e47756ead257ac3c157.tar.gz |
Improve the styling of the package changes page
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/view/shared.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/guix-qa-frontpage/view/shared.scm b/guix-qa-frontpage/view/shared.scm index 36670f3..6f38a02 100644 --- a/guix-qa-frontpage/view/shared.scm +++ b/guix-qa-frontpage/view/shared.scm @@ -236,6 +236,7 @@ #:title title #:body `((main + (@ (style "max-width: 98%;")) (table (form (@ (id "filter-form") @@ -246,11 +247,13 @@ (td "Version") ,@(map (lambda (system) - `(td ,system + `(td (span (@ (style "font-size: 1.5em; font-family: monospace;")) + ,system) (select (@ (name ,(simple-format #f "~A-change" system)) + (style "margin-bottom: 0;") (multiple #t)) ,@(let ((system-change-selected-options (or (assoc-ref @@ -272,7 +275,8 @@ (cons change change)) %changes)))) (button - (@ (type "submit")) + (@ (type "submit") + (style "padding: 0; width: 100%;")) "Update"))) %systems-to-submit-builds-for)))) (tbody |