diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-28 02:21:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 02:21:00 +0100 |
commit | 305abc9e05ddb2db6a40a6eda01578e01e58791f (patch) | |
tree | 69c0ac3a17f51a924c8692e968cf5367c9316531 /app/javascript | |
parent | 0fcc4b1c566e4365e07ce5a1c87743db76c07fe6 (diff) |
Fix design of announcements in admin UI (#12989)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index 89c45cab6..b0307fb71 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -887,3 +887,46 @@ a.name-tag, .center-text { text-align: center; } + +.announcements-list { + border: 1px solid lighten($ui-base-color, 4%); + border-radius: 4px; + + &__item { + padding: 15px 0; + background: $ui-base-color; + border-bottom: 1px solid lighten($ui-base-color, 4%); + + &__title { + padding: 0 15px; + display: block; + font-weight: 500; + font-size: 18px; + line-height: 1.5; + color: $secondary-text-color; + text-decoration: none; + margin-bottom: 10px; + + &:hover, + &:focus, + &:active { + color: $primary-text-color; + } + } + + &__meta { + padding: 0 15px; + color: $dark-text-color; + } + + &__action-bar { + display: flex; + justify-content: space-between; + align-items: center; + } + + &:last-child { + border-bottom: 0; + } + } +} |