add profile images for users
Note: users can configure different images on each relay, added userList with a metadata to keep a map of of different settings of each releay.pull/1/head
parent
8d60bf871c
commit
7a705cd4ab
@ -1,20 +1,29 @@
|
|||||||
/* https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Media_objects */
|
/* https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Media_objects */
|
||||||
.mbox {
|
.mbox {
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mbox .mbox-img {
|
.mbox .mbox-img {
|
||||||
width: 64px;
|
flex-basis: 64px;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
width: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mbox .mbox-body {
|
.mbox .mbox-header {
|
||||||
flex: 1;
|
flex-basis: calc(100% - 64px - 1rem);
|
||||||
color: var(--fgcolor-accent);
|
flex-grow: 0;
|
||||||
|
flex-shrink: 1;
|
||||||
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mbox-body > .header {
|
.mbox .mbox-body {
|
||||||
margin-top: 0;
|
color: var(--fgcolor-accent);
|
||||||
|
flex-basis: calc(100% - 64px - 1rem);
|
||||||
|
flex-grow: 0;
|
||||||
|
flex-shrink: 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue