diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-21 15:34:49 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-21 15:34:49 +0100 |
commit | 2b1297c501ba9d467603957a98e8e07aa75ca2d5 (patch) | |
tree | 715607879353d21282fb8c2b35919373c1de6697 /webclient/app.css | |
parent | Use the new 'inviter' key from im sync for room display names. (diff) | |
parent | Show image fullscreen when clicking on the thumbnail (diff) | |
download | synapse-2b1297c501ba9d467603957a98e8e07aa75ca2d5.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into release-v0.0.1
Diffstat (limited to 'webclient/app.css')
-rw-r--r-- | webclient/app.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/webclient/app.css b/webclient/app.css index 1717b1b355..83b0c9c65a 100644 --- a/webclient/app.css +++ b/webclient/app.css @@ -66,6 +66,10 @@ h1 { background-color: #faa; } +.mouse-pointer { + cursor: pointer; +} + /*** Participant list ***/ #usersTableWrapper { @@ -89,7 +93,6 @@ h1 { height: 100px; position: relative; background-color: #000; - cursor: pointer; } .userAvatar .userAvatarImage { @@ -246,6 +249,26 @@ h1 { text-align: left ! important; } +#room-fullscreen-image { + position: absolute; + top: 0px; + height: 0px; + width: 100%; + height: 100%; +} + +#room-fullscreen-image img { + max-width: 100%; + max-height: 100%; + bottom: 0; + left: 0; + margin: auto; + overflow: auto; + position: fixed; + right: 0; + top: 0; +} + /*** Profile ***/ .profile-avatar { |