UX: correct ordering of username / fullname in UX
This commit is contained in:
parent
533315a607
commit
120c220c18
|
@ -425,21 +425,25 @@ span.highlighted {
|
||||||
line-height: $line-height-medium;
|
line-height: $line-height-medium;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
.full-name {
|
.full-name {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.first {
|
||||||
order: 1;
|
order: 1;
|
||||||
|
flex-basis: 100%;
|
||||||
}
|
}
|
||||||
.staff-notes-icon {
|
|
||||||
order: 2;
|
|
||||||
margin-left: 4px;
|
|
||||||
}
|
|
||||||
.poster-icon {
|
.poster-icon {
|
||||||
order: 2;
|
order: 2;
|
||||||
}
|
}
|
||||||
.username {
|
|
||||||
|
.second {
|
||||||
order: 3;
|
order: 3;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-title {
|
.user-title {
|
||||||
order: 4;
|
order: 4;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
|
|
Loading…
Reference in New Issue