diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-17 18:07:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-17 18:07:52 +0200 |
commit | b348c9b0dbd72f2a9930f9fcbbe72cd1c6b3efd8 (patch) | |
tree | dfec9d1dfa6b8917846260fbc9dff9ccb5197dc7 /app/javascript | |
parent | 53071389ee08e38d2f73d56ae92051e74042f387 (diff) |
Add explanation to featured hashtags page and profile (#11586)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/widgets.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/widgets.scss b/app/javascript/styles/mastodon/widgets.scss index 8c30bc57c..b0d2d1787 100644 --- a/app/javascript/styles/mastodon/widgets.scss +++ b/app/javascript/styles/mastodon/widgets.scss @@ -109,6 +109,15 @@ box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); } +.placeholder-widget { + padding: 16px; + border-radius: 4px; + border: 2px dashed $dark-text-color; + text-align: center; + color: $darker-text-color; + margin-bottom: 10px; +} + .contact-widget, .landing-page__information.contact-widget { box-sizing: border-box; @@ -526,6 +535,12 @@ $fluid-breakpoint: $maximum-width + 20px; a { font-size: 14px; line-height: 20px; + } +} + +.notice-widget, +.placeholder-widget { + a { text-decoration: none; font-weight: 500; color: $ui-highlight-color; |