diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-07 10:00:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-07 10:00:58 +0200 |
commit | a8958d07e222f2aa6867e8a5bf93cce4535fd3ce (patch) | |
tree | 28bf1bd8c3c608f697a2eef9822268f82ce55964 /app/javascript | |
parent | dd38c280a50a8feb70ad341c3561fe2f87c8cf3d (diff) |
Fix featured tags not finding the right tag on save (#11504)
Regression from f371b32
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/widgets.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/widgets.scss b/app/javascript/styles/mastodon/widgets.scss index acaf5b024..8c30bc57c 100644 --- a/app/javascript/styles/mastodon/widgets.scss +++ b/app/javascript/styles/mastodon/widgets.scss @@ -324,7 +324,8 @@ &.active h4 { &, .fa, - small { + small, + .trends__item__current { color: $primary-text-color; } } @@ -337,6 +338,10 @@ &.active .avatar-stack .account__avatar { border-color: $ui-highlight-color; } + + .trends__item__current { + padding-right: 0; + } } } |