
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@sector-labs/postcss-to-rtl
Advanced tools
PostCSS plugin to convert (left to right) CSS to RTL.
Enables projects that serve their CSS inlined in a style tag in the documents to build smaller, separate RTL and LTR CSS files for the LTR and RTL pages.
Use this instead of postcss-inline-rtl or other postcss pluging that produce a big CSS files containing rules for both directions.
To get even smaller files, use css-byebye to further strip the rules with the wrong direction from the resulting CSS.
Always have a dir="ltr" or dir="rtl" in your HTML tag.
/* Normal code */
.class {
color: red;
}
/* => no change */
.class{
border-left: 10px;
color: red;
}
/* Converts to: */
.class {
border-right: 10px
color: red;
}
postcss([ require('postcss-to-rtl') ])
+1 for rtlcss, postcss-inline-rtl as this wouldn't exist without these!
See PostCSS docs for examples for your environment.
FAQs
PostCSS plugin to convert CSS to RTL
We found that @sector-labs/postcss-to-rtl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.