summary refs log tree commit diff
path: root/webclient/app.css
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-21 15:34:49 +0100
committerErik Johnston <erik@matrix.org>2014-08-21 15:34:49 +0100
commit2b1297c501ba9d467603957a98e8e07aa75ca2d5 (patch)
tree715607879353d21282fb8c2b35919373c1de6697 /webclient/app.css
parentUse the new 'inviter' key from im sync for room display names. (diff)
parentShow image fullscreen when clicking on the thumbnail (diff)
downloadsynapse-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.css25
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 {