Merge pull request #2403 from matrix-org/travis/fix-status-messages

Tiny fixes for custom status messages on experimental
This commit is contained in:
Travis Ralston 2019-01-03 18:23:52 -07:00 committed by GitHub
commit e1d2065f73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 11 deletions

View file

@ -17,4 +17,5 @@ limitations under the License.
.mx_MemberStatusMessageAvatar_hasStatus { .mx_MemberStatusMessageAvatar_hasStatus {
border: 2px solid $accent-color; border: 2px solid $accent-color;
border-radius: 40px; border-radius: 40px;
padding-right: 0 !important; /* Override AccessibleButton styling */
} }

View file

@ -52,7 +52,7 @@ limitations under the License.
.mx_RoomTile_nameContainer { .mx_RoomTile_nameContainer {
display: flex; display: flex;
align-items: center; align-items: center;
width: 180px; flex: 1;
vertical-align: middle; vertical-align: middle;
} }
@ -62,11 +62,6 @@ limitations under the License.
flex: 1; flex: 1;
} }
.mx_RoomTile_avatar {
flex: 0;
padding: 4px;
}
.mx_RoomTile_subtext { .mx_RoomTile_subtext {
display: inline-block; display: inline-block;
font-size: 11px; font-size: 11px;
@ -84,11 +79,8 @@ limitations under the License.
} }
.mx_RoomTile_avatar { .mx_RoomTile_avatar {
display: inline-block; flex: 0;
padding-top: 5px; padding: 4px;
padding-bottom: 5px;
padding-left: 16px;
padding-right: 6px;
width: 24px; width: 24px;
vertical-align: middle; vertical-align: middle;
} }