Giter VIP home page Giter VIP logo

Comments (3)

vladmoroz avatar vladmoroz commented on May 22, 2024 1

You are probably running into a specificity issue with your CSS.

Most button variants have 0, 2, 0 specificity on the rules that define the background color (for the regular rest state, at least):

image

The best way to override base styles in your example is to create a matching rule in your CSS:

.my-fancy-button.rt-BaseButton.rt-variant-solid {
  background-image: ...
}

Please note that we don’t encourage component customization like this as it's fragile because it relies on internal implementation details, which may change down the line. In your case, you'd have to also recreate all the button states.

Your safest bet is to tweak the base CSS variables that we provide. Otherwise, if a specific Radix Themes component doesn’t fit your use-case, it's always easier to create your own component which you’d have full control over.

from themes.

brettinternet avatar brettinternet commented on May 22, 2024 1

You could also use CSS Layers to control specificity. For example, with panda-css in index.css:

@layer reset, radix, base, tokens, recipes, utilities;

@import "@radix-ui/themes/styles.css" layer(radix);

from themes.

jd-carroll avatar jd-carroll commented on May 22, 2024

I don't think that's how this all works. Would need to see what your actual classes contain, but if you add a normal css class (without variables), of course the child elements aren't going to receive the color.

For your approach to work, your class would need to contain the proper color tokens used by Button.

Could be wrong, but that's how I believe this works.

Also, (as someone who is just learning all of this), I wouldn't use that approach. I'd follow what is described in the docs and set the accent color directly.

from themes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.