CSS hacks to get topic to be chopped if it overflows, and also expand the header when hovered over, to show the full topic

wmwragg/room-header-styling
wmwragg 2016-09-19 15:51:23 +01:00
parent 5f6cc9b37b
commit 258050bf79
2 changed files with 41 additions and 7 deletions

View File

@ -20,13 +20,20 @@ limitations under the License.
flex: 0 0 93px ! important; flex: 0 0 93px ! important;
} }
.mx_RoomHeader:hover:not(.mx_RoomHeader_editing) {
min-height: 70px;
-webit-flex: 0 0 auto ! important;
flex: 0 0 auto ! important;
}
.mx_RoomHeader_wrapper { .mx_RoomHeader_wrapper {
max-width: 960px; max-width: 960px;
margin: auto; margin: auto;
height: 70px; min-height: 60px;
padding-top: 10px;
-webkit-align-items: center; -webkit-align-items: flex-start;
align-items: center; align-items: flex-start;
display: -webkit-box; display: -webkit-box;
display: -moz-box; display: -moz-box;
@ -35,6 +42,10 @@ limitations under the License.
display: flex; display: flex;
} }
.mx_RoomHeader:hover .mx_RoomHeader_wrapper {
height: auto;
}
.mx_RoomHeader_leftRow { .mx_RoomHeader_leftRow {
margin-left: -2px; margin-left: -2px;
@ -46,6 +57,12 @@ limitations under the License.
-webkit-flex: 1; -webkit-flex: 1;
flex: 1; flex: 1;
overflow: hidden;
}
.mx_RoomHeader_editing .mx_RoomHeader_leftRow,
.mx_RoomHeader:hover .mx_RoomHeader_leftRow {
overflow: visible;
} }
.mx_RoomHeader_spinner { .mx_RoomHeader_spinner {
@ -68,7 +85,7 @@ limitations under the License.
margin-right: 8px; margin-right: 8px;
color: #fff; color: #fff;
line-height: 34px; line-height: 34px;
margin-top: -2px; margin-top: 6px;
text-align: center; text-align: center;
-webkit-box-ordinal-group: 2; -webkit-box-ordinal-group: 2;
@ -98,10 +115,11 @@ limitations under the License.
padding-left: 12px; padding-left: 12px;
padding-right: 12px; padding-right: 12px;
padding-top: 15px;
} }
.mx_RoomHeader_rightRow { .mx_RoomHeader_rightRow {
margin-top: 4px; margin-top: 8px;
background-color: #fff; background-color: #fff;
display: flex; display: flex;
align-items: center; align-items: center;
@ -205,13 +223,28 @@ limitations under the License.
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
border-bottom: 1px solid transparent; border-bottom: 1px solid transparent;
white-space: nowrap;
}
.mx_RoomHeader.mx_RoomHeader_editing .mx_RoomHeader_topic,
.mx_RoomHeader.mx_RoomHeader_editing:hover .mx_RoomHeader_topic
{
max-height: 42px;
white-space: normal;
word-break: break-all;
}
.mx_RoomHeader:hover:not(.mx_RoomHeader_editing) .mx_RoomHeader_topic {
max-height: none;
white-space: normal;
word-break: break-all;
padding-bottom: 6px;
} }
.mx_RoomHeader_avatar { .mx_RoomHeader_avatar {
display: table-cell; display: table-cell;
width: 48px; width: 48px;
height: 50px; height: 50px;
vertical-align: middle;
} }
.mx_RoomHeader_avatar .mx_BaseAvatar_image { .mx_RoomHeader_avatar .mx_BaseAvatar_image {

View File

@ -17,6 +17,7 @@ limitations under the License.
.mx_RoomSettings { .mx_RoomSettings {
margin-left: 65px; margin-left: 65px;
margin-bottom: 20px; margin-bottom: 20px;
margin-top: 6px;
} }
.mx_RoomSettings_leaveButton, .mx_RoomSettings_leaveButton,
@ -210,4 +211,4 @@ limitations under the License.
padding: 6px; padding: 6px;
padding-left: 1em; padding-left: 1em;
padding-right: 1em; padding-right: 1em;
} }