summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-08-04 11:33:03 +0200
committerYorhel <git@yorhel.nl>2021-08-04 11:33:03 +0200
commit2e288f7946cd302a610c623937f18dd988753b94 (patch)
tree3d076af3e87bad4c0aa03b3faaed53c76bd1eaec
parent801ddce64be0af357967e8346fbc934b8a8d50ed (diff)
VN::Page: Fix user options styling
-rw-r--r--css/v2.css8
-rw-r--r--elm/UList/VNPage.elm2
2 files changed, 5 insertions, 5 deletions
diff --git a/css/v2.css b/css/v2.css
index 4e5d455a..497e2b59 100644
--- a/css/v2.css
+++ b/css/v2.css
@@ -468,10 +468,10 @@ div.vnimg { float: left; width: 250px; margin: 0 10px; }
div.vnimg p { text-align: center; padding: 0px; margin: 0; }
div.vndetails h2 { margin: 5px 0 0 0; }
.vndesc p { padding: 0 0 0 5px; }
-div.vndetails > table { float: left; width: 500px; }
-div.vndetails > table td.key { width: 90px; }
-div.vndetails > table dt { float: left; font-style: italic; }
-div.vndetails > table dd { margin-left: 90px; }
+div.vndetails > table { float: left; width: 500px; }
+div.vndetails > table td.key { width: 90px; }
+div.vndetails > table dt { float: left; font-style: italic; }
+div.vndetails > table dd { margin-left: 90px; }
div.vndetails td.title abbr { float: right }
div.vndetails td.relations dt { float: none; font-style: normal; }
div.vndetails td.relations dd { margin-left: 15px; }
diff --git a/elm/UList/VNPage.elm b/elm/UList/VNPage.elm
index 96b3389b..e94acc51 100644
--- a/elm/UList/VNPage.elm
+++ b/elm/UList/VNPage.elm
@@ -44,7 +44,7 @@ view model =
div [ class "ulistvn elm_dd_input" ]
[ span [] (UW.viewStatus model)
, b [] [ text "User options" ]
- , table [ style "margin" "4px 0 0 0" ] <|
+ , table [ style "margin" "4px 0 0 0", style "width" "100%" ] <|
[ tr [ class "odd" ]
[ td [ class "key" ] [ text "My labels" ]
, td [ colspan (if model.canvote then 2 else 1) ] [ Html.map UW.Label (LE.view model.labels "- select label -") ]