diff options
author | Christopher Baines <mail@cbaines.net> | 2020-01-02 21:18:42 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-01-02 21:18:42 +0000 |
commit | 75665e3203d1db2b2a05fb7e621ae272bdb89b60 (patch) | |
tree | a96e63614548d18ec57fe477cb3e1d2b751af526 /guix-data-service/web | |
parent | e859cc9a4a9bb83b07d55408c72a94c5691fd721 (diff) | |
download | data-service-75665e3203d1db2b2a05fb7e621ae272bdb89b60.tar data-service-75665e3203d1db2b2a05fb7e621ae272bdb89b60.tar.gz |
Fix a few list styling issues
Diffstat (limited to 'guix-data-service/web')
-rw-r--r-- | guix-data-service/web/compare/html.scm | 1 | ||||
-rw-r--r-- | guix-data-service/web/revision/html.scm | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/guix-data-service/web/compare/html.scm b/guix-data-service/web/compare/html.scm index 88bd3db..f493714 100644 --- a/guix-data-service/web/compare/html.scm +++ b/guix-data-service/web/compare/html.scm @@ -218,6 +218,7 @@ (td ,name) (td (ul + (@ (class "list-unstyled")) ,@(map (match-lambda ((type . versions) diff --git a/guix-data-service/web/revision/html.scm b/guix-data-service/web/revision/html.scm index 6da76e3..00d6daa 100644 --- a/guix-data-service/web/revision/html.scm +++ b/guix-data-service/web/revision/html.scm @@ -223,6 +223,7 @@ "License" "Licenses")) (dd (ul + (@ (class "list-inline")) ,@(map (lambda (license) `(li (a (@ (href ,(assoc-ref license "uri"))) ,(assoc-ref license "name")))) @@ -292,6 +293,7 @@ (td ,@(if (and file (not (string-null? file))) `((ul + (@ (class "list-unstyled")) ,@(map (match-lambda ((id label url cgit-url-base) @@ -1406,6 +1408,7 @@ figure { `((td ,@(if (and file (not (string-null? file))) `((ul + (@ (class "list-unstyled")) ,@(map (match-lambda ((id label url cgit-url-base) |