mirror of
https://github.com/Coffeedon/Cofffee-Assets.git
synced 2024-11-25 07:30:59 +00:00
33ad106a25
Added all custom themes from the collection.
37 lines
926 B
CSS
37 lines
926 B
CSS
/*
|
|
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;
|
|
}
|