bigbuffet-rw/app/styles/components/notification.scss

107 lines
1.6 KiB
SCSS
Raw Normal View History

2021-10-05 20:01:16 -07:00
.notification {
border-bottom: 1px solid var(--brand-color--med);
padding: 10px 0;
}
.notification-mention {
padding: 15px 0;
}
2020-06-02 19:11:01 -07:00
.notification-favourite {
.status.status-direct {
background: transparent;
.icon-button.disabled {
2020-06-06 20:55:00 -07:00
color: hsla(var(--brand-color_hsl), 0.2);
2020-06-02 19:11:01 -07:00
}
}
}
.notification__message {
margin: 0 10px 0 68px;
padding: 8px 0 0;
cursor: default;
2020-06-06 20:55:00 -07:00
color: var(--primary-text-color--faint);
2020-06-02 19:11:01 -07:00
font-size: 15px;
line-height: 22px;
position: relative;
.fa {
color: var(--highlight-text-color);
}
> span {
display: inline;
overflow: hidden;
text-overflow: ellipsis;
}
}
2021-10-05 20:01:16 -07:00
.notification__icon-wrapper {
2020-06-02 19:11:01 -07:00
left: -26px;
position: absolute;
2021-10-05 20:01:16 -07:00
.svg-icon {
width: 20px;
height: 20px;
color: var(--highlight-text-color);
svg.icon-tabler-thumb-up {
color: $gold-star;
}
svg.feather-repeat {
color: var(--highlight-text-color);
}
2020-06-02 19:11:01 -07:00
}
}
.notification__display-name {
color: inherit;
font-weight: 500;
text-decoration: none;
&:hover {
color: var(--primary-text-color);
text-decoration: underline;
}
}
.notification__relative_time {
float: right;
}
2021-09-12 17:33:00 -07:00
.notification .status__wrapper {
box-shadow: none;
}
2021-10-05 20:01:16 -07:00
.notification {
.status-container {
padding: 0;
}
.status__wrapper {
border-radius: 0;
padding: 0;
}
.status {
padding-bottom: 8px !important;
}
}
.notification-birthday span[type="button"] {
&:focus,
&:hover,
&:active {
text-decoration: underline;
cursor: pointer;
}
}
.columns-area .notification-birthday {
.notification__message {
padding-top: 0;
}
}