lbry-desktop/ui/scss/component/_notification.scss

149 lines
2.7 KiB
SCSS
Raw Normal View History

2020-07-23 16:22:57 +02:00
.notifications__empty {
background-color: var(--color-card-background);
padding: var(--spacing-l);
}
.notification_list {
> * {
border-bottom: 1px solid var(--color-border);
&:last-of-type {
border-bottom: none;
}
}
}
.notification__icon {
.icon__wrapper {
2020-09-18 06:23:42 +02:00
width: 1rem;
height: 1rem;
2020-10-01 22:59:11 +02:00
padding: 1.2rem;
2020-09-18 06:23:42 +02:00
border-radius: var(--border-radius);
margin-right: var(--spacing-m);
2020-09-18 06:23:42 +02:00
@media (min-width: $breakpoint-small) {
padding: 1.5rem;
}
}
}
2020-07-23 16:22:57 +02:00
.notification__wrapper {
width: 100%;
display: flex;
padding: var(--spacing-m);
.channel-thumbnail {
@include handleChannelGif(3rem);
}
2020-08-21 21:44:54 +02:00
@media (max-width: $breakpoint-small) {
.channel-thumbnail {
@include handleChannelGif(2rem);
}
}
}
.notification__wrapper--unseen {
background-color: var(--color-card-background-highlighted);
&:hover {
background-color: var(--color-button-secondary-bg);
}
@media (max-width: $breakpoint-small) {
padding: var(--spacing-s);
}
2020-07-23 16:22:57 +02:00
}
.notification__content {
flex: 1;
2020-09-18 06:23:42 +02:00
display: flex;
flex-direction: column;
2020-08-21 21:44:54 +02:00
2020-09-18 06:23:42 +02:00
@media (min-width: $breakpoint-small) {
flex-direction: row;
justify-content: space-between;
align-items: center;
2020-08-21 21:44:54 +02:00
}
2020-07-23 16:22:57 +02:00
}
.notification__title {
font-size: var(--font-small);
color: var(--color-text);
margin-bottom: var(--spacing-s);
2020-09-18 06:23:42 +02:00
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
2020-08-21 21:44:54 +02:00
@media (max-width: $breakpoint-small) {
margin-bottom: 0;
}
2020-07-23 16:22:57 +02:00
}
.notification__text {
font-size: var(--font-body);
2020-08-21 21:44:54 +02:00
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
2020-07-23 16:22:57 +02:00
}
2020-10-01 22:59:11 +02:00
.notification__title,
.notification__text {
max-width: 30rem;
}
2020-07-23 16:22:57 +02:00
.notification__time {
font-size: var(--font-small);
color: var(--color-text-help);
2020-08-21 21:44:54 +02:00
flex-shrink: 0;
2020-09-18 06:23:42 +02:00
margin-top: var(--spacing-s);
@media (min-width: $breakpoint-small) {
margin-left: var(--spacing-s);
margin-top: 0;
}
2020-07-23 16:22:57 +02:00
}
2020-08-10 22:47:39 +02:00
.notification__bubble {
height: 1.5rem;
width: 1.5rem;
border-radius: 50%;
background-color: var(--color-notification);
position: absolute;
top: -0.5rem;
right: -0.5rem;
color: white;
font-size: var(--font-small);
font-weight: bold;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
}
2020-08-11 22:32:03 +02:00
.notification__bubble--inline {
@extend .notification__bubble;
top: 0.75rem;
right: 1rem;
}
.notification__extra {
display: flex;
align-items: center;
}
.notification__mark-seen {
height: 12px;
width: 12px;
border-radius: 50%;
background-color: var(--color-primary);
margin-left: var(--spacing-s);
2020-10-01 22:59:11 +02:00
margin-top: var(--spacing-s);
@media (min-width: $breakpoint-small) {
margin-top: 0;
}
}