diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-02 11:54:11 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-02 11:54:35 +0200 |
commit | 828101dd5145d462add4900340874ea2147da994 (patch) | |
tree | 30c74fce2f819c899afe995674b287bb02ec4db7 /webclient/app.css | |
parent | Ensure that event source unit tests could cope with get_new_events_for_user()... (diff) | |
download | synapse-828101dd5145d462add4900340874ea2147da994.tar.xz |
Represent user power level in a room by a red bar at the bottom of his avatar image. The width of this bar depends on the power level.
Diffstat (limited to 'webclient/app.css')
-rwxr-xr-x | webclient/app.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webclient/app.css b/webclient/app.css index 8685032d72..c27ec797a4 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -268,6 +268,13 @@ a:active { color: #000; } word-break: break-all; } +.userAvatar .userPowerLevel { + position: absolute; + bottom: 20px; + height: 1px; + background-color: red; +} + .userPresence { text-align: center; font-size: 12px; |