diff options
author | ThibG <thib@sitedethib.com> | 2018-05-16 20:16:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 20:16:59 +0200 |
commit | 9712d59dda848a7bc7fd9edb814c16717aa9ba6d (patch) | |
tree | 8df33ba72234071c66c89b61ece0fbd12f39edb8 /app/javascript | |
parent | f47f6c3345963e20be410a7fd10d6b676fce8afd (diff) | |
parent | eb9c9855ce3385bfaefaac36604e6fba8af448fe (diff) |
Merge pull request #485 from ThibG/glitch-soc/fixes/light-theme-textarea-color
Fix mastodon-light background color of the composer textarea when posting
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/styles/mastodon-light.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/mastodon-light.scss b/app/javascript/flavours/glitch/styles/mastodon-light.scss index 46f88c994..029d5dde2 100644 --- a/app/javascript/flavours/glitch/styles/mastodon-light.scss +++ b/app/javascript/flavours/glitch/styles/mastodon-light.scss @@ -122,6 +122,8 @@ $account-background-color: white; .composer--spoiler input, .composer--textarea textarea { color: darken($ui-base-color, 80%); + &:disabled { background: darken($simple-background-color, 10%) } + &::placeholder { color: darken($ui-base-color, 70%); } |