diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-04-19 02:36:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-19 02:36:31 +0200 |
commit | ba917e15f66c7848fe943e571d1ec5eeb549b59d (patch) | |
tree | a9fcd792f8a309c6d8613b29dff085c65759f918 /app | |
parent | ff87d1bc3ecdb81ff5c523f0964ecf223a503d30 (diff) |
Fix text color in "show more" link inside boost confirmation modal (#7183)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index cdf3a9daa..9b5ab6f01 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -40,6 +40,16 @@ cursor: default; } + &::-moz-focus-inner { + border: 0; + } + + &::-moz-focus-inner, + &:focus, + &:active { + outline: 0 !important; + } + &.button-primary, &.button-alternative, &.button-secondary, @@ -666,6 +676,16 @@ background: lighten($action-button-color, 7%); text-decoration: none; } + + &::-moz-focus-inner { + border: 0; + } + + &::-moz-focus-inner, + &:focus, + &:active { + outline: 0 !important; + } } .status__content__text { @@ -3899,6 +3919,10 @@ a.status-card { top: 10px; width: 48px; } + + .status__content__spoiler-link { + color: lighten($ui-secondary-color, 8%); + } } .actions-modal { |