forked from matrix/element-web
fix layout for long room names & topics
This commit is contained in:
parent
dd08f53756
commit
96cddc5ca8
|
@ -85,7 +85,7 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_RoomHeader_info {
|
.mx_RoomHeader_info {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
height: 48px;
|
/* height: 48px; */
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,17 +102,18 @@ limitations under the License.
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
|
overflow: hidden;
|
||||||
color: #454545;
|
color: #454545;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
padding-left: 19px;
|
padding-left: 19px;
|
||||||
padding-right: 16px;
|
padding-right: 16px;
|
||||||
|
/* why isn't text-overflow working? */
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomHeader_nametext {
|
.mx_RoomHeader_nametext {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
overflow-y: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomHeader_searchStatus {
|
.mx_RoomHeader_searchStatus {
|
||||||
|
|
Loading…
Reference in New Issue