diff options
author | Christopher Baines <mail@cbaines.net> | 2022-11-16 09:38:17 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-16 09:38:17 +0000 |
commit | 483b7e5826a91cf6599e4c6f5fcd288bcac93f45 (patch) | |
tree | 14cd40a0e56b731cd6f4f5ebaf7529587e2b7531 /guix-qa-frontpage | |
parent | e2f97d1d6312ca60f2a1e2c932a0a6b30af794f8 (diff) | |
download | qa-frontpage-483b7e5826a91cf6599e4c6f5fcd288bcac93f45.tar qa-frontpage-483b7e5826a91cf6599e4c6f5fcd288bcac93f45.tar.gz |
Visually separate the base and target in the issue package table
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/view/issue.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/guix-qa-frontpage/view/issue.scm b/guix-qa-frontpage/view/issue.scm index f1e5f6c..ae569e5 100644 --- a/guix-qa-frontpage/view/issue.scm +++ b/guix-qa-frontpage/view/issue.scm @@ -181,7 +181,9 @@ td.bad { (th)) (tr (th (@ (colspan 4)) "Base") - (th (@ (colspan 4)) "With patches applied") + (th (@ (colspan 4) + (style "border-left-width: 0.1em; border-left-style: solid; border-left-color: black")) + "With patches applied") (th)) (tr ,@(let ((header-style @@ -194,7 +196,10 @@ td.bad { "Blocked") (th (@ (style ,header-style)) "Unknown") - (th (@ (style ,header-style)) + (th (@ (style + ,(string-append + header-style + " border-left-width: 0.125em; border-left-style: solid; border-left-color: black;"))) "Succeeding") (th (@ (style ,header-style)) "Failing") |