From 3d5a789bbb890ffb4e9c63fa436f9db9b7cb70db Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Tue, 4 Sep 2018 18:11:13 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20=E2=80=9Csensitive=E2=80=9D=20media=20war?= =?UTF-8?q?ning=20and=20upload=20form=20colors=20in=20Mastodon-light?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../glitch/styles/mastodon-light/diff.scss | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss index 00d2411a1..aba8baf70 100644 --- a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss +++ b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss @@ -82,6 +82,12 @@ } +// Change the background colors of media and video spoilers +.media-spoiler, +.video-player__spoiler { + background: $ui-base-color; +} + // Change the colors used in the dropdown menu .dropdown-menu { background: $ui-base-color; @@ -147,6 +153,24 @@ } +.composer--upload_form--actions .icon-button { + color: lighten($white, 7%); + + &:active, + &:focus, + &:hover { + color: $white; + } +} + +.composer--upload_form--item > div input { + color: lighten($white, 7%); + + &::placeholder { + color: lighten($white, 10%); + } +} + .dropdown-menu__separator { border-bottom-color: lighten($ui-base-color, 12%); }