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.
17 lines
571 B
17 lines
571 B
/*
|
|
Hide buttons that can't be clicked
|
|
- columns on /about and tag pages have buttons that don't work.
|
|
- so, this snippet hides those nonworking buttons to save space
|
|
- and to avoid confusion.
|
|
- unboostable buttons are made transparent on hover instead.
|
|
|
|
this is fixed in https://github.com/tootsuite/mastodon/pull/10054
|
|
|
|
author: trwnh
|
|
license: Public Domain
|
|
*/
|
|
.status__action-bar .icon-button.disabled:hover,
|
|
.notification-favourite .status.status-direct .icon-button.disabled:hover
|
|
{color: transparent !important}
|
|
|
|
#mastodon-timeline .status__action-bar {display: none} |