diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 02:56:34 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 02:56:34 +0100 |
commit | 00c0737b0ecb32506ccdae2eae263c0116ad599e (patch) | |
tree | 9a89d3a197c8a4422aa0fed96b9973da26f90ebb /webclient/app.css | |
parent | autohyperlink messages using linky (diff) | |
download | synapse-00c0737b0ecb32506ccdae2eae263c0116ad599e.tar.xz |
- use css3 to make avatars always the right aspect ratio
- implement slightly overengineered tab/shift-tab autocomplete function
Diffstat (limited to 'webclient/app.css')
-rw-r--r-- | webclient/app.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/webclient/app.css b/webclient/app.css index b49ebef1ba..324928c892 100644 --- a/webclient/app.css +++ b/webclient/app.css @@ -62,6 +62,11 @@ h1 { width: 100%; } +.blink { + display: none ! important; + background-color: #faa; +} + /*** Participant list ***/ #usersTableWrapper { @@ -90,6 +95,7 @@ h1 { .userAvatar .userAvatarImage { position: absolute; top: 0px; + object-fit: cover; } .userAvatar .userAvatarGradient { @@ -176,6 +182,10 @@ h1 { vertical-align: top; line-height: 0; } + +.avatarImage { + object-fit: cover; +} .text { background-color: #eee; |