diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-12-17 23:00:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 23:00:05 +0100 |
commit | 40f202c1e589cae45c55392212c697e87c8a8f38 (patch) | |
tree | 1072cdcb7ec06008b9f4d5ae8a1282f7e62952c0 /app | |
parent | 2aafa5b4e7a83ce8195cd739f1233a52ab060db7 (diff) |
Change list title input styling (#17092)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 0dd3636b6..0a62e6b82 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -3074,17 +3074,20 @@ a.account__display-name { box-sizing: border-box; width: 100%; margin: 0; - color: $inverted-text-color; - background: $simple-background-color; - padding: 10px; + color: $darker-text-color; + background: transparent; + padding: 7px 0; font-family: inherit; font-size: 14px; resize: vertical; border: 0; + border-bottom: 2px solid $ui-primary-color; outline: 0; - border-radius: 4px; - &:focus { + &:focus, + &:active { + color: $primary-text-color; + border-bottom-color: $ui-highlight-color; outline: 0; } |