Compare commits

..

No commits in common. "2c99d10075f3e9ce7bd35c7d388411e10ad83348" and "56878533f464686110ebca4eaffbf0b023ca8cef" have entirely different histories.

2 changed files with 6 additions and 32 deletions

View File

@ -69,24 +69,7 @@ roomListElementView s jr =
let
name = Maybe.withDefault "<No Name>" <| roomName jr
in
div [ class "room-link-wrapper" ]
[ a [ href <| roomUrl s ] [ text name ]
, roomNotificationCountView jr.unreadNotifications
]
roomNotificationCountView : Maybe UnreadNotificationCounts -> Html Msg
roomNotificationCountView ns =
let
spanNumber = case Maybe.andThen .notificationCount ns of
Nothing -> ""
Just 0 -> ""
Just i -> String.fromInt i
spanSuffix = case Maybe.andThen .highlightCount ns of
Nothing -> ""
Just 0 -> ""
Just i -> "!"
in
span [ class "notification-count" ] [ text (spanNumber ++ spanSuffix) ]
a [ href <| roomUrl s ] [ text name ]
loginView : Model -> Html Msg
loginView m = div [ class "login-wrapper" ]

View File

@ -89,7 +89,7 @@ div.base-wrapper {
display: flex;
height: 100%;
> div {
div {
padding: 5px;
box-sizing: border-box;
}
@ -100,15 +100,9 @@ div.base-wrapper {
*/
div.rooms-wrapper {
flex-shrink: 0;
}
div.room-link-wrapper {
whitespace: nowrap;
display: flex;
padding: 0px;
span, a {
margin-right: 5px;
a {
display: block;
}
}
@ -147,7 +141,6 @@ div.events-wrapper {
table.events-table {
border-collapse: collapse;
width: 100%;
table-layout: fixed;
td {
padding: 5px;
@ -155,8 +148,7 @@ table.events-table {
}
td:nth-child(1) {
width: 10%;
max-width: 100px;
width: 0px;
white-space: nowrap;
}
@ -173,9 +165,8 @@ span.sender-wrapper {
box-sizing: border-box;
text-align: center;
width: 100%;
max-width: 100px;
text-overflow: ellipsis;
overflow: hidden;
vertical-align: bottom; /* Fix for overflow changing element height */
}
/**