oak-general-business/es/components/session/cell/web.module.less

58 lines
1.4 KiB
Plaintext

.cell {
display: flex;
flex-direction: row;
border-bottom: 1px solid var(--oak-border-color);
padding: 10px;
cursor: pointer;
.avatar {
height: 50px !important;
width: 50px !important;
}
.inner {
display: flex;
flex-direction: column;
flex: 1;
margin-left: 10px;
.top {
display: flex;
flex-direction: row;
justify-content: space-between;
.title {
font-size: 16px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 140px;
color: var(--oak-text-color-primary);
}
.date {
font-size: 10px;
color: var(--oak-text-color-secondary);
}
}
.message {
display: inline-block;
font-size: 12px;
color: var(--oak-text-color-secondary);
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 180px;
margin-top: 10px;
}
}
}
.cell_selected {
background: #d4e3fc;
}