diff options
author | David Baker <dbkr@matrix.org> | 2014-09-06 00:14:02 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-06 00:14:02 +0100 |
commit | c03c25530487e5051affb9685f6f7b0c37abf8e5 (patch) | |
tree | fa1d0826c145bd082589c51117d1551262899bec /webclient/app.css | |
parent | Add m.roo.aliases (diff) | |
download | synapse-c03c25530487e5051affb9685f6f7b0c37abf8e5.tar.xz |
Better call bar (visually: still lacks ring[back] tones).
Diffstat (limited to 'webclient/app.css')
-rwxr-xr-x | webclient/app.css | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/webclient/app.css b/webclient/app.css index dbee02f83d..e0ca2f77a8 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -44,7 +44,49 @@ a:active { color: #000; } } #callBar { - float: left; + float: left; + height: 32px; + margin: auto; + text-align: right; + line-height: 16px; +} + +.callIcon { + margin-left: 4px; + margin-right: 4px; + margin-top: 8px; + -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; + -moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; + -o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; + transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +} + +.callIconRotate { + -webkit-transform: rotateZ(45deg); + -moz-transform: rotateZ(45deg); + -ms-transform: rotateZ(45deg); + -o-transform: rotateZ(45deg); + transform: rotateZ(45deg); +} + +#callPeerImage { + width: 32px; + height: 32px; + border: none; + float: left; +} + +#callPeerNameAndState { + float: left; + margin-left: 4px; +} + +#callState { + font-size: 60%; +} + +#callPeerName { + font-size: 80%; } #headerContent { |