UX: Style group flair in /groups same as in topic avatars

This commit is contained in:
Penar Musaraj 2018-11-28 16:02:49 -05:00
parent 6568832235
commit c388cacb81
3 changed files with 24 additions and 2 deletions

View File

@ -2,6 +2,7 @@ import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
tagName: "span",
classNames: ["group-info-details"],
@computed("group.full_name", "group.title")
showFullName(fullName, title) {

View File

@ -56,9 +56,15 @@
.avatar-flair {
background-size: $size;
height: $size;
width: $size;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
.d-icon {
font-size: $size !important;
height: $size / 1.8;
width: $size / 1.8;
}
}
}

View File

@ -189,6 +189,10 @@
}
.groups-info {
.group-info-details {
vertical-align: middle;
}
.groups-info-name {
font-weight: bold;
color: $primary;
@ -204,6 +208,11 @@
color: dark-light-choose($primary-medium, $secondary-medium);
}
.group-avatar-flair {
vertical-align: middle;
color: $primary;
}
span {
display: inline-block;
}
@ -213,9 +222,15 @@
.avatar-flair {
background-size: $size;
height: $size;
width: $size;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
.d-icon {
font-size: $size !important;
height: $size / 1.8;
width: $size / 1.8;
}
}