diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-06-14 22:29:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 22:29:40 +0200 |
commit | 3e9dc4044bb7e1ef6131fbd6430ed85b3cc2fcfa (patch) | |
tree | deea7444dfd0052cb99d6a5b6f42796fbef52194 /app/javascript/styles | |
parent | b1484cf3ceebe1f1f083e4c06872493dc0a68511 (diff) |
Add hints about incomplete remote content to web UI (#14031)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 5d725b908..acd4b93b5 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -3227,6 +3227,31 @@ a.status-card.compact:hover { border-bottom: 1px solid lighten($ui-base-color, 8%); } +.timeline-hint { + text-align: center; + color: $darker-text-color; + padding: 15px; + box-sizing: border-box; + width: 100%; + cursor: default; + + strong { + font-weight: 500; + } + + a { + color: lighten($ui-highlight-color, 8%); + text-decoration: none; + + &:hover, + &:focus, + &:active { + text-decoration: underline; + color: lighten($ui-highlight-color, 12%); + } + } +} + .regeneration-indicator { text-align: center; font-size: 16px; |