Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot change color using sx on loading page #7706

Closed
smeng9 opened this issue May 18, 2022 · 3 comments · Fixed by #7723
Closed

Cannot change color using sx on loading page #7706

smeng9 opened this issue May 18, 2022 · 3 comments · Fixed by #7723
Labels

Comments

@smeng9
Copy link
Contributor

smeng9 commented May 18, 2022

What you were expecting:

I expect the text color on loading page can be changed

What happened instead:

The text color seems cannot be changed

Steps to reproduce:
Fork https://codesandbox.io/s/github/marmelab/react-admin/tree/master/examples/simple on codesandbox
Delete all resource and routes
Add a ready prop with following component

        <Loading
          loadingPrimary="loading1"
          sx={{
            color: "red",
            [`& .RaLoading-message`]: {
              color: "red"
            }
          }}
        />

Related code:

https://codesandbox.io/s/delicate-water-py8q0r?file=/src/index.tsx:956-996

Other information:

Environment

  • React-admin version: 4.0.4
  • Last version that did not exhibit the issue (if applicable):
  • React version: 17.0.0
  • Browser: Edge 101
  • Stack trace (in case of a JS error):
@smeng9 smeng9 changed the title Cannot change color on loading page Cannot change color using sx on loading page May 18, 2022
@slax57
Copy link
Contributor

slax57 commented May 19, 2022

Indeed the color on the Loading component is not customizable (defaults to "primary"), and the sx prop isn't handled either (I get a TS warning when I try).
Since the docs do not mention the sx prop, and given you can probably work around this limitation with a custom theme, I'll label this as an enhancement.

@smeng9
Copy link
Contributor Author

smeng9 commented May 19, 2022

Hi @slax57

I would consider this as a bug, even though I agree with you I can easily write my own custom component.

The documentation https://marmelab.com/react-admin/Theming.html#sx-overriding-a-component-style mentions all react-admin components expose an sx property and <Loading />, <LoadingPage /> surely are components.

@slax57
Copy link
Contributor

slax57 commented May 20, 2022

Alright then. I think it shouldn't be too hard to fix anyway. I'll see to fix it along with #7712

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants