You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
926 B
38 lines
926 B
2 years ago
|
/*
|
||
|
Collapse fave/boost/poll notifications
|
||
|
- limits display to just a few lines (~3), so you can at least identify it
|
||
|
- hides the display name on fave/boost, because you already know you posted it
|
||
|
- tighter margins, remove space between CW and content
|
||
|
- hides the buttons, but you can expand a status to interact with it
|
||
|
|
||
|
author: trwnh
|
||
|
license: Public Domain
|
||
|
*/
|
||
|
|
||
|
.notification-favourite .status,
|
||
|
.notification-reblog .status,
|
||
|
.notification-poll .status{
|
||
|
max-height: 4em;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.notification-favourite .display-name,
|
||
|
.notification-reblog .display-name {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.notification-favourite .status__content,
|
||
|
.notification-reblog .status__content {
|
||
|
margin-top: -4px;
|
||
|
}
|
||
|
|
||
|
.notification-favourite .status__content p,
|
||
|
.notification-reblog .status__content p {
|
||
|
margin-bottom: 0px;
|
||
|
}
|
||
|
|
||
|
.notification-favourite .status__action-bar,
|
||
|
.notification-reblog .status__action-bar {
|
||
|
display: none;
|
||
|
}
|