Skip to content

Commit

Permalink
Merge pull request #2998 from vector-im/luke/css-typing-avatars
Browse files Browse the repository at this point in the history
CSS for avatars that appear when users are typing
  • Loading branch information
lukebarnard1 authored Jan 20, 2017
2 parents 01d4846 + afcf9de commit a24b568
Showing 1 changed file with 32 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ limitations under the License.
opacity: 0.5;
position: relative;
top: -4px;
/*
/*
animation-duration: 1s;
animation-name: bounce;
animation-direction: alternate;
animation-iteration-count: infinite;
*/
*/
}

.mx_RoomStatusBar_placeholderIndicator span:nth-child(1) {
Expand All @@ -70,6 +70,36 @@ limitations under the License.
}
}

.mx_RoomStatusBar_typingIndicatorAvatars {
width: 52px;
text-align: left;
}

.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_image {
margin-right: -12px;
border: 1px solid $primary-bg-color;
}

.mx_RoomStatusBar_typingIndicatorAvatars .mx_BaseAvatar_initial {
padding-left: 1px;
padding-top: 1px;
}

.mx_RoomStatusBar_typingIndicatorRemaining {
display: inline-block;
color: #acacac;
background-color: #ddd;
border: 1px solid $primary-bg-color;
border-radius: 40px;
width: 24px;
height: 24px;
line-height: 24px;
font-size: 0.8em;
vertical-align: top;
text-align: center;
position: absolute;
}

.mx_RoomStatusBar_scrollDownIndicator {
cursor: pointer;
}
Expand Down

0 comments on commit a24b568

Please sign in to comment.