Merge pull request #5093 from vector-im/luke/groups-add-featured-rooms-and-users

CSS for GroupView: Add a User
pull/5097/head
David Baker 2017-09-21 09:55:14 +01:00 committed by GitHub
commit 9b9073f0ed
1 changed files with 22 additions and 1 deletions

View File

@ -160,9 +160,30 @@ limitations under the License.
margin-top: 10px;
}
.mx_GroupView_featuredThings_container {
display: flex;
}
.mx_GroupView_featuredThings_addButton,
.mx_GroupView_featuredThing {
cursor: pointer;
display: table-cell;
text-align: center;
width: 100px;
margin: 0px 20px;
}
.mx_GroupView_featuredThing .mx_BaseAvatar {
/* To prevent misalignment with mx_TintableSvg (in addButton) */
vertical-align: initial;
}
.mx_GroupView_featuredThings_addButton object {
pointer-events: none;
}
.mx_GroupView_featuredThing_name {
word-wrap: break-word;
}
.mx_GroupView_uploadInput {