From 79d313c4a853aca1b1b5dd642ee67443990eeb72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 27 Apr 2022 23:11:24 +0200 Subject: [PATCH 1/3] fix repost button on DMs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/soapbox/components/status_action_bar.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/soapbox/components/status_action_bar.tsx b/app/soapbox/components/status_action_bar.tsx index 97d71bf08..5f62ba5c0 100644 --- a/app/soapbox/components/status_action_bar.tsx +++ b/app/soapbox/components/status_action_bar.tsx @@ -632,7 +632,11 @@ class StatusActionBar extends ImmutablePureComponent {features.quotePosts && me ? ( - + {reblogButton} ) : ( From 48dd07ef448c6fa2f445cc96e9b1cca99539525c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 27 Apr 2022 23:20:38 +0200 Subject: [PATCH 2/3] some styles for simpleform imputs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/styles/forms.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/styles/forms.scss b/app/styles/forms.scss index 442f48839..6c82a4739 100644 --- a/app/styles/forms.scss +++ b/app/styles/forms.scss @@ -338,6 +338,7 @@ code { input[type=password], textarea, .rfipbtn { + @apply border border-gray-300 dark:border-gray-600 bg-white dark:bg-slate-800 text-black dark:text-white; box-sizing: border-box; font-size: 16px; color: var(--primary-text-color); @@ -643,6 +644,7 @@ code { } .icon-button { + @apply text-black dark:text-white; position: absolute; top: 0; right: 0; @@ -651,7 +653,6 @@ code { padding: 0; margin: 0; background: transparent; - color: var(--primary-text-color); .svg-icon { height: 20px; From 67694c48d930155e26f19af256ee3e69d44632d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 27 Apr 2022 23:24:16 +0200 Subject: [PATCH 3/3] reply-mentions styles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/styles/components/reply-mentions.scss | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/styles/components/reply-mentions.scss b/app/styles/components/reply-mentions.scss index 5312d0859..6e10654b8 100644 --- a/app/styles/components/reply-mentions.scss +++ b/app/styles/components/reply-mentions.scss @@ -2,11 +2,7 @@ @apply text-gray-500 dark:text-gray-400 mb-1 text-sm; &__account { - @apply text-primary-600 no-underline; - - &:hover { - @apply underline text-primary-800; - } + @apply text-primary-600 dark:text-primary-400 hover:text-primary-800 dark:hover:text-primary-300 no-underline hover:underline; } }