Fix part11

This commit is contained in:
Richard Feldman
2016-09-07 01:05:13 -05:00
parent 7f5a9fdfad
commit b45519d0a0
2 changed files with 23 additions and 4 deletions

View File

@@ -200,11 +200,16 @@ viewErrorMessage errorMessage =
text ""
viewSearchResult : SearchResult -> Html Msg
viewStars : SearchResult -> Table.HtmlDetails Msg
viewStars result =
Table.HtmlDetails []
[ span [ class "star-count" ] [ text (toString result.stars) ] ]
viewSearchResult : SearchResult -> Table.HtmlDetails Msg
viewSearchResult result =
li []
[ span [ class "star-count" ] [ text (toString result.stars) ]
, a [ href ("https://github.com/" ++ result.name), target "_blank" ]
Table.HtmlDetails []
[ a [ href ("https://github.com/" ++ result.name), target "_blank" ]
[ text result.name ]
, button [ class "hide-result", onClick (DeleteById result.id) ]
[ text "X" ]

View File

@@ -137,3 +137,17 @@ button:focus, input:focus {
display: block;
color: #555;
}
th {
text-align: left;
cursor: pointer;
}
th:hover {
color: rgb(96, 181, 204);
}
th, td {
font-size: 18px;
padding-right: 20px;
}