Fix a couple badge alignment issues with community invites
This commit is contained in:
parent
c3ad854868
commit
e08512020f
3 changed files with 4 additions and 3 deletions
|
@ -14,7 +14,8 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_DecoratedRoomAvatar {
|
// XXX: We shouldn't be using TemporaryTile anywhere - delete it.
|
||||||
|
.mx_DecoratedRoomAvatar, .mx_TemporaryTile {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.mx_RoomTileIcon {
|
.mx_RoomTileIcon {
|
||||||
|
|
|
@ -148,7 +148,7 @@ limitations under the License.
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.mx_DecoratedRoomAvatar {
|
.mx_DecoratedRoomAvatar, .mx_RoomTile2_avatarContainer {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,7 @@ export default class TemporaryTile extends React.Component<IProps, IState> {
|
||||||
// XXX: We copy classes because it's easier
|
// XXX: We copy classes because it's easier
|
||||||
const classes = classNames({
|
const classes = classNames({
|
||||||
'mx_RoomTile2': true,
|
'mx_RoomTile2': true,
|
||||||
|
'mx_TemporaryTile': true,
|
||||||
'mx_RoomTile2_selected': this.props.isSelected,
|
'mx_RoomTile2_selected': this.props.isSelected,
|
||||||
'mx_RoomTile2_minimized': this.props.isMinimized,
|
'mx_RoomTile2_minimized': this.props.isMinimized,
|
||||||
});
|
});
|
||||||
|
@ -85,7 +86,6 @@ export default class TemporaryTile extends React.Component<IProps, IState> {
|
||||||
);
|
);
|
||||||
if (this.props.isMinimized) nameContainer = null;
|
if (this.props.isMinimized) nameContainer = null;
|
||||||
|
|
||||||
const avatarSize = 32;
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<RovingTabIndexWrapper>
|
<RovingTabIndexWrapper>
|
||||||
|
|
Loading…
Reference in a new issue