Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
postcss-dir-pseudo-class
Advanced tools
The postcss-dir-pseudo-class package is a PostCSS plugin that allows you to use the :dir pseudo-class in CSS, enabling styling based on the directionality of text (e.g., left-to-right or right-to-left). This is particularly useful for creating styles that need to adapt to different language directionality, such as supporting both English (LTR) and Arabic or Hebrew (RTL) without having to write separate CSS rules for each.
Directional Styling
Allows styling elements differently based on the text direction. This is useful for creating layouts and designs that adapt to both LTR and RTL languages.
/* Input CSS */
:dir(ltr) .selector { float: left; }
:dir(rtl) .selector { float: right; }
/* Output CSS */
.selector:dir(ltr) { float: left; }
.selector:dir(rtl) { float: right; }
Fallback Support
Generates fallbacks for browsers that do not support the :dir pseudo-class, using the [dir] attribute selector instead. This ensures compatibility across a wider range of browsers.
/* Input CSS */
:dir(ltr) .selector { float: left; }
:dir(rtl) .selector { float: right; }
/* Output CSS with fallback */
[dir='ltr'] .selector { float: left; }
[dir='rtl'] .selector { float: right; }
RTLCSS is a framework for converting Left-To-Right (LTR) CSS to Right-To-Left (RTL). While postcss-dir-pseudo-class focuses on providing directional styling capabilities within CSS, RTLCSS specifically targets the conversion of existing LTR CSS to RTL, making it more suitable for projects that need to automate the generation of RTL stylesheets from their LTR counterparts.
Similar to RTLCSS, postcss-rtl is a PostCSS plugin designed to convert LTR CSS to RTL. It offers a different approach and syntax for defining directional styles compared to postcss-dir-pseudo-class, focusing more on the conversion aspect rather than enabling the direct use of :dir pseudo-class in stylesheets.
npm install postcss-dir-pseudo-class --save-dev
PostCSS Dir Pseudo Class lets you style by directionality using the :dir()
pseudo-class in CSS, following the Selectors specification.
article h3:dir(rtl) {
margin-right: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
/* becomes */
[dir="rtl"] article h3 {
margin-right: 10px;
}
[dir="ltr"] article h3 {
margin-left: 10px;
}
Using PostCSS Dir Pseudo Class will not impact selector weight, but it will
require having at least one [dir]
attribute in your HTML. If you don’t have
any [dir]
attributes, consider using the following JavaScript:
// force at least one dir attribute (this can run at any time)
document.documentElement.dir=document.documentElement.dir||'ltr';
If you absolutely cannot add a [dir]
attribute in your HTML or even force one
via JavaScript, you can still work around this by presuming a direction in your
CSS using the dir
option, but understand that this will
sometimes increase selector weight by one element (html
).
Add PostCSS Dir Pseudo Class to your project:
npm install postcss postcss-dir-pseudo-class --save-dev
Use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssDirPseudoClass = require('postcss-dir-pseudo-class');
postcss([
postcssDirPseudoClass(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
The preserve
option determines whether the original notation
is preserved. By default, it is not preserved.
postcssDirPseudoClass({ preserve: true })
article h3:dir(rtl) {
margin-right: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
/* becomes */
[dir="rtl"] article h3 {
margin-right: 10px;
}
article h3:dir(rtl) {
margin-right: 10px;
}
[dir="ltr"] article h3 {
margin-left: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
The dir
option allows you presume a direction in your CSS. By default, this
is not specified and you are required to include a direction [dir]
attribute
somewhere in your HTML, preferably on the html
element.
postcssDirPseudoClass({ dir: 'ltr' });
article h3:dir(rtl) {
margin-right: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
/* becomes */
[dir="rtl"] article h3 {
margin-right: 10px;
}
html:not([dir="rtl"]) article h3 {
margin-left: 10px;
}
postcssDirPseudoClass({ dir: 'rtl' });
article h3:dir(rtl) {
margin-right: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
/* becomes */
html:not([dir="ltr"]) article h3 {
margin-right: 10px;
}
[dir="ltr"] article h3 {
margin-left: 10px;
}
The shadow
option determines whether the CSS is assumed to be used in Shadow DOM with Custom Elements.
postcssDirPseudoClass({ shadow: true })
article h3:dir(rtl) {
margin-right: 10px;
}
article h3:dir(ltr) {
margin-left: 10px;
}
/* becomes */
:host-context([dir="rtl"]) article h3 {
margin-right: 10px;
}
:host-context([dir="ltr"]) article h3 {
margin-left: 10px;
}
FAQs
Use the :dir pseudo-class in CSS
The npm package postcss-dir-pseudo-class receives a total of 4,555,523 weekly downloads. As such, postcss-dir-pseudo-class popularity was classified as popular.
We found that postcss-dir-pseudo-class demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.