implement new roomheader

This commit is contained in:
Matthew Hodgson 2015-10-25 01:52:28 +00:00
parent d16968d528
commit 6e3e0a1447
5 changed files with 51 additions and 28 deletions

View file

@ -85,7 +85,7 @@ limitations under the License.
.mx_MessageComposer_call {
padding-right: 10px;
padding-top: 3px;
padding-top: 4px;
}
.mx_MessageComposer_upload img {

View file

@ -71,8 +71,7 @@ limitations under the License.
}
.mx_RoomHeader_rightRow {
height: 48px;
margin-top: 18px;
margin-top: 32px;
background-color: #fff;
-webkit-box-ordinal-group: 3;
@ -98,6 +97,7 @@ limitations under the License.
}
.mx_RoomHeader_name {
cursor: pointer;
vertical-align: middle;
height: 28px;
color: #454545;
@ -108,6 +108,26 @@ limitations under the License.
text-overflow: ellipsis;
}
.mx_RoomHeader_nametext {
display: inline-block;
}
.mx_RoomHeader_settingsButton {
display: inline-block;
visibility: hidden;
position: relative;
bottom: 10px;
left: 4px;
}
.mx_RoomHeader_name:hover {
color: #76cfa6;
}
.mx_RoomHeader_name:hover .mx_RoomHeader_settingsButton {
visibility: visible;
}
.mx_RoomHeader_nameEditing {
padding-left: 16px;
padding-right: 16px;
@ -151,7 +171,6 @@ limitations under the License.
}
.mx_RoomHeader_button {
height: 48px;
display: table-cell;
vertical-align: middle;
padding-left: 8px;
@ -168,4 +187,4 @@ limitations under the License.
.mx_RoomHeader_voipButtons {
margin-top: 18px;
}
}