Giter Site home page Giter Site logo

Incorrect rules order about postcss-rtl HOT 5 OPEN

vkalinichev avatar vkalinichev commented on June 4, 2024 1
Incorrect rules order

from postcss-rtl.

Comments (5)

vkalinichev avatar vkalinichev commented on June 4, 2024 2

I'll try to fix it in the next release.

For now you can use this workaround:

div {
    background: linear-gradient(to right, #c8c8c8 15.5%, transparent 15.5%) repeat-x;
}
[dir] div {
    background-size: 4.16667% 4px
}

Thanks for the report!

from postcss-rtl.

marsjosephine avatar marsjosephine commented on June 4, 2024 1

@fabercancio -- totally understand, thanks for responding!

from postcss-rtl.

henryruhs avatar henryruhs commented on June 4, 2024

Could you please fix this asap? I have a similar issue with background-image... see: teaser.css

from postcss-rtl.

marsjosephine avatar marsjosephine commented on June 4, 2024

I also encountered a similar issue today. I have some styles that result in the following styles declarations (we have duplicate declarations for background-image due to how we share and extend styles in our codebase):

.gradientBackground {
  background-image: linear-gradient(to right, black 0%, white 50%, black 100%);
  height: 100%;
  width: 100%;
  background-image: var(--brand-radial-gradient);
}

After going through Post CSS RTL, the following is output in our CSS files. The order of the style declarations that's being output is not what I would expect based on the input, and so the first background-image styling is being applied as opposed to the second. What I would expect here is that both declarations for background-image would end up in .dir-ltr.gradientBackground in the same order that they appear in the source CSS.

.dir.gradientBackground {
  height: 100%;
  width: 100%;
  background-image: var(--brand-radial-gradient);
}

.dir-ltr.gradientBackground {
  background-image: linear-gradient(to right, black 0%, white 50%, black 100%);
}

from postcss-rtl.

fabercancio avatar fabercancio commented on June 4, 2024

@marsjosephine,

Unfortunately, this library is no longer maintained. As a workaround, if you can modify manually the CSS rules, you can add the rtl:ignore directive to each declaration:

https://runkit.com/embed/7ywx6ed18q7j

from postcss-rtl.

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.