diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-16 11:23:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-16 11:23:22 +0100 |
commit | 1c113fd72df18999de1d6f09fa3790dd1f715506 (patch) | |
tree | 6a2683eb7d63cca3e568f6f2786f77e606320bb1 /app/javascript/styles | |
parent | 8da5b8e6695e3bcca8eb4bca754faef83a6656eb (diff) |
Add relationship manager UI (#10268)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/tables.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/tables.scss b/app/javascript/styles/mastodon/tables.scss index 9e8785679..d3a0ea03d 100644 --- a/app/javascript/styles/mastodon/tables.scss +++ b/app/javascript/styles/mastodon/tables.scss @@ -140,6 +140,15 @@ a.table-action-link { input { margin-top: 8px; } + + &--aligned { + display: flex; + align-items: center; + + input { + margin-top: 0; + } + } } &__actions, @@ -183,6 +192,10 @@ a.table-action-link { &__content { padding-top: 12px; padding-bottom: 16px; + + &--unpadded { + padding: 0; + } } } @@ -197,4 +210,10 @@ a.table-action-link { font-weight: 700; } } + + .nothing-here { + border: 1px solid darken($ui-base-color, 8%); + border-top: 0; + box-shadow: none; + } } |