50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
.list-group-notification {
|
|
width: 350px;
|
|
height: 88px;
|
|
padding: 16px;
|
|
margin-bottom: 8px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #EEEDED;
|
|
font-family: var(--ifx-font-family);
|
|
}
|
|
.list-group-notification .description__section {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.list-group-notification.flush {
|
|
border: none;
|
|
border-bottom: 1px solid #EEEDED;
|
|
}
|
|
.list-group-notification .heading__section {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 8px;
|
|
color: #0A8276;
|
|
}
|
|
.list-group-notification .heading__section-title {
|
|
flex: 1;
|
|
margin: 0;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
font-size: 1rem;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.list-group-notification .heading__section-time {
|
|
flex: none;
|
|
margin-left: 2px;
|
|
font-size: 0.875rem;
|
|
line-height: 1.25rem;
|
|
font-weight: 400;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
} |