Revise part12 and part13
This commit is contained in:
@@ -193,11 +193,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" ]
|
||||
|
||||
@@ -145,4 +145,18 @@ css =
|
||||
-- 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;
|
||||
-- }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user