diff options
| author | 2023-02-09 09:26:35 +0100 | |
|---|---|---|
| committer | 2023-02-09 09:26:35 +0100 | |
| commit | 65b19411a4185877ac30694e0c169c12d2998c07 (patch) | |
| tree | cdf9279adbaffeeda88cc35480bb4395aee78af2 /web/source/settings/style.css | |
| parent | [chore/bugfix] Serve + throttle publickey separately from rest of ActivityPub... (diff) | |
| download | gotosocial-65b19411a4185877ac30694e0c169c12d2998c07.tar.xz | |
[chore] Fix report username wrapping (#1464)
* fix report username wrapping
* move report status to separate line on portrait orientation
Diffstat (limited to 'web/source/settings/style.css')
| -rw-r--r-- | web/source/settings/style.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css index 17ccec6d3..53fb0dd8a 100644 --- a/web/source/settings/style.css +++ b/web/source/settings/style.css @@ -828,9 +828,14 @@ button.with-padding { border: none; border-left: 0.3rem solid $border-accent; + .usernames { + line-height: 2rem; + } + .byline { display: grid; grid-template-columns: 1fr auto; + gap: 0.5rem; .status { color: $border-accent; @@ -904,14 +909,20 @@ button.with-padding { } .user { + line-height: 1.3rem; + display: inline-block; background: $fg-accent; color: $bg; border-radius: $br; - padding: 0.1rem 0.2rem; + padding: 0.15rem 0.15rem; margin: 0 0.1rem; font-weight: bold; text-decoration: none; + .acct { + word-break: break-all; + } + &.suspended { background: $bg-accent; color: $fg; @@ -924,6 +935,16 @@ button.with-padding { } } +@media screen and (orientation: portrait) { + .reports .report .byline { + grid-template-columns: 1fr; + + .status { + grid-row: 1; + } + } +} + [role="button"] { cursor: pointer; } |
