diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-04-03 14:12:30 +0200 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2021-04-11 12:17:56 -0500 |
commit | 9d47138945268b49df06ac5ecfeb651983f17068 (patch) | |
tree | c716318776d350bc238f7f2bf97d9cbfaacc7876 /app/javascript/styles | |
parent | ec2bab4b78d638a5a8c6a6a525b176776685f59c (diff) |
Add system checks to dashboard in admin UI (#15989)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/forms.scss | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/forms.scss b/app/javascript/styles/mastodon/forms.scss index 5ace0d97c..021db048b 100644 --- a/app/javascript/styles/mastodon/forms.scss +++ b/app/javascript/styles/mastodon/forms.scss @@ -598,6 +598,12 @@ code { color: $valid-value-color; } + &.warning { + border: 1px solid rgba($gold-star, 0.5); + background: rgba($gold-star, 0.25); + color: $gold-star; + } + &.alert { border: 1px solid rgba($error-value-color, 0.5); background: rgba($error-value-color, 0.1); @@ -619,6 +625,19 @@ code { } } + &.warning a { + font-weight: 700; + color: inherit; + text-decoration: underline; + + &:hover, + &:focus, + &:active { + text-decoration: none; + color: inherit; + } + } + p { margin-bottom: 15px; } @@ -675,6 +694,29 @@ code { } } +.flash-message-stack { + margin-bottom: 30px; + + .flash-message { + border-radius: 0; + margin-bottom: 0; + border-top-width: 0; + + &:first-child { + border-radius: 4px 4px 0 0; + border-top-width: 1px; + } + + &:last-child { + border-radius: 0 0 4px 4px; + + &:first-child { + border-radius: 4px; + } + } + } +} + .form-footer { margin-top: 30px; text-align: center; |