diff options
author | Samuel Kaiser <sk22@mailbox.org> | 2022-11-13 21:02:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 21:02:28 +0100 |
commit | e62b514e958ca2bfc08944b2368c6d41417f9e8a (patch) | |
tree | 45917aeb7367d4221ab0a2a05625c71bcbd66543 /app/javascript/styles | |
parent | c2231539c78103e000ef5edeeade9d3bbe54ac8d (diff) |
Stick batch table toolbar to the top (#20442)
Fixes #20441
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/tables.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/tables.scss b/app/javascript/styles/mastodon/tables.scss index 39211910f..b644b38f1 100644 --- a/app/javascript/styles/mastodon/tables.scss +++ b/app/javascript/styles/mastodon/tables.scss @@ -178,6 +178,9 @@ a.table-action-link { } &__toolbar { + position: sticky; + top: 0; + z-index: 1; border: 1px solid darken($ui-base-color, 8%); background: $ui-base-color; border-radius: 4px 0 0; |