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

132 lines
2.3 KiB
Plaintext

.cell {
display: flex;
flex-direction: column;
.date {
font-size: 12px;
color: var(--oak-text-color-secondary);
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0px 10px 0px;
}
}
.background {
display: flex;
flex-direction: column;
}
.skuBackground {
background: var(--oak-container-color-page);
display: flex;
flex-direction: row;
margin: 5px;
}
.skuInfo {
background: var(--oak-container-color-page);
display: flex;
flex-direction: column;
}
.button {
display: flex;
flex-direction: row-reverse;
margin: 5px;
}
.tradeId {
font-size: 12px;
line-height: 25px;
margin: 5px;
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.avatar {
margin: 0 10px;
height: 30px !important;
width: 30px !important;
padding: 0 !important;
}
.messageType_text {
display: flex;
border-radius: 4px;
background: linear-gradient(
var(--oak-color-primary),
var(--oak-color-primary)
);
border-radius: 4px;
font-size: 14px;
line-height: 18px;
word-wrap: break-word;
word-break: break-all;
max-width: 60%;
color: #fff;
padding: 10px;
}
.messageType_text_no {
color: #333;
background: var(--oak-bg-color-container);
}
.messageType_trade {
border-radius: 8px;
color: #333;
background: var(--oak-bg-color-container);
}
.messageType_sku {
border-radius: 8px;
color: #333;
background: var(--oak-bg-color-container);
}
.myMessage {
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
align-items: flex-start;
margin-bottom: 10px;
}
.notMyMessage {
flex-direction: row;
}
.messageType_system {
color: var(--oak-text-color-secondary);
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
line-height: 25px;
display: flex;
justify-content: center;
-webkit-line-clamp: 2;
margin: 0px 10px;
}
.name {
font-size: 14px;
margin: 5px;
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.text {
font-size: 10px;
margin: 5px;
color: #777;
}