summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-01-09 15:13:07 +0100
committerYorhel <git@yorhel.nl>2020-01-09 15:13:07 +0100
commit810f0d61ebcacf768843badc0d73bd66dc52b249 (patch)
tree259bb56249899f67bf32ef05671346290cabca55
parent3416762e5e5cda330a851af916b136b91bb733e0 (diff)
UList.VNPage: Keep the "compact" vote input, prevent wrapping
-rw-r--r--elm/UList/VNPage.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elm/UList/VNPage.elm b/elm/UList/VNPage.elm
index 5483400e..1b241a74 100644
--- a/elm/UList/VNPage.elm
+++ b/elm/UList/VNPage.elm
@@ -119,7 +119,7 @@ view model =
, td [ colspan 2 ] [ Html.map Labels (LE.view model.labels) ]
]
, if model.flags.canvote || (Maybe.withDefault "-" model.flags.vote /= "-")
- then tr [ class "nostripe" ]
+ then tr [ class "nostripe compact" ]
[ td [] [ text "Vote" ]
, td [ style "width" "80px" ] [ Html.map Vote (VE.view model.vote) ]
, td [] []