#ghostchups_code

1 messages ยท Page 1 of 1 (latest)

thorny zealotBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1230255149444890725

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

bright heartBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

safe locust
#

Can you add the screenshots of what you're seeing?

zenith plover
#

whoops

#

this is the UI

#

from the first screenshot the input element that Stripe uses for the Link input element uses the color from the .Input override

#

the color = text color

#

so in this screenshot that is a dark blue

#

which is appropriate for the style of text inputs

#

however since the Link element uses a transparent background this color is not suitable

#

but there is no way to have one color for this specific Link input and another for the generic text field Input's in the Stripe checkout

#

I can set the background color of the Link input by providing a background color to .Block in the appearance.rules options

#

which will fix this situation but that will break other places where Block is used

#

the second screenshot is another place Stripe uses .Block

#

reverting the Block change results in:

safe locust
#

'.Input': {
backgroundColor: 'white',
borderColor: 'white',
borderStyle: 'solid',
borderWidth: '1px',
color: 'black',
}
Is this the only thing in your appearance object?

zenith plover
#

Ideally what I would be able to do is provide a background color to the p-SavedEmail css class

safe locust
#

If not, can you copy/paste the whole thing?

zenith plover
thorny zealotBOT
zenith plover
#

the absolute values are not present in that copy/paste

#

as the are translated from another theme

#

ultimately the issue is the styles applied to the saved email overrides the background, border and a few other styles. However it does not override the color from the Input class

deft narwhal
#

Hi, I'm stepping in and catching up.

zenith plover
#

no worries take all the time you need

deft narwhal
#

I think you'd want to write into to support, https://support.stripe.com/contact so we can reproduce this end to end. Please share your full code, and the screenshots as well.

zenith plover
#

do you have a codesandbox or preset template? it wouldn't be feasible to send my full code