diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-16 20:10:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-16 20:10:42 +0100 |
commit | 6a3f08661f8d23e5f93717f36df1463842bfd936 (patch) | |
tree | e84547527fd4d4891aa16d37b33f012676b5be9c /app/javascript/styles | |
parent | 1a0d3c9c65d663210494ec9b55912debad6331f5 (diff) |
Fix scrollbar styles on compose textarea, small bugs (#10292)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index ceb28dd19..8da4e2f4a 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -357,6 +357,11 @@ padding-bottom: 0; padding-right: 10px + 22px; resize: none; + scrollbar-color: initial; + + &::-webkit-scrollbar { + all: unset; + } @media screen and (max-width: 600px) { height: 100px !important; // prevent auto-resize textarea |