59 lines
1.2 KiB
SCSS
59 lines
1.2 KiB
SCSS
.message-list {
|
|
&.list-item {
|
|
dl {
|
|
position: relative;
|
|
display: flex;
|
|
flex-flow: column;
|
|
flex: 1 1 auto;
|
|
width: calc(100% - 90px);
|
|
dt {
|
|
.name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
font-weight: 600;
|
|
margin-bottom: 2px;
|
|
span {
|
|
font-size: 0.9em;
|
|
}
|
|
}
|
|
}
|
|
|
|
dd {
|
|
display: flex;
|
|
width: 100%;
|
|
position: relative;
|
|
justify-items: center;
|
|
.icon-img {
|
|
margin-right: 6px;
|
|
}
|
|
.final-message {
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|
|
.date {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 40px;
|
|
.noti-new {
|
|
border-radius: 50%;
|
|
color: #ffffff;
|
|
padding: 0;
|
|
text-align: center;
|
|
align-self: flex-end;
|
|
align-items: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
font-size: 0.9em;
|
|
margin-top: 3px;
|
|
}
|
|
}
|
|
}
|
|
}
|