From e7be55fd737f9b6e1664561f034006fbdd187846 Mon Sep 17 00:00:00 2001 From: Michael Stanclift Date: Thu, 8 Aug 2024 14:23:15 -0500 Subject: [PATCH] [Glitch] Fix list creation textbox styling Port 389549e7838291f09bc291c7559730fe3f2aad58 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components.scss | 7 +++---- .../flavours/glitch/styles/mastodon-light/diff.scss | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/javascript/flavours/glitch/styles/components.scss b/app/javascript/flavours/glitch/styles/components.scss index c2bb1c320f..ce94fac410 100644 --- a/app/javascript/flavours/glitch/styles/components.scss +++ b/app/javascript/flavours/glitch/styles/components.scss @@ -4086,18 +4086,17 @@ input.glitch-setting-text { display: block; box-sizing: border-box; margin: 0; - color: $inverted-text-color; - background: $white; + color: $primary-text-color; + background: $ui-base-color; padding: 7px 10px; font-family: inherit; font-size: 14px; line-height: 22px; border-radius: 4px; - border: 1px solid $white; + border: 1px solid var(--background-border-color); &:focus { outline: 0; - border-color: lighten($ui-highlight-color, 12%); } &__wrapper { diff --git a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss index 2115629068..abf5d5ef35 100644 --- a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss +++ b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss @@ -614,3 +614,7 @@ a.sparkline { background: darken($ui-base-color, 10%); } } + +.setting-text { + background: darken($ui-base-color, 10%); +}